@devtable/dashboard 11.8.0 → 11.9.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.
@@ -715,6 +715,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
715
715
  getSelectOption(id: string): any;
716
716
  } & {
717
717
  setValues(values: Record<string, $TSFixMe>): void;
718
+ patchValues(values: Record<string, any>): void;
718
719
  setValueByKey(key: string, value: $TSFixMe): void;
719
720
  getValueByKey(key: string): any;
720
721
  getSchema(ids: string[], raw?: boolean): {
@@ -734,7 +735,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
734
735
  downloadSchema(ids: string[]): void;
735
736
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
736
737
  export type FiltersRenderModelInstance = Instance<typeof FiltersRenderModel>;
737
- export declare function getInitialFiltersConfig(filters: FilterMetaSnapshotOut[], context: ContextRecordType, mock_context: ContextRecordType): {
738
+ export declare function getInitialFiltersConfig(filters: FilterMetaSnapshotOut[], context: ContextRecordType, mock_context: ContextRecordType, filterValues: Record<string, any>): {
738
739
  current: import("mobx-state-tree").ModelSnapshotType<{
739
740
  id: import("mobx-state-tree").ISimpleType<string>;
740
741
  key: import("mobx-state-tree").ISimpleType<string>;
@@ -809,5 +810,5 @@ export declare function getInitialFiltersConfig(filters: FilterMetaSnapshotOut[]
809
810
  required: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
810
811
  }>, any>;
811
812
  }>[];
812
- values: import('../../../../../model').FilterValuesType;
813
+ values: NonNullable<import('../../../../../model').FilterValuesType & Record<string, any>>;
813
814
  };