@moontra/moonui-pro 2.24.3 → 2.24.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/README.md +471 -197
- package/dist/index.d.ts +5 -0
- package/dist/index.global.js +105 -105
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +146 -61
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2613,6 +2613,11 @@ interface DashboardProps {
|
|
|
2613
2613
|
editable?: boolean;
|
|
2614
2614
|
realtime?: boolean;
|
|
2615
2615
|
glassmorphism?: boolean;
|
|
2616
|
+
children?: React__default.ReactNode;
|
|
2617
|
+
mode?: 'widgets' | 'children' | 'hybrid';
|
|
2618
|
+
contentClassName?: string;
|
|
2619
|
+
sidebarPosition?: 'left' | 'right' | 'none';
|
|
2620
|
+
sidebarContent?: React__default.ReactNode;
|
|
2616
2621
|
notifications?: DashboardNotification[];
|
|
2617
2622
|
onNotificationClick?: (notification: DashboardNotification) => void;
|
|
2618
2623
|
onNotificationMarkAsRead?: (notificationId: string) => void;
|