@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.
- package/dist/experimental.d.ts +9 -0
- package/dist/experimental.js +8606 -8600
- package/dist/f0.d.ts +5 -0
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -955,6 +955,11 @@ declare type CollectionProps<Record extends RecordType, Filters extends FiltersD
|
|
|
955
955
|
/** Function to handle data load */
|
|
956
956
|
onLoadData: OnLoadDataCallback<Record, Filters>;
|
|
957
957
|
onLoadError: OnLoadErrorCallback;
|
|
958
|
+
/**
|
|
959
|
+
* @deprecated This will be removed in the next major version
|
|
960
|
+
* Temporary prop to force the full width of the data collection (removes the X padding)
|
|
961
|
+
*/
|
|
962
|
+
tmpFullWidth?: boolean;
|
|
958
963
|
} & VisualizationOptions;
|
|
959
964
|
|
|
960
965
|
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>> = {
|