@tenorlab/react-dashboard 1.5.21 → 1.5.22
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 +9 -1
- package/dist/react-dashboard.es.js +709 -690
- package/package.json +1 -1
|
@@ -609,7 +609,15 @@ export declare type TWidgetSize = 'default' | 'large' | 'xlarge';
|
|
|
609
609
|
|
|
610
610
|
export declare function UndoIcon({ className }: TIconProps): JSX_2.Element;
|
|
611
611
|
|
|
612
|
-
export declare const useDashboardStore: UseBoundStore<StoreApi<TDashboardSlice
|
|
612
|
+
export declare const useDashboardStore: UseBoundStore<Omit<StoreApi<TDashboardSlice>, "subscribe"> & {
|
|
613
|
+
subscribe: {
|
|
614
|
+
(listener: (selectedState: TDashboardSlice, previousSelectedState: TDashboardSlice) => void): () => void;
|
|
615
|
+
<U>(selector: (state: TDashboardSlice) => U, listener: (selectedState: U, previousSelectedState: U) => void, options?: {
|
|
616
|
+
equalityFn?: ((a: U, b: U) => boolean) | undefined;
|
|
617
|
+
fireImmediately?: boolean;
|
|
618
|
+
} | undefined): () => void;
|
|
619
|
+
};
|
|
620
|
+
}>;
|
|
613
621
|
|
|
614
622
|
export declare const useDashboardUndoService: () => {
|
|
615
623
|
initializeHistoryForDashboard: (initialConfig: IDashboardConfig) => void;
|