@factorialco/f0-react 4.44.0 → 4.46.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-B3DMs45n.js +48 -0
- package/dist/ChatPdfThumbnail-BFbYv0sb.js +38 -0
- package/dist/ChatSheetThumbnail-BvnxT-4A.js +38 -0
- package/dist/ChatTextThumbnail-yVt_iYi7.js +33 -0
- package/dist/{DocumentToolbar-D3GqxyBD.js → DocumentToolbar-BLcBoeNU.js} +5 -5
- package/dist/DocxViewer-C0K6oFym.js +68 -0
- package/dist/{F0AiProcessingOverlay-rViVqtAb.js → F0AiProcessingOverlay-BZka5wSN.js} +713 -761
- package/dist/{F0CanvasPanel-VGTPb68G.js → F0CanvasPanel-BDwye32b.js} +10679 -10600
- package/dist/{LocationMap-CdKO0X5V.js → LocationMap-NloaE37G.js} +1 -1
- package/dist/Printer-B7iDPx2r.js +54 -0
- package/dist/SheetViewer-1AsPdzFt.js +108 -0
- package/dist/{TextViewer-Dn0MDAXs.js → TextViewer-Ba0xZQdy.js} +2 -2
- package/dist/_commonjs-dynamic-modules-BpilXLfW.js +6 -0
- package/dist/ai.d.ts +34 -1
- package/dist/ai.js +2 -2
- package/dist/component-status.js +1 -1
- package/dist/{DocxViewer-BIZmtyWY.js → docx-preview-CSg41tKY.js} +971 -1034
- package/dist/experimental.d.ts +31 -4
- package/dist/experimental.js +10210 -6404
- package/dist/f0.css +1 -1
- package/dist/f0.d.ts +74 -1
- package/dist/f0.js +65853 -299
- package/dist/i18n-provider-defaults.d.ts +4 -0
- package/dist/i18n-provider-defaults.js +5 -1
- package/dist/{index-DoDUaTro.js → index-3x-af82e.js} +14657 -14408
- package/dist/index-BuP079h-.js +545 -0
- package/dist/index.css +1 -1
- package/dist/index2.css +1 -0
- package/dist/pdfWorker-XwYoO_oV.js +13118 -0
- package/dist/pdfWorker.css +1 -0
- package/dist/sheetPreview-5qeAOp0W.js +35 -0
- package/dist/styles.css +1 -1
- package/package.json +2 -1
- package/tailwind.config.ts +8 -0
- package/dist/SheetViewer-HsR5toIL.js +0 -137
- package/dist/f0-BaDuQbAV.js +0 -79441
|
@@ -889,6 +889,10 @@ export declare const defaultTranslations: {
|
|
|
889
889
|
readonly addBlockedHint: "Finish filling out the last item you just added in order to add another one";
|
|
890
890
|
readonly addBlockedErrorHint: "Fix the errors in the existing items before adding another one";
|
|
891
891
|
readonly addBlockedMaxHint: "You've reached the maximum number of items";
|
|
892
|
+
readonly removeConfirmTitle: "Remove item?";
|
|
893
|
+
readonly removeConfirmMessage: "This item will be removed. This action cannot be undone.";
|
|
894
|
+
readonly removeError: "Couldn't remove the item. Please try again.";
|
|
895
|
+
readonly removeErrorTitle: "Remove failed";
|
|
892
896
|
};
|
|
893
897
|
readonly moreInformation: "More information";
|
|
894
898
|
readonly validation: {
|
|
@@ -911,7 +911,11 @@ const e = {
|
|
|
911
911
|
view: "View",
|
|
912
912
|
addBlockedHint: "Finish filling out the last item you just added in order to add another one",
|
|
913
913
|
addBlockedErrorHint: "Fix the errors in the existing items before adding another one",
|
|
914
|
-
addBlockedMaxHint: "You've reached the maximum number of items"
|
|
914
|
+
addBlockedMaxHint: "You've reached the maximum number of items",
|
|
915
|
+
removeConfirmTitle: "Remove item?",
|
|
916
|
+
removeConfirmMessage: "This item will be removed. This action cannot be undone.",
|
|
917
|
+
removeError: "Couldn't remove the item. Please try again.",
|
|
918
|
+
removeErrorTitle: "Remove failed"
|
|
915
919
|
},
|
|
916
920
|
moreInformation: "More information",
|
|
917
921
|
validation: {
|