@factorialco/f0-react 1.187.1 → 1.188.1
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 +2 -2
- package/dist/experimental.js +4575 -4569
- package/dist/f0.d.ts +19 -2
- package/dist/f0.js +26 -25
- package/dist/{hooks-BmsAvt-I.js → hooks-BZw2dqtL.js} +10571 -10496
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -3124,7 +3124,7 @@ export declare const OneFilterPicker: {
|
|
|
3124
3124
|
* Props for the Filters component.
|
|
3125
3125
|
* @template Definition - The type defining the structure of available filters
|
|
3126
3126
|
*/
|
|
3127
|
-
declare
|
|
3127
|
+
declare type OneFilterPickerRootProps<Definition extends FiltersDefinition> = {
|
|
3128
3128
|
/** The definition of available filters and their configurations */
|
|
3129
3129
|
filters?: Definition;
|
|
3130
3130
|
/** Current state of applied filters */
|
|
@@ -3135,7 +3135,7 @@ declare interface OneFilterPickerRootProps<Definition extends FiltersDefinition>
|
|
|
3135
3135
|
onChange: (value: FiltersState<Definition>) => void;
|
|
3136
3136
|
/** The children of the component */
|
|
3137
3137
|
children?: React.ReactNode;
|
|
3138
|
-
}
|
|
3138
|
+
};
|
|
3139
3139
|
|
|
3140
3140
|
export declare const OneModal: OneModalComponent;
|
|
3141
3141
|
|