@databrainhq/plugin 0.11.9 → 0.11.11

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.
@@ -1,6 +1,7 @@
1
1
  /// <reference types="react" />
2
- export declare const DrillBreadCrumb: ({ dimensions, drilledLevel, }: {
2
+ export declare const DrillBreadCrumb: ({ dimensions, drilledLevel, onResetLevel, }: {
3
3
  dimensions: string[];
4
4
  drilledLevel: number;
5
+ onResetLevel: () => void;
5
6
  }) => JSX.Element;
6
7
  export default DrillBreadCrumb;
@@ -10,13 +10,13 @@ type NumberFieldProps = {
10
10
  isShowHorizontal?: boolean;
11
11
  };
12
12
  defaultValues?: {
13
- min: number;
14
- max: number;
13
+ min: number | null;
14
+ max: number | null;
15
15
  };
16
16
  className?: string;
17
17
  onChange?: (value: {
18
- min: number;
19
- max: number;
18
+ min: number | null;
19
+ max: number | null;
20
20
  }) => void;
21
21
  label?: string;
22
22
  };
@@ -66,3 +66,7 @@ export declare const RAW_CSV_OPTIONS: string[];
66
66
  export declare const NONE = "NONE";
67
67
  export declare const REQUESTED = "REQUESTED";
68
68
  export declare const AVAILABLE = "AVAILABLE";
69
+ export declare const NUMBER_FORMAT: {
70
+ label: string;
71
+ value: string;
72
+ }[];