@devtable/dashboard 14.41.0 → 14.42.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/api-caller/request.d.ts +4 -4
- package/dist/components/plugins/plugin-context.d.ts +24 -96
- package/dist/components/plugins/viz-components/viz-dashboard-state/editor/dashboard-state-variable-selector.d.ts +9 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/editor/fields.d.ts +5 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/editor/viz-viz-dashboard-state-editor.d.ts +2 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/index.d.ts +2 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/checkbox-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/context-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/date-range-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/item-badge.d.ts +9 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/multi-select-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/selection-table.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/single-select-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/state-item.d.ts +6 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/text-input-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/tree-select-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/item/tree-single-select-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/state-items.d.ts +8 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/render/viz-viz-dashboard-state.d.ts +4 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/translation.d.ts +2 -0
- package/dist/components/plugins/viz-components/viz-dashboard-state/type.d.ts +5 -0
- package/dist/components/widgets/rich-text-editor/dynamic-color-mark/utils.d.ts +2 -2
- package/dist/components/widgets/rich-text-editor/readonly-rich-text-editor.d.ts +2 -2
- package/dist/contexts/panel-context.d.ts +48 -192
- package/dist/dashboard-editor/model/filters/index.d.ts +2 -1
- package/dist/dashboard-editor/model/panels/panel.d.ts +12 -48
- package/dist/dashboard-editor/model/queries/queries.d.ts +26 -104
- package/dist/dashboard-editor/model/queries/query.d.ts +2 -8
- package/dist/dashboard-render/model/types.d.ts +3 -3
- package/dist/dashboard.es.js +9455 -9101
- package/dist/dashboard.umd.js +69 -69
- package/dist/model/meta-model/dashboard/content/filter/widgets/multi-select.d.ts +8 -4
- package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +8 -4
- package/dist/model/meta-model/dashboard/content/types.d.ts +25 -2
- package/dist/model/render-model/dashboard/content/filters/filters.d.ts +6 -4
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +8 -32
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +3 -9
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +18 -72
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +2 -8
- package/dist/stats.html +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/dashboard-state.d.ts +3 -3
- package/dist/utils/http-query.d.ts +2 -2
- package/dist/utils/sql.d.ts +2 -2
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type IObservableArray } from 'mobx';
|
|
2
2
|
import { Instance } from 'mobx-state-tree';
|
|
3
|
-
import { type IFilterBaseSelectConfigInstance, type IFilterConfigModel_SelectOption } from './select-base';
|
|
3
|
+
import { TSelectOption, type IFilterBaseSelectConfigInstance, type IFilterConfigModel_SelectOption } from './select-base';
|
|
4
4
|
import { type DefaultValueMode } from '../types';
|
|
5
5
|
export declare const FilterMultiSelectConfigMeta: import("mobx-state-tree").IModelType<{
|
|
6
6
|
_name: import("mobx-state-tree").ISimpleType<"multi-select">;
|
|
@@ -24,7 +24,7 @@ export declare const FilterMultiSelectConfigMeta: import("mobx-state-tree").IMod
|
|
|
24
24
|
readonly usingQuery: boolean;
|
|
25
25
|
} & {
|
|
26
26
|
readonly optionsLoading: boolean;
|
|
27
|
-
readonly options:
|
|
27
|
+
readonly options: TSelectOption[];
|
|
28
28
|
readonly optionValuesSet: Set<string>;
|
|
29
29
|
} & {
|
|
30
30
|
setRequired(required: boolean): void;
|
|
@@ -57,6 +57,7 @@ export declare const FilterMultiSelectConfigMeta: import("mobx-state-tree").IMod
|
|
|
57
57
|
default_selection_count: number;
|
|
58
58
|
};
|
|
59
59
|
readonly defaultSelection: any;
|
|
60
|
+
optionsByValues(value: any): TSelectOption[];
|
|
60
61
|
initialSelection(value: string[] | null): any;
|
|
61
62
|
truthy(value: any): boolean;
|
|
62
63
|
} & {
|
|
@@ -84,6 +85,7 @@ export interface IFilterMultiSelectConfig extends IFilterBaseSelectConfigInstanc
|
|
|
84
85
|
default_selection_count: number;
|
|
85
86
|
};
|
|
86
87
|
readonly defaultSelection: string[];
|
|
88
|
+
optionsByValues(value: any): TSelectOption[];
|
|
87
89
|
initialSelection(value: string[] | null): string[];
|
|
88
90
|
truthy(value: unknown): boolean;
|
|
89
91
|
setDefaultValue(default_value: string[]): void;
|
|
@@ -119,7 +121,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
119
121
|
readonly usingQuery: boolean;
|
|
120
122
|
} & {
|
|
121
123
|
readonly optionsLoading: boolean;
|
|
122
|
-
readonly options:
|
|
124
|
+
readonly options: TSelectOption[];
|
|
123
125
|
readonly optionValuesSet: Set<string>;
|
|
124
126
|
} & {
|
|
125
127
|
setRequired(required: boolean): void;
|
|
@@ -152,6 +154,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
152
154
|
default_selection_count: number;
|
|
153
155
|
};
|
|
154
156
|
readonly defaultSelection: any;
|
|
157
|
+
optionsByValues(value: any): TSelectOption[];
|
|
155
158
|
initialSelection(value: string[] | null): any;
|
|
156
159
|
truthy(value: any): boolean;
|
|
157
160
|
} & {
|
|
@@ -183,7 +186,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
183
186
|
readonly usingQuery: boolean;
|
|
184
187
|
} & {
|
|
185
188
|
readonly optionsLoading: boolean;
|
|
186
|
-
readonly options:
|
|
189
|
+
readonly options: TSelectOption[];
|
|
187
190
|
readonly optionValuesSet: Set<string>;
|
|
188
191
|
} & {
|
|
189
192
|
setRequired(required: boolean): void;
|
|
@@ -216,6 +219,7 @@ export declare const createFilterMultiSelectConfig: () => {
|
|
|
216
219
|
default_selection_count: number;
|
|
217
220
|
};
|
|
218
221
|
readonly defaultSelection: any;
|
|
222
|
+
optionsByValues(value: any): TSelectOption[];
|
|
219
223
|
initialSelection(value: string[] | null): any;
|
|
220
224
|
truthy(value: any): boolean;
|
|
221
225
|
} & {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type IObservableArray } from 'mobx';
|
|
2
2
|
import { Instance } from 'mobx-state-tree';
|
|
3
3
|
import { type IFilterBaseTreeSelectConfigInstance } from './tree-select-base';
|
|
4
|
-
import type { IFilterConfigModel_SelectOption } from './select-base';
|
|
4
|
+
import type { IFilterConfigModel_SelectOption, TSelectOption } from './select-base';
|
|
5
5
|
export declare const FilterTreeSelectConfigMeta: import("mobx-state-tree").IModelType<{
|
|
6
6
|
_name: import("mobx-state-tree").ISimpleType<"tree-select">;
|
|
7
7
|
default_value: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
@@ -26,7 +26,7 @@ export declare const FilterTreeSelectConfigMeta: import("mobx-state-tree").IMode
|
|
|
26
26
|
readonly usingQuery: boolean;
|
|
27
27
|
} & {
|
|
28
28
|
readonly optionsLoading: boolean;
|
|
29
|
-
readonly options:
|
|
29
|
+
readonly options: TSelectOption[];
|
|
30
30
|
readonly optionValuesSet: Set<string>;
|
|
31
31
|
} & {
|
|
32
32
|
setRequired(required: boolean): void;
|
|
@@ -67,6 +67,7 @@ export declare const FilterTreeSelectConfigMeta: import("mobx-state-tree").IMode
|
|
|
67
67
|
default_selection_count: number;
|
|
68
68
|
};
|
|
69
69
|
readonly defaultSelection: any[];
|
|
70
|
+
optionsByValues(value: any): TSelectOption[];
|
|
70
71
|
valueObjects(value: string[]): any;
|
|
71
72
|
initialSelection(value: string[] | null): any;
|
|
72
73
|
truthy(value: any): boolean;
|
|
@@ -95,6 +96,7 @@ export interface IFilterTreeSelectConfig extends IFilterBaseTreeSelectConfigInst
|
|
|
95
96
|
treeCheckStrictly: boolean;
|
|
96
97
|
readonly json: IFilterTreeSelectConfigJson;
|
|
97
98
|
readonly defaultSelection: string[];
|
|
99
|
+
optionsByValues(value: any): TSelectOption[];
|
|
98
100
|
valueObjects(value: string[]): unknown[];
|
|
99
101
|
initialSelection(value: string[] | null): string[];
|
|
100
102
|
truthy(value: unknown): boolean;
|
|
@@ -132,7 +134,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
132
134
|
readonly usingQuery: boolean;
|
|
133
135
|
} & {
|
|
134
136
|
readonly optionsLoading: boolean;
|
|
135
|
-
readonly options:
|
|
137
|
+
readonly options: TSelectOption[];
|
|
136
138
|
readonly optionValuesSet: Set<string>;
|
|
137
139
|
} & {
|
|
138
140
|
setRequired(required: boolean): void;
|
|
@@ -173,6 +175,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
173
175
|
default_selection_count: number;
|
|
174
176
|
};
|
|
175
177
|
readonly defaultSelection: any[];
|
|
178
|
+
optionsByValues(value: any): TSelectOption[];
|
|
176
179
|
valueObjects(value: string[]): any;
|
|
177
180
|
initialSelection(value: string[] | null): any;
|
|
178
181
|
truthy(value: any): boolean;
|
|
@@ -206,7 +209,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
206
209
|
readonly usingQuery: boolean;
|
|
207
210
|
} & {
|
|
208
211
|
readonly optionsLoading: boolean;
|
|
209
|
-
readonly options:
|
|
212
|
+
readonly options: TSelectOption[];
|
|
210
213
|
readonly optionValuesSet: Set<string>;
|
|
211
214
|
} & {
|
|
212
215
|
setRequired(required: boolean): void;
|
|
@@ -247,6 +250,7 @@ export declare const createFilterTreeSelectConfig: () => {
|
|
|
247
250
|
default_selection_count: number;
|
|
248
251
|
};
|
|
249
252
|
readonly defaultSelection: any[];
|
|
253
|
+
optionsByValues(value: any): TSelectOption[];
|
|
250
254
|
valueObjects(value: string[]): any;
|
|
251
255
|
initialSelection(value: string[] | null): any;
|
|
252
256
|
truthy(value: any): boolean;
|
|
@@ -1,13 +1,36 @@
|
|
|
1
|
-
import { AnyObject } from '../../../../types';
|
|
1
|
+
import { AnyObject, DashboardFilterType } from '../../../../types';
|
|
2
|
+
import { FilterMetaInstance } from './filter';
|
|
3
|
+
import { ComboboxItem, ComboboxItemGroup } from '@mantine/core';
|
|
2
4
|
export type TPayloadForSQL = {
|
|
3
5
|
context: AnyObject;
|
|
4
6
|
sql_snippets: AnyObject;
|
|
5
7
|
global_sql_snippets: AnyObject;
|
|
6
8
|
filters: AnyObject;
|
|
7
9
|
};
|
|
8
|
-
export type
|
|
10
|
+
export type DashboardStateVariableOptions = {
|
|
11
|
+
optionGroups: Array<ComboboxItemGroup<ComboboxItem>>;
|
|
12
|
+
validValues: Set<string>;
|
|
13
|
+
};
|
|
14
|
+
export type TDashboardStateValues = {
|
|
9
15
|
filters: AnyObject;
|
|
10
16
|
context: AnyObject;
|
|
11
17
|
};
|
|
18
|
+
export type TDashboardStateItem_Context = {
|
|
19
|
+
type: 'context';
|
|
20
|
+
key: string;
|
|
21
|
+
value: any;
|
|
22
|
+
};
|
|
23
|
+
export type TDashboardStateItem_Filter = {
|
|
24
|
+
type: DashboardFilterType;
|
|
25
|
+
key: string;
|
|
26
|
+
model: FilterMetaInstance;
|
|
27
|
+
label: string;
|
|
28
|
+
value: any;
|
|
29
|
+
};
|
|
30
|
+
export type TDashboardStateItem = TDashboardStateItem_Context | TDashboardStateItem_Filter;
|
|
31
|
+
export type TDashboardState = {
|
|
32
|
+
filters: Record<string, TDashboardStateItem>;
|
|
33
|
+
context: Record<string, TDashboardStateItem>;
|
|
34
|
+
};
|
|
12
35
|
export type TPayloadForSQLSnippet = Omit<TPayloadForSQL, 'sql_snippets' | 'global_sql_snippets'>;
|
|
13
36
|
export type TPayloadForViz = Omit<TPayloadForSQL, 'sql_snippets' | 'global_sql_snippets'>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Instance } from 'mobx-state-tree';
|
|
2
1
|
import { type IObservableArray } from 'mobx';
|
|
3
|
-
import {
|
|
4
|
-
import type { TSelectOption } from '../../../../../model/meta-model/dashboard/content/filter/widgets/select-base';
|
|
5
|
-
import { IContentRenderModel } from '../../../../../dashboard-render';
|
|
2
|
+
import { Instance } from 'mobx-state-tree';
|
|
6
3
|
import { FilterModelSnapshotOut } from '../../../../../dashboard-editor';
|
|
4
|
+
import { IContentRenderModel } from '../../../../../dashboard-render';
|
|
5
|
+
import { ContextRecordType, FilterValuesType, TDashboardStateItem, type DashboardFilterType, type IFilterMeta } from '../../../../../model';
|
|
6
|
+
import type { TSelectOption } from '../../../../../model/meta-model/dashboard/content/filter/widgets/select-base';
|
|
7
7
|
export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
8
8
|
current: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
9
9
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -149,6 +149,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
149
149
|
readonly valuesString: string;
|
|
150
150
|
readonly filter: any;
|
|
151
151
|
readonly keysToTypes: Record<string, DashboardFilterType>;
|
|
152
|
+
keyStateItemMap(values: Record<string, any>): Record<string, TDashboardStateItem>;
|
|
152
153
|
readonly valuesForPayload: Record<string, any>;
|
|
153
154
|
readonly contentModel: any;
|
|
154
155
|
readonly context: any;
|
|
@@ -1162,6 +1163,7 @@ export interface IFiltersRenderModel {
|
|
|
1162
1163
|
findByKey(key: string): IFilterMeta | undefined;
|
|
1163
1164
|
findByIDSet(idset: Set<string>): IFilterMeta[];
|
|
1164
1165
|
readonly inOrder: IFilterMeta[];
|
|
1166
|
+
keyStateItemMap(values: Record<string, any>): Record<string, TDashboardStateItem>;
|
|
1165
1167
|
visibleInView(viewID: string): IFilterMeta[];
|
|
1166
1168
|
readonly firstFilterValueKey: string;
|
|
1167
1169
|
getSelectOption(id: string): TSelectOption | null | undefined;
|
|
@@ -3442,14 +3442,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3442
3442
|
} & {
|
|
3443
3443
|
readonly rootModel: any;
|
|
3444
3444
|
readonly contentModel: any;
|
|
3445
|
-
readonly conditionOptions:
|
|
3446
|
-
|
|
3447
|
-
validValues: Set<string>;
|
|
3448
|
-
};
|
|
3449
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
3450
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3451
|
-
validValues: Set<string>;
|
|
3452
|
-
};
|
|
3445
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3446
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3453
3447
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
3454
3448
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3455
3449
|
validValues: Set<string>;
|
|
@@ -3788,14 +3782,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3788
3782
|
} & {
|
|
3789
3783
|
readonly rootModel: any;
|
|
3790
3784
|
readonly contentModel: any;
|
|
3791
|
-
readonly conditionOptions:
|
|
3792
|
-
|
|
3793
|
-
validValues: Set<string>;
|
|
3794
|
-
};
|
|
3795
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
3796
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3797
|
-
validValues: Set<string>;
|
|
3798
|
-
};
|
|
3785
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3786
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3799
3787
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
3800
3788
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3801
3789
|
validValues: Set<string>;
|
|
@@ -4885,14 +4873,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4885
4873
|
} & {
|
|
4886
4874
|
readonly rootModel: any;
|
|
4887
4875
|
readonly contentModel: any;
|
|
4888
|
-
readonly conditionOptions:
|
|
4889
|
-
|
|
4890
|
-
validValues: Set<string>;
|
|
4891
|
-
};
|
|
4892
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
4893
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4894
|
-
validValues: Set<string>;
|
|
4895
|
-
};
|
|
4876
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4877
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4896
4878
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
4897
4879
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4898
4880
|
validValues: Set<string>;
|
|
@@ -5231,14 +5213,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5231
5213
|
} & {
|
|
5232
5214
|
readonly rootModel: any;
|
|
5233
5215
|
readonly contentModel: any;
|
|
5234
|
-
readonly conditionOptions:
|
|
5235
|
-
|
|
5236
|
-
validValues: Set<string>;
|
|
5237
|
-
};
|
|
5238
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
5239
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
5240
|
-
validValues: Set<string>;
|
|
5241
|
-
};
|
|
5216
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
5217
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
5242
5218
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
5243
5219
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
5244
5220
|
validValues: Set<string>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComboboxItem, ComboboxItemGroup } from '@mantine/core';
|
|
2
2
|
import { Instance } from 'mobx-state-tree';
|
|
3
3
|
import { IContentRenderModel } from '../../../../../dashboard-render';
|
|
4
|
-
import { DataSourceType, MericoMetricType, type IQueryMeta } from '../../../../../model';
|
|
4
|
+
import { DashboardStateVariableOptions, DataSourceType, MericoMetricType, type IQueryMeta } from '../../../../../model';
|
|
5
5
|
import { DependencyInfo } from '../../../../../utils';
|
|
6
6
|
type MetricQueryPayload = {
|
|
7
7
|
id: string;
|
|
@@ -287,14 +287,8 @@ export declare const MuteQueryModel: import("mobx-state-tree").IModelType<{
|
|
|
287
287
|
} & {
|
|
288
288
|
readonly rootModel: any;
|
|
289
289
|
readonly contentModel: any;
|
|
290
|
-
readonly conditionOptions:
|
|
291
|
-
|
|
292
|
-
validValues: Set<string>;
|
|
293
|
-
};
|
|
294
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
295
|
-
optionGroups: Array<ComboboxItemGroup<ComboboxItem>>;
|
|
296
|
-
validValues: Set<string>;
|
|
297
|
-
};
|
|
290
|
+
readonly conditionOptions: DashboardStateVariableOptions;
|
|
291
|
+
getConditionOptionsWithInvalidValue(value: string | null): DashboardStateVariableOptions;
|
|
298
292
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
299
293
|
optionGroups: Array<ComboboxItemGroup<ComboboxItem>>;
|
|
300
294
|
validValues: Set<string>;
|
|
@@ -272,14 +272,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
272
272
|
} & {
|
|
273
273
|
readonly rootModel: any;
|
|
274
274
|
readonly contentModel: any;
|
|
275
|
-
readonly conditionOptions:
|
|
276
|
-
|
|
277
|
-
validValues: Set<string>;
|
|
278
|
-
};
|
|
279
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
280
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
281
|
-
validValues: Set<string>;
|
|
282
|
-
};
|
|
275
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
276
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
283
277
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
284
278
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
285
279
|
validValues: Set<string>;
|
|
@@ -1372,14 +1366,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1372
1366
|
} & {
|
|
1373
1367
|
readonly rootModel: any;
|
|
1374
1368
|
readonly contentModel: any;
|
|
1375
|
-
readonly conditionOptions:
|
|
1376
|
-
|
|
1377
|
-
validValues: Set<string>;
|
|
1378
|
-
};
|
|
1379
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
1380
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
1381
|
-
validValues: Set<string>;
|
|
1382
|
-
};
|
|
1369
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
1370
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
1383
1371
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
1384
1372
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
1385
1373
|
validValues: Set<string>;
|
|
@@ -1718,14 +1706,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1718
1706
|
} & {
|
|
1719
1707
|
readonly rootModel: any;
|
|
1720
1708
|
readonly contentModel: any;
|
|
1721
|
-
readonly conditionOptions:
|
|
1722
|
-
|
|
1723
|
-
validValues: Set<string>;
|
|
1724
|
-
};
|
|
1725
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
1726
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
1727
|
-
validValues: Set<string>;
|
|
1728
|
-
};
|
|
1709
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
1710
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
1729
1711
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
1730
1712
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
1731
1713
|
validValues: Set<string>;
|
|
@@ -2815,14 +2797,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2815
2797
|
} & {
|
|
2816
2798
|
readonly rootModel: any;
|
|
2817
2799
|
readonly contentModel: any;
|
|
2818
|
-
readonly conditionOptions:
|
|
2819
|
-
|
|
2820
|
-
validValues: Set<string>;
|
|
2821
|
-
};
|
|
2822
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
2823
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
2824
|
-
validValues: Set<string>;
|
|
2825
|
-
};
|
|
2800
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
2801
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
2826
2802
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
2827
2803
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
2828
2804
|
validValues: Set<string>;
|
|
@@ -3161,14 +3137,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3161
3137
|
} & {
|
|
3162
3138
|
readonly rootModel: any;
|
|
3163
3139
|
readonly contentModel: any;
|
|
3164
|
-
readonly conditionOptions:
|
|
3165
|
-
|
|
3166
|
-
validValues: Set<string>;
|
|
3167
|
-
};
|
|
3168
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
3169
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3170
|
-
validValues: Set<string>;
|
|
3171
|
-
};
|
|
3140
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3141
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
3172
3142
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
3173
3143
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
3174
3144
|
validValues: Set<string>;
|
|
@@ -4307,14 +4277,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4307
4277
|
} & {
|
|
4308
4278
|
readonly rootModel: any;
|
|
4309
4279
|
readonly contentModel: any;
|
|
4310
|
-
readonly conditionOptions:
|
|
4311
|
-
|
|
4312
|
-
validValues: Set<string>;
|
|
4313
|
-
};
|
|
4314
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
4315
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4316
|
-
validValues: Set<string>;
|
|
4317
|
-
};
|
|
4280
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4281
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4318
4282
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
4319
4283
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4320
4284
|
validValues: Set<string>;
|
|
@@ -4653,14 +4617,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4653
4617
|
} & {
|
|
4654
4618
|
readonly rootModel: any;
|
|
4655
4619
|
readonly contentModel: any;
|
|
4656
|
-
readonly conditionOptions:
|
|
4657
|
-
|
|
4658
|
-
validValues: Set<string>;
|
|
4659
|
-
};
|
|
4660
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
4661
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4662
|
-
validValues: Set<string>;
|
|
4663
|
-
};
|
|
4620
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4621
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
4664
4622
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
4665
4623
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
4666
4624
|
validValues: Set<string>;
|
|
@@ -5750,14 +5708,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5750
5708
|
} & {
|
|
5751
5709
|
readonly rootModel: any;
|
|
5752
5710
|
readonly contentModel: any;
|
|
5753
|
-
readonly conditionOptions:
|
|
5754
|
-
|
|
5755
|
-
validValues: Set<string>;
|
|
5756
|
-
};
|
|
5757
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
5758
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
5759
|
-
validValues: Set<string>;
|
|
5760
|
-
};
|
|
5711
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
5712
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
5761
5713
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
5762
5714
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
5763
5715
|
validValues: Set<string>;
|
|
@@ -6096,14 +6048,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6096
6048
|
} & {
|
|
6097
6049
|
readonly rootModel: any;
|
|
6098
6050
|
readonly contentModel: any;
|
|
6099
|
-
readonly conditionOptions:
|
|
6100
|
-
|
|
6101
|
-
validValues: Set<string>;
|
|
6102
|
-
};
|
|
6103
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
6104
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
6105
|
-
validValues: Set<string>;
|
|
6106
|
-
};
|
|
6051
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
6052
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
6107
6053
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
6108
6054
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
6109
6055
|
validValues: Set<string>;
|
|
@@ -273,14 +273,8 @@ export declare const QueryRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
273
273
|
} & {
|
|
274
274
|
readonly rootModel: any;
|
|
275
275
|
readonly contentModel: any;
|
|
276
|
-
readonly conditionOptions:
|
|
277
|
-
|
|
278
|
-
validValues: Set<string>;
|
|
279
|
-
};
|
|
280
|
-
getConditionOptionsWithInvalidValue(value: string | null): {
|
|
281
|
-
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
282
|
-
validValues: Set<string>;
|
|
283
|
-
};
|
|
276
|
+
readonly conditionOptions: import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
277
|
+
getConditionOptionsWithInvalidValue(value: string | null): import('../../../../../model/meta-model').DashboardStateVariableOptions;
|
|
284
278
|
readonly conditionOptionsWithInvalidRunbys: {
|
|
285
279
|
optionGroups: import("@mantine/core").ComboboxItemGroup<import("@mantine/core").ComboboxItem>[];
|
|
286
280
|
validValues: Set<string>;
|