|
|
|
|
|
|
|
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,
|
|
|
|
});
|