@devtable/dashboard 13.36.7 → 13.36.9
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-editor/model/filters/index.d.ts +1 -1
- package/dist/dashboard-editor/model/views/index.d.ts +1 -0
- package/dist/dashboard.es.js +3458 -3456
- package/dist/dashboard.umd.js +75 -75
- package/dist/model/render-model/dashboard/content/filters/filters.d.ts +4 -4
- package/dist/model/render-model/dashboard/content/filters/utils.d.ts +1 -1
- package/dist/model/render-model/dashboard/content/views/views.d.ts +1 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Instance } from 'mobx-state-tree';
|
|
2
|
-
import { ContextRecordType, FilterMetaSnapshotOut } from '../../../../../model';
|
|
2
|
+
import { ContextRecordType, FilterMetaSnapshotOut, FilterValuesType } from '../../../../../model';
|
|
3
3
|
export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
4
4
|
current: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
5
5
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -145,7 +145,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
145
145
|
readonly contentModel: any;
|
|
146
146
|
readonly context: any;
|
|
147
147
|
readonly initialValuesDep: string;
|
|
148
|
-
readonly formattedDefaultValues:
|
|
148
|
+
readonly formattedDefaultValues: FilterValuesType;
|
|
149
149
|
readonly firstID: string | undefined;
|
|
150
150
|
findByID(id: string): ({
|
|
151
151
|
id: string;
|
|
@@ -994,7 +994,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
994
994
|
getSelectOption(id: string): any;
|
|
995
995
|
} & {
|
|
996
996
|
setValues(values: Record<string, $TSFixMe>): void;
|
|
997
|
-
patchValues(values:
|
|
997
|
+
patchValues(values: FilterValuesType): void;
|
|
998
998
|
setValueByKey(key: string, value: $TSFixMe): void;
|
|
999
999
|
applyValuesPatch(values: Record<string, any>): void;
|
|
1000
1000
|
getValueByKey(key: string): any;
|
|
@@ -1108,5 +1108,5 @@ export declare function getInitialFiltersConfig(filters: FilterMetaSnapshotOut[]
|
|
|
1108
1108
|
required: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1109
1109
|
}>, any>;
|
|
1110
1110
|
}>[];
|
|
1111
|
-
values:
|
|
1111
|
+
values: FilterValuesType;
|
|
1112
1112
|
};
|
|
@@ -12,5 +12,5 @@ export declare function getStaticDefaultValue(filter: LocalFilterMetaSnapshotOut
|
|
|
12
12
|
export declare function getDefaultValueWithFunc(filter: LocalFilterMetaSnapshotOut, context: ContextRecordType): any;
|
|
13
13
|
export declare function formatDefaultValue(filter: LocalFilterMetaSnapshotOut, context: ContextRecordType): any;
|
|
14
14
|
export declare function getValuesFromFilters(filters: FilterMetaSnapshotOut[], context: ContextRecordType): FilterValuesType;
|
|
15
|
-
export declare function
|
|
15
|
+
export declare function formatInputFilterValues(inputValues: FilterValuesType, currentValues: FilterValuesType): FilterValuesType;
|
|
16
16
|
export {};
|
|
@@ -6935,6 +6935,7 @@ export declare const ViewsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6935
6935
|
id: string;
|
|
6936
6936
|
name: string;
|
|
6937
6937
|
} | null;
|
|
6938
|
+
readonly firstVisibleTabsViewActiveTabStr: string;
|
|
6938
6939
|
} & {
|
|
6939
6940
|
appendToVisibles(viewID: string): void;
|
|
6940
6941
|
rmVisibleViewID(id: string): void;
|