@factorialco/f0-react 1.187.0 → 1.188.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 -11
- package/dist/experimental.js +4851 -4842
- package/dist/f0.d.ts +11 -11
- package/dist/f0.js +2 -2
- package/dist/{hooks-BmsAvt-I.js → hooks-DJZUy5yN.js} +1658 -1598
- 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
|
|
|
@@ -4790,8 +4790,8 @@ declare global {
|
|
|
4790
4790
|
|
|
4791
4791
|
declare module "@tiptap/core" {
|
|
4792
4792
|
interface Commands<ReturnType> {
|
|
4793
|
-
|
|
4794
|
-
|
|
4793
|
+
liveCompanion: {
|
|
4794
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4795
4795
|
};
|
|
4796
4796
|
}
|
|
4797
4797
|
}
|
|
@@ -4799,8 +4799,8 @@ declare module "@tiptap/core" {
|
|
|
4799
4799
|
|
|
4800
4800
|
declare module "@tiptap/core" {
|
|
4801
4801
|
interface Commands<ReturnType> {
|
|
4802
|
-
|
|
4803
|
-
|
|
4802
|
+
aiBlock: {
|
|
4803
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4804
4804
|
};
|
|
4805
4805
|
}
|
|
4806
4806
|
}
|
|
@@ -4815,11 +4815,6 @@ declare module "@tiptap/core" {
|
|
|
4815
4815
|
}
|
|
4816
4816
|
|
|
4817
4817
|
|
|
4818
|
-
declare namespace Calendar {
|
|
4819
|
-
var displayName: string;
|
|
4820
|
-
}
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
4818
|
declare module "@tiptap/core" {
|
|
4824
4819
|
interface Commands<ReturnType> {
|
|
4825
4820
|
moodTracker: {
|
|
@@ -4827,3 +4822,8 @@ declare module "@tiptap/core" {
|
|
|
4827
4822
|
};
|
|
4828
4823
|
}
|
|
4829
4824
|
}
|
|
4825
|
+
|
|
4826
|
+
|
|
4827
|
+
declare namespace Calendar {
|
|
4828
|
+
var displayName: string;
|
|
4829
|
+
}
|