@uploadcare/file-uploader 1.27.1 → 1.28.0-alpha.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/CameraSource-DbyO6GoK.js +481 -0
- package/dist/CameraSource-px4BzEMI.js +9 -0
- package/dist/CloudImageEditor-BIxf1V4M.js +2162 -0
- package/dist/CloudImageEditorActivity-CJxP5N0S.js +9 -0
- package/dist/CloudImageEditorActivity-d4DpK6fQ.js +87 -0
- package/dist/Config-DuWre5p3.js +433 -0
- package/dist/ExternalSource-BKTFp95O.js +248 -0
- package/dist/ExternalSource-CR5DG0Jv.js +9 -0
- package/dist/Icon-CqTVC82Q.js +1811 -0
- package/dist/LitUploaderBlock-BA34rzeU.js +998 -0
- package/dist/UrlSource-BxVL9Pve.js +9 -0
- package/dist/UrlSource-DZK5EBwT.js +73 -0
- package/dist/abstract/CTX.d.ts +40 -0
- package/dist/abstract/TypedCollection.d.ts +47 -0
- package/dist/abstract/TypedCollection.test.d.ts +1 -0
- package/dist/abstract/TypedData.d.ts +12 -0
- package/dist/abstract/TypedData.test.d.ts +1 -0
- package/dist/abstract/UploaderPublicApi.d.ts +41 -0
- package/dist/abstract/buildOutputCollectionState.d.ts +3 -0
- package/dist/abstract/customConfigOptions.d.ts +65 -0
- package/dist/abstract/defineComponents.d.ts +1 -0
- package/dist/abstract/features/ClipboardLayer.d.ts +12 -0
- package/dist/abstract/loadFileUploaderFrom.d.ts +3 -4
- package/dist/abstract/loadFileUploaderFrom.js +7 -6
- package/dist/abstract/localeRegistry.d.ts +5 -0
- package/dist/abstract/managers/LocaleManager.d.ts +10 -0
- package/dist/abstract/managers/ModalManager.d.ts +53 -0
- package/dist/abstract/managers/SecureUploadsManager.d.ts +7 -0
- package/dist/abstract/managers/TelemetryManager.d.ts +41 -0
- package/dist/abstract/managers/ValidationManager.d.ts +34 -0
- package/dist/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
- package/dist/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
- package/dist/abstract/managers/a11y.d.ts +9 -0
- package/dist/abstract/managers/plugin/PluginManager.d.ts +25 -0
- package/dist/abstract/managers/plugin/PluginTypes.d.ts +146 -0
- package/dist/abstract/managers/plugin/index.d.ts +2 -0
- package/dist/abstract/sharedConfigKey.d.ts +2 -0
- package/dist/abstract/uploadEntrySchema.d.ts +34 -0
- package/dist/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
- package/dist/blocks/CameraSource/CameraSource.d.ts +121 -0
- package/dist/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
- package/dist/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/dist/blocks/CameraSource/constants.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/index.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
- package/dist/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
- package/dist/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
- package/dist/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
- package/dist/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
- package/dist/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
- package/dist/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
- package/dist/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
- package/dist/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
- package/dist/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
- package/dist/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/state.d.ts +20 -0
- package/dist/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
- package/dist/blocks/CloudImageEditor/src/types.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
- package/dist/blocks/Config/Config.d.ts +60 -0
- package/dist/blocks/Config/assertions.d.ts +5 -0
- package/dist/blocks/Config/computed-properties.d.ts +24 -0
- package/dist/blocks/Config/computed-properties.test.d.ts +1 -0
- package/dist/blocks/Config/initialConfig.d.ts +6 -0
- package/dist/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/dist/blocks/Config/validatorsType.d.ts +18 -0
- package/dist/blocks/Copyright/Copyright.d.ts +10 -0
- package/dist/blocks/DropArea/DropArea.d.ts +47 -0
- package/dist/blocks/DropArea/addDropzone.d.ts +17 -0
- package/dist/blocks/DropArea/getDropItems.d.ts +12 -0
- package/dist/blocks/ExternalSource/ExternalSource.d.ts +45 -0
- package/dist/blocks/ExternalSource/MessageBridge.d.ts +11 -0
- package/dist/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
- package/dist/blocks/ExternalSource/query-string.d.ts +1 -0
- package/dist/blocks/ExternalSource/types.d.ts +105 -0
- package/dist/blocks/FileItem/FileItem.d.ts +50 -0
- package/dist/blocks/FileItem/FileItemConfig.d.ts +10 -0
- package/dist/blocks/FormInput/FormInput.d.ts +18 -0
- package/dist/blocks/Icon/Icon.d.ts +19 -0
- package/dist/blocks/Img/Img.d.ts +14 -0
- package/dist/blocks/Img/ImgBase.d.ts +29 -0
- package/dist/blocks/Img/ImgConfig.d.ts +28 -0
- package/dist/blocks/Img/configurations.d.ts +11 -0
- package/dist/blocks/Img/props-map.d.ts +28 -0
- package/dist/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/dist/blocks/Modal/Modal.d.ts +34 -0
- package/dist/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
- package/dist/blocks/PluginActivityRenderer/index.d.ts +1 -0
- package/dist/blocks/ProgressBar/ProgressBar.d.ts +21 -0
- package/dist/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
- package/dist/blocks/Select/Select.d.ts +18 -0
- package/dist/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
- package/dist/blocks/SourceBtn/SourceBtn.d.ts +23 -0
- package/dist/blocks/SourceList/SourceList.d.ts +24 -0
- package/dist/blocks/Spinner/Spinner.d.ts +9 -0
- package/dist/blocks/StartFrom/StartFrom.d.ts +12 -0
- package/dist/blocks/Thumb/Thumb.d.ts +35 -0
- package/dist/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
- package/dist/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
- package/dist/blocks/UploadList/UploadList.d.ts +39 -0
- package/dist/blocks/UrlSource/UrlSource.d.ts +14 -0
- package/dist/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
- package/dist/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
- package/dist/cameraPlugin-dGash48Q.js +8 -0
- package/dist/cloud-image-editor-fNswWrI4.js +11 -0
- package/dist/cloudImageEditorPlugin-2EU0Pm_j.js +8 -0
- package/dist/core.d.ts +42 -0
- package/dist/en-DNCwRJsB.js +135 -0
- package/dist/env-B1nfXy9i.js +8 -0
- package/dist/env.d.ts +2 -4
- package/dist/env.js +7 -6
- package/dist/externalSourcesPlugin-DKQqk3AC.js +8 -0
- package/dist/imageShrinkPlugin-DAx8eRen.js +8 -0
- package/dist/index.css +3964 -6
- package/dist/index.d.ts +29 -2715
- package/dist/index.js +1011 -8
- package/dist/index.layered.css +4478 -7
- package/dist/instagramPlugin-k67tMAo3.js +8 -0
- package/dist/lit/BaseComponent.d.ts +12 -0
- package/dist/lit/Constructor.d.ts +1 -0
- package/dist/lit/CssDataMixin.d.ts +7 -0
- package/dist/lit/LightDomMixin.d.ts +8 -0
- package/dist/lit/LitActivityBlock.d.ts +53 -0
- package/dist/lit/LitBlock.d.ts +83 -0
- package/dist/lit/LitSolutionBlock.d.ts +21 -0
- package/dist/lit/LitUploaderBlock.d.ts +53 -0
- package/dist/lit/PubSubCompat.d.ts +18 -0
- package/dist/lit/RegisterableElementMixin.d.ts +7 -0
- package/dist/lit/SharedState.d.ts +119 -0
- package/dist/lit/SymbioteCompatMixin.d.ts +40 -0
- package/dist/lit/TestModeController.d.ts +16 -0
- package/dist/lit/Uid.d.ts +3 -0
- package/dist/lit/activity-constants.d.ts +11 -0
- package/dist/lit/createDebugPrinter.d.ts +3 -0
- package/dist/lit/findBlockInCtx.d.ts +3 -0
- package/dist/lit/getOutputData.d.ts +2 -0
- package/dist/lit/hasBlockInCtx.d.ts +3 -0
- package/dist/lit/l10n.d.ts +5 -0
- package/dist/lit/parseCssPropertyValue.d.ts +1 -0
- package/dist/lit/shared-instances.d.ts +65 -0
- package/dist/loadFileUploaderFrom-BWJM43Yq.js +28 -0
- package/dist/locales/file-uploader/ar.d.ts +1 -4
- package/dist/locales/file-uploader/ar.js +142 -6
- package/dist/locales/file-uploader/az.d.ts +1 -4
- package/dist/locales/file-uploader/az.js +134 -6
- package/dist/locales/file-uploader/ca.d.ts +1 -4
- package/dist/locales/file-uploader/ca.js +136 -6
- package/dist/locales/file-uploader/cs.d.ts +1 -4
- package/dist/locales/file-uploader/cs.js +138 -6
- package/dist/locales/file-uploader/da.d.ts +1 -4
- package/dist/locales/file-uploader/da.js +134 -6
- package/dist/locales/file-uploader/de.d.ts +1 -4
- package/dist/locales/file-uploader/de.js +134 -6
- package/dist/locales/file-uploader/el.d.ts +1 -4
- package/dist/locales/file-uploader/el.js +134 -6
- package/dist/locales/file-uploader/en.d.ts +1 -4
- package/dist/locales/file-uploader/en.js +7 -6
- package/dist/locales/file-uploader/es.d.ts +1 -4
- package/dist/locales/file-uploader/es.js +136 -6
- package/dist/locales/file-uploader/et.d.ts +1 -4
- package/dist/locales/file-uploader/et.js +134 -6
- package/dist/locales/file-uploader/fi.d.ts +1 -4
- package/dist/locales/file-uploader/fi.js +134 -6
- package/dist/locales/file-uploader/fr.d.ts +1 -4
- package/dist/locales/file-uploader/fr.js +136 -6
- package/dist/locales/file-uploader/he.d.ts +1 -4
- package/dist/locales/file-uploader/he.js +136 -6
- package/dist/locales/file-uploader/hy.d.ts +1 -4
- package/dist/locales/file-uploader/hy.js +134 -6
- package/dist/locales/file-uploader/is.d.ts +1 -4
- package/dist/locales/file-uploader/is.js +134 -6
- package/dist/locales/file-uploader/it.d.ts +1 -4
- package/dist/locales/file-uploader/it.js +136 -6
- package/dist/locales/file-uploader/ja.d.ts +1 -4
- package/dist/locales/file-uploader/ja.js +134 -6
- package/dist/locales/file-uploader/ka.d.ts +1 -4
- package/dist/locales/file-uploader/ka.js +134 -6
- package/dist/locales/file-uploader/kk.d.ts +1 -4
- package/dist/locales/file-uploader/kk.js +134 -6
- package/dist/locales/file-uploader/ko.d.ts +1 -4
- package/dist/locales/file-uploader/ko.js +134 -6
- package/dist/locales/file-uploader/lv.d.ts +1 -4
- package/dist/locales/file-uploader/lv.js +136 -6
- package/dist/locales/file-uploader/nb.d.ts +1 -4
- package/dist/locales/file-uploader/nb.js +134 -6
- package/dist/locales/file-uploader/nl.d.ts +1 -4
- package/dist/locales/file-uploader/nl.js +134 -6
- package/dist/locales/file-uploader/pl.d.ts +1 -4
- package/dist/locales/file-uploader/pl.js +138 -6
- package/dist/locales/file-uploader/pt.d.ts +1 -4
- package/dist/locales/file-uploader/pt.js +136 -6
- package/dist/locales/file-uploader/ro.d.ts +1 -4
- package/dist/locales/file-uploader/ro.js +136 -6
- package/dist/locales/file-uploader/ru.d.ts +1 -4
- package/dist/locales/file-uploader/ru.js +138 -6
- package/dist/locales/file-uploader/sk.d.ts +1 -4
- package/dist/locales/file-uploader/sk.js +138 -6
- package/dist/locales/file-uploader/sr.d.ts +1 -4
- package/dist/locales/file-uploader/sr.js +136 -6
- package/dist/locales/file-uploader/sv.d.ts +1 -4
- package/dist/locales/file-uploader/sv.js +134 -6
- package/dist/locales/file-uploader/tr.d.ts +1 -4
- package/dist/locales/file-uploader/tr.js +134 -6
- package/dist/locales/file-uploader/uk.d.ts +1 -4
- package/dist/locales/file-uploader/uk.js +138 -6
- package/dist/locales/file-uploader/vi.d.ts +1 -4
- package/dist/locales/file-uploader/vi.js +134 -6
- package/dist/locales/file-uploader/zh-TW.d.ts +1 -4
- package/dist/locales/file-uploader/zh-TW.js +134 -6
- package/dist/locales/file-uploader/zh.d.ts +1 -4
- package/dist/locales/file-uploader/zh.js +134 -6
- package/dist/plugins/cameraPlugin.d.ts +2 -0
- package/dist/plugins/cloudImageEditorPlugin.d.ts +2 -0
- package/dist/plugins/externalSourcesPlugin.d.ts +2 -0
- package/dist/plugins/imageShrinkPlugin.d.ts +2 -0
- package/dist/plugins/instagramPlugin.d.ts +2 -0
- package/dist/plugins/unsplashPlugin.d.ts +16 -0
- package/dist/plugins/urlSourcePlugin.d.ts +2 -0
- package/dist/plugins-DxjsQUa8.js +278 -0
- package/dist/solutions/adaptive-image/index.d.ts +2 -0
- package/dist/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
- package/dist/solutions/cloud-image-editor/index.d.ts +5 -0
- package/dist/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
- package/dist/solutions/file-uploader/inline/index.d.ts +1 -0
- package/dist/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
- package/dist/solutions/file-uploader/minimal/index.d.ts +1 -0
- package/dist/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
- package/dist/solutions/file-uploader/regular/index.d.ts +1 -0
- package/dist/types/dom.d.ts +1 -0
- package/dist/types/events.d.ts +4 -0
- package/dist/types/exported.d.ts +492 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/urlSourcePlugin-9xdB7Pvw.js +8 -0
- package/dist/utils/UID.d.ts +5 -0
- package/dist/utils/UID.test.d.ts +1 -0
- package/dist/utils/UploadSource.d.ts +37 -0
- package/dist/utils/WindowHeightTracker.d.ts +9 -0
- package/dist/utils/abilities.d.ts +1 -0
- package/dist/utils/applyStyles.d.ts +1 -0
- package/dist/utils/browser-info.d.ts +12 -0
- package/dist/utils/browser-info.test.d.ts +1 -0
- package/dist/utils/cdn-utils.d.ts +53 -0
- package/dist/utils/cdn-utils.test.d.ts +1 -0
- package/dist/utils/comma-separated.d.ts +2 -0
- package/dist/utils/debounce.d.ts +3 -0
- package/dist/utils/delay.d.ts +1 -0
- package/dist/utils/fileTypes.d.ts +11 -0
- package/dist/utils/fileTypes.test.d.ts +1 -0
- package/dist/utils/get-top-level-origin.d.ts +1 -0
- package/dist/utils/get-top-level-origin.test.d.ts +1 -0
- package/dist/utils/getLocaleDirection.d.ts +1 -0
- package/dist/utils/getPluralForm.d.ts +1 -0
- package/dist/utils/getPluralForm.test.d.ts +1 -0
- package/dist/utils/isPromiseLike.d.ts +1 -0
- package/dist/utils/isPromiseLike.test.d.ts +1 -0
- package/dist/utils/isSecureTokenExpired.d.ts +8 -0
- package/dist/utils/isSecureTokenExpired.test.d.ts +1 -0
- package/dist/utils/memoize.d.ts +1 -0
- package/dist/utils/memoize.test.d.ts +1 -0
- package/dist/utils/mixinClass.d.ts +8 -0
- package/dist/utils/parseCdnUrl.d.ts +11 -0
- package/dist/utils/parseCdnUrl.test.d.ts +1 -0
- package/dist/utils/parseShrink.d.ts +7 -0
- package/dist/utils/parseShrink.test.d.ts +1 -0
- package/dist/utils/preloadImage.d.ts +10 -0
- package/dist/utils/prettyBytes.d.ts +11 -0
- package/dist/utils/prettyBytes.test.d.ts +1 -0
- package/dist/utils/resizeImage.d.ts +1 -0
- package/dist/utils/stringToArray.d.ts +1 -0
- package/dist/utils/stringToArray.test.d.ts +1 -0
- package/dist/utils/template-utils.d.ts +16 -0
- package/dist/utils/template-utils.test.d.ts +1 -0
- package/dist/utils/throttle.d.ts +3 -0
- package/dist/utils/toKebabCase.d.ts +2 -0
- package/dist/utils/toKebabCase.test.d.ts +1 -0
- package/dist/utils/transparentPixelSrc.d.ts +1 -0
- package/dist/utils/uniqueArray.d.ts +1 -0
- package/dist/utils/uniqueArray.test.d.ts +1 -0
- package/dist/utils/userAgent.d.ts +2 -0
- package/dist/utils/validators/collection/index.d.ts +2 -0
- package/dist/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
- package/dist/utils/validators/collection/validateMultiple.d.ts +2 -0
- package/dist/utils/validators/file/index.d.ts +4 -0
- package/dist/utils/validators/file/validateFileType.d.ts +2 -0
- package/dist/utils/validators/file/validateIsImage.d.ts +2 -0
- package/dist/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
- package/dist/utils/validators/file/validateUploadError.d.ts +2 -0
- package/dist/utils/warnOnce.d.ts +1 -0
- package/dist/utils/wildcardRegexp.d.ts +1 -0
- package/dist/utils/wildcardRegexp.test.d.ts +1 -0
- package/dist/utils/withResolvers.d.ts +5 -0
- package/dist/utils/withResolvers.test.d.ts +1 -0
- package/package.json +8 -2
- package/dist/index.ssr.js +0 -1538
- package/web/file-uploader.iife.min.d.ts +0 -2859
- package/web/file-uploader.iife.min.js +0 -8
- package/web/file-uploader.iife.min.js.LEGAL.txt +0 -71
- package/web/file-uploader.min.d.ts +0 -2859
- package/web/file-uploader.min.js +0 -8
- package/web/file-uploader.min.js.LEGAL.txt +0 -71
- package/web/uc-basic.layered.min.css +0 -7
- package/web/uc-basic.min.css +0 -6
- package/web/uc-cloud-image-editor.layered.min.css +0 -7
- package/web/uc-cloud-image-editor.min.css +0 -6
- package/web/uc-cloud-image-editor.min.d.ts +0 -2816
- package/web/uc-cloud-image-editor.min.js +0 -8
- package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
- package/web/uc-file-uploader-inline.layered.min.css +0 -7
- package/web/uc-file-uploader-inline.min.css +0 -6
- package/web/uc-file-uploader-inline.min.d.ts +0 -2859
- package/web/uc-file-uploader-inline.min.js +0 -8
- package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-minimal.layered.min.css +0 -7
- package/web/uc-file-uploader-minimal.min.css +0 -6
- package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
- package/web/uc-file-uploader-minimal.min.js +0 -8
- package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-regular.layered.min.css +0 -7
- package/web/uc-file-uploader-regular.min.css +0 -6
- package/web/uc-file-uploader-regular.min.d.ts +0 -2859
- package/web/uc-file-uploader-regular.min.js +0 -8
- package/web/uc-file-uploader-regular.min.js.LEGAL.txt +0 -71
- package/web/uc-img.min.d.ts +0 -75
- package/web/uc-img.min.js +0 -8
- package/web/uc-img.min.js.LEGAL.txt +0 -24
|
@@ -1,7 +1,139 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var e={"locale-id":"uk","social-source-lang":"uk","upload-file":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0444\u0430\u0439\u043B","upload-files":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0444\u0430\u0439\u043B\u0438","choose-file":"\u041E\u0431\u0440\u0430\u0442\u0438 \u0444\u0430\u0439\u043B","choose-files":"\u041E\u0431\u0440\u0430\u0442\u0438 \u0444\u0430\u0439\u043B\u0438","drop-files-here":"\u041F\u0435\u0440\u0435\u0442\u044F\u0433\u043D\u0456\u0442\u044C \u0444\u0430\u0439\u043B\u0438 \u0441\u044E\u0434\u0438","select-file-source":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0434\u0436\u0435\u0440\u0435\u043B\u043E \u0444\u0430\u0439\u043B\u0443",selected:"\u0412\u0438\u0431\u0440\u0430\u043D\u043E",upload:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438","add-more":"\u0414\u043E\u0434\u0430\u0442\u0438 \u0449\u0435",cancel:"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438","start-from-cancel":"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438",clear:"\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u0438","camera-shot":"\u0417\u0440\u043E\u0431\u0438\u0442\u0438 \u0437\u043D\u0456\u043C\u043E\u043A","upload-url":"\u0406\u043C\u043F\u043E\u0440\u0442\u0443\u0432\u0430\u0442\u0438","upload-url-placeholder":"\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F \u0442\u0443\u0442","edit-image":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F","edit-detail":"\u0414\u0435\u0442\u0430\u043B\u0456",back:"\u041D\u0430\u0437\u0430\u0434",done:"\u0413\u043E\u0442\u043E\u0432\u043E",ok:"\u041E\u043A","remove-from-list":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438",no:"\u041D\u0456",yes:"\u0422\u0430\u043A","confirm-your-action":"\u041F\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0456\u0442\u044C \u0434\u0456\u044E","are-you-sure":"\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456?","selected-count":"\u0412\u0438\u0431\u0440\u0430\u043D\u043E:","upload-error":"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F","validation-error":"\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438","no-files":"\u0424\u0430\u0439\u043B\u0438 \u043D\u0435 \u0432\u0438\u0431\u0440\u0430\u043D\u0456",browse:"\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434","not-uploaded-yet":"\u0429\u0435 \u043D\u0435 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043E...",file__one:"\u0444\u0430\u0439\u043B",file__few:"\u0444\u0430\u0439\u043B\u0438",file__many:"\u0444\u0430\u0439\u043B\u0456\u0432",file__other:"\u0444\u0430\u0439\u043B\u0456\u0432",error__one:"\u043F\u043E\u043C\u0438\u043B\u043A\u0430",error__few:"\u043F\u043E\u043C\u0438\u043B\u043A\u0438",error__many:"\u043F\u043E\u043C\u0438\u043B\u043E\u043A",error__other:"\u043F\u043E\u043C\u0438\u043B\u043E\u043A","header-uploading":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043E","header-total":"{{count}} {{plural:file(count)}} \u0432\u0438\u0431\u0440\u0430\u043D\u043E","src-type-local":"\u0417 \u043F\u0440\u0438\u0441\u0442\u0440\u043E\u044E","src-type-from-url":"\u0417 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F","src-type-camera":"\u041A\u0430\u043C\u0435\u0440\u0430","src-type-draw":"\u041C\u0430\u043B\u044E\u0432\u0430\u0442\u0438","src-type-facebook":"Facebook","src-type-dropbox":"Dropbox","src-type-gdrive":"Google Drive","src-type-ngdrive":"Google Drive","src-type-gphotos":"Google Photos","src-type-flickr":"Flickr","src-type-vk":"VK","src-type-evernote":"Evernote","src-type-box":"Box","src-type-onedrive":"OneDrive","src-type-huddle":"Huddle","src-type-other":"\u0406\u043D\u0448\u0435","src-type-mobile-video-camera":"\u0412\u0456\u0434\u0435\u043E","src-type-mobile-photo-camera":"\u0424\u043E\u0442\u043E","caption-from-url":"\u0406\u043C\u043F\u043E\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F","caption-camera":"\u041A\u0430\u043C\u0435\u0440\u0430","caption-draw":"\u041C\u0430\u043B\u044E\u0432\u0430\u0442\u0438","caption-edit-file":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0444\u0430\u0439\u043B","file-no-name":"\u0411\u0435\u0437 \u043D\u0430\u0437\u0432\u0438...","toggle-fullscreen":"\u041D\u0430 \u0432\u0435\u0441\u044C \u0435\u043A\u0440\u0430\u043D","toggle-guides":"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u043D\u0430\u043F\u0440\u044F\u043C\u043D\u0456",rotate:"\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438","flip-vertical":"\u041F\u0435\u0440\u0435\u0432\u0435\u0440\u043D\u0443\u0442\u0438 \u0432\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u044C\u043D\u043E","flip-horizontal":"\u041F\u0435\u0440\u0435\u0432\u0435\u0440\u043D\u0443\u0442\u0438 \u0433\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u044C\u043D\u043E",apply:"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438",brightness:"\u042F\u0441\u043A\u0440\u0430\u0432\u0456\u0441\u0442\u044C",contrast:"\u041A\u043E\u043D\u0442\u0440\u0430\u0441\u0442\u043D\u0456\u0441\u0442\u044C",saturation:"\u041D\u0430\u0441\u0438\u0447\u0435\u043D\u0456\u0441\u0442\u044C",exposure:"\u0415\u043A\u0441\u043F\u043E\u0437\u0438\u0446\u0456\u044F",gamma:"\u0413\u0430\u043C\u0430",vibrance:"\u0412\u0456\u0431\u0440\u0430\u043D\u0442\u043D\u0456\u0441\u0442\u044C",warmth:"\u0422\u0435\u043F\u043B\u043E\u0442\u0430",enhance:"\u041F\u043E\u043A\u0440\u0430\u0449\u0438\u0442\u0438",original:"\u041E\u0440\u0438\u0433\u0456\u043D\u0430\u043B",resize:"\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0440\u043E\u0437\u043C\u0456\u0440",crop:"\u041E\u0431\u0440\u0456\u0437\u0430\u0442\u0438","select-color":"\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u043A\u043E\u043B\u0456\u0440",text:"\u0422\u0435\u043A\u0441\u0442",draw:"\u041C\u0430\u043B\u044E\u0432\u0430\u0442\u0438","cancel-edit":"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043D\u043D\u044F","tab-view":"\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434","tab-details":"\u0414\u0435\u0442\u0430\u043B\u0456","file-name":"\u041D\u0430\u0437\u0432\u0430","file-size":"\u0420\u043E\u0437\u043C\u0456\u0440","cdn-url":"CDN URL","file-size-unknown":"\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u043E","camera-permissions-denied":"\u0414\u043E\u0441\u0442\u0443\u043F \u0434\u043E \u043A\u0430\u043C\u0435\u0440\u0438 \u0437\u0430\u0431\u043E\u0440\u043E\u043D\u0435\u043D\u043E","camera-permissions-prompt":"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0434\u043E\u0437\u0432\u043E\u043B\u044C\u0442\u0435 \u0434\u043E\u0441\u0442\u0443\u043F \u0434\u043E \u043A\u0430\u043C\u0435\u0440\u0438","camera-permissions-request":"\u0417\u0430\u043F\u0438\u0442\u0430\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F","files-count-limit-error-title":"\u041F\u0435\u0440\u0435\u0432\u0438\u0449\u0435\u043D\u043E \u043B\u0456\u043C\u0456\u0442 \u043A\u0456\u043B\u044C\u043A\u043E\u0441\u0442\u0456 \u0444\u0430\u0439\u043B\u0456\u0432","files-count-limit-error-too-few":"\u0412\u0438 \u0432\u0438\u0431\u0440\u0430\u043B\u0438 {{total}} {{plural:file(total)}}. \u041C\u0456\u043D\u0456\u043C\u0443\u043C \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E {{min}} {{plural:file(min)}}.","files-count-limit-error-too-many":"\u0412\u0438 \u0432\u0438\u0431\u0440\u0430\u043B\u0438 \u0437\u0430\u0431\u0430\u0433\u0430\u0442\u043E \u0444\u0430\u0439\u043B\u0456\u0432. \u041C\u0430\u043A\u0441\u0438\u043C\u0443\u043C {{max}} {{plural:file(max)}}.","files-max-size-limit-error":"\u0424\u0430\u0439\u043B \u0437\u0430\u043D\u0430\u0434\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u0438\u0439. \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440 \u0444\u0430\u0439\u043B\u0443 {{maxFileSize}}.","has-validation-errors":"\u0421\u0442\u0430\u043B\u0430\u0441\u044F \u043F\u043E\u043C\u0438\u043B\u043A\u0430 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438 \u0444\u0430\u0439\u043B\u0443. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0432\u0430\u0448\u0456 \u0444\u0430\u0439\u043B\u0438 \u043F\u0435\u0440\u0435\u0434 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F\u043C.","images-only-accepted":"\u041F\u0440\u0438\u0439\u043C\u0430\u044E\u0442\u044C\u0441\u044F \u0442\u0456\u043B\u044C\u043A\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F.","file-type-not-allowed":"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0444\u0430\u0439\u043B\u0456\u0432 \u0446\u044C\u043E\u0433\u043E \u0442\u0438\u043F\u0443 \u0437\u0430\u0431\u043E\u0440\u043E\u043D\u0435\u043D\u043E.","some-files-were-not-uploaded":"\u0414\u0435\u044F\u043A\u0456 \u0444\u0430\u0439\u043B\u0438 \u043D\u0435 \u0431\u0443\u043B\u0438 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u0456.","file-item-edit-button":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438","file-item-remove-button":"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438","a11y-activity-header-button-close":"\u0417\u0430\u043A\u0440\u0438\u0442\u0438","a11y-editor-tab-filters":"\u0424\u0456\u043B\u044C\u0442\u0440\u0438","a11y-editor-tab-tuning":"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F","a11y-editor-tab-crop":"\u041E\u0431\u0440\u0456\u0437\u0430\u0442\u0438",flip:"\u041F\u0435\u0440\u0435\u0432\u0435\u0440\u043D\u0443\u0442\u0438",mirror:"\u0414\u0437\u0435\u0440\u043A\u0430\u043B\u043E","a11y-cloud-editor-apply-filter":"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438 \u0444\u0456\u043B\u044C\u0442\u0440 {{name}}","a11y-cloud-editor-apply-crop":"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u044E {{name}}","a11y-cloud-editor-apply-tuning":"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F {{name}}",finished:"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E",failed:"\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F",uploading:"\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F",idle:"\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F","a11y-file-item-status":"\u0424\u0430\u0439\u043B {{fileName}} \u0443 \u0441\u0442\u0430\u043D\u0456 {{status}}","select-all":"\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0441\u0456","deselect-all":"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u0431\u0456\u0440 \u0432\u0441\u0456\u0445","waiting-for":"\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F {{source}}","queued-uploading":"\u0423 \u0447\u0435\u0440\u0437\u0456 \u043D\u0430 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F","queued-validation":"\u0423 \u0447\u0435\u0440\u0437\u0456 \u043D\u0430 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0443",validation:"\u0422\u0440\u0438\u0432\u0430\u0454 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0430","a11y-cloud-editor-apply-aspect-ratio":"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u044E {{name}} {{value}}","crop-to-shape":"\u041E\u0431\u0440\u0456\u0437\u0430\u0442\u0438 \u0434\u043E {{value}}",custom:"\u0412\u0456\u043B\u044C\u043D\u0430 \u0444\u043E\u0440\u043C\u0430","freeform-crop":"\u0412\u0456\u043B\u044C\u043D\u0430 \u043E\u0431\u0440\u0456\u0437\u043A\u0430"};export{e as default};
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var uk_default = {
|
|
8
|
+
"locale-id": "uk",
|
|
9
|
+
"social-source-lang": "uk",
|
|
10
|
+
"upload-file": "Завантажити файл",
|
|
11
|
+
"upload-files": "Завантажити файли",
|
|
12
|
+
"choose-file": "Обрати файл",
|
|
13
|
+
"choose-files": "Обрати файли",
|
|
14
|
+
"drop-files-here": "Перетягніть файли сюди",
|
|
15
|
+
"select-file-source": "Виберіть джерело файлу",
|
|
16
|
+
selected: "Вибрано",
|
|
17
|
+
upload: "Завантажити",
|
|
18
|
+
"add-more": "Додати ще",
|
|
19
|
+
cancel: "Скасувати",
|
|
20
|
+
"start-from-cancel": "Скасувати",
|
|
21
|
+
clear: "Очистити",
|
|
22
|
+
"camera-shot": "Зробити знімок",
|
|
23
|
+
"upload-url": "Імпортувати",
|
|
24
|
+
"upload-url-placeholder": "Вставте посилання тут",
|
|
25
|
+
"edit-image": "Редагувати зображення",
|
|
26
|
+
"edit-detail": "Деталі",
|
|
27
|
+
back: "Назад",
|
|
28
|
+
done: "Готово",
|
|
29
|
+
ok: "Ок",
|
|
30
|
+
"remove-from-list": "Видалити",
|
|
31
|
+
no: "Ні",
|
|
32
|
+
yes: "Так",
|
|
33
|
+
"confirm-your-action": "Підтвердіть дію",
|
|
34
|
+
"are-you-sure": "Ви впевнені?",
|
|
35
|
+
"selected-count": "Вибрано:",
|
|
36
|
+
"upload-error": "Помилка завантаження",
|
|
37
|
+
"validation-error": "Помилка перевірки",
|
|
38
|
+
"no-files": "Файли не вибрані",
|
|
39
|
+
browse: "Перегляд",
|
|
40
|
+
"not-uploaded-yet": "Ще не завантажено...",
|
|
41
|
+
file__one: "файл",
|
|
42
|
+
file__few: "файли",
|
|
43
|
+
file__many: "файлів",
|
|
44
|
+
file__other: "файлів",
|
|
45
|
+
error__one: "помилка",
|
|
46
|
+
error__few: "помилки",
|
|
47
|
+
error__many: "помилок",
|
|
48
|
+
error__other: "помилок",
|
|
49
|
+
"header-uploading": "Завантаження {{count}} {{plural:file(count)}}",
|
|
50
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
51
|
+
"header-succeed": "{{count}} {{plural:file(count)}} завантажено",
|
|
52
|
+
"header-total": "{{count}} {{plural:file(count)}} вибрано",
|
|
53
|
+
"src-type-local": "З пристрою",
|
|
54
|
+
"src-type-from-url": "З посилання",
|
|
55
|
+
"src-type-camera": "Камера",
|
|
56
|
+
"src-type-facebook": "Facebook",
|
|
57
|
+
"src-type-dropbox": "Dropbox",
|
|
58
|
+
"src-type-gdrive": "Google Drive",
|
|
59
|
+
"src-type-ngdrive": "Google Drive",
|
|
60
|
+
"src-type-gphotos": "Google Photos",
|
|
61
|
+
"src-type-flickr": "Flickr",
|
|
62
|
+
"src-type-vk": "VK",
|
|
63
|
+
"src-type-evernote": "Evernote",
|
|
64
|
+
"src-type-box": "Box",
|
|
65
|
+
"src-type-onedrive": "OneDrive",
|
|
66
|
+
"src-type-huddle": "Huddle",
|
|
67
|
+
"src-type-other": "Інше",
|
|
68
|
+
"src-type-mobile-video-camera": "Відео",
|
|
69
|
+
"src-type-mobile-photo-camera": "Фото",
|
|
70
|
+
"caption-from-url": "Імпортувати з посилання",
|
|
71
|
+
"caption-camera": "Камера",
|
|
72
|
+
"caption-edit-file": "Редагувати файл",
|
|
73
|
+
"file-no-name": "Без назви...",
|
|
74
|
+
"toggle-fullscreen": "На весь екран",
|
|
75
|
+
"toggle-guides": "Показати напрямні",
|
|
76
|
+
rotate: "Повернути",
|
|
77
|
+
"flip-vertical": "Перевернути вертикально",
|
|
78
|
+
"flip-horizontal": "Перевернути горизонтально",
|
|
79
|
+
apply: "Застосувати",
|
|
80
|
+
brightness: "Яскравість",
|
|
81
|
+
contrast: "Контрастність",
|
|
82
|
+
saturation: "Насиченість",
|
|
83
|
+
exposure: "Експозиція",
|
|
84
|
+
gamma: "Гама",
|
|
85
|
+
vibrance: "Вібрантність",
|
|
86
|
+
warmth: "Теплота",
|
|
87
|
+
enhance: "Покращити",
|
|
88
|
+
original: "Оригінал",
|
|
89
|
+
resize: "Змінити розмір",
|
|
90
|
+
crop: "Обрізати",
|
|
91
|
+
"select-color": "Вибрати колір",
|
|
92
|
+
text: "Текст",
|
|
93
|
+
draw: "Малювати",
|
|
94
|
+
"cancel-edit": "Скасувати редагування",
|
|
95
|
+
"tab-view": "Перегляд",
|
|
96
|
+
"tab-details": "Деталі",
|
|
97
|
+
"file-name": "Назва",
|
|
98
|
+
"file-size": "Розмір",
|
|
99
|
+
"cdn-url": "CDN URL",
|
|
100
|
+
"file-size-unknown": "Невідомо",
|
|
101
|
+
"camera-permissions-denied": "Доступ до камери заборонено",
|
|
102
|
+
"camera-permissions-prompt": "Будь ласка, дозвольте доступ до камери",
|
|
103
|
+
"camera-permissions-request": "Запитати доступ",
|
|
104
|
+
"files-count-limit-error-title": "Перевищено ліміт кількості файлів",
|
|
105
|
+
"files-count-limit-error-too-few": "Ви вибрали {{total}} {{plural:file(total)}}. Мінімум потрібно {{min}} {{plural:file(min)}}.",
|
|
106
|
+
"files-count-limit-error-too-many": "Ви вибрали забагато файлів. Максимум {{max}} {{plural:file(max)}}.",
|
|
107
|
+
"files-max-size-limit-error": "Файл занадто великий. Максимальний розмір файлу {{maxFileSize}}.",
|
|
108
|
+
"has-validation-errors": "Сталася помилка перевірки файлу. Будь ласка, перевірте ваші файли перед завантаженням.",
|
|
109
|
+
"images-only-accepted": "Приймаються тільки зображення.",
|
|
110
|
+
"file-type-not-allowed": "Завантаження файлів цього типу заборонено.",
|
|
111
|
+
"some-files-were-not-uploaded": "Деякі файли не були завантажені.",
|
|
112
|
+
"file-item-edit-button": "Редагувати",
|
|
113
|
+
"file-item-remove-button": "Видалити",
|
|
114
|
+
"a11y-activity-header-button-close": "Закрити",
|
|
115
|
+
"a11y-editor-tab-filters": "Фільтри",
|
|
116
|
+
"a11y-editor-tab-tuning": "Налаштування",
|
|
117
|
+
"a11y-editor-tab-crop": "Обрізати",
|
|
118
|
+
flip: "Перевернути",
|
|
119
|
+
mirror: "Дзеркало",
|
|
120
|
+
"a11y-cloud-editor-apply-filter": "Застосувати фільтр {{name}}",
|
|
121
|
+
"a11y-cloud-editor-apply-crop": "Застосувати операцію {{name}}",
|
|
122
|
+
"a11y-cloud-editor-apply-tuning": "Застосувати налаштування {{name}}",
|
|
123
|
+
finished: "Завершено",
|
|
124
|
+
failed: "Не вдалося",
|
|
125
|
+
uploading: "Завантаження",
|
|
126
|
+
idle: "Очікування",
|
|
127
|
+
"a11y-file-item-status": "Файл {{fileName}} у стані {{status}}",
|
|
128
|
+
"select-all": "Вибрати всі",
|
|
129
|
+
"deselect-all": "Скасувати вибір всіх",
|
|
130
|
+
"waiting-for": "Очікування {{source}}",
|
|
131
|
+
"queued-uploading": "У черзі на завантаження",
|
|
132
|
+
"queued-validation": "У черзі на перевірку",
|
|
133
|
+
validation: "Триває перевірка",
|
|
134
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Застосувати операцію {{name}} {{value}}",
|
|
135
|
+
"crop-to-shape": "Обрізати до {{value}}",
|
|
136
|
+
custom: "Вільна форма",
|
|
137
|
+
"freeform-crop": "Вільна обрізка"
|
|
138
|
+
};
|
|
139
|
+
export { uk_default as default };
|
|
@@ -43,7 +43,6 @@ declare const _default: {
|
|
|
43
43
|
'src-type-local': string;
|
|
44
44
|
'src-type-from-url': string;
|
|
45
45
|
'src-type-camera': string;
|
|
46
|
-
'src-type-draw': string;
|
|
47
46
|
'src-type-facebook': string;
|
|
48
47
|
'src-type-dropbox': string;
|
|
49
48
|
'src-type-gdrive': string;
|
|
@@ -60,7 +59,6 @@ declare const _default: {
|
|
|
60
59
|
'src-type-mobile-photo-camera': string;
|
|
61
60
|
'caption-from-url': string;
|
|
62
61
|
'caption-camera': string;
|
|
63
|
-
'caption-draw': string;
|
|
64
62
|
'caption-edit-file': string;
|
|
65
63
|
'file-no-name': string;
|
|
66
64
|
'toggle-fullscreen': string;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|
|
@@ -1,7 +1,135 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var vi_default = {
|
|
8
|
+
"locale-id": "vi",
|
|
9
|
+
"social-source-lang": "vi",
|
|
10
|
+
"upload-file": "Tải lên tệp",
|
|
11
|
+
"upload-files": "Tải lên các tệp",
|
|
12
|
+
"choose-file": "Chọn tệp",
|
|
13
|
+
"choose-files": "Chọn các tệp",
|
|
14
|
+
"drop-files-here": "Thả các tệp vào đây",
|
|
15
|
+
"select-file-source": "Chọn nguồn tệp",
|
|
16
|
+
selected: "Đã chọn",
|
|
17
|
+
upload: "Tải lên",
|
|
18
|
+
"add-more": "Thêm",
|
|
19
|
+
cancel: "Hủy bỏ",
|
|
20
|
+
"start-from-cancel": "Hủy bỏ",
|
|
21
|
+
clear: "Xóa",
|
|
22
|
+
"camera-shot": "Chụp",
|
|
23
|
+
"upload-url": "Nhập khẩu",
|
|
24
|
+
"upload-url-placeholder": "Dán liên kết ở đây",
|
|
25
|
+
"edit-image": "Chỉnh sửa ảnh",
|
|
26
|
+
"edit-detail": "Chi tiết",
|
|
27
|
+
back: "Quay lại",
|
|
28
|
+
done: "Hoàn thành",
|
|
29
|
+
ok: "Đồng ý",
|
|
30
|
+
"remove-from-list": "Xóa",
|
|
31
|
+
no: "Không",
|
|
32
|
+
yes: "Có",
|
|
33
|
+
"confirm-your-action": "Xác nhận hành động của bạn",
|
|
34
|
+
"are-you-sure": "Bạn có chắc không?",
|
|
35
|
+
"selected-count": "Đã chọn:",
|
|
36
|
+
"upload-error": "Lỗi tải lên",
|
|
37
|
+
"validation-error": "Lỗi xác thực",
|
|
38
|
+
"no-files": "Không có tệp nào được chọn",
|
|
39
|
+
browse: "Duyệt",
|
|
40
|
+
"not-uploaded-yet": "Chưa được tải lên...",
|
|
41
|
+
file__one: "tệp",
|
|
42
|
+
file__other: "tệp",
|
|
43
|
+
error__one: "lỗi",
|
|
44
|
+
error__other: "lỗi",
|
|
45
|
+
"header-uploading": "Đang tải lên {{count}} {{plural:file(count)}}",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "{{count}} {{plural:file(count)}} đã được tải lên",
|
|
48
|
+
"header-total": "{{count}} {{plural:file(count)}} đã được chọn",
|
|
49
|
+
"src-type-local": "Từ thiết bị",
|
|
50
|
+
"src-type-from-url": "Từ liên kết",
|
|
51
|
+
"src-type-camera": "Máy ảnh",
|
|
52
|
+
"src-type-facebook": "Facebook",
|
|
53
|
+
"src-type-dropbox": "Dropbox",
|
|
54
|
+
"src-type-gdrive": "Google Drive",
|
|
55
|
+
"src-type-ngdrive": "Google Drive",
|
|
56
|
+
"src-type-gphotos": "Google Photos",
|
|
57
|
+
"src-type-flickr": "Flickr",
|
|
58
|
+
"src-type-vk": "VK",
|
|
59
|
+
"src-type-evernote": "Evernote",
|
|
60
|
+
"src-type-box": "Box",
|
|
61
|
+
"src-type-onedrive": "OneDrive",
|
|
62
|
+
"src-type-huddle": "Huddle",
|
|
63
|
+
"src-type-other": "Khác",
|
|
64
|
+
"src-type-mobile-video-camera": "Video",
|
|
65
|
+
"src-type-mobile-photo-camera": "Ảnh",
|
|
66
|
+
"caption-from-url": "Nhập khẩu từ liên kết",
|
|
67
|
+
"caption-camera": "Máy ảnh",
|
|
68
|
+
"caption-edit-file": "Chỉnh sửa tệp",
|
|
69
|
+
"file-no-name": "Không tên...",
|
|
70
|
+
"toggle-fullscreen": "Chuyển đổi toàn màn hình",
|
|
71
|
+
"toggle-guides": "Chuyển đổi hướng dẫn",
|
|
72
|
+
rotate: "Xoay",
|
|
73
|
+
"flip-vertical": "Lật dọc",
|
|
74
|
+
"flip-horizontal": "Lật ngang",
|
|
75
|
+
apply: "Áp dụng",
|
|
76
|
+
brightness: "Độ sáng",
|
|
77
|
+
contrast: "Tương phản",
|
|
78
|
+
saturation: "Độ bão hòa",
|
|
79
|
+
exposure: "Phơi sáng",
|
|
80
|
+
gamma: "Gamma",
|
|
81
|
+
vibrance: "Sức sống",
|
|
82
|
+
warmth: "Ấm áp",
|
|
83
|
+
enhance: "Cải thiện",
|
|
84
|
+
original: "Bản gốc",
|
|
85
|
+
resize: "Thay đổi kích thước ảnh",
|
|
86
|
+
crop: "Cắt",
|
|
87
|
+
"select-color": "Chọn màu",
|
|
88
|
+
text: "Văn bản",
|
|
89
|
+
draw: "Vẽ",
|
|
90
|
+
"cancel-edit": "Hủy chỉnh sửa",
|
|
91
|
+
"tab-view": "Xem trước",
|
|
92
|
+
"tab-details": "Chi tiết",
|
|
93
|
+
"file-name": "Tên",
|
|
94
|
+
"file-size": "Kích thước",
|
|
95
|
+
"cdn-url": "URL CDN",
|
|
96
|
+
"file-size-unknown": "Không xác định",
|
|
97
|
+
"camera-permissions-denied": "Truy cập máy ảnh bị từ chối",
|
|
98
|
+
"camera-permissions-prompt": "Vui lòng cho phép truy cập vào máy ảnh",
|
|
99
|
+
"camera-permissions-request": "Yêu cầu truy cập",
|
|
100
|
+
"files-count-limit-error-title": "Quá giới hạn số lượng tệp",
|
|
101
|
+
"files-count-limit-error-too-few": "Bạn đã chọn {{total}} {{plural:file(total)}}. Tối thiểu {{min}} {{plural:file(min)}} là cần thiết.",
|
|
102
|
+
"files-count-limit-error-too-many": "Bạn đã chọn quá nhiều tệp. Tối đa {{max}} {{plural:file(max)}} là được phép.",
|
|
103
|
+
"files-max-size-limit-error": "Tệp quá lớn. Kích thước tối đa của tệp là {{maxFileSize}}.",
|
|
104
|
+
"has-validation-errors": "Xảy ra lỗi xác thực tệp. Vui lòng kiểm tra lại tệp của bạn trước khi tải lên.",
|
|
105
|
+
"images-only-accepted": "Chỉ chấp nhận tệp ảnh.",
|
|
106
|
+
"file-type-not-allowed": "Không cho phép tải lên loại tệp này.",
|
|
107
|
+
"some-files-were-not-uploaded": "Một số tệp chưa được tải lên.",
|
|
108
|
+
"file-item-edit-button": "Chỉnh sửa",
|
|
109
|
+
"file-item-remove-button": "Gỡ bỏ",
|
|
110
|
+
"a11y-activity-header-button-close": "Đóng",
|
|
111
|
+
"a11y-editor-tab-filters": "Bộ lọc",
|
|
112
|
+
"a11y-editor-tab-tuning": "Tuning",
|
|
113
|
+
"a11y-editor-tab-crop": "Cắt",
|
|
114
|
+
flip: "Lật",
|
|
115
|
+
mirror: "Gương",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "Áp dụng bộ lọc {{name}}",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "Áp dụng thao tác {{name}}",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "Áp dụng điều chỉnh {{name}}",
|
|
119
|
+
finished: "Hoàn thành",
|
|
120
|
+
failed: "Thất bại",
|
|
121
|
+
uploading: "Đang tải lên",
|
|
122
|
+
idle: "Nhàn rỗi",
|
|
123
|
+
"a11y-file-item-status": "Tệp {{fileName}} ở trạng thái {{status}}",
|
|
124
|
+
"select-all": "Chọn tất cả",
|
|
125
|
+
"deselect-all": "Bỏ chọn tất cả",
|
|
126
|
+
"waiting-for": "Đang chờ {{source}}",
|
|
127
|
+
"queued-uploading": "Đang xếp hàng để tải lên",
|
|
128
|
+
"queued-validation": "Đang xếp hàng để xác thực",
|
|
129
|
+
validation: "Đang xác thực",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Áp dụng thao tác {{name}} {{value}}",
|
|
131
|
+
"crop-to-shape": "Cắt theo {{value}}",
|
|
132
|
+
custom: "Dạng tự do",
|
|
133
|
+
"freeform-crop": "Cắt tự do"
|
|
134
|
+
};
|
|
135
|
+
export { vi_default as default };
|
|
@@ -43,7 +43,6 @@ declare const _default: {
|
|
|
43
43
|
'src-type-local': string;
|
|
44
44
|
'src-type-from-url': string;
|
|
45
45
|
'src-type-camera': string;
|
|
46
|
-
'src-type-draw': string;
|
|
47
46
|
'src-type-facebook': string;
|
|
48
47
|
'src-type-dropbox': string;
|
|
49
48
|
'src-type-gdrive': string;
|
|
@@ -60,7 +59,6 @@ declare const _default: {
|
|
|
60
59
|
'src-type-mobile-photo-camera': string;
|
|
61
60
|
'caption-from-url': string;
|
|
62
61
|
'caption-camera': string;
|
|
63
|
-
'caption-draw': string;
|
|
64
62
|
'caption-edit-file': string;
|
|
65
63
|
'file-no-name': string;
|
|
66
64
|
'toggle-fullscreen': string;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|
|
@@ -1,7 +1,135 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var
|
|
2
|
+
* @license
|
|
3
|
+
* Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
|
|
4
|
+
* License: https://github.com/uploadcare/blob/main/LICENSE
|
|
5
|
+
* Built: 2026-03-02T14:46:15.080Z
|
|
6
|
+
*/
|
|
7
|
+
var zh_TW_default = {
|
|
8
|
+
"locale-id": "zh-TW",
|
|
9
|
+
"social-source-lang": "zh-TW",
|
|
10
|
+
"upload-file": "上傳檔案",
|
|
11
|
+
"upload-files": "上傳多個檔案",
|
|
12
|
+
"choose-file": "選擇檔案",
|
|
13
|
+
"choose-files": "選擇多個檔案",
|
|
14
|
+
"drop-files-here": "將檔案拖曳至此",
|
|
15
|
+
"select-file-source": "選擇檔案來源",
|
|
16
|
+
selected: "已選擇",
|
|
17
|
+
upload: "上傳",
|
|
18
|
+
"add-more": "新增更多",
|
|
19
|
+
cancel: "取消",
|
|
20
|
+
"start-from-cancel": "取消",
|
|
21
|
+
clear: "清除",
|
|
22
|
+
"camera-shot": "拍攝",
|
|
23
|
+
"upload-url": "匯入",
|
|
24
|
+
"upload-url-placeholder": "貼上連結",
|
|
25
|
+
"edit-image": "編輯圖片",
|
|
26
|
+
"edit-detail": "編輯詳情",
|
|
27
|
+
back: "返回",
|
|
28
|
+
done: "完成",
|
|
29
|
+
ok: "確定",
|
|
30
|
+
"remove-from-list": "移除",
|
|
31
|
+
no: "否",
|
|
32
|
+
yes: "是",
|
|
33
|
+
"confirm-your-action": "確認您的操作",
|
|
34
|
+
"are-you-sure": "您確定嗎?",
|
|
35
|
+
"selected-count": "已選擇:",
|
|
36
|
+
"upload-error": "上傳錯誤",
|
|
37
|
+
"validation-error": "驗證錯誤",
|
|
38
|
+
"no-files": "未選擇任何檔案",
|
|
39
|
+
browse: "瀏覽",
|
|
40
|
+
"not-uploaded-yet": "尚未上傳...",
|
|
41
|
+
file__one: "個檔案",
|
|
42
|
+
file__other: "個檔案",
|
|
43
|
+
error__one: "個錯誤",
|
|
44
|
+
error__other: "個錯誤",
|
|
45
|
+
"header-uploading": "正在上傳 {{count}} {{plural:file(count)}}",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "已上傳 {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-total": "已選擇 {{count}} {{plural:file(count)}}",
|
|
49
|
+
"src-type-local": "從裝置",
|
|
50
|
+
"src-type-from-url": "從連結",
|
|
51
|
+
"src-type-camera": "相機",
|
|
52
|
+
"src-type-facebook": "Facebook",
|
|
53
|
+
"src-type-dropbox": "Dropbox",
|
|
54
|
+
"src-type-gdrive": "Google Drive",
|
|
55
|
+
"src-type-ngdrive": "Google Drive",
|
|
56
|
+
"src-type-gphotos": "Google Photos",
|
|
57
|
+
"src-type-flickr": "Flickr",
|
|
58
|
+
"src-type-vk": "VK",
|
|
59
|
+
"src-type-evernote": "Evernote",
|
|
60
|
+
"src-type-box": "Box",
|
|
61
|
+
"src-type-onedrive": "OneDrive",
|
|
62
|
+
"src-type-huddle": "Huddle",
|
|
63
|
+
"src-type-other": "其他",
|
|
64
|
+
"src-type-mobile-video-camera": "影片",
|
|
65
|
+
"src-type-mobile-photo-camera": "照片",
|
|
66
|
+
"caption-from-url": "從連結匯入",
|
|
67
|
+
"caption-camera": "相機",
|
|
68
|
+
"caption-edit-file": "編輯檔案",
|
|
69
|
+
"file-no-name": "無名稱...",
|
|
70
|
+
"toggle-fullscreen": "切換全螢幕",
|
|
71
|
+
"toggle-guides": "切換指南",
|
|
72
|
+
rotate: "旋轉",
|
|
73
|
+
"flip-vertical": "垂直翻轉",
|
|
74
|
+
"flip-horizontal": "水平翻轉",
|
|
75
|
+
apply: "應用",
|
|
76
|
+
brightness: "亮度",
|
|
77
|
+
contrast: "對比",
|
|
78
|
+
saturation: "飽和度",
|
|
79
|
+
exposure: "曝光",
|
|
80
|
+
gamma: "伽瑪",
|
|
81
|
+
vibrance: "活力",
|
|
82
|
+
warmth: "溫暖",
|
|
83
|
+
enhance: "增強",
|
|
84
|
+
original: "原始",
|
|
85
|
+
resize: "調整圖片大小",
|
|
86
|
+
crop: "裁剪",
|
|
87
|
+
"select-color": "選擇顏色",
|
|
88
|
+
text: "文字",
|
|
89
|
+
draw: "繪圖",
|
|
90
|
+
"cancel-edit": "取消編輯",
|
|
91
|
+
"tab-view": "預覽",
|
|
92
|
+
"tab-details": "詳情",
|
|
93
|
+
"file-name": "名稱",
|
|
94
|
+
"file-size": "大小",
|
|
95
|
+
"cdn-url": "CDN 網址",
|
|
96
|
+
"file-size-unknown": "未知",
|
|
97
|
+
"camera-permissions-denied": "相機訪問被拒絕",
|
|
98
|
+
"camera-permissions-prompt": "請允許訪問相機",
|
|
99
|
+
"camera-permissions-request": "請求訪問",
|
|
100
|
+
"files-count-limit-error-title": "檔案數量超出限制",
|
|
101
|
+
"files-count-limit-error-too-few": "您選擇了 {{total}} {{plural:file(total)}}。至少需要 {{min}} {{plural:file(min)}}。",
|
|
102
|
+
"files-count-limit-error-too-many": "您選擇的檔案太多。最多 {{max}} {{plural:file(max)}}。",
|
|
103
|
+
"files-max-size-limit-error": "檔案過大。最大檔案大小為 {{maxFileSize}}。",
|
|
104
|
+
"has-validation-errors": "檔案驗證錯誤發生。請在上傳前檢查您的檔案。",
|
|
105
|
+
"images-only-accepted": "僅接受圖片檔案。",
|
|
106
|
+
"file-type-not-allowed": "不允許上傳這些檔案類型。",
|
|
107
|
+
"some-files-were-not-uploaded": "部分檔案未上傳。",
|
|
108
|
+
"file-item-edit-button": "編輯",
|
|
109
|
+
"file-item-remove-button": "移除",
|
|
110
|
+
"a11y-activity-header-button-close": "關閉",
|
|
111
|
+
"a11y-editor-tab-filters": "篩選器",
|
|
112
|
+
"a11y-editor-tab-tuning": "調整",
|
|
113
|
+
"a11y-editor-tab-crop": "裁剪",
|
|
114
|
+
flip: "翻轉",
|
|
115
|
+
mirror: "鏡像",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "應用 {{name}} 篩選器",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "應用 {{name}} 操作",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "應用 {{name}} 調整",
|
|
119
|
+
finished: "完成",
|
|
120
|
+
failed: "失敗",
|
|
121
|
+
uploading: "上傳中",
|
|
122
|
+
idle: "閒置",
|
|
123
|
+
"a11y-file-item-status": "檔案 {{fileName}} 的狀態是 {{status}}",
|
|
124
|
+
"select-all": "全選",
|
|
125
|
+
"deselect-all": "取消全選",
|
|
126
|
+
"waiting-for": "等待 {{source}}",
|
|
127
|
+
"queued-uploading": "排隊等待上傳",
|
|
128
|
+
"queued-validation": "排隊等待驗證",
|
|
129
|
+
validation: "驗證中",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "套用操作 {{name}} {{value}}",
|
|
131
|
+
"crop-to-shape": "裁剪為 {{value}}",
|
|
132
|
+
custom: "自由形式",
|
|
133
|
+
"freeform-crop": "自由裁剪"
|
|
134
|
+
};
|
|
135
|
+
export { zh_TW_default as default };
|
|
@@ -43,7 +43,6 @@ declare const _default: {
|
|
|
43
43
|
'src-type-local': string;
|
|
44
44
|
'src-type-from-url': string;
|
|
45
45
|
'src-type-camera': string;
|
|
46
|
-
'src-type-draw': string;
|
|
47
46
|
'src-type-facebook': string;
|
|
48
47
|
'src-type-dropbox': string;
|
|
49
48
|
'src-type-gdrive': string;
|
|
@@ -60,7 +59,6 @@ declare const _default: {
|
|
|
60
59
|
'src-type-mobile-photo-camera': string;
|
|
61
60
|
'caption-from-url': string;
|
|
62
61
|
'caption-camera': string;
|
|
63
|
-
'caption-draw': string;
|
|
64
62
|
'caption-edit-file': string;
|
|
65
63
|
'file-no-name': string;
|
|
66
64
|
'toggle-fullscreen': string;
|
|
@@ -128,5 +126,4 @@ declare const _default: {
|
|
|
128
126
|
custom: string;
|
|
129
127
|
'freeform-crop': string;
|
|
130
128
|
};
|
|
131
|
-
|
|
132
|
-
export { _default as default };
|
|
129
|
+
export default _default;
|