@devtable/dashboard 6.42.0 → 6.44.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 +4153 -4089
- package/dist/dashboard.umd.js +44 -44
- package/dist/model/filters/filter/multi-select.d.ts +15 -9
- package/dist/model/filters/filter/select-base.d.ts +5 -3
- package/dist/model/filters/filter/select.d.ts +15 -9
- package/dist/model/filters/filter/tree-select.d.ts +15 -9
- package/dist/style.css +1 -1
- package/package.json +2 -3
- package/dist/main/use-sticky-area-style.d.ts +0 -1
|
@@ -12,8 +12,10 @@ export declare const FilterConfigModel_MultiSelect: import("mobx-state-tree").IM
|
|
|
12
12
|
setValue(value: string): void;
|
|
13
13
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
14
14
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
15
|
-
|
|
15
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
16
16
|
}, {
|
|
17
|
+
readonly usingQuery: boolean;
|
|
18
|
+
} & {
|
|
17
19
|
readonly options: any;
|
|
18
20
|
} & {
|
|
19
21
|
addStaticOption(option: {
|
|
@@ -21,8 +23,8 @@ export declare const FilterConfigModel_MultiSelect: import("mobx-state-tree").IM
|
|
|
21
23
|
value: string;
|
|
22
24
|
}): void;
|
|
23
25
|
removeStaticOption(index: number): void;
|
|
24
|
-
|
|
25
|
-
setOptionsQueryID(id: string): void;
|
|
26
|
+
setDefaultSelectionCount(v: number): void;
|
|
27
|
+
setOptionsQueryID(id: string | null): void;
|
|
26
28
|
} & {
|
|
27
29
|
setDefaultValue(default_value: string[]): void;
|
|
28
30
|
setMinWidth(v: string): void;
|
|
@@ -46,8 +48,10 @@ export declare const createFilterConfig_MultiSelect: () => {
|
|
|
46
48
|
setValue(value: string): void;
|
|
47
49
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
48
50
|
options_query_id: string;
|
|
49
|
-
|
|
51
|
+
default_selection_count: number;
|
|
50
52
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
53
|
+
readonly usingQuery: boolean;
|
|
54
|
+
} & {
|
|
51
55
|
readonly options: any;
|
|
52
56
|
} & {
|
|
53
57
|
addStaticOption(option: {
|
|
@@ -55,8 +59,8 @@ export declare const createFilterConfig_MultiSelect: () => {
|
|
|
55
59
|
value: string;
|
|
56
60
|
}): void;
|
|
57
61
|
removeStaticOption(index: number): void;
|
|
58
|
-
|
|
59
|
-
setOptionsQueryID(id: string): void;
|
|
62
|
+
setDefaultSelectionCount(v: number): void;
|
|
63
|
+
setOptionsQueryID(id: string | null): void;
|
|
60
64
|
} & {
|
|
61
65
|
setDefaultValue(default_value: string[]): void;
|
|
62
66
|
setMinWidth(v: string): void;
|
|
@@ -73,8 +77,10 @@ export declare const createFilterConfig_MultiSelect: () => {
|
|
|
73
77
|
setValue(value: string): void;
|
|
74
78
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
75
79
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
76
|
-
|
|
80
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
77
81
|
}, {
|
|
82
|
+
readonly usingQuery: boolean;
|
|
83
|
+
} & {
|
|
78
84
|
readonly options: any;
|
|
79
85
|
} & {
|
|
80
86
|
addStaticOption(option: {
|
|
@@ -82,8 +88,8 @@ export declare const createFilterConfig_MultiSelect: () => {
|
|
|
82
88
|
value: string;
|
|
83
89
|
}): void;
|
|
84
90
|
removeStaticOption(index: number): void;
|
|
85
|
-
|
|
86
|
-
setOptionsQueryID(id: string): void;
|
|
91
|
+
setDefaultSelectionCount(v: number): void;
|
|
92
|
+
setOptionsQueryID(id: string | null): void;
|
|
87
93
|
} & {
|
|
88
94
|
setDefaultValue(default_value: string[]): void;
|
|
89
95
|
setMinWidth(v: string): void;
|
|
@@ -16,8 +16,10 @@ export declare const FilterConfigModel_BaseSelect: import("mobx-state-tree").IMo
|
|
|
16
16
|
setValue(value: string): void;
|
|
17
17
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
18
18
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19
|
-
|
|
19
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
20
20
|
}, {
|
|
21
|
+
readonly usingQuery: boolean;
|
|
22
|
+
} & {
|
|
21
23
|
readonly options: any;
|
|
22
24
|
} & {
|
|
23
25
|
addStaticOption(option: {
|
|
@@ -25,7 +27,7 @@ export declare const FilterConfigModel_BaseSelect: import("mobx-state-tree").IMo
|
|
|
25
27
|
value: string;
|
|
26
28
|
}): void;
|
|
27
29
|
removeStaticOption(index: number): void;
|
|
28
|
-
|
|
29
|
-
setOptionsQueryID(id: string): void;
|
|
30
|
+
setDefaultSelectionCount(v: number): void;
|
|
31
|
+
setOptionsQueryID(id: string | null): void;
|
|
30
32
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
31
33
|
export declare type IFilterConfig_BaseSelect = Instance<typeof FilterConfigModel_BaseSelect>;
|
|
@@ -13,8 +13,10 @@ export declare const FilterConfigModel_Select: import("mobx-state-tree").IModelT
|
|
|
13
13
|
setValue(value: string): void;
|
|
14
14
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
15
15
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
16
|
-
|
|
16
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
17
17
|
}, {
|
|
18
|
+
readonly usingQuery: boolean;
|
|
19
|
+
} & {
|
|
18
20
|
readonly options: any;
|
|
19
21
|
} & {
|
|
20
22
|
addStaticOption(option: {
|
|
@@ -22,8 +24,8 @@ export declare const FilterConfigModel_Select: import("mobx-state-tree").IModelT
|
|
|
22
24
|
value: string;
|
|
23
25
|
}): void;
|
|
24
26
|
removeStaticOption(index: number): void;
|
|
25
|
-
|
|
26
|
-
setOptionsQueryID(id: string): void;
|
|
27
|
+
setDefaultSelectionCount(v: number): void;
|
|
28
|
+
setOptionsQueryID(id: string | null): void;
|
|
27
29
|
} & {
|
|
28
30
|
setRequired(required: boolean): void;
|
|
29
31
|
setDefaultValue(default_value: string): void;
|
|
@@ -49,8 +51,10 @@ export declare const createFilterConfig_Select: () => {
|
|
|
49
51
|
setValue(value: string): void;
|
|
50
52
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
51
53
|
options_query_id: string;
|
|
52
|
-
|
|
54
|
+
default_selection_count: number;
|
|
53
55
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
56
|
+
readonly usingQuery: boolean;
|
|
57
|
+
} & {
|
|
54
58
|
readonly options: any;
|
|
55
59
|
} & {
|
|
56
60
|
addStaticOption(option: {
|
|
@@ -58,8 +62,8 @@ export declare const createFilterConfig_Select: () => {
|
|
|
58
62
|
value: string;
|
|
59
63
|
}): void;
|
|
60
64
|
removeStaticOption(index: number): void;
|
|
61
|
-
|
|
62
|
-
setOptionsQueryID(id: string): void;
|
|
65
|
+
setDefaultSelectionCount(v: number): void;
|
|
66
|
+
setOptionsQueryID(id: string | null): void;
|
|
63
67
|
} & {
|
|
64
68
|
setRequired(required: boolean): void;
|
|
65
69
|
setDefaultValue(default_value: string): void;
|
|
@@ -78,8 +82,10 @@ export declare const createFilterConfig_Select: () => {
|
|
|
78
82
|
setValue(value: string): void;
|
|
79
83
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
80
84
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
81
|
-
|
|
85
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
82
86
|
}, {
|
|
87
|
+
readonly usingQuery: boolean;
|
|
88
|
+
} & {
|
|
83
89
|
readonly options: any;
|
|
84
90
|
} & {
|
|
85
91
|
addStaticOption(option: {
|
|
@@ -87,8 +93,8 @@ export declare const createFilterConfig_Select: () => {
|
|
|
87
93
|
value: string;
|
|
88
94
|
}): void;
|
|
89
95
|
removeStaticOption(index: number): void;
|
|
90
|
-
|
|
91
|
-
setOptionsQueryID(id: string): void;
|
|
96
|
+
setDefaultSelectionCount(v: number): void;
|
|
97
|
+
setOptionsQueryID(id: string | null): void;
|
|
92
98
|
} & {
|
|
93
99
|
setRequired(required: boolean): void;
|
|
94
100
|
setDefaultValue(default_value: string): void;
|
|
@@ -12,8 +12,10 @@ export declare const FilterConfigModel_TreeSelect: import("mobx-state-tree").IMo
|
|
|
12
12
|
setValue(value: string): void;
|
|
13
13
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
14
14
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
15
|
-
|
|
15
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
16
16
|
}, {
|
|
17
|
+
readonly usingQuery: boolean;
|
|
18
|
+
} & {
|
|
17
19
|
readonly options: any;
|
|
18
20
|
} & {
|
|
19
21
|
addStaticOption(option: {
|
|
@@ -21,8 +23,8 @@ export declare const FilterConfigModel_TreeSelect: import("mobx-state-tree").IMo
|
|
|
21
23
|
value: string;
|
|
22
24
|
}): void;
|
|
23
25
|
removeStaticOption(index: number): void;
|
|
24
|
-
|
|
25
|
-
setOptionsQueryID(id: string): void;
|
|
26
|
+
setDefaultSelectionCount(v: number): void;
|
|
27
|
+
setOptionsQueryID(id: string | null): void;
|
|
26
28
|
} & {
|
|
27
29
|
setDefaultValue(default_value: string[]): void;
|
|
28
30
|
setMinWidth(v: string): void;
|
|
@@ -46,8 +48,10 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
46
48
|
setValue(value: string): void;
|
|
47
49
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
48
50
|
options_query_id: string;
|
|
49
|
-
|
|
51
|
+
default_selection_count: number;
|
|
50
52
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
53
|
+
readonly usingQuery: boolean;
|
|
54
|
+
} & {
|
|
51
55
|
readonly options: any;
|
|
52
56
|
} & {
|
|
53
57
|
addStaticOption(option: {
|
|
@@ -55,8 +59,8 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
55
59
|
value: string;
|
|
56
60
|
}): void;
|
|
57
61
|
removeStaticOption(index: number): void;
|
|
58
|
-
|
|
59
|
-
setOptionsQueryID(id: string): void;
|
|
62
|
+
setDefaultSelectionCount(v: number): void;
|
|
63
|
+
setOptionsQueryID(id: string | null): void;
|
|
60
64
|
} & {
|
|
61
65
|
setDefaultValue(default_value: string[]): void;
|
|
62
66
|
setMinWidth(v: string): void;
|
|
@@ -73,8 +77,10 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
73
77
|
setValue(value: string): void;
|
|
74
78
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
75
79
|
options_query_id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
76
|
-
|
|
80
|
+
default_selection_count: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
77
81
|
}, {
|
|
82
|
+
readonly usingQuery: boolean;
|
|
83
|
+
} & {
|
|
78
84
|
readonly options: any;
|
|
79
85
|
} & {
|
|
80
86
|
addStaticOption(option: {
|
|
@@ -82,8 +88,8 @@ export declare const createFilterConfig_TreeSelect: () => {
|
|
|
82
88
|
value: string;
|
|
83
89
|
}): void;
|
|
84
90
|
removeStaticOption(index: number): void;
|
|
85
|
-
|
|
86
|
-
setOptionsQueryID(id: string): void;
|
|
91
|
+
setDefaultSelectionCount(v: number): void;
|
|
92
|
+
setOptionsQueryID(id: string | null): void;
|
|
87
93
|
} & {
|
|
88
94
|
setDefaultValue(default_value: string[]): void;
|
|
89
95
|
setMinWidth(v: string): void;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.filter-settings-tabs{width:100%;height:100%}.filter-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.filter-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.filter-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.panel-root{height:100%;width:100%;max-width:100%;background:transparent;border-radius:4px;position:relative}.panel-settings-tabs{width:100%;height:100%}.panel-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.panel-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.panel-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.viz-root{width:100%;overflow:scroll;flex-grow:1;background-color:#fff}.panel-dropdown-target{text-align:center;transition:background-color .3s ease}.panel-dropdown-target:hover{cursor:pointer;background-color:#6464640d}.react-grid-item{padding:0}.remove-panel{position:absolute;right:2px;top:0;cursor:pointer}.code-textarea textarea{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.dashboard-root{overflow:scroll;padding:0
|
|
1
|
+
.filter-settings-tabs{width:100%;height:100%}.filter-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.filter-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.filter-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.panel-root{height:100%;width:100%;max-width:100%;background:transparent;border-radius:4px;position:relative}.panel-settings-tabs{width:100%;height:100%}.panel-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.panel-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.panel-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.viz-root{width:100%;overflow:scroll;flex-grow:1;background-color:#fff}.panel-dropdown-target{text-align:center;transition:background-color .3s ease}.panel-dropdown-target:hover{cursor:pointer;background-color:#6464640d}.react-grid-item{padding:0}.remove-panel{position:absolute;right:2px;top:0;cursor:pointer}.code-textarea textarea{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.dashboard-root{overflow:scroll;padding:0 0 10px;height:100%}.dashboard-sticky-area{z-index:100;background:white;margin:0;padding:0 10px}*:not([data-enable-scrollbar])::-webkit-scrollbar{width:0!important;height:0!important}*:not([data-enable-scrollbar]){overflow:-moz-scrollbars-none;-ms-overflow-style:none}.minimal-monaco-editor{border-radius:4px;overflow:hidden;background-color:#1e1e1e;padding-top:14px}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devtable/dashboard",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.44.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
"file-saver": "2.0.5",
|
|
37
37
|
"performant-array-to-tree": "1.11.0",
|
|
38
38
|
"popmotion": "^11.0.3",
|
|
39
|
-
"rc-tree-select": "5.5.5"
|
|
40
|
-
"stickybits": "3.7.11"
|
|
39
|
+
"rc-tree-select": "5.5.5"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@mantine/core": "5.9.5",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function useStickyAreaStyle(): void;
|