@factorialco/f0-react 1.201.1 → 1.201.3
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 +15 -9
- package/dist/experimental.js +2074 -2073
- package/dist/f0.d.ts +15 -9
- package/dist/f0.js +2 -2
- package/dist/{hooks-Bk1Sz-hw.js → hooks-CIWKebfc.js} +2391 -2353
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1326,6 +1326,8 @@ export declare type DataSource<R extends RecordType, Filters extends FiltersDefi
|
|
|
1326
1326
|
currentFilters: FiltersState<Filters>;
|
|
1327
1327
|
/** Function to update the current filters state */
|
|
1328
1328
|
setCurrentFilters: React.Dispatch<React.SetStateAction<FiltersState<Filters>>>;
|
|
1329
|
+
/** Whether presets are currently loading */
|
|
1330
|
+
presetsLoading?: boolean;
|
|
1329
1331
|
/** Current state of applied sortings */
|
|
1330
1332
|
currentSortings: SortingsState<Sortings>;
|
|
1331
1333
|
/** Function to update the current sortings state */
|
|
@@ -1363,6 +1365,8 @@ export declare type DataSourceDefinition<R extends RecordType = RecordType, Filt
|
|
|
1363
1365
|
currentFilters?: FiltersState<Filters>;
|
|
1364
1366
|
/** Predefined filter configurations that can be applied */
|
|
1365
1367
|
presets?: PresetsDefinition<Filters>;
|
|
1368
|
+
/** Whether presets are currently loading */
|
|
1369
|
+
presetsLoading?: boolean;
|
|
1366
1370
|
/** Search configuration */
|
|
1367
1371
|
search?: SearchOptions;
|
|
1368
1372
|
/** Available sorting fields. If not provided, sorting is not allowed. */
|
|
@@ -3172,6 +3176,8 @@ declare type OneFilterPickerRootProps<Definition extends FiltersDefinition> = {
|
|
|
3172
3176
|
value: FiltersState<Definition>;
|
|
3173
3177
|
/** Optional preset configurations that users can select */
|
|
3174
3178
|
presets?: PresetsDefinition<Definition>;
|
|
3179
|
+
/** Whether presets are currently loading */
|
|
3180
|
+
presetsLoading?: boolean;
|
|
3175
3181
|
/** Callback fired when filters are changed */
|
|
3176
3182
|
onChange: (value: FiltersState<Definition>) => void;
|
|
3177
3183
|
/** The children of the component */
|
|
@@ -4831,8 +4837,8 @@ declare global {
|
|
|
4831
4837
|
|
|
4832
4838
|
declare module "@tiptap/core" {
|
|
4833
4839
|
interface Commands<ReturnType> {
|
|
4834
|
-
|
|
4835
|
-
|
|
4840
|
+
aiBlock: {
|
|
4841
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4836
4842
|
};
|
|
4837
4843
|
}
|
|
4838
4844
|
}
|
|
@@ -4840,8 +4846,8 @@ declare module "@tiptap/core" {
|
|
|
4840
4846
|
|
|
4841
4847
|
declare module "@tiptap/core" {
|
|
4842
4848
|
interface Commands<ReturnType> {
|
|
4843
|
-
|
|
4844
|
-
|
|
4849
|
+
liveCompanion: {
|
|
4850
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4845
4851
|
};
|
|
4846
4852
|
}
|
|
4847
4853
|
}
|
|
@@ -4856,6 +4862,11 @@ declare module "@tiptap/core" {
|
|
|
4856
4862
|
}
|
|
4857
4863
|
|
|
4858
4864
|
|
|
4865
|
+
declare namespace Calendar {
|
|
4866
|
+
var displayName: string;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
|
|
4859
4870
|
declare module "@tiptap/core" {
|
|
4860
4871
|
interface Commands<ReturnType> {
|
|
4861
4872
|
moodTracker: {
|
|
@@ -4863,8 +4874,3 @@ declare module "@tiptap/core" {
|
|
|
4863
4874
|
};
|
|
4864
4875
|
}
|
|
4865
4876
|
}
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
declare namespace Calendar {
|
|
4869
|
-
var displayName: string;
|
|
4870
|
-
}
|