@factorialco/f0-react 4.50.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 +30 -14
- package/dist/ai.js +1 -1
- package/dist/component-status.d.ts +14 -14
- package/dist/component-status.js +35 -35
- package/dist/experimental.d.ts +30 -14
- package/dist/f0.d.ts +81 -14
- package/dist/f0.js +13026 -12287
- package/dist/i18n-provider-defaults.d.ts +30 -14
- package/dist/i18n-provider-defaults.js +16 -0
- package/dist/styles.css +1 -1
- package/icons/ai/ReceiptAi.js +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: {
|
|
@@ -1055,10 +1061,9 @@ declare module "@tiptap/core" {
|
|
|
1055
1061
|
|
|
1056
1062
|
declare module "@tiptap/core" {
|
|
1057
1063
|
interface Commands<ReturnType> {
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
}) => ReturnType;
|
|
1064
|
+
aiBlock: {
|
|
1065
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
1066
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1062
1067
|
};
|
|
1063
1068
|
}
|
|
1064
1069
|
}
|
|
@@ -1073,6 +1078,17 @@ declare module "@tiptap/core" {
|
|
|
1073
1078
|
}
|
|
1074
1079
|
|
|
1075
1080
|
|
|
1081
|
+
declare module "@tiptap/core" {
|
|
1082
|
+
interface Commands<ReturnType> {
|
|
1083
|
+
videoEmbed: {
|
|
1084
|
+
setVideoEmbed: (options: {
|
|
1085
|
+
src: string;
|
|
1086
|
+
}) => ReturnType;
|
|
1087
|
+
};
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
|
|
1076
1092
|
declare namespace F0GraphNodeWrapperInner {
|
|
1077
1093
|
var displayName: string;
|
|
1078
1094
|
}
|
|
@@ -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 {
|