@factorialco/f0-react 4.56.0 → 4.56.1
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/ai.d.ts +6 -6
- package/dist/component-status.d.ts +6 -6
- package/dist/component-status.js +300 -235
- package/dist/experimental.d.ts +6 -6
- package/dist/f0.d.ts +6 -6
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -11438,10 +11438,8 @@ declare module "@tiptap/core" {
|
|
|
11438
11438
|
|
|
11439
11439
|
declare module "@tiptap/core" {
|
|
11440
11440
|
interface Commands<ReturnType> {
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
src: string;
|
|
11444
|
-
}) => ReturnType;
|
|
11441
|
+
transcript: {
|
|
11442
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
11445
11443
|
};
|
|
11446
11444
|
}
|
|
11447
11445
|
}
|
|
@@ -11449,8 +11447,10 @@ declare module "@tiptap/core" {
|
|
|
11449
11447
|
|
|
11450
11448
|
declare module "@tiptap/core" {
|
|
11451
11449
|
interface Commands<ReturnType> {
|
|
11452
|
-
|
|
11453
|
-
|
|
11450
|
+
videoEmbed: {
|
|
11451
|
+
setVideoEmbed: (options: {
|
|
11452
|
+
src: string;
|
|
11453
|
+
}) => ReturnType;
|
|
11454
11454
|
};
|
|
11455
11455
|
}
|
|
11456
11456
|
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -18512,10 +18512,8 @@ declare module "@tiptap/core" {
|
|
|
18512
18512
|
|
|
18513
18513
|
declare module "@tiptap/core" {
|
|
18514
18514
|
interface Commands<ReturnType> {
|
|
18515
|
-
|
|
18516
|
-
|
|
18517
|
-
src: string;
|
|
18518
|
-
}) => ReturnType;
|
|
18515
|
+
transcript: {
|
|
18516
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
18519
18517
|
};
|
|
18520
18518
|
}
|
|
18521
18519
|
}
|
|
@@ -18523,8 +18521,10 @@ declare module "@tiptap/core" {
|
|
|
18523
18521
|
|
|
18524
18522
|
declare module "@tiptap/core" {
|
|
18525
18523
|
interface Commands<ReturnType> {
|
|
18526
|
-
|
|
18527
|
-
|
|
18524
|
+
videoEmbed: {
|
|
18525
|
+
setVideoEmbed: (options: {
|
|
18526
|
+
src: string;
|
|
18527
|
+
}) => ReturnType;
|
|
18528
18528
|
};
|
|
18529
18529
|
}
|
|
18530
18530
|
}
|
|
@@ -1071,10 +1071,8 @@ declare module "@tiptap/core" {
|
|
|
1071
1071
|
|
|
1072
1072
|
declare module "@tiptap/core" {
|
|
1073
1073
|
interface Commands<ReturnType> {
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
src: string;
|
|
1077
|
-
}) => ReturnType;
|
|
1074
|
+
transcript: {
|
|
1075
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1078
1076
|
};
|
|
1079
1077
|
}
|
|
1080
1078
|
}
|
|
@@ -1082,8 +1080,10 @@ declare module "@tiptap/core" {
|
|
|
1082
1080
|
|
|
1083
1081
|
declare module "@tiptap/core" {
|
|
1084
1082
|
interface Commands<ReturnType> {
|
|
1085
|
-
|
|
1086
|
-
|
|
1083
|
+
videoEmbed: {
|
|
1084
|
+
setVideoEmbed: (options: {
|
|
1085
|
+
src: string;
|
|
1086
|
+
}) => ReturnType;
|
|
1087
1087
|
};
|
|
1088
1088
|
}
|
|
1089
1089
|
}
|