@uploadcare/file-uploader 1.27.1 → 1.28.0-alpha.1
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/ActivityHeader-R6Mlx-dA.js +9 -0
- package/dist/ActivityHeader.css +23 -0
- package/dist/ActivityHeader.layered.css +24 -0
- package/dist/CameraSource-DDwj1jCV.js +511 -0
- package/dist/CameraSource-n1tun2Df.js +10 -0
- package/dist/CameraSource.css +180 -0
- package/dist/CameraSource.layered.css +209 -0
- package/dist/CloudImageEditor-DcVoIRb3.js +2163 -0
- package/dist/CloudImageEditorActivity-Csij4nlC.js +87 -0
- package/dist/CloudImageEditorActivity-DD4NdU0P.js +9 -0
- package/dist/CloudImageEditorActivity.css +14 -0
- package/dist/CloudImageEditorActivity.layered.css +15 -0
- package/dist/Config-DKOromHY.js +433 -0
- package/dist/Config.css +4 -0
- package/dist/Config.layered.css +5 -0
- package/dist/ExternalSource-6MSUgxqy.js +10 -0
- package/dist/ExternalSource-DVEjSkPB.js +253 -0
- package/dist/ExternalSource.css +98 -0
- package/dist/ExternalSource.layered.css +116 -0
- package/dist/Icon-tXRTvEF2.js +1810 -0
- package/dist/Icon.css +14 -0
- package/dist/Icon.layered.css +15 -0
- package/dist/LitUploaderBlock-LxeOZ0ya.js +998 -0
- package/dist/UrlSource-BkyX00I2.js +73 -0
- package/dist/UrlSource-RI8TSD48.js +10 -0
- package/dist/UrlSource.css +17 -0
- package/dist/UrlSource.layered.css +18 -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-weRKO7eG.js +8 -0
- package/dist/cloud-image-editor-hhbyNWLG.js +11 -0
- package/dist/cloud-image-editor.css +1380 -0
- package/dist/cloud-image-editor.layered.css +1549 -0
- package/dist/cloudImageEditorPlugin-FjUgbMK3.js +8 -0
- package/dist/core.d.ts +42 -0
- package/dist/en-8OWEmZim.js +135 -0
- package/dist/env-mM-ksNPq.js +8 -0
- package/dist/env.d.ts +2 -4
- package/dist/env.js +7 -6
- package/dist/externalSourcesPlugin-CMBmLT8S.js +8 -0
- package/dist/imageShrinkPlugin-BN6loiP2.js +8 -0
- package/dist/index-base.css +2497 -0
- package/dist/index-base.layered.css +2837 -0
- package/dist/index.css +9 -6
- package/dist/index.d.ts +42 -2715
- package/dist/index.js +1796 -8
- package/dist/index.layered.css +9 -7
- package/dist/instagramPlugin-CXRm8MGL.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-Bfz8L3VB.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-CGUls7EV.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-_WdbEhq2.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/web/ActivityHeader-BFdTdVfD.js +9 -0
- package/web/ActivityHeader-DQy6rII1.js +9 -0
- package/web/ActivityHeader-DvzMl0uj.js +9 -0
- package/web/ActivityHeader-i4x6_Fne.js +9 -0
- package/web/CameraSource-BAWIA4Wm.js +508 -0
- package/web/CameraSource-BqZCQcij.js +11 -0
- package/web/CameraSource-Brxr4tz4.js +508 -0
- package/web/CameraSource-BvBJ5Uzy.js +508 -0
- package/web/CameraSource-CkHzIE-h.js +11 -0
- package/web/CameraSource-D964yPLu.js +508 -0
- package/web/CameraSource-DE48Az-f.js +11 -0
- package/web/CameraSource-DyPebtRF.js +478 -0
- package/web/CameraSource-pj7Xo81m.js +11 -0
- package/web/CloudImageEditor-CTgUWB07.js +2192 -0
- package/web/CloudImageEditor-CxqV9Lwm.js +2192 -0
- package/web/CloudImageEditor-DoLWHpqV.js +2192 -0
- package/web/CloudImageEditor-Drywn265.js +2192 -0
- package/web/CloudImageEditor-MXcaDtMx.js +2187 -0
- package/web/CloudImageEditorActivity-BPzmfaJV.js +85 -0
- package/web/CloudImageEditorActivity-Br8pU5gd.js +11 -0
- package/web/CloudImageEditorActivity-Cw8b2CEz.js +11 -0
- package/web/CloudImageEditorActivity-Df1ySGq0.js +86 -0
- package/web/CloudImageEditorActivity-DinG5r0y.js +11 -0
- package/web/CloudImageEditorActivity-DmnLLINR.js +85 -0
- package/web/CloudImageEditorActivity-U90BGCek.js +85 -0
- package/web/CloudImageEditorActivity-dNLQZRZI.js +11 -0
- package/web/CloudImageEditorActivity-ur-hQ-6p.js +85 -0
- package/web/Config-8hlBNhvs.js +455 -0
- package/web/Config-BDZhPIyz.js +455 -0
- package/web/Config-CJVNrrjj.js +455 -0
- package/web/Config-DvkVtlQ7.js +455 -0
- package/web/ExternalSource-B9ycBFiD.js +10 -0
- package/web/ExternalSource-BE7HX47E.js +250 -0
- package/web/ExternalSource-BL5GSlol.js +250 -0
- package/web/ExternalSource-BXQY6Dlc.js +10 -0
- package/web/ExternalSource-BXxH3JCD.js +250 -0
- package/web/ExternalSource-BYSS-PPV.js +245 -0
- package/web/ExternalSource-C57a61QN.js +10 -0
- package/web/ExternalSource-CKfMtOgU.js +250 -0
- package/web/ExternalSource-DP6q8ylB.js +10 -0
- package/web/LitUploaderBlock-AX6jOdAS.js +996 -0
- package/web/LitUploaderBlock-BjAaoLl2.js +996 -0
- package/web/LitUploaderBlock-D8E5HuwH.js +996 -0
- package/web/LitUploaderBlock-Dl3ce0Tc.js +996 -0
- package/web/LitUploaderBlock-Oi33U0uf.js +996 -0
- package/web/UrlSource-B9SX3K0L.js +10 -0
- package/web/UrlSource-C3zB1rCb.js +70 -0
- package/web/UrlSource-C7bEU6Xv.js +10 -0
- package/web/UrlSource-CE389CBz.js +70 -0
- package/web/UrlSource-CnvAJ58Y.js +10 -0
- package/web/UrlSource-CqF0h6B-.js +10 -0
- package/web/UrlSource-D-971Nut.js +70 -0
- package/web/UrlSource-DhI3YCt5.js +70 -0
- package/web/UrlSource-hWV7jtB2.js +70 -0
- package/web/abstract/CTX.d.ts +40 -0
- package/web/abstract/TypedCollection.d.ts +47 -0
- package/web/abstract/TypedCollection.test.d.ts +1 -0
- package/web/abstract/TypedData.d.ts +12 -0
- package/web/abstract/TypedData.test.d.ts +1 -0
- package/web/abstract/UploaderPublicApi.d.ts +41 -0
- package/web/abstract/buildOutputCollectionState.d.ts +3 -0
- package/web/abstract/customConfigOptions.d.ts +65 -0
- package/web/abstract/defineComponents.d.ts +1 -0
- package/web/abstract/features/ClipboardLayer.d.ts +12 -0
- package/web/abstract/loadFileUploaderFrom.d.ts +13 -0
- package/web/abstract/localeRegistry.d.ts +5 -0
- package/web/abstract/managers/LocaleManager.d.ts +10 -0
- package/web/abstract/managers/ModalManager.d.ts +53 -0
- package/web/abstract/managers/SecureUploadsManager.d.ts +7 -0
- package/web/abstract/managers/TelemetryManager.d.ts +41 -0
- package/web/abstract/managers/ValidationManager.d.ts +34 -0
- package/web/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
- package/web/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
- package/web/abstract/managers/a11y.d.ts +9 -0
- package/web/abstract/managers/plugin/PluginManager.d.ts +25 -0
- package/web/abstract/managers/plugin/PluginTypes.d.ts +146 -0
- package/web/abstract/managers/plugin/index.d.ts +2 -0
- package/web/abstract/sharedConfigKey.d.ts +2 -0
- package/web/abstract/uploadEntrySchema.d.ts +34 -0
- package/web/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
- package/web/blocks/CameraSource/CameraSource.d.ts +121 -0
- package/web/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
- package/web/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/web/blocks/CameraSource/constants.d.ts +15 -0
- package/web/blocks/CloudImageEditor/index.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
- package/web/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
- package/web/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
- package/web/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
- package/web/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
- package/web/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
- package/web/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
- package/web/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
- package/web/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
- package/web/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
- package/web/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
- package/web/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
- package/web/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
- package/web/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
- package/web/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
- package/web/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
- package/web/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
- package/web/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
- package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
- package/web/blocks/CloudImageEditor/src/state.d.ts +20 -0
- package/web/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
- package/web/blocks/CloudImageEditor/src/types.d.ts +60 -0
- package/web/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
- package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
- package/web/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
- package/web/blocks/Config/Config.d.ts +60 -0
- package/web/blocks/Config/assertions.d.ts +5 -0
- package/web/blocks/Config/computed-properties.d.ts +24 -0
- package/web/blocks/Config/computed-properties.test.d.ts +1 -0
- package/web/blocks/Config/initialConfig.d.ts +6 -0
- package/web/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/web/blocks/Config/validatorsType.d.ts +18 -0
- package/web/blocks/Copyright/Copyright.d.ts +10 -0
- package/web/blocks/DropArea/DropArea.d.ts +47 -0
- package/web/blocks/DropArea/addDropzone.d.ts +17 -0
- package/web/blocks/DropArea/getDropItems.d.ts +12 -0
- package/web/blocks/ExternalSource/ExternalSource.d.ts +45 -0
- package/web/blocks/ExternalSource/MessageBridge.d.ts +11 -0
- package/web/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
- package/web/blocks/ExternalSource/query-string.d.ts +1 -0
- package/web/blocks/ExternalSource/types.d.ts +105 -0
- package/web/blocks/FileItem/FileItem.d.ts +50 -0
- package/web/blocks/FileItem/FileItemConfig.d.ts +10 -0
- package/web/blocks/FormInput/FormInput.d.ts +18 -0
- package/web/blocks/Icon/Icon.d.ts +19 -0
- package/web/blocks/Img/Img.d.ts +14 -0
- package/web/blocks/Img/ImgBase.d.ts +29 -0
- package/web/blocks/Img/ImgConfig.d.ts +28 -0
- package/web/blocks/Img/configurations.d.ts +11 -0
- package/web/blocks/Img/props-map.d.ts +28 -0
- package/web/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/web/blocks/Modal/Modal.d.ts +34 -0
- package/web/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
- package/web/blocks/PluginActivityRenderer/index.d.ts +1 -0
- package/web/blocks/ProgressBar/ProgressBar.d.ts +21 -0
- package/web/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
- package/web/blocks/Select/Select.d.ts +18 -0
- package/web/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
- package/web/blocks/SourceBtn/SourceBtn.d.ts +23 -0
- package/web/blocks/SourceList/SourceList.d.ts +24 -0
- package/web/blocks/Spinner/Spinner.d.ts +9 -0
- package/web/blocks/StartFrom/StartFrom.d.ts +12 -0
- package/web/blocks/Thumb/Thumb.d.ts +35 -0
- package/web/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
- package/web/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
- package/web/blocks/UploadList/UploadList.d.ts +39 -0
- package/web/blocks/UrlSource/UrlSource.d.ts +14 -0
- package/web/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
- package/web/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
- package/web/cameraPlugin-DeedXMWV.js +8 -0
- package/web/cameraPlugin-Duy1QwjB.js +8 -0
- package/web/cameraPlugin-QS9SUOtO.js +8 -0
- package/web/cameraPlugin-bq8ggY04.js +8 -0
- package/web/cameraPlugin-cel9YgP_.js +8 -0
- package/web/cloud-image-editor-8DrVRZ7E.js +12 -0
- package/web/cloud-image-editor-BX50EK1U.js +12 -0
- package/web/cloud-image-editor-DSW3oWq-.js +12 -0
- package/web/cloud-image-editor-DuI2Lx4M.js +12 -0
- package/web/cloudImageEditorPlugin-5my6aD36.js +8 -0
- package/web/cloudImageEditorPlugin-Bk19DmJv.js +8 -0
- package/web/cloudImageEditorPlugin-CcdnmtBW.js +8 -0
- package/web/cloudImageEditorPlugin-DQJmDl03.js +8 -0
- package/web/cloudImageEditorPlugin-kojghfqw.js +8 -0
- package/web/constants-BCfCF0cJ.js +4025 -0
- package/web/core.d.ts +42 -0
- package/web/env.d.ts +2 -0
- package/web/externalSourcesPlugin-BTeRm5C0.js +8 -0
- package/web/externalSourcesPlugin-BXgVeojg.js +8 -0
- package/web/externalSourcesPlugin-BgLpuIK9.js +8 -0
- package/web/externalSourcesPlugin-DMc9zs4T.js +8 -0
- package/web/externalSourcesPlugin-Dm9vnTBv.js +8 -0
- package/web/file-uploader.iife.min.js +697 -8
- package/web/file-uploader.min.js +1858 -7
- package/web/imageShrinkPlugin-BdHgEGZH.js +8 -0
- package/web/imageShrinkPlugin-BjkMGfvT.js +8 -0
- package/web/imageShrinkPlugin-CCkGHL2w.js +8 -0
- package/web/imageShrinkPlugin-D4WjaRGo.js +8 -0
- package/web/imageShrinkPlugin-DqYGutVx.js +8 -0
- package/web/index.d.ts +42 -0
- package/web/instagramPlugin-BTMz0K2a.js +8 -0
- package/web/instagramPlugin-BbIKgTH7.js +8 -0
- package/web/instagramPlugin-CQQhsEJa.js +8 -0
- package/web/instagramPlugin-Cm7lWKae.js +8 -0
- package/web/instagramPlugin-DcclxM_d.js +8 -0
- package/web/lit/BaseComponent.d.ts +12 -0
- package/web/lit/Constructor.d.ts +1 -0
- package/web/lit/CssDataMixin.d.ts +7 -0
- package/web/lit/LightDomMixin.d.ts +8 -0
- package/web/lit/LitActivityBlock.d.ts +53 -0
- package/web/lit/LitBlock.d.ts +83 -0
- package/web/lit/LitSolutionBlock.d.ts +21 -0
- package/web/lit/LitUploaderBlock.d.ts +53 -0
- package/web/lit/PubSubCompat.d.ts +18 -0
- package/web/lit/RegisterableElementMixin.d.ts +7 -0
- package/web/lit/SharedState.d.ts +119 -0
- package/web/lit/SymbioteCompatMixin.d.ts +40 -0
- package/web/lit/TestModeController.d.ts +16 -0
- package/web/lit/Uid.d.ts +3 -0
- package/web/lit/activity-constants.d.ts +11 -0
- package/web/lit/createDebugPrinter.d.ts +3 -0
- package/web/lit/findBlockInCtx.d.ts +3 -0
- package/web/lit/getOutputData.d.ts +2 -0
- package/web/lit/hasBlockInCtx.d.ts +3 -0
- package/web/lit/l10n.d.ts +5 -0
- package/web/lit/parseCssPropertyValue.d.ts +1 -0
- package/web/lit/shared-instances.d.ts +65 -0
- package/web/locales/file-uploader/ar.d.ts +137 -0
- package/web/locales/file-uploader/az.d.ts +129 -0
- package/web/locales/file-uploader/ca.d.ts +131 -0
- package/web/locales/file-uploader/cs.d.ts +133 -0
- package/web/locales/file-uploader/da.d.ts +129 -0
- package/web/locales/file-uploader/de.d.ts +129 -0
- package/web/locales/file-uploader/el.d.ts +129 -0
- package/web/locales/file-uploader/en.d.ts +129 -0
- package/web/locales/file-uploader/es.d.ts +131 -0
- package/web/locales/file-uploader/et.d.ts +129 -0
- package/web/locales/file-uploader/fi.d.ts +129 -0
- package/web/locales/file-uploader/fr.d.ts +131 -0
- package/web/locales/file-uploader/he.d.ts +131 -0
- package/web/locales/file-uploader/hy.d.ts +129 -0
- package/web/locales/file-uploader/is.d.ts +129 -0
- package/web/locales/file-uploader/it.d.ts +131 -0
- package/web/locales/file-uploader/ja.d.ts +129 -0
- package/web/locales/file-uploader/ka.d.ts +129 -0
- package/web/locales/file-uploader/kk.d.ts +129 -0
- package/web/locales/file-uploader/ko.d.ts +129 -0
- package/web/locales/file-uploader/lv.d.ts +131 -0
- package/web/locales/file-uploader/nb.d.ts +129 -0
- package/web/locales/file-uploader/nl.d.ts +129 -0
- package/web/locales/file-uploader/pl.d.ts +133 -0
- package/web/locales/file-uploader/pt.d.ts +131 -0
- package/web/locales/file-uploader/ro.d.ts +131 -0
- package/web/locales/file-uploader/ru.d.ts +133 -0
- package/web/locales/file-uploader/sk.d.ts +133 -0
- package/web/locales/file-uploader/sr.d.ts +131 -0
- package/web/locales/file-uploader/sv.d.ts +129 -0
- package/web/locales/file-uploader/tr.d.ts +129 -0
- package/web/locales/file-uploader/uk.d.ts +133 -0
- package/web/locales/file-uploader/vi.d.ts +129 -0
- package/web/locales/file-uploader/zh-TW.d.ts +129 -0
- package/web/locales/file-uploader/zh.d.ts +129 -0
- package/web/plugins/cameraPlugin.d.ts +2 -0
- package/web/plugins/cloudImageEditorPlugin.d.ts +2 -0
- package/web/plugins/externalSourcesPlugin.d.ts +2 -0
- package/web/plugins/imageShrinkPlugin.d.ts +2 -0
- package/web/plugins/instagramPlugin.d.ts +2 -0
- package/web/plugins/unsplashPlugin.d.ts +16 -0
- package/web/plugins/urlSourcePlugin.d.ts +2 -0
- package/web/plugins-Bt7FXHKx.js +562 -0
- package/web/plugins-CaaolyMk.js +562 -0
- package/web/plugins-Cjgw5oWg.js +562 -0
- package/web/plugins-CzNtrVQB.js +562 -0
- package/web/plugins-DS0hIs2V.js +563 -0
- package/web/ref-BOnG19ns.js +4040 -0
- package/web/ref-BejJFG7m.js +4040 -0
- package/web/ref-DcRg7zo9.js +4040 -0
- package/web/ref-ZWPcLQB9.js +4040 -0
- package/web/solutions/adaptive-image/index.d.ts +2 -0
- package/web/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
- package/web/solutions/cloud-image-editor/index.d.ts +5 -0
- package/web/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
- package/web/solutions/file-uploader/inline/index.d.ts +1 -0
- package/web/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
- package/web/solutions/file-uploader/minimal/index.d.ts +1 -0
- package/web/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
- package/web/solutions/file-uploader/regular/index.d.ts +1 -0
- package/web/style-map-BmZdux7T.js +37 -0
- package/web/style-map-CZ6fSV6e.js +37 -0
- package/web/style-map-Dk7mLCrB.js +37 -0
- package/web/style-map-HkHnu9oA.js +37 -0
- package/web/style-map-tw1yUEaj.js +37 -0
- package/web/types/dom.d.ts +1 -0
- package/web/types/events.d.ts +4 -0
- package/web/types/exported.d.ts +492 -0
- package/web/types/index.d.ts +5 -0
- package/web/uc-basic.layered.min.css +6046 -7
- package/web/uc-basic.min.css +5487 -6
- package/web/uc-cloud-image-editor.layered.min.css +1884 -7
- package/web/uc-cloud-image-editor.min.css +1675 -6
- package/web/uc-cloud-image-editor.min.js +456 -7
- package/web/uc-file-uploader-inline.layered.min.css +4352 -7
- package/web/uc-file-uploader-inline.min.css +3836 -6
- package/web/uc-file-uploader-inline.min.js +1858 -7
- package/web/uc-file-uploader-minimal.layered.min.css +4352 -7
- package/web/uc-file-uploader-minimal.min.css +3836 -6
- package/web/uc-file-uploader-minimal.min.js +1858 -7
- package/web/uc-file-uploader-regular.layered.min.css +4352 -7
- package/web/uc-file-uploader-regular.min.css +3836 -6
- package/web/uc-file-uploader-regular.min.js +1858 -7
- package/web/uc-img.min.js +894 -7
- package/web/urlSourcePlugin-9lhcr02f.js +8 -0
- package/web/urlSourcePlugin-C-sLGhGb.js +8 -0
- package/web/urlSourcePlugin-DNXDpnRD.js +8 -0
- package/web/urlSourcePlugin-JnD0cnxb.js +8 -0
- package/web/urlSourcePlugin-hcMU2K6T.js +8 -0
- package/web/utils/UID.d.ts +5 -0
- package/web/utils/UID.test.d.ts +1 -0
- package/web/utils/UploadSource.d.ts +37 -0
- package/web/utils/WindowHeightTracker.d.ts +9 -0
- package/web/utils/abilities.d.ts +1 -0
- package/web/utils/applyStyles.d.ts +1 -0
- package/web/utils/browser-info.d.ts +12 -0
- package/web/utils/browser-info.test.d.ts +1 -0
- package/web/utils/cdn-utils.d.ts +53 -0
- package/web/utils/cdn-utils.test.d.ts +1 -0
- package/web/utils/comma-separated.d.ts +2 -0
- package/web/utils/debounce.d.ts +3 -0
- package/web/utils/delay.d.ts +1 -0
- package/web/utils/fileTypes.d.ts +11 -0
- package/web/utils/fileTypes.test.d.ts +1 -0
- package/web/utils/get-top-level-origin.d.ts +1 -0
- package/web/utils/get-top-level-origin.test.d.ts +1 -0
- package/web/utils/getLocaleDirection.d.ts +1 -0
- package/web/utils/getPluralForm.d.ts +1 -0
- package/web/utils/getPluralForm.test.d.ts +1 -0
- package/web/utils/isPromiseLike.d.ts +1 -0
- package/web/utils/isPromiseLike.test.d.ts +1 -0
- package/web/utils/isSecureTokenExpired.d.ts +8 -0
- package/web/utils/isSecureTokenExpired.test.d.ts +1 -0
- package/web/utils/memoize.d.ts +1 -0
- package/web/utils/memoize.test.d.ts +1 -0
- package/web/utils/mixinClass.d.ts +8 -0
- package/web/utils/parseCdnUrl.d.ts +11 -0
- package/web/utils/parseCdnUrl.test.d.ts +1 -0
- package/web/utils/parseShrink.d.ts +7 -0
- package/web/utils/parseShrink.test.d.ts +1 -0
- package/web/utils/preloadImage.d.ts +10 -0
- package/web/utils/prettyBytes.d.ts +11 -0
- package/web/utils/prettyBytes.test.d.ts +1 -0
- package/web/utils/resizeImage.d.ts +1 -0
- package/web/utils/stringToArray.d.ts +1 -0
- package/web/utils/stringToArray.test.d.ts +1 -0
- package/web/utils/template-utils.d.ts +16 -0
- package/web/utils/template-utils.test.d.ts +1 -0
- package/web/utils/throttle.d.ts +3 -0
- package/web/utils/toKebabCase.d.ts +2 -0
- package/web/utils/toKebabCase.test.d.ts +1 -0
- package/web/utils/transparentPixelSrc.d.ts +1 -0
- package/web/utils/uniqueArray.d.ts +1 -0
- package/web/utils/uniqueArray.test.d.ts +1 -0
- package/web/utils/userAgent.d.ts +2 -0
- package/web/utils/validators/collection/index.d.ts +2 -0
- package/web/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
- package/web/utils/validators/collection/validateMultiple.d.ts +2 -0
- package/web/utils/validators/file/index.d.ts +4 -0
- package/web/utils/validators/file/validateFileType.d.ts +2 -0
- package/web/utils/validators/file/validateIsImage.d.ts +2 -0
- package/web/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
- package/web/utils/validators/file/validateUploadError.d.ts +2 -0
- package/web/utils/warnOnce.d.ts +1 -0
- package/web/utils/wildcardRegexp.d.ts +1 -0
- package/web/utils/wildcardRegexp.test.d.ts +1 -0
- package/web/utils/withResolvers.d.ts +5 -0
- package/web/utils/withResolvers.test.d.ts +1 -0
- package/dist/index.ssr.js +0 -1538
- package/web/file-uploader.iife.min.d.ts +0 -2859
- 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.LEGAL.txt +0 -71
- package/web/uc-cloud-image-editor.min.d.ts +0 -2816
- package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
- package/web/uc-file-uploader-inline.min.d.ts +0 -2859
- package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
- package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-regular.min.d.ts +0 -2859
- 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.LEGAL.txt +0 -24
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ConfigType, UploaderPublicApi } from '..';
|
|
2
|
+
import { A11y } from '../abstract/managers/a11y';
|
|
3
|
+
import { LocaleManager } from '../abstract/managers/LocaleManager';
|
|
4
|
+
import { ModalManager } from '../abstract/managers/ModalManager';
|
|
5
|
+
import { PluginManager } from '../abstract/managers/plugin';
|
|
6
|
+
import { SecureUploadsManager } from '../abstract/managers/SecureUploadsManager';
|
|
7
|
+
import { TelemetryManager } from '../abstract/managers/TelemetryManager';
|
|
8
|
+
import { ValidationManager } from '../abstract/managers/ValidationManager';
|
|
9
|
+
import { TypedCollection } from '../abstract/TypedCollection';
|
|
10
|
+
import { UploadEntryData } from '../abstract/uploadEntrySchema';
|
|
11
|
+
import { EventEmitter } from '../blocks/UploadCtxProvider/EventEmitter';
|
|
12
|
+
import { LitBlock } from './LitBlock';
|
|
13
|
+
import { PubSub } from './PubSubCompat';
|
|
14
|
+
import { SharedState } from './SharedState';
|
|
15
|
+
export interface ISharedInstance {
|
|
16
|
+
destroy?(): void;
|
|
17
|
+
}
|
|
18
|
+
export declare class SharedInstance {
|
|
19
|
+
protected _ctx: PubSub<SharedState>;
|
|
20
|
+
protected _sharedInstancesBag: SharedInstancesBag;
|
|
21
|
+
private _subscriptions;
|
|
22
|
+
private _cfgProxy;
|
|
23
|
+
protected _debugPrint: (...args: unknown[]) => void;
|
|
24
|
+
constructor(sharedInstancesBag: SharedInstancesBag);
|
|
25
|
+
protected addSub(unsub: () => void): void;
|
|
26
|
+
protected get _cfg(): Readonly<ConfigType>;
|
|
27
|
+
destroy(): void;
|
|
28
|
+
}
|
|
29
|
+
declare const instanceKeyMap: {
|
|
30
|
+
modalManager: "*modalManager";
|
|
31
|
+
pluginManager: "*pluginManager";
|
|
32
|
+
telemetryManager: "*telemetryManager";
|
|
33
|
+
localeManager: "*localeManager";
|
|
34
|
+
a11y: "*a11y";
|
|
35
|
+
clipboard: "*clipboard";
|
|
36
|
+
blocksRegistry: "*blocksRegistry";
|
|
37
|
+
eventEmitter: "*eventEmitter";
|
|
38
|
+
uploadCollection: "*uploadCollection";
|
|
39
|
+
secureUploadsManager: "*secureUploadsManager";
|
|
40
|
+
api: "*publicApi";
|
|
41
|
+
validationManager: "*validationManager";
|
|
42
|
+
};
|
|
43
|
+
type InstanceTypeMap = {
|
|
44
|
+
[key in keyof typeof instanceKeyMap]: SharedState[(typeof instanceKeyMap)[key]];
|
|
45
|
+
};
|
|
46
|
+
type InstanceName = keyof typeof instanceKeyMap;
|
|
47
|
+
export type SharedInstancesState = Pick<SharedState, (typeof instanceKeyMap)[keyof typeof instanceKeyMap]>;
|
|
48
|
+
export type SharedInstancesBag = ReturnType<typeof createSharedInstancesBag>;
|
|
49
|
+
export declare const getSharedInstance: <TKey extends keyof SharedInstancesState, TRequired extends boolean = true>(ctx: PubSub<SharedState>, key: TKey, isRequired?: TRequired) => TRequired extends true ? NonNullable<SharedInstancesState[TKey]> : SharedInstancesState[TKey];
|
|
50
|
+
export declare const createSharedInstancesBag: (getCtx: () => PubSub<SharedState>) => {
|
|
51
|
+
readonly ctx: PubSub<SharedState>;
|
|
52
|
+
readonly modalManager: ModalManager | null;
|
|
53
|
+
readonly pluginManager: PluginManager;
|
|
54
|
+
readonly telemetryManager: TelemetryManager;
|
|
55
|
+
readonly localeManager: LocaleManager;
|
|
56
|
+
readonly a11y: A11y;
|
|
57
|
+
readonly blocksRegistry: Set<LitBlock>;
|
|
58
|
+
readonly eventEmitter: EventEmitter;
|
|
59
|
+
readonly uploadCollection: TypedCollection<UploadEntryData>;
|
|
60
|
+
readonly secureUploadsManager: SecureUploadsManager;
|
|
61
|
+
readonly api: UploaderPublicApi;
|
|
62
|
+
readonly validationManager: ValidationManager;
|
|
63
|
+
when<TName extends InstanceName>(name: TName, callback: (instance: NonNullable<InstanceTypeMap[TName]>) => void): () => void;
|
|
64
|
+
};
|
|
65
|
+
export {};
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'locale-id': string;
|
|
3
|
+
'social-source-lang': string;
|
|
4
|
+
'upload-file': string;
|
|
5
|
+
'upload-files': string;
|
|
6
|
+
'choose-file': string;
|
|
7
|
+
'choose-files': string;
|
|
8
|
+
'drop-files-here': string;
|
|
9
|
+
'select-file-source': string;
|
|
10
|
+
selected: string;
|
|
11
|
+
upload: string;
|
|
12
|
+
'add-more': string;
|
|
13
|
+
cancel: string;
|
|
14
|
+
'start-from-cancel': string;
|
|
15
|
+
clear: string;
|
|
16
|
+
'camera-shot': string;
|
|
17
|
+
'upload-url': string;
|
|
18
|
+
'upload-url-placeholder': string;
|
|
19
|
+
'edit-image': string;
|
|
20
|
+
'edit-detail': string;
|
|
21
|
+
back: string;
|
|
22
|
+
done: string;
|
|
23
|
+
ok: string;
|
|
24
|
+
'remove-from-list': string;
|
|
25
|
+
no: string;
|
|
26
|
+
yes: string;
|
|
27
|
+
'confirm-your-action': string;
|
|
28
|
+
'are-you-sure': string;
|
|
29
|
+
'selected-count': string;
|
|
30
|
+
'select-all': string;
|
|
31
|
+
'deselect-all': string;
|
|
32
|
+
'upload-error': string;
|
|
33
|
+
'validation-error': string;
|
|
34
|
+
'no-files': string;
|
|
35
|
+
browse: string;
|
|
36
|
+
'not-uploaded-yet': string;
|
|
37
|
+
file__zero: string;
|
|
38
|
+
file__one: string;
|
|
39
|
+
file__two: string;
|
|
40
|
+
file__few: string;
|
|
41
|
+
file__many: string;
|
|
42
|
+
file__other: string;
|
|
43
|
+
error__zero: string;
|
|
44
|
+
error__one: string;
|
|
45
|
+
error__two: string;
|
|
46
|
+
error__few: string;
|
|
47
|
+
error__many: string;
|
|
48
|
+
error__other: string;
|
|
49
|
+
'header-uploading': string;
|
|
50
|
+
'header-failed': string;
|
|
51
|
+
'header-succeed': string;
|
|
52
|
+
'header-total': string;
|
|
53
|
+
'src-type-local': string;
|
|
54
|
+
'src-type-from-url': string;
|
|
55
|
+
'src-type-camera': string;
|
|
56
|
+
'src-type-facebook': string;
|
|
57
|
+
'src-type-dropbox': string;
|
|
58
|
+
'src-type-gdrive': string;
|
|
59
|
+
'src-type-ngdrive': string;
|
|
60
|
+
'src-type-gphotos': string;
|
|
61
|
+
'src-type-flickr': string;
|
|
62
|
+
'src-type-vk': string;
|
|
63
|
+
'src-type-evernote': string;
|
|
64
|
+
'src-type-box': string;
|
|
65
|
+
'src-type-onedrive': string;
|
|
66
|
+
'src-type-huddle': string;
|
|
67
|
+
'src-type-other': string;
|
|
68
|
+
'src-type-mobile-video-camera': string;
|
|
69
|
+
'src-type-mobile-photo-camera': string;
|
|
70
|
+
'caption-from-url': string;
|
|
71
|
+
'caption-camera': string;
|
|
72
|
+
'caption-edit-file': string;
|
|
73
|
+
'file-no-name': string;
|
|
74
|
+
'toggle-fullscreen': string;
|
|
75
|
+
'toggle-guides': string;
|
|
76
|
+
rotate: string;
|
|
77
|
+
'flip-vertical': string;
|
|
78
|
+
'flip-horizontal': string;
|
|
79
|
+
apply: string;
|
|
80
|
+
brightness: string;
|
|
81
|
+
contrast: string;
|
|
82
|
+
saturation: string;
|
|
83
|
+
exposure: string;
|
|
84
|
+
gamma: string;
|
|
85
|
+
vibrance: string;
|
|
86
|
+
warmth: string;
|
|
87
|
+
enhance: string;
|
|
88
|
+
original: string;
|
|
89
|
+
resize: string;
|
|
90
|
+
crop: string;
|
|
91
|
+
'select-color': string;
|
|
92
|
+
text: string;
|
|
93
|
+
draw: string;
|
|
94
|
+
'cancel-edit': string;
|
|
95
|
+
'tab-view': string;
|
|
96
|
+
'tab-details': string;
|
|
97
|
+
'file-name': string;
|
|
98
|
+
'file-size': string;
|
|
99
|
+
'cdn-url': string;
|
|
100
|
+
'file-size-unknown': string;
|
|
101
|
+
'camera-permissions-denied': string;
|
|
102
|
+
'camera-permissions-prompt': string;
|
|
103
|
+
'camera-permissions-request': string;
|
|
104
|
+
'files-count-limit-error-title': string;
|
|
105
|
+
'files-count-limit-error-too-few': string;
|
|
106
|
+
'files-count-limit-error-too-many': string;
|
|
107
|
+
'files-max-size-limit-error': string;
|
|
108
|
+
'has-validation-errors': string;
|
|
109
|
+
'images-only-accepted': string;
|
|
110
|
+
'file-type-not-allowed': string;
|
|
111
|
+
'some-files-were-not-uploaded': string;
|
|
112
|
+
'file-item-edit-button': string;
|
|
113
|
+
'file-item-remove-button': string;
|
|
114
|
+
'a11y-activity-header-button-close': string;
|
|
115
|
+
'a11y-editor-tab-filters': string;
|
|
116
|
+
'a11y-editor-tab-tuning': string;
|
|
117
|
+
'a11y-editor-tab-crop': string;
|
|
118
|
+
flip: string;
|
|
119
|
+
mirror: string;
|
|
120
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
121
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
122
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
123
|
+
finished: string;
|
|
124
|
+
failed: string;
|
|
125
|
+
uploading: string;
|
|
126
|
+
idle: string;
|
|
127
|
+
'a11y-file-item-status': string;
|
|
128
|
+
'waiting-for': string;
|
|
129
|
+
'queued-uploading': string;
|
|
130
|
+
'queued-validation': string;
|
|
131
|
+
validation: string;
|
|
132
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
133
|
+
'crop-to-shape': string;
|
|
134
|
+
custom: string;
|
|
135
|
+
'freeform-crop': string;
|
|
136
|
+
};
|
|
137
|
+
export default _default;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'locale-id': string;
|
|
3
|
+
'social-source-lang': string;
|
|
4
|
+
'upload-file': string;
|
|
5
|
+
'upload-files': string;
|
|
6
|
+
'choose-file': string;
|
|
7
|
+
'choose-files': string;
|
|
8
|
+
'drop-files-here': string;
|
|
9
|
+
'select-file-source': string;
|
|
10
|
+
selected: string;
|
|
11
|
+
upload: string;
|
|
12
|
+
'add-more': string;
|
|
13
|
+
cancel: string;
|
|
14
|
+
'start-from-cancel': string;
|
|
15
|
+
clear: string;
|
|
16
|
+
'camera-shot': string;
|
|
17
|
+
'upload-url': string;
|
|
18
|
+
'upload-url-placeholder': string;
|
|
19
|
+
'edit-image': string;
|
|
20
|
+
'edit-detail': string;
|
|
21
|
+
back: string;
|
|
22
|
+
done: string;
|
|
23
|
+
ok: string;
|
|
24
|
+
'remove-from-list': string;
|
|
25
|
+
no: string;
|
|
26
|
+
yes: string;
|
|
27
|
+
'confirm-your-action': string;
|
|
28
|
+
'are-you-sure': string;
|
|
29
|
+
'selected-count': string;
|
|
30
|
+
'select-all': string;
|
|
31
|
+
'deselect-all': string;
|
|
32
|
+
'upload-error': string;
|
|
33
|
+
'validation-error': string;
|
|
34
|
+
'no-files': string;
|
|
35
|
+
browse: string;
|
|
36
|
+
'not-uploaded-yet': string;
|
|
37
|
+
file__one: string;
|
|
38
|
+
file__other: string;
|
|
39
|
+
error__one: string;
|
|
40
|
+
error__other: string;
|
|
41
|
+
'header-uploading': string;
|
|
42
|
+
'header-failed': string;
|
|
43
|
+
'header-succeed': string;
|
|
44
|
+
'header-total': string;
|
|
45
|
+
'src-type-local': string;
|
|
46
|
+
'src-type-from-url': string;
|
|
47
|
+
'src-type-camera': string;
|
|
48
|
+
'src-type-facebook': string;
|
|
49
|
+
'src-type-dropbox': string;
|
|
50
|
+
'src-type-gdrive': string;
|
|
51
|
+
'src-type-ngdrive': string;
|
|
52
|
+
'src-type-gphotos': string;
|
|
53
|
+
'src-type-flickr': string;
|
|
54
|
+
'src-type-vk': string;
|
|
55
|
+
'src-type-evernote': string;
|
|
56
|
+
'src-type-box': string;
|
|
57
|
+
'src-type-onedrive': string;
|
|
58
|
+
'src-type-huddle': string;
|
|
59
|
+
'src-type-other': string;
|
|
60
|
+
'src-type-mobile-video-camera': string;
|
|
61
|
+
'src-type-mobile-photo-camera': string;
|
|
62
|
+
'caption-from-url': string;
|
|
63
|
+
'caption-camera': string;
|
|
64
|
+
'caption-edit-file': string;
|
|
65
|
+
'file-no-name': string;
|
|
66
|
+
'toggle-fullscreen': string;
|
|
67
|
+
'toggle-guides': string;
|
|
68
|
+
rotate: string;
|
|
69
|
+
'flip-vertical': string;
|
|
70
|
+
'flip-horizontal': string;
|
|
71
|
+
apply: string;
|
|
72
|
+
brightness: string;
|
|
73
|
+
contrast: string;
|
|
74
|
+
saturation: string;
|
|
75
|
+
exposure: string;
|
|
76
|
+
gamma: string;
|
|
77
|
+
vibrance: string;
|
|
78
|
+
warmth: string;
|
|
79
|
+
enhance: string;
|
|
80
|
+
original: string;
|
|
81
|
+
resize: string;
|
|
82
|
+
crop: string;
|
|
83
|
+
'select-color': string;
|
|
84
|
+
text: string;
|
|
85
|
+
draw: string;
|
|
86
|
+
'cancel-edit': string;
|
|
87
|
+
'tab-view': string;
|
|
88
|
+
'tab-details': string;
|
|
89
|
+
'file-name': string;
|
|
90
|
+
'file-size': string;
|
|
91
|
+
'cdn-url': string;
|
|
92
|
+
'file-size-unknown': string;
|
|
93
|
+
'camera-permissions-denied': string;
|
|
94
|
+
'camera-permissions-prompt': string;
|
|
95
|
+
'camera-permissions-request': string;
|
|
96
|
+
'files-count-limit-error-title': string;
|
|
97
|
+
'files-count-limit-error-too-few': string;
|
|
98
|
+
'files-count-limit-error-too-many': string;
|
|
99
|
+
'files-max-size-limit-error': string;
|
|
100
|
+
'has-validation-errors': string;
|
|
101
|
+
'images-only-accepted': string;
|
|
102
|
+
'file-type-not-allowed': string;
|
|
103
|
+
'some-files-were-not-uploaded': string;
|
|
104
|
+
'file-item-edit-button': string;
|
|
105
|
+
'file-item-remove-button': string;
|
|
106
|
+
'a11y-activity-header-button-close': string;
|
|
107
|
+
'a11y-editor-tab-filters': string;
|
|
108
|
+
'a11y-editor-tab-tuning': string;
|
|
109
|
+
'a11y-editor-tab-crop': string;
|
|
110
|
+
flip: string;
|
|
111
|
+
mirror: string;
|
|
112
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
113
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
114
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
115
|
+
finished: string;
|
|
116
|
+
failed: string;
|
|
117
|
+
uploading: string;
|
|
118
|
+
idle: string;
|
|
119
|
+
'a11y-file-item-status': string;
|
|
120
|
+
'waiting-for': string;
|
|
121
|
+
'queued-uploading': string;
|
|
122
|
+
'queued-validation': string;
|
|
123
|
+
validation: string;
|
|
124
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
125
|
+
'crop-to-shape': string;
|
|
126
|
+
custom: string;
|
|
127
|
+
'freeform-crop': string;
|
|
128
|
+
};
|
|
129
|
+
export default _default;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'locale-id': string;
|
|
3
|
+
'social-source-lang': string;
|
|
4
|
+
'upload-file': string;
|
|
5
|
+
'upload-files': string;
|
|
6
|
+
'choose-file': string;
|
|
7
|
+
'choose-files': string;
|
|
8
|
+
'drop-files-here': string;
|
|
9
|
+
'select-file-source': string;
|
|
10
|
+
selected: string;
|
|
11
|
+
upload: string;
|
|
12
|
+
'add-more': string;
|
|
13
|
+
cancel: string;
|
|
14
|
+
'start-from-cancel': string;
|
|
15
|
+
clear: string;
|
|
16
|
+
'camera-shot': string;
|
|
17
|
+
'upload-url': string;
|
|
18
|
+
'upload-url-placeholder': string;
|
|
19
|
+
'edit-image': string;
|
|
20
|
+
'edit-detail': string;
|
|
21
|
+
back: string;
|
|
22
|
+
done: string;
|
|
23
|
+
ok: string;
|
|
24
|
+
'remove-from-list': string;
|
|
25
|
+
no: string;
|
|
26
|
+
yes: string;
|
|
27
|
+
'confirm-your-action': string;
|
|
28
|
+
'are-you-sure': string;
|
|
29
|
+
'selected-count': string;
|
|
30
|
+
'select-all': string;
|
|
31
|
+
'deselect-all': string;
|
|
32
|
+
'upload-error': string;
|
|
33
|
+
'validation-error': string;
|
|
34
|
+
'no-files': string;
|
|
35
|
+
browse: string;
|
|
36
|
+
file__one: string;
|
|
37
|
+
'not-uploaded-yet': string;
|
|
38
|
+
file__other: string;
|
|
39
|
+
file__many: string;
|
|
40
|
+
error__one: string;
|
|
41
|
+
error__other: string;
|
|
42
|
+
error__many: string;
|
|
43
|
+
'header-uploading': string;
|
|
44
|
+
'header-failed': string;
|
|
45
|
+
'header-succeed': string;
|
|
46
|
+
'header-total': string;
|
|
47
|
+
'src-type-local': string;
|
|
48
|
+
'src-type-from-url': string;
|
|
49
|
+
'src-type-camera': string;
|
|
50
|
+
'src-type-facebook': string;
|
|
51
|
+
'src-type-dropbox': string;
|
|
52
|
+
'src-type-gdrive': string;
|
|
53
|
+
'src-type-ngdrive': string;
|
|
54
|
+
'src-type-gphotos': string;
|
|
55
|
+
'src-type-flickr': string;
|
|
56
|
+
'src-type-vk': string;
|
|
57
|
+
'src-type-evernote': string;
|
|
58
|
+
'src-type-box': string;
|
|
59
|
+
'src-type-onedrive': string;
|
|
60
|
+
'src-type-huddle': string;
|
|
61
|
+
'src-type-other': string;
|
|
62
|
+
'src-type-mobile-video-camera': string;
|
|
63
|
+
'src-type-mobile-photo-camera': string;
|
|
64
|
+
'caption-from-url': string;
|
|
65
|
+
'caption-camera': string;
|
|
66
|
+
'caption-edit-file': string;
|
|
67
|
+
'file-no-name': string;
|
|
68
|
+
'toggle-fullscreen': string;
|
|
69
|
+
'toggle-guides': string;
|
|
70
|
+
rotate: string;
|
|
71
|
+
'flip-vertical': string;
|
|
72
|
+
'flip-horizontal': string;
|
|
73
|
+
apply: string;
|
|
74
|
+
brightness: string;
|
|
75
|
+
contrast: string;
|
|
76
|
+
saturation: string;
|
|
77
|
+
exposure: string;
|
|
78
|
+
gamma: string;
|
|
79
|
+
vibrance: string;
|
|
80
|
+
warmth: string;
|
|
81
|
+
enhance: string;
|
|
82
|
+
original: string;
|
|
83
|
+
resize: string;
|
|
84
|
+
crop: string;
|
|
85
|
+
'select-color': string;
|
|
86
|
+
text: string;
|
|
87
|
+
draw: string;
|
|
88
|
+
'cancel-edit': string;
|
|
89
|
+
'tab-view': string;
|
|
90
|
+
'tab-details': string;
|
|
91
|
+
'file-name': string;
|
|
92
|
+
'file-size': string;
|
|
93
|
+
'cdn-url': string;
|
|
94
|
+
'file-size-unknown': string;
|
|
95
|
+
'camera-permissions-denied': string;
|
|
96
|
+
'camera-permissions-prompt': string;
|
|
97
|
+
'camera-permissions-request': string;
|
|
98
|
+
'files-count-limit-error-title': string;
|
|
99
|
+
'files-count-limit-error-too-few': string;
|
|
100
|
+
'files-count-limit-error-too-many': string;
|
|
101
|
+
'files-max-size-limit-error': string;
|
|
102
|
+
'has-validation-errors': string;
|
|
103
|
+
'images-only-accepted': string;
|
|
104
|
+
'file-type-not-allowed': string;
|
|
105
|
+
'some-files-were-not-uploaded': string;
|
|
106
|
+
'file-item-edit-button': string;
|
|
107
|
+
'file-item-remove-button': string;
|
|
108
|
+
'a11y-activity-header-button-close': string;
|
|
109
|
+
'a11y-editor-tab-filters': string;
|
|
110
|
+
'a11y-editor-tab-tuning': string;
|
|
111
|
+
'a11y-editor-tab-crop': string;
|
|
112
|
+
flip: string;
|
|
113
|
+
mirror: string;
|
|
114
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
115
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
116
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
117
|
+
finished: string;
|
|
118
|
+
failed: string;
|
|
119
|
+
uploading: string;
|
|
120
|
+
idle: string;
|
|
121
|
+
'a11y-file-item-status': string;
|
|
122
|
+
'waiting-for': string;
|
|
123
|
+
'queued-uploading': string;
|
|
124
|
+
'queued-validation': string;
|
|
125
|
+
validation: string;
|
|
126
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
127
|
+
'crop-to-shape': string;
|
|
128
|
+
custom: string;
|
|
129
|
+
'freeform-crop': string;
|
|
130
|
+
};
|
|
131
|
+
export default _default;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'locale-id': string;
|
|
3
|
+
'social-source-lang': string;
|
|
4
|
+
'upload-file': string;
|
|
5
|
+
'upload-files': string;
|
|
6
|
+
'choose-file': string;
|
|
7
|
+
'choose-files': string;
|
|
8
|
+
'drop-files-here': string;
|
|
9
|
+
'select-file-source': string;
|
|
10
|
+
selected: string;
|
|
11
|
+
upload: string;
|
|
12
|
+
'add-more': string;
|
|
13
|
+
cancel: string;
|
|
14
|
+
'start-from-cancel': string;
|
|
15
|
+
clear: string;
|
|
16
|
+
'camera-shot': string;
|
|
17
|
+
'upload-url': string;
|
|
18
|
+
'upload-url-placeholder': string;
|
|
19
|
+
'edit-image': string;
|
|
20
|
+
'edit-detail': string;
|
|
21
|
+
back: string;
|
|
22
|
+
done: string;
|
|
23
|
+
ok: string;
|
|
24
|
+
'remove-from-list': string;
|
|
25
|
+
no: string;
|
|
26
|
+
yes: string;
|
|
27
|
+
'confirm-your-action': string;
|
|
28
|
+
'are-you-sure': string;
|
|
29
|
+
'selected-count': string;
|
|
30
|
+
'select-all': string;
|
|
31
|
+
'deselect-all': string;
|
|
32
|
+
'upload-error': string;
|
|
33
|
+
'validation-error': string;
|
|
34
|
+
'no-files': string;
|
|
35
|
+
browse: string;
|
|
36
|
+
'not-uploaded-yet': string;
|
|
37
|
+
file__one: string;
|
|
38
|
+
file__few: string;
|
|
39
|
+
file__many: string;
|
|
40
|
+
file__other: string;
|
|
41
|
+
error__one: string;
|
|
42
|
+
error__few: string;
|
|
43
|
+
error__many: string;
|
|
44
|
+
error__other: string;
|
|
45
|
+
'header-uploading': string;
|
|
46
|
+
'header-failed': string;
|
|
47
|
+
'header-succeed': string;
|
|
48
|
+
'header-total': string;
|
|
49
|
+
'src-type-local': string;
|
|
50
|
+
'src-type-from-url': string;
|
|
51
|
+
'src-type-camera': string;
|
|
52
|
+
'src-type-facebook': string;
|
|
53
|
+
'src-type-dropbox': string;
|
|
54
|
+
'src-type-gdrive': string;
|
|
55
|
+
'src-type-ngdrive': string;
|
|
56
|
+
'src-type-gphotos': string;
|
|
57
|
+
'src-type-flickr': string;
|
|
58
|
+
'src-type-vk': string;
|
|
59
|
+
'src-type-evernote': string;
|
|
60
|
+
'src-type-box': string;
|
|
61
|
+
'src-type-onedrive': string;
|
|
62
|
+
'src-type-huddle': string;
|
|
63
|
+
'src-type-other': string;
|
|
64
|
+
'src-type-mobile-video-camera': string;
|
|
65
|
+
'src-type-mobile-photo-camera': string;
|
|
66
|
+
'caption-from-url': string;
|
|
67
|
+
'caption-camera': string;
|
|
68
|
+
'caption-edit-file': string;
|
|
69
|
+
'file-no-name': string;
|
|
70
|
+
'toggle-fullscreen': string;
|
|
71
|
+
'toggle-guides': string;
|
|
72
|
+
rotate: string;
|
|
73
|
+
'flip-vertical': string;
|
|
74
|
+
'flip-horizontal': string;
|
|
75
|
+
apply: string;
|
|
76
|
+
brightness: string;
|
|
77
|
+
contrast: string;
|
|
78
|
+
saturation: string;
|
|
79
|
+
exposure: string;
|
|
80
|
+
gamma: string;
|
|
81
|
+
vibrance: string;
|
|
82
|
+
warmth: string;
|
|
83
|
+
enhance: string;
|
|
84
|
+
original: string;
|
|
85
|
+
resize: string;
|
|
86
|
+
crop: string;
|
|
87
|
+
'select-color': string;
|
|
88
|
+
text: string;
|
|
89
|
+
draw: string;
|
|
90
|
+
'cancel-edit': string;
|
|
91
|
+
'tab-view': string;
|
|
92
|
+
'tab-details': string;
|
|
93
|
+
'file-name': string;
|
|
94
|
+
'file-size': string;
|
|
95
|
+
'cdn-url': string;
|
|
96
|
+
'file-size-unknown': string;
|
|
97
|
+
'camera-permissions-denied': string;
|
|
98
|
+
'camera-permissions-prompt': string;
|
|
99
|
+
'camera-permissions-request': string;
|
|
100
|
+
'files-count-limit-error-title': string;
|
|
101
|
+
'files-count-limit-error-too-few': string;
|
|
102
|
+
'files-count-limit-error-too-many': string;
|
|
103
|
+
'files-max-size-limit-error': string;
|
|
104
|
+
'has-validation-errors': string;
|
|
105
|
+
'images-only-accepted': string;
|
|
106
|
+
'file-type-not-allowed': string;
|
|
107
|
+
'some-files-were-not-uploaded': string;
|
|
108
|
+
'file-item-edit-button': string;
|
|
109
|
+
'file-item-remove-button': string;
|
|
110
|
+
'a11y-activity-header-button-close': string;
|
|
111
|
+
'a11y-editor-tab-filters': string;
|
|
112
|
+
'a11y-editor-tab-tuning': string;
|
|
113
|
+
'a11y-editor-tab-crop': string;
|
|
114
|
+
flip: string;
|
|
115
|
+
mirror: string;
|
|
116
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
117
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
118
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
119
|
+
finished: string;
|
|
120
|
+
failed: string;
|
|
121
|
+
uploading: string;
|
|
122
|
+
idle: string;
|
|
123
|
+
'a11y-file-item-status': string;
|
|
124
|
+
'waiting-for': string;
|
|
125
|
+
'queued-uploading': string;
|
|
126
|
+
'queued-validation': string;
|
|
127
|
+
validation: string;
|
|
128
|
+
'a11y-cloud-editor-apply-aspect-ratio': string;
|
|
129
|
+
'crop-to-shape': string;
|
|
130
|
+
custom: string;
|
|
131
|
+
'freeform-crop': string;
|
|
132
|
+
};
|
|
133
|
+
export default _default;
|