uibee 2.10.1 → 2.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,4 +20,7 @@ export { default as LoginPage } from './login/loginPage';
|
|
|
20
20
|
export { default as Toaster, toast } from './toast/toaster';
|
|
21
21
|
export { default as Button } from './buttons/button';
|
|
22
22
|
export { default as Alert } from './alert/alert';
|
|
23
|
+
export { default as MenuButton } from './table/menu';
|
|
24
|
+
export { default as Table } from './table/table';
|
|
25
|
+
export { default as Pagination } from './table/pagination';
|
|
23
26
|
export { default as ConfirmPopup } from './confirm/confirmPopup';
|
|
@@ -29,5 +29,9 @@ export { default as Toaster, toast } from './toast/toaster';
|
|
|
29
29
|
export { default as Button } from './buttons/button';
|
|
30
30
|
// Alert
|
|
31
31
|
export { default as Alert } from './alert/alert';
|
|
32
|
+
// Table
|
|
33
|
+
export { default as MenuButton } from './table/menu';
|
|
34
|
+
export { default as Table } from './table/table';
|
|
35
|
+
export { default as Pagination } from './table/pagination';
|
|
32
36
|
// Confirm
|
|
33
37
|
export { default as ConfirmPopup } from './confirm/confirmPopup';
|
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -38,5 +38,10 @@ export { default as Button } from './buttons/button'
|
|
|
38
38
|
// Alert
|
|
39
39
|
export { default as Alert } from './alert/alert'
|
|
40
40
|
|
|
41
|
+
// Table
|
|
42
|
+
export { default as MenuButton } from './table/menu'
|
|
43
|
+
export { default as Table } from './table/table'
|
|
44
|
+
export { default as Pagination } from './table/pagination'
|
|
45
|
+
|
|
41
46
|
// Confirm
|
|
42
47
|
export { default as ConfirmPopup } from './confirm/confirmPopup'
|