@compill/admin 1.0.48 → 1.0.49
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/index.cjs.js +2 -2
- package/index.esm.js +2 -2
- package/package.json +1 -1
- package/src/lib/layout/AdminLayout.d.ts +1 -1
package/index.cjs.js
CHANGED
@@ -2897,7 +2897,7 @@ function Sidebar(_a) {
|
|
2897
2897
|
}));
|
2898
2898
|
}
|
2899
2899
|
|
2900
|
-
function
|
2900
|
+
function AdminLayout(_a) {
|
2901
2901
|
var {
|
2902
2902
|
color,
|
2903
2903
|
darkMode,
|
@@ -3590,13 +3590,13 @@ function TableRowPublishPostButton(_a) {
|
|
3590
3590
|
}));
|
3591
3591
|
}
|
3592
3592
|
|
3593
|
+
exports.AdminLayout = AdminLayout;
|
3593
3594
|
exports.AttachDialog = AttachDialog;
|
3594
3595
|
exports.Breadcrumbs = Breadcrumbs;
|
3595
3596
|
exports.DialogButton = DialogButton;
|
3596
3597
|
exports.FormActionDialog = FormActionDialog;
|
3597
3598
|
exports.InvalidateButton = InvalidateButton;
|
3598
3599
|
exports.ItemEditDialog = ItemEditDialog;
|
3599
|
-
exports.Layout = Layout;
|
3600
3600
|
exports.NavigateButton = NavigateButton;
|
3601
3601
|
exports.OrderCell = OrderCell;
|
3602
3602
|
exports.PageContainer = PageContainer;
|
package/index.esm.js
CHANGED
@@ -2888,7 +2888,7 @@ function Sidebar(_a) {
|
|
2888
2888
|
}));
|
2889
2889
|
}
|
2890
2890
|
|
2891
|
-
function
|
2891
|
+
function AdminLayout(_a) {
|
2892
2892
|
var {
|
2893
2893
|
color,
|
2894
2894
|
darkMode,
|
@@ -3581,4 +3581,4 @@ function TableRowPublishPostButton(_a) {
|
|
3581
3581
|
}));
|
3582
3582
|
}
|
3583
3583
|
|
3584
|
-
export { AttachDialog, Breadcrumbs, DialogButton, FormActionDialog, InvalidateButton, ItemEditDialog,
|
3584
|
+
export { AdminLayout, AttachDialog, Breadcrumbs, DialogButton, FormActionDialog, InvalidateButton, ItemEditDialog, NavigateButton, OrderCell, PageContainer, PageContentEditor, PageMain, PageQueryStateContainer, PageSectionTitle, PageSidebar, PageSidebarSection, PageStateContainer, PageSubSectionTitle, PageTabbedTopBar, PageTabbedTopBarProvider, PageTitle, PageTopBar, PageTopBarToolbar, PublishButton, ScreenRenderer, SectionTitle, StatusBadge, TableContainer, TableCreateButton, TableFilterButton, TableRowActionBar, TableRowDeleteButton, TableRowEditButton, TableRowNavigateButton, TableRowPublishPostButton, TableRowViewButton, TableTopBar, UpdateButton, ViewButton };
|
package/package.json
CHANGED
@@ -8,5 +8,5 @@ interface LayoutProps extends SoperioComponent, ParentComponent {
|
|
8
8
|
title: string;
|
9
9
|
menuConfig: MenuConfig;
|
10
10
|
}
|
11
|
-
export declare function
|
11
|
+
export declare function AdminLayout({ color, darkMode, logo, title, menuConfig, ...props }: LayoutProps): JSX.Element;
|
12
12
|
export {};
|