@infuro/cms-core 1.0.5 → 1.0.6

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/admin.d.cts CHANGED
@@ -95,7 +95,10 @@ declare function AdminShell({ children }: {
95
95
 
96
96
  declare function AdminHeader(): react_jsx_runtime.JSX.Element;
97
97
 
98
- declare function AdminSidebar(): react_jsx_runtime.JSX.Element;
98
+ interface AdminSidebarProps {
99
+ variant?: 'sidebar' | 'drawer';
100
+ }
101
+ declare function AdminSidebar({ variant }: AdminSidebarProps): react_jsx_runtime.JSX.Element;
99
102
 
100
103
  type CrudFilterOption = {
101
104
  value: string;
package/dist/admin.d.ts CHANGED
@@ -95,7 +95,10 @@ declare function AdminShell({ children }: {
95
95
 
96
96
  declare function AdminHeader(): react_jsx_runtime.JSX.Element;
97
97
 
98
- declare function AdminSidebar(): react_jsx_runtime.JSX.Element;
98
+ interface AdminSidebarProps {
99
+ variant?: 'sidebar' | 'drawer';
100
+ }
101
+ declare function AdminSidebar({ variant }: AdminSidebarProps): react_jsx_runtime.JSX.Element;
99
102
 
100
103
  type CrudFilterOption = {
101
104
  value: string;