@tenorlab/react-dashboard 1.5.24 → 1.5.25
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/react-dashboard.d.ts +2 -0
- package/dist/react-dashboard.es.js +444 -443
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ declare type DraggablePanelProps = {
|
|
|
30
30
|
testId?: string;
|
|
31
31
|
className: string;
|
|
32
32
|
style?: CSSProperties;
|
|
33
|
+
zIndex?: number;
|
|
33
34
|
onDraggingChange?: (isDragging: boolean) => void;
|
|
34
35
|
children: React.ReactNode;
|
|
35
36
|
};
|
|
@@ -593,6 +594,7 @@ export declare type TWidgetsCatalogFlyoutProps = {
|
|
|
593
594
|
widgetsCatalog: TDashboardWidgetCatalog;
|
|
594
595
|
currentDashboardConfig: IDashboardConfig;
|
|
595
596
|
undoStatus: TDashboardUndoStatus;
|
|
597
|
+
zIndex?: number;
|
|
596
598
|
addWidget: (widgetKey: TDashboardWidgetKey, parentWidgetKey?: TDashboardWidgetKey) => any;
|
|
597
599
|
addContainer: (widgetKey: TDashboardWidgetKey) => any;
|
|
598
600
|
onSettingItemsUpdated: (items: IDashboardSettingEntry[]) => any;
|