@factorialco/f0-react 4.51.0 → 4.53.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/{ChatDocxThumbnail-ZpA0oGfg.js → ChatDocxThumbnail-DzNPNFya.js} +1 -1
- package/dist/{ChatPdfThumbnail-Inmuy7U7.js → ChatPdfThumbnail-Ee5Wx96X.js} +1 -1
- package/dist/{DocumentToolbar-BYKMRth5.js → DocumentToolbar-BwJIFXDT.js} +2 -2
- package/dist/{DocxViewer-DTyN6WkM.js → DocxViewer-C8UBtCTB.js} +3 -3
- package/dist/{F0AiProcessingOverlay-BUB4HW4a.js → F0AiProcessingOverlay-BR8LMWyo.js} +802 -693
- package/dist/{F0CanvasPanel-DkQ4xhBx.js → F0CanvasPanel-DGLx1cqO.js} +545 -575
- package/dist/{LocationMap-BiiecVq_.js → LocationMap-BeSyUnec.js} +1 -1
- package/dist/{SheetViewer-BettRk5l.js → SheetViewer-DUvAHeaC.js} +2 -2
- package/dist/{TextViewer-DkXDyzcR.js → TextViewer-60i44dbD.js} +2 -2
- package/dist/_commonjsHelpers-ByX85dGu.js +33 -0
- package/dist/ai.d.ts +16 -0
- package/dist/ai.js +2 -2
- package/dist/axe-mZXA-kzX.js +23823 -0
- package/dist/component-status.d.ts +14 -0
- package/dist/component-status.js +297 -92
- package/dist/{docx-preview-bIzfytWN.js → docx-preview-BaRDMyPN.js} +1 -1
- package/dist/experimental.d.ts +16 -0
- package/dist/experimental.js +7 -7
- package/dist/f0.d.ts +67 -0
- package/dist/f0.js +13027 -12287
- package/dist/i18n-provider-defaults.d.ts +16 -0
- package/dist/i18n-provider-defaults.js +16 -0
- package/dist/{index-C4zDor6d.js → index-DsuHJt_y.js} +135 -134
- package/dist/{index-Ck1QOo1R.js → index-EDXekGcx.js} +29 -29
- package/dist/{pdfWorker-BecOMPtI.js → pdfWorker-D0j0TkJF.js} +3 -2
- 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 +3 -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;
|
|
@@ -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 {
|