forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
897 B
39 lines
897 B
|
|
import * as base from "./2.base"; |
|
import * as ob from "./3.ob"; |
|
import * as widget from "./4.widget"; |
|
import * as inject from "./5.inject"; |
|
import * as action from "./action"; |
|
import * as behavior from "./behavior"; |
|
import * as controllers from "./controller"; |
|
import { StyleLoaderManager } from "./loader/loader.style"; |
|
import "./h"; |
|
import { ShowListener } from "./listener/listener.show"; |
|
import { shortcut } from "./decorator"; |
|
|
|
export * from "./2.base"; |
|
export * from "./3.ob"; |
|
export * from "./4.widget"; |
|
export * from "./5.inject"; |
|
export * from "./action"; |
|
export * from "./behavior"; |
|
export * from "./controller"; |
|
|
|
export { |
|
StyleLoaderManager, |
|
ShowListener, |
|
shortcut, |
|
} |
|
|
|
Object.assign(BI, { |
|
...base, |
|
...ob, |
|
...widget, |
|
...inject, |
|
...behavior, |
|
component: inject.shortcut, |
|
...action, |
|
...controllers, |
|
StyleLoaderManager, |
|
ShowListener, |
|
});
|
|
|