@factorialco/f0-react 4.51.0 → 4.52.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/{F0AiProcessingOverlay-BUB4HW4a.js → F0AiProcessingOverlay-DEjwsdqP.js} +802 -693
- package/dist/ai.d.ts +26 -10
- package/dist/ai.js +1 -1
- package/dist/component-status.d.ts +10 -10
- package/dist/component-status.js +35 -35
- package/dist/experimental.d.ts +26 -10
- package/dist/f0.d.ts +77 -10
- package/dist/f0.js +13026 -12287
- package/dist/i18n-provider-defaults.d.ts +26 -10
- package/dist/i18n-provider-defaults.js +16 -0
- package/dist/styles.css +1 -1
- package/icons/app/VolumeHigh.d.ts +4 -0
- package/icons/app/VolumeHigh.d.ts.map +1 -0
- package/icons/app/VolumeHigh.js +5 -0
- package/icons/app/VolumeMid.d.ts +4 -0
- package/icons/app/VolumeMid.d.ts.map +1 -0
- package/icons/app/VolumeMid.js +5 -0
- package/icons/app/VolumeMuted.d.ts +4 -0
- package/icons/app/VolumeMuted.d.ts.map +1 -0
- package/icons/app/VolumeMuted.js +5 -0
- package/icons/app/index.d.ts +3 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +3 -0
- package/package.json +2 -2
|
@@ -961,6 +961,22 @@ export declare const defaultTranslations: {
|
|
|
961
961
|
readonly other: "Showing the first {{count}} rows";
|
|
962
962
|
};
|
|
963
963
|
};
|
|
964
|
+
readonly videoPlayer: {
|
|
965
|
+
readonly regionLabel: "Video player";
|
|
966
|
+
readonly play: "Play";
|
|
967
|
+
readonly pause: "Pause";
|
|
968
|
+
readonly playing: "Playing";
|
|
969
|
+
readonly paused: "Paused";
|
|
970
|
+
readonly mute: "Mute";
|
|
971
|
+
readonly unmute: "Unmute";
|
|
972
|
+
readonly volume: "Volume";
|
|
973
|
+
readonly seekLabel: "Seek";
|
|
974
|
+
readonly enterFullscreen: "Enter fullscreen";
|
|
975
|
+
readonly exitFullscreen: "Exit fullscreen";
|
|
976
|
+
readonly playbackSpeed: "Playback speed ({{rate}})";
|
|
977
|
+
readonly playbackSpeedLabel: "Playback speed";
|
|
978
|
+
readonly timeProgress: "{{current}} of {{total}}";
|
|
979
|
+
};
|
|
964
980
|
};
|
|
965
981
|
|
|
966
982
|
declare type Join<T extends string[], D extends string> = T extends [] ? never : T extends [infer F] ? F : T extends [infer F, ...infer R] ? F extends string ? `${F}${D}${Join<Extract<R, string[]>, D>}` : never : string;
|
|
@@ -1022,16 +1038,6 @@ declare namespace Calendar {
|
|
|
1022
1038
|
}
|
|
1023
1039
|
|
|
1024
1040
|
|
|
1025
|
-
declare module "@tiptap/core" {
|
|
1026
|
-
interface Commands<ReturnType> {
|
|
1027
|
-
aiBlock: {
|
|
1028
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
1029
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1030
|
-
};
|
|
1031
|
-
}
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
1041
|
declare module "@tiptap/core" {
|
|
1036
1042
|
interface Commands<ReturnType> {
|
|
1037
1043
|
enhanceHighlight: {
|
|
@@ -1053,6 +1059,16 @@ declare module "@tiptap/core" {
|
|
|
1053
1059
|
}
|
|
1054
1060
|
|
|
1055
1061
|
|
|
1062
|
+
declare module "@tiptap/core" {
|
|
1063
|
+
interface Commands<ReturnType> {
|
|
1064
|
+
aiBlock: {
|
|
1065
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
1066
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1067
|
+
};
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
|
|
1056
1072
|
declare module "@tiptap/core" {
|
|
1057
1073
|
interface Commands<ReturnType> {
|
|
1058
1074
|
transcript: {
|
|
@@ -983,6 +983,22 @@ const e = {
|
|
|
983
983
|
one: "Showing the first row",
|
|
984
984
|
other: "Showing the first {{count}} rows"
|
|
985
985
|
}
|
|
986
|
+
},
|
|
987
|
+
videoPlayer: {
|
|
988
|
+
regionLabel: "Video player",
|
|
989
|
+
play: "Play",
|
|
990
|
+
pause: "Pause",
|
|
991
|
+
playing: "Playing",
|
|
992
|
+
paused: "Paused",
|
|
993
|
+
mute: "Mute",
|
|
994
|
+
unmute: "Unmute",
|
|
995
|
+
volume: "Volume",
|
|
996
|
+
seekLabel: "Seek",
|
|
997
|
+
enterFullscreen: "Enter fullscreen",
|
|
998
|
+
exitFullscreen: "Exit fullscreen",
|
|
999
|
+
playbackSpeed: "Playback speed ({{rate}})",
|
|
1000
|
+
playbackSpeedLabel: "Playback speed",
|
|
1001
|
+
timeProgress: "{{current}} of {{total}}"
|
|
986
1002
|
}
|
|
987
1003
|
};
|
|
988
1004
|
export {
|