@devtable/dashboard 13.27.9-beta.1 → 13.27.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.
- package/dist/dashboard.es.js +13 -3
- package/dist/dashboard.umd.js +4 -4
- package/dist/model/meta-model/dashboard/content/filter/widgets/multi-select.d.ts +3 -0
- 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;
|
|
@@ -86,6 +87,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
86
87
|
readonly filter: any;
|
|
87
88
|
readonly usingQuery: boolean;
|
|
88
89
|
} & {
|
|
90
|
+
readonly optionsLoading: boolean;
|
|
89
91
|
readonly options: import("./select-base").TSelectOption[];
|
|
90
92
|
} & {
|
|
91
93
|
setRequired(required: boolean): void;
|
|
@@ -146,6 +148,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
146
148
|
readonly filter: any;
|
|
147
149
|
readonly usingQuery: boolean;
|
|
148
150
|
} & {
|
|
151
|
+
readonly optionsLoading: boolean;
|
|
149
152
|
readonly options: import("./select-base").TSelectOption[];
|
|
150
153
|
} & {
|
|
151
154
|
setRequired(required: boolean): 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;
|