@factorialco/f0-react 1.239.3 → 1.240.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 +10 -10
- package/dist/experimental.js +3693 -3686
- package/dist/f0.d.ts +9 -9
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -3462,7 +3462,7 @@ declare type OneDataCollectionProps<R extends RecordType, Filters extends Filter
|
|
|
3462
3462
|
};
|
|
3463
3463
|
};
|
|
3464
3464
|
|
|
3465
|
-
export declare function OneDateNavigator({ onSelect, defaultValue, presets, granularities, hideNavigation, hideGoToCurrent, compareTo, defaultCompareTo, onCompareToChange, ...props }: OneDatePickerProps): JSX_2.Element;
|
|
3465
|
+
export declare function OneDateNavigator({ onSelect, defaultValue, presets, granularities, hideNavigation, hideGoToCurrent, compareTo, defaultCompareTo, onCompareToChange, value, ...props }: OneDatePickerProps): JSX_2.Element;
|
|
3466
3466
|
|
|
3467
3467
|
declare interface OneDatePickerPopupProps {
|
|
3468
3468
|
onSelect?: (value: DatePickerValue | undefined) => void;
|
|
@@ -5385,8 +5385,8 @@ declare global {
|
|
|
5385
5385
|
|
|
5386
5386
|
declare module "@tiptap/core" {
|
|
5387
5387
|
interface Commands<ReturnType> {
|
|
5388
|
-
|
|
5389
|
-
|
|
5388
|
+
liveCompanion: {
|
|
5389
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5390
5390
|
};
|
|
5391
5391
|
}
|
|
5392
5392
|
}
|
|
@@ -5394,8 +5394,8 @@ declare module "@tiptap/core" {
|
|
|
5394
5394
|
|
|
5395
5395
|
declare module "@tiptap/core" {
|
|
5396
5396
|
interface Commands<ReturnType> {
|
|
5397
|
-
|
|
5398
|
-
|
|
5397
|
+
aiBlock: {
|
|
5398
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
5399
5399
|
};
|
|
5400
5400
|
}
|
|
5401
5401
|
}
|
|
@@ -5410,11 +5410,6 @@ declare module "@tiptap/core" {
|
|
|
5410
5410
|
}
|
|
5411
5411
|
|
|
5412
5412
|
|
|
5413
|
-
declare namespace Calendar {
|
|
5414
|
-
var displayName: string;
|
|
5415
|
-
}
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
5413
|
declare module "@tiptap/core" {
|
|
5419
5414
|
interface Commands<ReturnType> {
|
|
5420
5415
|
moodTracker: {
|
|
@@ -5422,3 +5417,8 @@ declare module "@tiptap/core" {
|
|
|
5422
5417
|
};
|
|
5423
5418
|
}
|
|
5424
5419
|
}
|
|
5420
|
+
|
|
5421
|
+
|
|
5422
|
+
declare namespace Calendar {
|
|
5423
|
+
var displayName: string;
|
|
5424
|
+
}
|