@factorialco/f0-react 1.245.0 → 1.247.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 +13 -11
- package/dist/experimental.js +1519 -1513
- package/dist/f0.d.ts +11 -9
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { AmountCellValue } from '../../value-display/types/amount';
|
|
|
4
4
|
import { AmountCellValue as AmountCellValue_2 } from './types/amount.tsx';
|
|
5
5
|
import { AnchorHTMLAttributes } from 'react';
|
|
6
6
|
import { AriaAttributes } from 'react';
|
|
7
|
+
import { AutoFill as AutoFill_2 } from 'react';
|
|
7
8
|
import { AvatarListCellValue } from '../../value-display/types/avatarList';
|
|
8
9
|
import { AvatarListCellValue as AvatarListCellValue_2 } from './types/avatarList.tsx';
|
|
9
10
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
@@ -2367,6 +2368,7 @@ declare type InputFieldProps<T> = {
|
|
|
2367
2368
|
readonly?: boolean;
|
|
2368
2369
|
clearable?: boolean;
|
|
2369
2370
|
role?: string;
|
|
2371
|
+
autocomplete?: AutoFill_2;
|
|
2370
2372
|
inputRef?: React.Ref<unknown>;
|
|
2371
2373
|
"aria-controls"?: AriaAttributes["aria-controls"];
|
|
2372
2374
|
"aria-expanded"?: AriaAttributes["aria-expanded"];
|
|
@@ -3844,8 +3846,8 @@ declare global {
|
|
|
3844
3846
|
|
|
3845
3847
|
declare module "@tiptap/core" {
|
|
3846
3848
|
interface Commands<ReturnType> {
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
+
aiBlock: {
|
|
3850
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
3849
3851
|
};
|
|
3850
3852
|
}
|
|
3851
3853
|
}
|
|
@@ -3853,8 +3855,8 @@ declare module "@tiptap/core" {
|
|
|
3853
3855
|
|
|
3854
3856
|
declare module "@tiptap/core" {
|
|
3855
3857
|
interface Commands<ReturnType> {
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
+
liveCompanion: {
|
|
3859
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
3858
3860
|
};
|
|
3859
3861
|
}
|
|
3860
3862
|
}
|
|
@@ -3869,6 +3871,11 @@ declare module "@tiptap/core" {
|
|
|
3869
3871
|
}
|
|
3870
3872
|
|
|
3871
3873
|
|
|
3874
|
+
declare namespace Calendar {
|
|
3875
|
+
var displayName: string;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
|
|
3872
3879
|
declare module "@tiptap/core" {
|
|
3873
3880
|
interface Commands<ReturnType> {
|
|
3874
3881
|
moodTracker: {
|
|
@@ -3876,8 +3883,3 @@ declare module "@tiptap/core" {
|
|
|
3876
3883
|
};
|
|
3877
3884
|
}
|
|
3878
3885
|
}
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
declare namespace Calendar {
|
|
3882
|
-
var displayName: string;
|
|
3883
|
-
}
|