@devtable/dashboard 10.45.0 → 10.45.2
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.
|
@@ -647,8 +647,9 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
|
|
|
647
647
|
setValues(values: Record<string, any>): void;
|
|
648
648
|
setValueByKey(key: string, value: any): void;
|
|
649
649
|
getValueByKey(key: string): any;
|
|
650
|
-
getSchema(ids: string[]): {
|
|
650
|
+
getSchema(ids: string[], raw?: boolean | undefined): {
|
|
651
651
|
filters: {
|
|
652
|
+
visibleInViewsIDs: (import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>) | never[];
|
|
652
653
|
id: string;
|
|
653
654
|
key: string;
|
|
654
655
|
type: DashboardFilterType;
|
|
@@ -656,7 +657,6 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
|
|
|
656
657
|
order: number;
|
|
657
658
|
config: any;
|
|
658
659
|
auto_submit: boolean;
|
|
659
|
-
visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
|
|
660
660
|
}[];
|
|
661
661
|
};
|
|
662
662
|
downloadSchema(ids: string[]): void;
|