-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.ts
37 lines (35 loc) · 1.13 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export * from "./src/isFunc";
export * from "./src/asap";
export * from "./src/cssTypes";
export * from "./src/frameCallbacks";
export * from "./src/core";
export * from "./src/keyEvents";
export * from "./src/mouseEvents";
export * from "./src/media";
export * from "./src/router";
export * from "./src/dnd";
export * from "./src/mediaQueryBuilder";
export * from "./src/svgExtensions";
export * from "./src/cssInJs";
export * from "./src/wc";
export * from "./src/cva";
export * as Children from "./src/children";
import { setAfterFrame, setBeforeFrame } from "./src/frameCallbacks";
import { deref, getRoots, setInvalidate, ignoreShouldChange, setBeforeInit, setKeysInClassNames } from "./src/core";
import { getDnds } from "./src/dnd";
import { invalidateStyles } from "./src/cssInJs";
// bobril-clouseau needs this
// bobril-g11n needs ignoreShouldChange and setBeforeInit
if (!(<any>window).b)
(<any>window).b = {
deref,
getRoots,
setInvalidate,
invalidateStyles,
ignoreShouldChange,
setAfterFrame,
setBeforeFrame,
getDnds,
setBeforeInit,
setKeysInClassNames,
};