@compill/admin 1.0.113 → 1.0.116
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.
- package/dist/index.cjs +30 -625
- package/dist/index.d.ts +0 -6
- package/dist/index.js +15 -602
- package/dist/lib/buttons/InvalidateButton.d.ts +1 -1
- package/dist/lib/buttons/ViewButton.d.ts +1 -1
- package/dist/lib/json/EditItemView.d.ts +1 -1
- package/dist/lib/json/types/EditItemDialog.d.ts +1 -1
- package/dist/lib/json/types/ScreenConfig.d.ts +1 -1
- package/dist/lib/json/types/TableView.d.ts +1 -1
- package/dist/lib/layout/AdminLayout.d.ts +3 -3
- package/dist/lib/layout/Sidebar.d.ts +3 -3
- package/dist/lib/table/TableCreateButton.d.ts +1 -1
- package/dist/lib/table/TableRowActionDialogButton.d.ts +1 -1
- package/dist/lib/table/TableRowDeleteButton.d.ts +1 -1
- package/dist/lib/table/TableRowEditButton.d.ts +1 -1
- package/package.json +19 -16
- package/dist/lib/buttons/DialogButton.d.ts +0 -7
- package/dist/lib/json/dialog/ItemDeleteDialog.d.ts +0 -17
- package/dist/lib/json/dialog/ItemEditDialog.d.ts +0 -32
- package/dist/lib/json/dialog/MultiQueryWrapperDialog.d.ts +0 -7
- package/dist/lib/json/dialog/QueryWrapperDialog.d.ts +0 -13
- package/dist/lib/layout/ButtonBar.d.ts +0 -19
- package/dist/lib/layout/menu/Menu.d.ts +0 -12
- package/dist/lib/layout/menu/MenuButton.d.ts +0 -6
- package/dist/lib/layout/menu/MenuConfig.d.ts +0 -13
- package/dist/lib/layout/menu/MenuItem.d.ts +0 -11
- package/dist/lib/layout/menu/NextMenuItem.d.ts +0 -11
- package/dist/lib/layout/menu/SelectedIndicator.d.ts +0 -3
- package/dist/lib/layout/menu/UserBlock.d.ts +0 -9
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * from "./lib/SectionTitle";
|
|
2
2
|
export * from "./lib/breadcrumbs/BreadCrumbs";
|
|
3
|
-
export * from "./lib/buttons/DialogButton";
|
|
4
3
|
export * from "./lib/buttons/InvalidateButton";
|
|
5
4
|
export * from "./lib/buttons/NavigateButton";
|
|
6
5
|
export * from "./lib/buttons/PublishButton";
|
|
@@ -8,8 +7,6 @@ export * from "./lib/buttons/UpdateButton";
|
|
|
8
7
|
export * from "./lib/buttons/ViewButton";
|
|
9
8
|
export * from "./lib/cells/OrderCell";
|
|
10
9
|
export * from "./lib/json/ScreenRenderer";
|
|
11
|
-
export * from "./lib/json/dialog/ItemEditDialog";
|
|
12
|
-
export * from "./lib/json/dialog/ItemDeleteDialog";
|
|
13
10
|
export * from "./lib/json/types/DetailsView";
|
|
14
11
|
export * from "./lib/json/types/EditItemDialog";
|
|
15
12
|
export * from "./lib/json/types/MultiQueryWrapper";
|
|
@@ -19,9 +16,6 @@ export * from "./lib/json/types/ScreenConfig";
|
|
|
19
16
|
export * from "./lib/json/types/TabbedView";
|
|
20
17
|
export * from "./lib/json/types/TableView";
|
|
21
18
|
export * from "./lib/layout/AdminLayout";
|
|
22
|
-
export * from "./lib/layout/ButtonBar";
|
|
23
|
-
export * from "./lib/layout/menu/Menu";
|
|
24
|
-
export * from "./lib/layout/menu/MenuConfig";
|
|
25
19
|
export * from "./lib/modal/AttachDialog";
|
|
26
20
|
export * from "./lib/modal/FormActionDialog";
|
|
27
21
|
export * from "./lib/page/PageContainer";
|