@devtable/dashboard 13.27.10 → 13.27.12
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 +24 -10
- package/dist/dashboard.umd.js +39 -39
- package/dist/model/meta-model/dashboard/content/filter/widgets/multi-select.d.ts +9 -3
- package/dist/model/meta-model/dashboard/content/filter/widgets/select-base.d.ts +1 -0
- package/dist/model/meta-model/dashboard/content/filter/widgets/select.d.ts +3 -0
- package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +3 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export declare const FilterMultiSelectConfigMeta: import("mobx-state-tree").IMod
|
|
|
19
19
|
readonly filter: any;
|
|
20
20
|
readonly usingQuery: boolean;
|
|
21
21
|
} & {
|
|
22
|
+
readonly optionsLoading: boolean;
|
|
22
23
|
readonly options: import("./select-base").TSelectOption[];
|
|
23
24
|
} & {
|
|
24
25
|
setRequired(required: boolean): void;
|
|
@@ -51,7 +52,8 @@ export declare const FilterMultiSelectConfigMeta: import("mobx-state-tree").IMod
|
|
|
51
52
|
options_query_id: string;
|
|
52
53
|
default_selection_count: number;
|
|
53
54
|
};
|
|
54
|
-
readonly
|
|
55
|
+
readonly defaultSelection: any;
|
|
56
|
+
initialSelection(value: string[] | null): any;
|
|
55
57
|
truthy(value: any): boolean;
|
|
56
58
|
} & {
|
|
57
59
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -86,6 +88,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
86
88
|
readonly filter: any;
|
|
87
89
|
readonly usingQuery: boolean;
|
|
88
90
|
} & {
|
|
91
|
+
readonly optionsLoading: boolean;
|
|
89
92
|
readonly options: import("./select-base").TSelectOption[];
|
|
90
93
|
} & {
|
|
91
94
|
setRequired(required: boolean): void;
|
|
@@ -118,7 +121,8 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
118
121
|
options_query_id: string;
|
|
119
122
|
default_selection_count: number;
|
|
120
123
|
};
|
|
121
|
-
readonly
|
|
124
|
+
readonly defaultSelection: any;
|
|
125
|
+
initialSelection(value: string[] | null): any;
|
|
122
126
|
truthy(value: any): boolean;
|
|
123
127
|
} & {
|
|
124
128
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -146,6 +150,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
146
150
|
readonly filter: any;
|
|
147
151
|
readonly usingQuery: boolean;
|
|
148
152
|
} & {
|
|
153
|
+
readonly optionsLoading: boolean;
|
|
149
154
|
readonly options: import("./select-base").TSelectOption[];
|
|
150
155
|
} & {
|
|
151
156
|
setRequired(required: boolean): void;
|
|
@@ -178,7 +183,8 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
178
183
|
options_query_id: string;
|
|
179
184
|
default_selection_count: number;
|
|
180
185
|
};
|
|
181
|
-
readonly
|
|
186
|
+
readonly defaultSelection: any;
|
|
187
|
+
initialSelection(value: string[] | null): any;
|
|
182
188
|
truthy(value: any): boolean;
|
|
183
189
|
} & {
|
|
184
190
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -28,6 +28,7 @@ export declare const FilterBaseSelectConfigMeta: import("mobx-state-tree").IMode
|
|
|
28
28
|
readonly filter: any;
|
|
29
29
|
readonly usingQuery: boolean;
|
|
30
30
|
} & {
|
|
31
|
+
readonly optionsLoading: boolean;
|
|
31
32
|
readonly options: TSelectOption[];
|
|
32
33
|
} & {
|
|
33
34
|
setRequired(required: boolean): void;
|
|
@@ -20,6 +20,7 @@ export declare const FilterSelectConfigMeta: import("mobx-state-tree").IModelTyp
|
|
|
20
20
|
readonly filter: any;
|
|
21
21
|
readonly usingQuery: boolean;
|
|
22
22
|
} & {
|
|
23
|
+
readonly optionsLoading: boolean;
|
|
23
24
|
readonly options: import("./select-base").TSelectOption[];
|
|
24
25
|
} & {
|
|
25
26
|
setRequired(required: boolean): void;
|
|
@@ -91,6 +92,7 @@ export declare const createFilterSelectConfig: () => {
|
|
|
91
92
|
readonly filter: any;
|
|
92
93
|
readonly usingQuery: boolean;
|
|
93
94
|
} & {
|
|
95
|
+
readonly optionsLoading: boolean;
|
|
94
96
|
readonly options: import("./select-base").TSelectOption[];
|
|
95
97
|
} & {
|
|
96
98
|
setRequired(required: boolean): void;
|
|
@@ -155,6 +157,7 @@ export declare const createFilterSelectConfig: () => {
|
|
|
155
157
|
readonly filter: any;
|
|
156
158
|
readonly usingQuery: boolean;
|
|
157
159
|
} & {
|
|
160
|
+
readonly optionsLoading: boolean;
|
|
158
161
|
readonly options: import("./select-base").TSelectOption[];
|
|
159
162
|
} & {
|
|
160
163
|
setRequired(required: boolean): void;
|
|
@@ -20,6 +20,7 @@ export declare const FilterTreeSelectConfigMeta: import("mobx-state-tree").IMode
|
|
|
20
20
|
readonly filter: any;
|
|
21
21
|
readonly usingQuery: boolean;
|
|
22
22
|
} & {
|
|
23
|
+
readonly optionsLoading: boolean;
|
|
23
24
|
readonly options: import("./select-base").TSelectOption[];
|
|
24
25
|
} & {
|
|
25
26
|
setRequired(required: boolean): void;
|
|
@@ -95,6 +96,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
95
96
|
readonly filter: any;
|
|
96
97
|
readonly usingQuery: boolean;
|
|
97
98
|
} & {
|
|
99
|
+
readonly optionsLoading: boolean;
|
|
98
100
|
readonly options: import("./select-base").TSelectOption[];
|
|
99
101
|
} & {
|
|
100
102
|
setRequired(required: boolean): void;
|
|
@@ -163,6 +165,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
163
165
|
readonly filter: any;
|
|
164
166
|
readonly usingQuery: boolean;
|
|
165
167
|
} & {
|
|
168
|
+
readonly optionsLoading: boolean;
|
|
166
169
|
readonly options: import("./select-base").TSelectOption[];
|
|
167
170
|
} & {
|
|
168
171
|
setRequired(required: boolean): void;
|