@factorialco/f0-react 1.240.0 → 1.240.2
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 -9
- package/dist/experimental.js +1091 -1089
- package/dist/f0.d.ts +11 -10
- package/dist/f0.js +143 -143
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -4339,6 +4339,7 @@ export declare type SelectItemObject<T, R = unknown> = {
|
|
|
4339
4339
|
tag?: string;
|
|
4340
4340
|
icon?: IconType;
|
|
4341
4341
|
item?: R;
|
|
4342
|
+
disabled?: boolean;
|
|
4342
4343
|
};
|
|
4343
4344
|
|
|
4344
4345
|
export declare type SelectItemProps<T, R = unknown> = SelectItemObject<T, R> | {
|
|
@@ -5385,8 +5386,8 @@ declare global {
|
|
|
5385
5386
|
|
|
5386
5387
|
declare module "@tiptap/core" {
|
|
5387
5388
|
interface Commands<ReturnType> {
|
|
5388
|
-
|
|
5389
|
-
|
|
5389
|
+
aiBlock: {
|
|
5390
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
5390
5391
|
};
|
|
5391
5392
|
}
|
|
5392
5393
|
}
|
|
@@ -5394,8 +5395,8 @@ declare module "@tiptap/core" {
|
|
|
5394
5395
|
|
|
5395
5396
|
declare module "@tiptap/core" {
|
|
5396
5397
|
interface Commands<ReturnType> {
|
|
5397
|
-
|
|
5398
|
-
|
|
5398
|
+
liveCompanion: {
|
|
5399
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5399
5400
|
};
|
|
5400
5401
|
}
|
|
5401
5402
|
}
|
|
@@ -5410,6 +5411,11 @@ declare module "@tiptap/core" {
|
|
|
5410
5411
|
}
|
|
5411
5412
|
|
|
5412
5413
|
|
|
5414
|
+
declare namespace Calendar {
|
|
5415
|
+
var displayName: string;
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5418
|
+
|
|
5413
5419
|
declare module "@tiptap/core" {
|
|
5414
5420
|
interface Commands<ReturnType> {
|
|
5415
5421
|
moodTracker: {
|
|
@@ -5417,8 +5423,3 @@ declare module "@tiptap/core" {
|
|
|
5417
5423
|
};
|
|
5418
5424
|
}
|
|
5419
5425
|
}
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
declare namespace Calendar {
|
|
5423
|
-
var displayName: string;
|
|
5424
|
-
}
|