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
848 B
39 lines
848 B
import { Pane } from "./1.pane"; |
|
import * as single from "./single"; |
|
import * as layer from "./layer"; |
|
import * as list from "./list"; |
|
import { GridView } from "./grid/grid"; |
|
import { Pager } from "./pager/pager"; |
|
import * as combination from "./combination"; |
|
import { Msg } from "./foundation/message"; |
|
import * as base from "./0.base"; |
|
import { CollectionView } from "./collection/collection"; |
|
import { CustomTree } from "./tree/customtree"; |
|
|
|
Object.assign(BI, { |
|
Pane, |
|
...layer, |
|
...list, |
|
...single, |
|
GridView, |
|
Pager, |
|
...combination, |
|
Msg, |
|
...base, |
|
CollectionView, |
|
CustomTree, |
|
}); |
|
|
|
export * from "./0.base"; |
|
export * from "./combination"; |
|
export * from "./layer"; |
|
export * from "./list"; |
|
export * from "./single"; |
|
export { |
|
Pane, |
|
GridView, |
|
Pager, |
|
Msg, |
|
CollectionView, |
|
CustomTree |
|
};
|
|
|