@devtable/dashboard 9.11.1 → 9.12.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/dashboard.es.js +281 -271
- package/dist/dashboard.umd.js +11 -11
- package/dist/model/filters/filter/tree-select.d.ts +6 -0
- package/package.json +1 -1
|
@@ -53,6 +53,8 @@ export declare const FilterConfigModel_TreeSelect: import("mobx-state-tree").IMo
|
|
|
53
53
|
} & {
|
|
54
54
|
setDefaultValue(default_value: string[]): void;
|
|
55
55
|
setMinWidth(v: string): void;
|
|
56
|
+
applyDefaultSelection(): void;
|
|
57
|
+
afterCreate(): void;
|
|
56
58
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
57
59
|
export declare type IFilterConfig_TreeSelect = Instance<typeof FilterConfigModel_TreeSelect>;
|
|
58
60
|
export declare const createFilterConfig_TreeSelect: () => {
|
|
@@ -114,6 +116,8 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
114
116
|
} & {
|
|
115
117
|
setDefaultValue(default_value: string[]): void;
|
|
116
118
|
setMinWidth(v: string): void;
|
|
119
|
+
applyDefaultSelection(): void;
|
|
120
|
+
afterCreate(): void;
|
|
117
121
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
118
122
|
_name: import("mobx-state-tree").ISimpleType<"tree-select">;
|
|
119
123
|
min_width: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
@@ -168,4 +172,6 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
168
172
|
} & {
|
|
169
173
|
setDefaultValue(default_value: string[]): void;
|
|
170
174
|
setMinWidth(v: string): void;
|
|
175
|
+
applyDefaultSelection(): void;
|
|
176
|
+
afterCreate(): void;
|
|
171
177
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|