@tenorlab/react-dashboard 1.5.22 → 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.
@@ -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
  };
@@ -68,7 +69,7 @@ export declare interface IButtonProps {
68
69
  shadow?: string;
69
70
  shadowHover?: string;
70
71
  addCss?: string;
71
- onClick: () => any;
72
+ onClick: (ev?: any) => any;
72
73
  children: React.ReactNode;
73
74
  }
74
75
 
@@ -307,6 +308,8 @@ export declare function MoveRightIcon({ className }: TIconProps): JSX_2.Element;
307
308
 
308
309
  export declare function RedoIcon({ className }: TIconProps): JSX_2.Element;
309
310
 
311
+ export declare function RenameIcon({ className }: TIconProps): JSX_2.Element;
312
+
310
313
  export declare function SettingsIcon({ className }: TIconProps): JSX_2.Element;
311
314
 
312
315
  export declare const showToast: (options: any) => void;
@@ -591,6 +594,7 @@ export declare type TWidgetsCatalogFlyoutProps = {
591
594
  widgetsCatalog: TDashboardWidgetCatalog;
592
595
  currentDashboardConfig: IDashboardConfig;
593
596
  undoStatus: TDashboardUndoStatus;
597
+ zIndex?: number;
594
598
  addWidget: (widgetKey: TDashboardWidgetKey, parentWidgetKey?: TDashboardWidgetKey) => any;
595
599
  addContainer: (widgetKey: TDashboardWidgetKey) => any;
596
600
  onSettingItemsUpdated: (items: IDashboardSettingEntry[]) => any;