@devtable/dashboard 11.5.2 → 11.6.0
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/components/filter/filter-tree-select/render/widget.d.ts +3 -3
- package/dist/components/plugins/viz-components/cartesian/editors/tooltip/index.d.ts +8 -0
- package/dist/components/plugins/viz-components/cartesian/editors/tooltip/metric.d.ts +9 -0
- package/dist/components/plugins/viz-components/cartesian/editors/tooltip/metrics.d.ts +8 -0
- package/dist/components/plugins/viz-components/cartesian/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/cartesian/migrators/index.d.ts +1 -0
- package/dist/components/plugins/viz-components/cartesian/option/tooltip.d.ts +1 -1
- package/dist/components/plugins/viz-components/cartesian/type.d.ts +4 -0
- package/dist/dashboard.es.js +2836 -2724
- package/dist/dashboard.umd.js +96 -92
- package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +3 -3
- package/dist/stats.html +1 -1
- package/package.json +2 -2
|
@@ -59,7 +59,7 @@ export declare const FilterTreeSelectConfigMeta: import("mobx-state-tree").IMode
|
|
|
59
59
|
readonly treeDataLoading: boolean;
|
|
60
60
|
readonly defaultSelection: any[];
|
|
61
61
|
valueObjects(value: string[]): any;
|
|
62
|
-
|
|
62
|
+
initialSelection(value: string[] | null): any;
|
|
63
63
|
truthy(value: any): boolean;
|
|
64
64
|
} & {
|
|
65
65
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -134,7 +134,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
134
134
|
readonly treeDataLoading: boolean;
|
|
135
135
|
readonly defaultSelection: any[];
|
|
136
136
|
valueObjects(value: string[]): any;
|
|
137
|
-
|
|
137
|
+
initialSelection(value: string[] | null): any;
|
|
138
138
|
truthy(value: any): boolean;
|
|
139
139
|
} & {
|
|
140
140
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -202,7 +202,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
202
202
|
readonly treeDataLoading: boolean;
|
|
203
203
|
readonly defaultSelection: any[];
|
|
204
204
|
valueObjects(value: string[]): any;
|
|
205
|
-
|
|
205
|
+
initialSelection(value: string[] | null): any;
|
|
206
206
|
truthy(value: any): boolean;
|
|
207
207
|
} & {
|
|
208
208
|
setDefaultValue(default_value: string[]): void;
|