@factorialco/f0-react 1.265.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 +11 -2
- package/dist/experimental.js +11082 -11097
- package/dist/f0.d.ts +5 -0
- package/dist/f0.js +2 -2
- package/dist/{hooks-BX7am8dm.js → hooks-ZewWGMzf.js} +13539 -13513
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -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>> = {
|
|
@@ -3771,8 +3776,8 @@ declare type OneDataCollectionProps<R extends RecordType, Filters extends Filter
|
|
|
3771
3776
|
/** Key for the data collection settings and state, must be unique for each data collection and contain the version e.g. "employees/v1"
|
|
3772
3777
|
*/
|
|
3773
3778
|
id?: string;
|
|
3774
|
-
/** Storage for the data collection settings and state */
|
|
3775
|
-
storage?: {
|
|
3779
|
+
/** Storage for the data collection settings and state: use false to disable the storage */
|
|
3780
|
+
storage?: false | {
|
|
3776
3781
|
/** Features for the data collection storage , for example you can disable the storage for the data collection filters state
|
|
3777
3782
|
* You can use "*" for all features and ! to disable a feature
|
|
3778
3783
|
*
|
|
@@ -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;
|