@uploadcare/file-uploader 1.27.0 → 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 +10 -4
- 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,137 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var e={"locale-id":"sr","social-source-lang":"sr","upload-file":"\u041E\u0442\u043F\u0440\u0435\u043C\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443","upload-files":"\u041E\u0442\u043F\u0440\u0435\u043C\u0438 \u0434\u0430\u0442o\u0442\u0435\u043A\u0435","choose-file":"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443","choose-files":"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435","drop-files-here":"\u041F\u043E\u0432\u0443\u0446\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u043E\u0432\u0434\u0435","select-file-source":"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0438\u0437\u0432\u043E\u0440 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435",selected:"\u0418\u0437\u0430\u0431\u0440\u0430\u043D\u043E",upload:"\u041E\u0442\u043F\u0440\u0435\u043C\u0438","add-more":"\u0414\u043E\u0434\u0430\u0458 \u0458\u043E\u0448",cancel:"\u041E\u0442\u043A\u0430\u0436\u0438","start-from-cancel":"\u041E\u0442\u043A\u0430\u0436\u0438",clear:"\u041E\u0447\u0438\u0441\u0442\u0438","camera-shot":"\u0421\u043B\u0438\u043A\u0430\u0458","upload-url":"\u0423\u0432\u0435\u0437\u0438","upload-url-placeholder":"\u041D\u0430\u043B\u0435\u043F\u0438 \u0432\u0435\u0437\u0443 \u043E\u0432\u0434\u0435","edit-image":"\u0423\u0440\u0435\u0434\u0438 \u0441\u043B\u0438\u043A\u0443","edit-detail":"\u0414\u0435\u0442\u0430\u0459\u0438",back:"\u041D\u0430\u0437\u0430\u0434",done:"\u0417\u0430\u0432\u0440\u0448\u0435\u043D\u043E",ok:"\u0423 \u0440\u0435\u0434\u0443","remove-from-list":"\u0423\u043A\u043B\u043E\u043D\u0438",no:"\u041D\u0435",yes:"\u0414\u0430","confirm-your-action":"\u041F\u043E\u0442\u0432\u0440\u0434\u0438 \u0430\u043A\u0446\u0438\u0458\u0443","are-you-sure":"\u0414\u0430 \u043B\u0438 \u0441\u0442\u0435 \u0441\u0438\u0433\u0443\u0440\u043D\u0438?","selected-count":"\u0418\u0437\u0430\u0431\u0440\u0430\u043D\u043E:","upload-error":"\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u043E\u0442\u043F\u0440\u0435\u043C\u0430\u045A\u0443","validation-error":"\u0413\u0440\u0435\u0448\u043A\u0430 \u0443 \u0432\u0430\u043B\u0438\u0434\u0430\u0446\u0438\u0458\u0438","no-files":"\u041D\u0435\u043C\u0430 \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u0438\u0445 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430",browse:"\u041F\u0440\u0435\u0442\u0440\u0430\u0436\u0438","not-uploaded-yet":"\u0408\u043E\u0448 \u043D\u0438\u0458\u0435 \u043E\u0442\u043F\u0440\u0435\u043C\u0459\u0435\u043D\u043E...",file__one:"\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430",file__few:"\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435",file__other:"\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430",error__one:"\u0433\u0440\u0435\u0448\u043A\u0430",error__few:"\u0433\u0440\u0435\u0448\u043A\u0435",error__other:"\u0433\u0440\u0435\u0448\u0430\u043A\u0430","header-uploading":"\u041E\u0442\u043F\u0440\u0435\u043C\u0430\u045A\u0435 {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} \u043E\u0442\u043F\u0440\u0435\u043C\u0459\u0435\u043D\u043E","header-total":"{{count}} {{plural:file(count)}} \u0438\u0437\u0430\u0431\u0440\u0430\u043D\u043E","src-type-local":"\u0421\u0430 \u0443\u0440\u0435\u0452\u0430\u0458\u0430","src-type-from-url":"\u0421\u0430 \u0432\u0435\u0437\u0435","src-type-camera":"\u041A\u0430\u043C\u0435\u0440\u0430","src-type-draw":"\u0426\u0440\u0442\u0430\u0458","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":"\u041E\u0441\u0442\u0430\u043B\u043E","src-type-mobile-video-camera":"\u0412\u0438\u0434\u0435\u043E","src-type-mobile-photo-camera":"\u0424\u043E\u0442\u043E\u0433\u0440\u0430\u0444\u0438\u0458\u0430","caption-from-url":"\u0423\u0432\u0435\u0437\u0438 \u0441\u0430 \u0432\u0435\u0437\u0435","caption-camera":"\u041A\u0430\u043C\u0435\u0440\u0430","caption-draw":"\u0426\u0440\u0442\u0430\u0458","caption-edit-file":"\u0423\u0440\u0435\u0434\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0443","file-no-name":"\u0411\u0435\u0437 \u0438\u043C\u0435\u043D\u0430...","toggle-fullscreen":"\u041F\u0440\u0435\u043A\u043B\u043E\u043F\u0438 \u043D\u0430 \u0446\u0435\u043E \u0435\u043A\u0440\u0430\u043D","toggle-guides":"\u041F\u0440\u0435\u043A\u043B\u043E\u043F\u0438 \u0432\u043E\u0434\u0438\u0447\u0435",rotate:"\u0420\u043E\u0442\u0438\u0440\u0430\u0458","flip-vertical":"\u041E\u043A\u0440\u0435\u043D\u0438 \u0432\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u043D\u043E","flip-horizontal":"\u041E\u043A\u0440\u0435\u043D\u0438 \u0445\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u043D\u043E",apply:"\u041F\u0440\u0438\u043C\u0435\u043D\u0438",brightness:"\u0421\u0432\u0435\u0442\u043B\u0438\u043D\u0430",contrast:"\u041A\u043E\u043D\u0442\u0440\u0430\u0441\u0442",saturation:"\u0417\u0430\u0441\u0438\u045B\u0435\u045A\u0435",exposure:"\u0415\u043A\u0441\u043F\u043E\u0437\u0438\u0446\u0438\u0458\u0430",gamma:"\u0413\u0430\u043C\u0430",vibrance:"\u0412\u0438\u0431\u0440\u0430\u043D\u0442\u043D\u043E\u0441\u0442",warmth:"\u0422\u043E\u043F\u043B\u043E\u0442\u0430",enhance:"\u041F\u043E\u0431\u043E\u0459\u0448\u0430\u0458",original:"\u041E\u0440\u0438\u0433\u0438\u043D\u0430\u043B",resize:"\u041F\u0440\u043E\u043C\u0435\u043D\u0438 \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0443 \u0441\u043B\u0438\u043A\u0435",crop:"\u0418\u0441\u0435\u0446\u0438","select-color":"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0431\u043E\u0458\u0443",text:"\u0422\u0435\u043A\u0441\u0442",draw:"\u0426\u0440\u0442\u0430\u0458","cancel-edit":"\u041E\u0442\u043A\u0430\u0436\u0438 \u0443\u0440\u0435\u0452\u0438\u0432\u0430\u045A\u0435","tab-view":"\u041F\u0440\u0435\u0433\u043B\u0435\u0434","tab-details":"\u0414\u0435\u0442\u0430\u0459\u0438","file-name":"\u0418\u043C\u0435","file-size":"\u0412\u0435\u043B\u0438\u0447\u0438\u043D\u0430","cdn-url":"CDN URL","file-size-unknown":"\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u043E","camera-permissions-denied":"\u041F\u0440\u0438\u0441\u0442\u0443\u043F \u043A\u0430\u043C\u0435\u0440\u0438 \u043E\u0434\u0431\u0438\u0458\u0435\u043D","camera-permissions-prompt":"\u041C\u043E\u043B\u0438\u043C\u043E \u0434\u043E\u0437\u0432\u043E\u043B\u0438\u0442\u0435 \u043F\u0440\u0438\u0441\u0442\u0443\u043F \u043A\u0430\u043C\u0435\u0440\u0438","camera-permissions-request":"\u0417\u0430\u0442\u0440\u0430\u0436\u0438 \u043F\u0440\u0438\u0441\u0442\u0443\u043F","files-count-limit-error-title":"\u041F\u0440\u0435\u043A\u043E\u0440\u0430\u0447\u0435\u045A\u0435 \u043B\u0438\u043C\u0438\u0442\u0430 \u0431\u0440\u043E\u0458\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430","files-count-limit-error-too-few":"\u0418\u0437\u0430\u0431\u0440\u0430\u043B\u0438 \u0441\u0442\u0435 {{total}} {{plural:file(total)}}. \u041D\u0430\u0458\u043C\u0430\u045A\u0435 {{min}} {{plural:file(min)}} \u0458\u0435 \u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E.","files-count-limit-error-too-many":"\u0418\u0437\u0430\u0431\u0440\u0430\u043B\u0438 \u0441\u0442\u0435 \u043F\u0440\u0435\u0432\u0438\u0448\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430. \u041C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0458\u0435 {{max}} {{plural:file(max)}}.","files-max-size-limit-error":"\u0414\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0458\u0435 \u043F\u0440\u0435\u0432\u0435\u043B\u0438\u043A\u0430. \u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u0430 \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u0458\u0435 {{maxFileSize}}.","has-validation-errors":"\u0414\u043E\u0448\u043B\u043E \u0458\u0435 \u0434\u043E \u0433\u0440\u0435\u0448\u043A\u0435 \u043F\u0440\u0438 \u0432\u0430\u043B\u0438\u0434\u0430\u0446\u0438\u0458\u0438 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435. \u041C\u043E\u043B\u0438\u043C\u043E \u043F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u0435 \u0441\u0432\u043E\u0458\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u043F\u0440\u0435 \u043E\u0442\u043F\u0440\u0435\u043C\u0430\u045A\u0430.","images-only-accepted":"\u041F\u0440\u0438\u0445\u0432\u0430\u045B\u0435\u043D\u0435 \u0441\u0443 \u0441\u0430\u043C\u043E \u0441\u043B\u0438\u043A\u0435.","file-type-not-allowed":"\u041E\u0442\u043F\u0440\u0435\u043C\u0430\u045A\u0435 \u043E\u0432\u043E\u0433 \u0442\u0438\u043F\u0430 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u043D\u0438\u0458\u0435 \u0434\u043E\u0437\u0432\u043E\u0459\u0435\u043D\u043E.","some-files-were-not-uploaded":"\u041D\u0435\u043A\u0435 \u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0435 \u043D\u0438\u0441\u0443 \u043E\u0442\u043F\u0440\u0435\u043C\u0459\u0435\u043D\u0435.","file-item-edit-button":"Izmeni","file-item-remove-button":"Ukloni","a11y-activity-header-button-close":"Zatvori","a11y-editor-tab-filters":"Filteri","a11y-editor-tab-tuning":"Pode\u0161avanje","a11y-editor-tab-crop":"Iseci",flip:"Preokreni",mirror:"Ogledalo","a11y-cloud-editor-apply-filter":"Primeni filter {{name}}","a11y-cloud-editor-apply-crop":"Primeni operaciju {{name}}","a11y-cloud-editor-apply-tuning":"Primeni pode\u0161avanje {{name}}",finished:"Zavr\u0161eno",failed:"Neuspe\u0161no",uploading:"Otpremanje",idle:"Neaktivan","a11y-file-item-status":"Datoteka {{fileName}} je u statusu {{status}}","select-all":"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u0432\u0435","deselect-all":"\u041F\u043E\u043D\u0438\u0448\u0442\u0438 \u0438\u0437\u0431\u043E\u0440 \u0441\u0432\u0438\u0445","waiting-for":"\u0427\u0435\u043A\u0430 \u0441\u0435 {{source}}","queued-uploading":"\u0423 \u0440\u0435\u0434\u0443 \u0437\u0430 \u043E\u0442\u043F\u0440\u0435\u043C\u0430\u045A\u0435","queued-validation":"\u0423 \u0440\u0435\u0434\u0443 \u0437\u0430 \u0432\u0430\u043B\u0438\u0434\u0430\u0446\u0438\u0458\u0443",validation:"\u0412\u0430\u043B\u0438\u0434\u0430\u0446\u0438\u0458\u0430 \u0443 \u0442\u043E\u043A\u0443","a11y-cloud-editor-apply-aspect-ratio":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u0458\u0443 {{name}} {{value}}","crop-to-shape":"\u0418\u0441\u0435\u0446\u0438 \u043D\u0430 {{value}}",custom:"\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u0430 \u0444\u043E\u0440\u043C\u0430","freeform-crop":"\u0421\u043B\u043E\u0431\u043E\u0434\u043D\u043E \u0438\u0441\u0435\u0446\u0430\u045A\u0435"};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 sr_default = {
|
|
8
|
+
"locale-id": "sr",
|
|
9
|
+
"social-source-lang": "sr",
|
|
10
|
+
"upload-file": "Отпреми датотеку",
|
|
11
|
+
"upload-files": "Отпреми датoтеке",
|
|
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__other: "датотека",
|
|
44
|
+
error__one: "грешка",
|
|
45
|
+
error__few: "грешке",
|
|
46
|
+
error__other: "грешака",
|
|
47
|
+
"header-uploading": "Отпремање {{count}} {{plural:file(count)}}",
|
|
48
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
49
|
+
"header-succeed": "{{count}} {{plural:file(count)}} отпремљено",
|
|
50
|
+
"header-total": "{{count}} {{plural:file(count)}} изабрано",
|
|
51
|
+
"src-type-local": "Са уређаја",
|
|
52
|
+
"src-type-from-url": "Са везе",
|
|
53
|
+
"src-type-camera": "Камера",
|
|
54
|
+
"src-type-facebook": "Facebook",
|
|
55
|
+
"src-type-dropbox": "Dropbox",
|
|
56
|
+
"src-type-gdrive": "Google Drive",
|
|
57
|
+
"src-type-ngdrive": "Google Drive",
|
|
58
|
+
"src-type-gphotos": "Google Photos",
|
|
59
|
+
"src-type-flickr": "Flickr",
|
|
60
|
+
"src-type-vk": "VK",
|
|
61
|
+
"src-type-evernote": "Evernote",
|
|
62
|
+
"src-type-box": "Box",
|
|
63
|
+
"src-type-onedrive": "OneDrive",
|
|
64
|
+
"src-type-huddle": "Huddle",
|
|
65
|
+
"src-type-other": "Остало",
|
|
66
|
+
"src-type-mobile-video-camera": "Видео",
|
|
67
|
+
"src-type-mobile-photo-camera": "Фотографија",
|
|
68
|
+
"caption-from-url": "Увези са везе",
|
|
69
|
+
"caption-camera": "Камера",
|
|
70
|
+
"caption-edit-file": "Уреди датотеку",
|
|
71
|
+
"file-no-name": "Без имена...",
|
|
72
|
+
"toggle-fullscreen": "Преклопи на цео екран",
|
|
73
|
+
"toggle-guides": "Преклопи водиче",
|
|
74
|
+
rotate: "Ротирај",
|
|
75
|
+
"flip-vertical": "Окрени вертикално",
|
|
76
|
+
"flip-horizontal": "Окрени хоризонтално",
|
|
77
|
+
apply: "Примени",
|
|
78
|
+
brightness: "Светлина",
|
|
79
|
+
contrast: "Контраст",
|
|
80
|
+
saturation: "Засићење",
|
|
81
|
+
exposure: "Експозиција",
|
|
82
|
+
gamma: "Гама",
|
|
83
|
+
vibrance: "Вибрантност",
|
|
84
|
+
warmth: "Топлота",
|
|
85
|
+
enhance: "Побољшај",
|
|
86
|
+
original: "Оригинал",
|
|
87
|
+
resize: "Промени величину слике",
|
|
88
|
+
crop: "Исеци",
|
|
89
|
+
"select-color": "Изабери боју",
|
|
90
|
+
text: "Текст",
|
|
91
|
+
draw: "Цртај",
|
|
92
|
+
"cancel-edit": "Откажи уређивање",
|
|
93
|
+
"tab-view": "Преглед",
|
|
94
|
+
"tab-details": "Детаљи",
|
|
95
|
+
"file-name": "Име",
|
|
96
|
+
"file-size": "Величина",
|
|
97
|
+
"cdn-url": "CDN URL",
|
|
98
|
+
"file-size-unknown": "Непознато",
|
|
99
|
+
"camera-permissions-denied": "Приступ камери одбијен",
|
|
100
|
+
"camera-permissions-prompt": "Молимо дозволите приступ камери",
|
|
101
|
+
"camera-permissions-request": "Затражи приступ",
|
|
102
|
+
"files-count-limit-error-title": "Прекорачење лимита броја датотека",
|
|
103
|
+
"files-count-limit-error-too-few": "Изабрали сте {{total}} {{plural:file(total)}}. Најмање {{min}} {{plural:file(min)}} је потребно.",
|
|
104
|
+
"files-count-limit-error-too-many": "Изабрали сте превише датотека. Максимум је {{max}} {{plural:file(max)}}.",
|
|
105
|
+
"files-max-size-limit-error": "Датотека је превелика. Максимална величина датотеке је {{maxFileSize}}.",
|
|
106
|
+
"has-validation-errors": "Дошло је до грешке при валидацији датотеке. Молимо проверите своје датотеке пре отпремања.",
|
|
107
|
+
"images-only-accepted": "Прихваћене су само слике.",
|
|
108
|
+
"file-type-not-allowed": "Отпремање овог типа датотека није дозвољено.",
|
|
109
|
+
"some-files-were-not-uploaded": "Неке датотеке нису отпремљене.",
|
|
110
|
+
"file-item-edit-button": "Izmeni",
|
|
111
|
+
"file-item-remove-button": "Ukloni",
|
|
112
|
+
"a11y-activity-header-button-close": "Zatvori",
|
|
113
|
+
"a11y-editor-tab-filters": "Filteri",
|
|
114
|
+
"a11y-editor-tab-tuning": "Podešavanje",
|
|
115
|
+
"a11y-editor-tab-crop": "Iseci",
|
|
116
|
+
flip: "Preokreni",
|
|
117
|
+
mirror: "Ogledalo",
|
|
118
|
+
"a11y-cloud-editor-apply-filter": "Primeni filter {{name}}",
|
|
119
|
+
"a11y-cloud-editor-apply-crop": "Primeni operaciju {{name}}",
|
|
120
|
+
"a11y-cloud-editor-apply-tuning": "Primeni podešavanje {{name}}",
|
|
121
|
+
finished: "Završeno",
|
|
122
|
+
failed: "Neuspešno",
|
|
123
|
+
uploading: "Otpremanje",
|
|
124
|
+
idle: "Neaktivan",
|
|
125
|
+
"a11y-file-item-status": "Datoteka {{fileName}} je u statusu {{status}}",
|
|
126
|
+
"select-all": "Изабери све",
|
|
127
|
+
"deselect-all": "Поништи избор свих",
|
|
128
|
+
"waiting-for": "Чека се {{source}}",
|
|
129
|
+
"queued-uploading": "У реду за отпремање",
|
|
130
|
+
"queued-validation": "У реду за валидацију",
|
|
131
|
+
validation: "Валидација у току",
|
|
132
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Примени операцију {{name}} {{value}}",
|
|
133
|
+
"crop-to-shape": "Исеци на {{value}}",
|
|
134
|
+
custom: "Слободна форма",
|
|
135
|
+
"freeform-crop": "Слободно исецање"
|
|
136
|
+
};
|
|
137
|
+
export { sr_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 sv_default = {
|
|
8
|
+
"locale-id": "sv",
|
|
9
|
+
"social-source-lang": "sv",
|
|
10
|
+
"upload-file": "Ladda upp fil",
|
|
11
|
+
"upload-files": "Ladda upp filer",
|
|
12
|
+
"choose-file": "Välj fil",
|
|
13
|
+
"choose-files": "Välj filer",
|
|
14
|
+
"drop-files-here": "Släpp filer här",
|
|
15
|
+
"select-file-source": "Välj filkälla",
|
|
16
|
+
selected: "Vald",
|
|
17
|
+
upload: "Ladda upp",
|
|
18
|
+
"add-more": "Lägg till fler",
|
|
19
|
+
cancel: "Avbryt",
|
|
20
|
+
"start-from-cancel": "Avbryt",
|
|
21
|
+
clear: "Rensa",
|
|
22
|
+
"camera-shot": "Ta bild",
|
|
23
|
+
"upload-url": "Importera",
|
|
24
|
+
"upload-url-placeholder": "Klistra in länk här",
|
|
25
|
+
"edit-image": "Redigera bild",
|
|
26
|
+
"edit-detail": "Detaljer",
|
|
27
|
+
back: "Tillbaka",
|
|
28
|
+
done: "Klar",
|
|
29
|
+
ok: "Ok",
|
|
30
|
+
"remove-from-list": "Ta bort",
|
|
31
|
+
no: "Nej",
|
|
32
|
+
yes: "Ja",
|
|
33
|
+
"confirm-your-action": "Bekräfta din åtgärd",
|
|
34
|
+
"are-you-sure": "Är du säker?",
|
|
35
|
+
"selected-count": "Vald:",
|
|
36
|
+
"upload-error": "Uppladdningsfel",
|
|
37
|
+
"validation-error": "Valideringsfel",
|
|
38
|
+
"no-files": "Inga filer valda",
|
|
39
|
+
browse: "Bläddra",
|
|
40
|
+
"not-uploaded-yet": "Inte uppladdad ännu...",
|
|
41
|
+
file__one: "fil",
|
|
42
|
+
file__other: "filer",
|
|
43
|
+
error__one: "fel",
|
|
44
|
+
error__other: "fel",
|
|
45
|
+
"header-uploading": "Laddar upp {{count}} {{plural:file(count)}}",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "{{count}} {{plural:file(count)}} uppladdade",
|
|
48
|
+
"header-total": "{{count}} {{plural:file(count)}} valda",
|
|
49
|
+
"src-type-local": "Från enhet",
|
|
50
|
+
"src-type-from-url": "Från länk",
|
|
51
|
+
"src-type-camera": "Kamera",
|
|
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": "Annat",
|
|
64
|
+
"src-type-mobile-video-camera": "Video",
|
|
65
|
+
"src-type-mobile-photo-camera": "Foto",
|
|
66
|
+
"caption-from-url": "Importera från länk",
|
|
67
|
+
"caption-camera": "Kamera",
|
|
68
|
+
"caption-edit-file": "Redigera fil",
|
|
69
|
+
"file-no-name": "Inget namn...",
|
|
70
|
+
"toggle-fullscreen": "Växla helskärm",
|
|
71
|
+
"toggle-guides": "Växla guider",
|
|
72
|
+
rotate: "Rotera",
|
|
73
|
+
"flip-vertical": "Vänd vertikalt",
|
|
74
|
+
"flip-horizontal": "Vänd horisontellt",
|
|
75
|
+
apply: "Tillämpa",
|
|
76
|
+
brightness: "Ljusstyrka",
|
|
77
|
+
contrast: "Kontrast",
|
|
78
|
+
saturation: "Mättnad",
|
|
79
|
+
exposure: "Exponering",
|
|
80
|
+
gamma: "Gamma",
|
|
81
|
+
vibrance: "Livlighet",
|
|
82
|
+
warmth: "Värme",
|
|
83
|
+
enhance: "Förbättra",
|
|
84
|
+
original: "Original",
|
|
85
|
+
resize: "Ändra storlek på bild",
|
|
86
|
+
crop: "Beskär",
|
|
87
|
+
"select-color": "Välj färg",
|
|
88
|
+
text: "Text",
|
|
89
|
+
draw: "Rita",
|
|
90
|
+
"cancel-edit": "Avbryt redigering",
|
|
91
|
+
"tab-view": "Förhandsgranska",
|
|
92
|
+
"tab-details": "Detaljer",
|
|
93
|
+
"file-name": "Namn",
|
|
94
|
+
"file-size": "Storlek",
|
|
95
|
+
"cdn-url": "CDN URL",
|
|
96
|
+
"file-size-unknown": "Okänd",
|
|
97
|
+
"camera-permissions-denied": "Tillgång till kamera nekad",
|
|
98
|
+
"camera-permissions-prompt": "Vänligen tillåt tillgång till kameran",
|
|
99
|
+
"camera-permissions-request": "Begär tillgång",
|
|
100
|
+
"files-count-limit-error-title": "För många filer",
|
|
101
|
+
"files-count-limit-error-too-few": "Du har valt {{total}} {{plural:file(total)}}. Minst {{min}} {{plural:file(min)}} krävs.",
|
|
102
|
+
"files-count-limit-error-too-many": "Du har valt för många filer. {{max}} {{plural:file(max)}} är maximalt.",
|
|
103
|
+
"files-max-size-limit-error": "Filen är för stor. Max filstorlek är {{maxFileSize}}.",
|
|
104
|
+
"has-validation-errors": "Valideringsfel har uppstått. Vänligen kontrollera dina filer innan uppladdning.",
|
|
105
|
+
"images-only-accepted": "Endast bildfiler accepteras.",
|
|
106
|
+
"file-type-not-allowed": "Uppladdning av dessa filtyper är inte tillåten.",
|
|
107
|
+
"some-files-were-not-uploaded": "Vissa filer laddades inte upp.",
|
|
108
|
+
"file-item-edit-button": "Redigera",
|
|
109
|
+
"file-item-remove-button": "Ta bort",
|
|
110
|
+
"a11y-activity-header-button-close": "Stäng",
|
|
111
|
+
"a11y-editor-tab-filters": "Filter",
|
|
112
|
+
"a11y-editor-tab-tuning": "Inställning",
|
|
113
|
+
"a11y-editor-tab-crop": "Beskär",
|
|
114
|
+
flip: "Vänd",
|
|
115
|
+
mirror: "Spegla",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "Applicera filter {{name}}",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "Applicera {{name}} operation",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "Applicera {{name}} inställning",
|
|
119
|
+
finished: "Slutfört",
|
|
120
|
+
failed: "Misslyckades",
|
|
121
|
+
uploading: "Laddar upp",
|
|
122
|
+
idle: "Overksam",
|
|
123
|
+
"a11y-file-item-status": "Filen {{fileName}} är i status {{status}}",
|
|
124
|
+
"select-all": "Välj alla",
|
|
125
|
+
"deselect-all": "Avmarkera alla",
|
|
126
|
+
"waiting-for": "Väntar på {{source}}",
|
|
127
|
+
"queued-uploading": "I kö för uppladdning",
|
|
128
|
+
"queued-validation": "I kö för validering",
|
|
129
|
+
validation: "Validerar",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "Använd åtgärd {{name}} {{value}}",
|
|
131
|
+
"crop-to-shape": "Beskär till {{value}}",
|
|
132
|
+
custom: "Fri form",
|
|
133
|
+
"freeform-crop": "Fri beskärning"
|
|
134
|
+
};
|
|
135
|
+
export { sv_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 tr_default = {
|
|
8
|
+
"locale-id": "tr",
|
|
9
|
+
"social-source-lang": "tr",
|
|
10
|
+
"upload-file": "Dosya yükle",
|
|
11
|
+
"upload-files": "Dosyaları yükle",
|
|
12
|
+
"choose-file": "Dosya seç",
|
|
13
|
+
"choose-files": "Dosyaları seç",
|
|
14
|
+
"drop-files-here": "Dosyaları buraya bırak",
|
|
15
|
+
"select-file-source": "Dosya kaynağı seç",
|
|
16
|
+
selected: "Seçildi",
|
|
17
|
+
upload: "Yükle",
|
|
18
|
+
"add-more": "Daha fazla ekle",
|
|
19
|
+
cancel: "İptal",
|
|
20
|
+
"start-from-cancel": "İptal",
|
|
21
|
+
clear: "Temizle",
|
|
22
|
+
"camera-shot": "Fotoğraf çek",
|
|
23
|
+
"upload-url": "Bağlantıdan yükle",
|
|
24
|
+
"upload-url-placeholder": "Bağlantıyı buraya yapıştır",
|
|
25
|
+
"edit-image": "Resmi düzenle",
|
|
26
|
+
"edit-detail": "Detayları düzenle",
|
|
27
|
+
back: "Geri",
|
|
28
|
+
done: "Tamam",
|
|
29
|
+
ok: "Tamam",
|
|
30
|
+
"remove-from-list": "Listeden kaldır",
|
|
31
|
+
no: "Hayır",
|
|
32
|
+
yes: "Evet",
|
|
33
|
+
"confirm-your-action": "Eyleminizi onaylayın",
|
|
34
|
+
"are-you-sure": "Emin misiniz?",
|
|
35
|
+
"selected-count": "Seçildi:",
|
|
36
|
+
"upload-error": "Yükleme hatası",
|
|
37
|
+
"validation-error": "Doğrulama hatası",
|
|
38
|
+
"no-files": "Dosya seçilmedi",
|
|
39
|
+
browse: "Göz at",
|
|
40
|
+
"not-uploaded-yet": "Henüz yüklenmedi...",
|
|
41
|
+
file__one: "dosya",
|
|
42
|
+
file__other: "dosya",
|
|
43
|
+
error__one: "hata",
|
|
44
|
+
error__other: "hata",
|
|
45
|
+
"header-uploading": "{{count}} {{plural:file(count)}} yükleniyor",
|
|
46
|
+
"header-failed": "{{count}} {{plural:error(count)}}",
|
|
47
|
+
"header-succeed": "{{count}} {{plural:file(count)}} yüklendi",
|
|
48
|
+
"header-total": "{{count}} {{plural:file(count)}} seçildi",
|
|
49
|
+
"src-type-local": "Cihazdan",
|
|
50
|
+
"src-type-from-url": "Bağlantıdan",
|
|
51
|
+
"src-type-camera": "Kamera",
|
|
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": "Diğer",
|
|
64
|
+
"src-type-mobile-video-camera": "Video",
|
|
65
|
+
"src-type-mobile-photo-camera": "Fotoğraf",
|
|
66
|
+
"caption-from-url": "Bağlantıdan İçe Aktar",
|
|
67
|
+
"caption-camera": "Kamera",
|
|
68
|
+
"caption-edit-file": "Dosyayı Düzenle",
|
|
69
|
+
"file-no-name": "İsimsiz...",
|
|
70
|
+
"toggle-fullscreen": "Tam ekrana geç",
|
|
71
|
+
"toggle-guides": "Rehberleri aç/kapat",
|
|
72
|
+
rotate: "Döndür",
|
|
73
|
+
"flip-vertical": "Dikey çevir",
|
|
74
|
+
"flip-horizontal": "Yatay çevir",
|
|
75
|
+
apply: "Uygula",
|
|
76
|
+
brightness: "Parlaklık",
|
|
77
|
+
contrast: "Kontrast",
|
|
78
|
+
saturation: "Doygunluk",
|
|
79
|
+
exposure: "Pozlama",
|
|
80
|
+
gamma: "Gama",
|
|
81
|
+
vibrance: "Canlılık",
|
|
82
|
+
warmth: "Sıcaklık",
|
|
83
|
+
enhance: "Geliştir",
|
|
84
|
+
original: "Orijinal",
|
|
85
|
+
resize: "Resmi yeniden boyutlandır",
|
|
86
|
+
crop: "Kırp",
|
|
87
|
+
"select-color": "Renk seç",
|
|
88
|
+
text: "Metin",
|
|
89
|
+
draw: "Çiz",
|
|
90
|
+
"cancel-edit": "Düzenlemeyi iptal et",
|
|
91
|
+
"tab-view": "Önizleme",
|
|
92
|
+
"tab-details": "Detaylar",
|
|
93
|
+
"file-name": "Adı",
|
|
94
|
+
"file-size": "Boyut",
|
|
95
|
+
"cdn-url": "CDN URL",
|
|
96
|
+
"file-size-unknown": "Bilinmiyor",
|
|
97
|
+
"camera-permissions-denied": "Kamera erişimi reddedildi",
|
|
98
|
+
"camera-permissions-prompt": "Lütfen kameraya erişime izin verin",
|
|
99
|
+
"camera-permissions-request": "Erişim iste",
|
|
100
|
+
"files-count-limit-error-title": "Dosya sayısı limiti aşıldı",
|
|
101
|
+
"files-count-limit-error-too-few": "{{total}} {{plural:file(total)}} seçtiniz. En az {{min}} {{plural:file(min)}} gerekli.",
|
|
102
|
+
"files-count-limit-error-too-many": "Çok fazla dosya seçtiniz. Maksimum {{max}} {{plural:file(max)}}.",
|
|
103
|
+
"files-max-size-limit-error": "Dosya çok büyük. Maksimum dosya boyutu {{maxFileSize}}.",
|
|
104
|
+
"has-validation-errors": "Dosya doğrulama hatası oluştu. Lütfen dosyalarınızı yüklemeden önce kontrol edin.",
|
|
105
|
+
"images-only-accepted": "Yalnızca resim dosyaları kabul edilir.",
|
|
106
|
+
"file-type-not-allowed": "Bu dosya türlerinin yüklenmesine izin verilmiyor.",
|
|
107
|
+
"some-files-were-not-uploaded": "Bazı dosyalar yüklenemedi.",
|
|
108
|
+
"file-item-edit-button": "Düzenle",
|
|
109
|
+
"file-item-remove-button": "Kaldır",
|
|
110
|
+
"a11y-activity-header-button-close": "Kapat",
|
|
111
|
+
"a11y-editor-tab-filters": "Filtreler",
|
|
112
|
+
"a11y-editor-tab-tuning": "Ayar",
|
|
113
|
+
"a11y-editor-tab-crop": "Kırp",
|
|
114
|
+
flip: "Çevir",
|
|
115
|
+
mirror: "Ayna",
|
|
116
|
+
"a11y-cloud-editor-apply-filter": "{{name}} filtresini uygula",
|
|
117
|
+
"a11y-cloud-editor-apply-crop": "{{name}} işlemini uygula",
|
|
118
|
+
"a11y-cloud-editor-apply-tuning": "{{name}} ayarını uygula",
|
|
119
|
+
finished: "Tamamlandı",
|
|
120
|
+
failed: "Başarısız",
|
|
121
|
+
uploading: "Yükleniyor",
|
|
122
|
+
idle: "Boşta",
|
|
123
|
+
"a11y-file-item-status": "{{fileName}} dosyası {{status}} durumunda",
|
|
124
|
+
"select-all": "Hepsini seç",
|
|
125
|
+
"deselect-all": "Hiçbirini seçme",
|
|
126
|
+
"waiting-for": "{{source}} bekleniyor",
|
|
127
|
+
"queued-uploading": "Yükleme için sırada",
|
|
128
|
+
"queued-validation": "Doğrulama için sırada",
|
|
129
|
+
validation: "Doğrulanıyor",
|
|
130
|
+
"a11y-cloud-editor-apply-aspect-ratio": "{{name}} {{value}} işlemini uygula",
|
|
131
|
+
"crop-to-shape": "{{value}} boyutuna kırp",
|
|
132
|
+
custom: "Serbest form",
|
|
133
|
+
"freeform-crop": "Serbest kırpma"
|
|
134
|
+
};
|
|
135
|
+
export { tr_default as default };
|
|
@@ -47,7 +47,6 @@ declare const _default: {
|
|
|
47
47
|
'src-type-local': string;
|
|
48
48
|
'src-type-from-url': string;
|
|
49
49
|
'src-type-camera': string;
|
|
50
|
-
'src-type-draw': string;
|
|
51
50
|
'src-type-facebook': string;
|
|
52
51
|
'src-type-dropbox': string;
|
|
53
52
|
'src-type-gdrive': string;
|
|
@@ -64,7 +63,6 @@ declare const _default: {
|
|
|
64
63
|
'src-type-mobile-photo-camera': string;
|
|
65
64
|
'caption-from-url': string;
|
|
66
65
|
'caption-camera': string;
|
|
67
|
-
'caption-draw': string;
|
|
68
66
|
'caption-edit-file': string;
|
|
69
67
|
'file-no-name': string;
|
|
70
68
|
'toggle-fullscreen': string;
|
|
@@ -132,5 +130,4 @@ declare const _default: {
|
|
|
132
130
|
custom: string;
|
|
133
131
|
'freeform-crop': string;
|
|
134
132
|
};
|
|
135
|
-
|
|
136
|
-
export { _default as default };
|
|
133
|
+
export default _default;
|