@factorialco/f0-react 1.266.0 → 1.267.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.
@@ -1394,6 +1394,11 @@ export declare type CollectionProps<Record extends RecordType, Filters extends F
1394
1394
  /** Function to handle data load */
1395
1395
  onLoadData: OnLoadDataCallback<Record, Filters>;
1396
1396
  onLoadError: OnLoadErrorCallback;
1397
+ /**
1398
+ * @deprecated This will be removed in the next major version
1399
+ * Temporary prop to force the full width of the data collection (removes the X padding)
1400
+ */
1401
+ tmpFullWidth?: boolean;
1397
1402
  } & VisualizationOptions;
1398
1403
 
1399
1404
  declare type CollectionVisualizations<Record extends RecordType, Filters extends FiltersDefinition, Sortings extends SortingsDefinition, Summaries extends SummariesDefinition, ItemActions extends ItemActionsDefinition<Record>, NavigationFilters extends NavigationFiltersDefinition, Grouping extends GroupingDefinition<Record>> = {
@@ -3786,6 +3791,10 @@ declare type OneDataCollectionProps<R extends RecordType, Filters extends Filter
3786
3791
  */
3787
3792
  features?: DataCollectionStorageFeaturesDefinition;
3788
3793
  };
3794
+ /**
3795
+ * @deprecated removes the horizontal padding from the data collection
3796
+ */
3797
+ tmpFullWidth?: boolean;
3789
3798
  };
3790
3799
 
3791
3800
  export declare function OneDateNavigator({ onSelect, defaultValue, presets, granularities, hideNavigation, hideGoToCurrent, compareTo, defaultCompareTo, onCompareToChange, value, ...props }: OneDatePickerProps): JSX_2.Element;