@factorialco/f0-react 1.201.0 → 1.201.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.
@@ -1326,6 +1326,8 @@ export declare type DataSource<R extends RecordType, Filters extends FiltersDefi
1326
1326
  currentFilters: FiltersState<Filters>;
1327
1327
  /** Function to update the current filters state */
1328
1328
  setCurrentFilters: React.Dispatch<React.SetStateAction<FiltersState<Filters>>>;
1329
+ /** Whether presets are currently loading */
1330
+ presetsLoading?: boolean;
1329
1331
  /** Current state of applied sortings */
1330
1332
  currentSortings: SortingsState<Sortings>;
1331
1333
  /** Function to update the current sortings state */
@@ -1363,6 +1365,8 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
1363
1365
  currentFilters?: FiltersState<Filters>;
1364
1366
  /** Predefined filter configurations that can be applied */
1365
1367
  presets?: PresetsDefinition<Filters>;
1368
+ /** Whether presets are currently loading */
1369
+ presetsLoading?: boolean;
1366
1370
  /** Search configuration */
1367
1371
  search?: SearchOptions;
1368
1372
  /** Available sorting fields. If not provided, sorting is not allowed. */
@@ -3172,6 +3176,8 @@ declare type OneFilterPickerRootProps<Definition extends FiltersDefinition> = {
3172
3176
  value: FiltersState<Definition>;
3173
3177
  /** Optional preset configurations that users can select */
3174
3178
  presets?: PresetsDefinition<Definition>;
3179
+ /** Whether presets are currently loading */
3180
+ presetsLoading?: boolean;
3175
3181
  /** Callback fired when filters are changed */
3176
3182
  onChange: (value: FiltersState<Definition>) => void;
3177
3183
  /** The children of the component */
@@ -4856,6 +4862,11 @@ declare module "@tiptap/core" {
4856
4862
  }
4857
4863
 
4858
4864
 
4865
+ declare namespace Calendar {
4866
+ var displayName: string;
4867
+ }
4868
+
4869
+
4859
4870
  declare module "@tiptap/core" {
4860
4871
  interface Commands<ReturnType> {
4861
4872
  moodTracker: {
@@ -4863,8 +4874,3 @@ declare module "@tiptap/core" {
4863
4874
  };
4864
4875
  }
4865
4876
  }
4866
-
4867
-
4868
- declare namespace Calendar {
4869
- var displayName: string;
4870
- }