@uploadcare/file-uploader 1.17.0-alpha.2 → 1.17.0-alpha.3
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/abstract/ActivityBlock.d.ts +79 -0
- package/abstract/ActivityBlock.d.ts.map +1 -0
- package/abstract/Block.d.ts +102 -0
- package/abstract/Block.d.ts.map +1 -0
- package/abstract/CTX.d.ts +30 -0
- package/abstract/CTX.d.ts.map +1 -0
- package/abstract/LocaleManager.d.ts +38 -0
- package/abstract/LocaleManager.d.ts.map +1 -0
- package/abstract/ModalManager.d.ts +122 -0
- package/abstract/ModalManager.d.ts.map +1 -0
- package/abstract/SecureUploadsManager.d.ts +22 -0
- package/abstract/SecureUploadsManager.d.ts.map +1 -0
- package/abstract/SolutionBlock.d.ts +22 -0
- package/abstract/SolutionBlock.d.ts.map +1 -0
- package/abstract/TypedCollection.d.ts +127 -0
- package/abstract/TypedCollection.d.ts.map +1 -0
- package/abstract/TypedData.d.ts +93 -0
- package/abstract/TypedData.d.ts.map +1 -0
- package/abstract/UploaderBlock.d.ts +117 -0
- package/abstract/UploaderBlock.d.ts.map +1 -0
- package/abstract/UploaderPublicApi.d.ts +100 -0
- package/abstract/UploaderPublicApi.d.ts.map +1 -0
- package/abstract/ValidationManager.d.ts +150 -0
- package/abstract/ValidationManager.d.ts.map +1 -0
- package/abstract/a11y.d.ts +20 -0
- package/abstract/a11y.d.ts.map +1 -0
- package/abstract/buildOutputCollectionState.d.ts +8 -0
- package/abstract/buildOutputCollectionState.d.ts.map +1 -0
- package/abstract/defineComponents.d.ts +5 -0
- package/abstract/defineComponents.d.ts.map +1 -0
- package/abstract/l10nProcessor.d.ts +7 -0
- package/abstract/l10nProcessor.d.ts.map +1 -0
- package/abstract/loadFileUploaderFrom.d.ts +8 -0
- package/abstract/loadFileUploaderFrom.d.ts.map +1 -0
- package/abstract/localeRegistry.d.ts +5 -0
- package/abstract/localeRegistry.d.ts.map +1 -0
- package/abstract/sharedConfigKey.d.ts +2 -0
- package/abstract/sharedConfigKey.d.ts.map +1 -0
- package/abstract/testModeProcessor.d.ts +7 -0
- package/abstract/testModeProcessor.d.ts.map +1 -0
- package/abstract/uploadEntrySchema.d.ts +126 -0
- package/abstract/uploadEntrySchema.d.ts.map +1 -0
- package/blocks/ActivityHeader/ActivityHeader.d.ts +4 -0
- package/blocks/ActivityHeader/ActivityHeader.d.ts.map +1 -0
- package/blocks/CameraSource/CameraSource.d.ts +176 -0
- package/blocks/CameraSource/CameraSource.d.ts.map +1 -0
- package/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/blocks/CameraSource/calcCameraModes.d.ts.map +1 -0
- package/blocks/CameraSource/constants.d.ts +16 -0
- package/blocks/CameraSource/constants.d.ts.map +1 -0
- package/blocks/CloudImageEditor/index.d.ts +2 -0
- package/blocks/CloudImageEditor/index.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +58 -0
- package/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/CropFrame.d.ts +158 -0
- package/blocks/CloudImageEditor/src/CropFrame.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +10 -0
- package/blocks/CloudImageEditor/src/EditorButtonControl.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +6 -0
- package/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +18 -0
- package/blocks/CloudImageEditor/src/EditorFilterControl.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +106 -0
- package/blocks/CloudImageEditor/src/EditorImageCropper.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorImageFader.d.ts +132 -0
- package/blocks/CloudImageEditor/src/EditorImageFader.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +9 -0
- package/blocks/CloudImageEditor/src/EditorOperationControl.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorScroller.d.ts +7 -0
- package/blocks/CloudImageEditor/src/EditorScroller.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorSlider.d.ts +24 -0
- package/blocks/CloudImageEditor/src/EditorSlider.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/EditorToolbar.d.ts +109 -0
- package/blocks/CloudImageEditor/src/EditorToolbar.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/crop-utils.d.ts +123 -0
- package/blocks/CloudImageEditor/src/crop-utils.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/cropper-constants.d.ts +11 -0
- package/blocks/CloudImageEditor/src/cropper-constants.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +21 -0
- package/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +11 -0
- package/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +17 -0
- package/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +16 -0
- package/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/blocks/CloudImageEditor/src/index.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/FocusVisible.d.ts +15 -0
- package/blocks/CloudImageEditor/src/lib/FocusVisible.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/applyFocusVisiblePolyfill.d.ts +10 -0
- package/blocks/CloudImageEditor/src/lib/applyFocusVisiblePolyfill.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/classNames.d.ts +3 -0
- package/blocks/CloudImageEditor/src/lib/classNames.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/linspace.d.ts +8 -0
- package/blocks/CloudImageEditor/src/lib/linspace.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +2 -0
- package/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/blocks/CloudImageEditor/src/lib/parseTabs.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/pick.d.ts +7 -0
- package/blocks/CloudImageEditor/src/lib/pick.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +14 -0
- package/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/state.d.ts +38 -0
- package/blocks/CloudImageEditor/src/state.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/svg-sprite.d.ts +3 -0
- package/blocks/CloudImageEditor/src/svg-sprite.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/template.d.ts +2 -0
- package/blocks/CloudImageEditor/src/template.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/toolbar-constants.d.ts +58 -0
- package/blocks/CloudImageEditor/src/toolbar-constants.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/types.d.ts +64 -0
- package/blocks/CloudImageEditor/src/types.d.ts.map +1 -0
- package/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/blocks/CloudImageEditor/src/util.d.ts.map +1 -0
- package/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +29 -0
- package/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts.map +1 -0
- package/blocks/CloudImageEditorActivity/test.d.ts +2 -0
- package/blocks/CloudImageEditorActivity/test.d.ts.map +1 -0
- package/blocks/Config/Config.d.ts +60 -0
- package/blocks/Config/Config.d.ts.map +1 -0
- package/blocks/Config/assertions.d.ts +5 -0
- package/blocks/Config/assertions.d.ts.map +1 -0
- package/blocks/Config/initialConfig.d.ts +6 -0
- package/blocks/Config/initialConfig.d.ts.map +1 -0
- package/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/blocks/Config/normalizeConfigValue.d.ts.map +1 -0
- package/blocks/Config/side-effects.d.ts +7 -0
- package/blocks/Config/side-effects.d.ts.map +1 -0
- package/blocks/Config/validatorsType.d.ts +37 -0
- package/blocks/Config/validatorsType.d.ts.map +1 -0
- package/blocks/Copyright/Copyright.d.ts +4 -0
- package/blocks/Copyright/Copyright.d.ts.map +1 -0
- package/blocks/DropArea/DropArea.d.ts +49 -0
- package/blocks/DropArea/DropArea.d.ts.map +1 -0
- package/blocks/DropArea/addDropzone.d.ts +21 -0
- package/blocks/DropArea/addDropzone.d.ts.map +1 -0
- package/blocks/DropArea/getDropItems.d.ts +16 -0
- package/blocks/DropArea/getDropItems.d.ts.map +1 -0
- package/blocks/ExternalSource/ExternalSource.d.ts +78 -0
- package/blocks/ExternalSource/ExternalSource.d.ts.map +1 -0
- package/blocks/ExternalSource/MessageBridge.d.ts +20 -0
- package/blocks/ExternalSource/MessageBridge.d.ts.map +1 -0
- package/blocks/ExternalSource/buildThemeDefinition.d.ts +3 -0
- package/blocks/ExternalSource/buildThemeDefinition.d.ts.map +1 -0
- package/blocks/ExternalSource/query-string.d.ts +8 -0
- package/blocks/ExternalSource/query-string.d.ts.map +1 -0
- package/blocks/ExternalSource/types.d.ts +105 -0
- package/blocks/ExternalSource/types.d.ts.map +1 -0
- package/blocks/FileItem/FileItem.d.ts +76 -0
- package/blocks/FileItem/FileItem.d.ts.map +1 -0
- package/blocks/FileItem/FileItemConfig.d.ts +28 -0
- package/blocks/FileItem/FileItemConfig.d.ts.map +1 -0
- package/blocks/FormInput/FormInput.d.ts +7 -0
- package/blocks/FormInput/FormInput.d.ts.map +1 -0
- package/blocks/Icon/Icon.d.ts +11 -0
- package/blocks/Icon/Icon.d.ts.map +1 -0
- package/blocks/Img/Img.d.ts +4 -0
- package/blocks/Img/Img.d.ts.map +1 -0
- package/blocks/Img/ImgBase.d.ts +80 -0
- package/blocks/Img/ImgBase.d.ts.map +1 -0
- package/blocks/Img/ImgConfig.d.ts +31 -0
- package/blocks/Img/ImgConfig.d.ts.map +1 -0
- package/blocks/Img/configurations.d.ts +12 -0
- package/blocks/Img/configurations.d.ts.map +1 -0
- package/blocks/Img/props-map.d.ts +29 -0
- package/blocks/Img/props-map.d.ts.map +1 -0
- package/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/blocks/Img/utils/parseObjectToString.d.ts.map +1 -0
- package/blocks/Modal/Modal.d.ts +43 -0
- package/blocks/Modal/Modal.d.ts.map +1 -0
- package/blocks/ProgressBar/ProgressBar.d.ts +17 -0
- package/blocks/ProgressBar/ProgressBar.d.ts.map +1 -0
- package/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +8 -0
- package/blocks/ProgressBarCommon/ProgressBarCommon.d.ts.map +1 -0
- package/blocks/Range/Range.d.ts +16 -0
- package/blocks/Range/Range.d.ts.map +1 -0
- package/blocks/Select/Select.d.ts +9 -0
- package/blocks/Select/Select.d.ts.map +1 -0
- package/blocks/SimpleBtn/SimpleBtn.d.ts +25 -0
- package/blocks/SimpleBtn/SimpleBtn.d.ts.map +1 -0
- package/blocks/SourceBtn/SourceBtn.d.ts +57 -0
- package/blocks/SourceBtn/SourceBtn.d.ts.map +1 -0
- package/blocks/SourceList/SourceList.d.ts +4 -0
- package/blocks/SourceList/SourceList.d.ts.map +1 -0
- package/blocks/Spinner/Spinner.d.ts +8 -0
- package/blocks/Spinner/Spinner.d.ts.map +1 -0
- package/blocks/StartFrom/StartFrom.d.ts +7 -0
- package/blocks/StartFrom/StartFrom.d.ts.map +1 -0
- package/blocks/Thumb/Thumb.d.ts +51 -0
- package/blocks/Thumb/Thumb.d.ts.map +1 -0
- package/blocks/UploadCtxProvider/EventEmitter.d.ts +112 -0
- package/blocks/UploadCtxProvider/EventEmitter.d.ts.map +1 -0
- package/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +35 -0
- package/blocks/UploadCtxProvider/UploadCtxProvider.d.ts.map +1 -0
- package/blocks/UploadList/UploadList.d.ts +60 -0
- package/blocks/UploadList/UploadList.d.ts.map +1 -0
- package/blocks/UrlSource/UrlSource.d.ts +9 -0
- package/blocks/UrlSource/UrlSource.d.ts.map +1 -0
- package/blocks/svg-backgrounds/svg-backgrounds.d.ts +17 -0
- package/blocks/svg-backgrounds/svg-backgrounds.d.ts.map +1 -0
- package/blocks/themes/uc-basic/svg-sprite.d.ts +3 -0
- package/blocks/themes/uc-basic/svg-sprite.d.ts.map +1 -0
- package/blocks/utils/UploadSource.d.ts +39 -0
- package/blocks/utils/UploadSource.d.ts.map +1 -0
- package/blocks/utils/abilities.d.ts +2 -0
- package/blocks/utils/abilities.d.ts.map +1 -0
- package/blocks/utils/comma-separated.d.ts +3 -0
- package/blocks/utils/comma-separated.d.ts.map +1 -0
- package/blocks/utils/debounce.d.ts +12 -0
- package/blocks/utils/debounce.d.ts.map +1 -0
- package/blocks/utils/preloadImage.d.ts +11 -0
- package/blocks/utils/preloadImage.d.ts.map +1 -0
- package/blocks/utils/resizeImage.d.ts +6 -0
- package/blocks/utils/resizeImage.d.ts.map +1 -0
- package/blocks/utils/throttle.d.ts +6 -0
- package/blocks/utils/throttle.d.ts.map +1 -0
- package/blocks/utils/userAgent.d.ts +6 -0
- package/blocks/utils/userAgent.d.ts.map +1 -0
- package/env.d.ts +4 -0
- package/env.d.ts.map +1 -0
- package/index.d.ts +43 -0
- package/index.d.ts.map +1 -0
- package/index.ssr.d.ts +1093 -0
- package/index.ssr.d.ts.map +1 -0
- package/index.ssr.js +30 -30
- package/locales/file-uploader/ar.d.ts +133 -0
- package/locales/file-uploader/ar.d.ts.map +1 -0
- package/locales/file-uploader/az.d.ts +125 -0
- package/locales/file-uploader/az.d.ts.map +1 -0
- package/locales/file-uploader/ca.d.ts +127 -0
- package/locales/file-uploader/ca.d.ts.map +1 -0
- package/locales/file-uploader/cs.d.ts +129 -0
- package/locales/file-uploader/cs.d.ts.map +1 -0
- package/locales/file-uploader/da.d.ts +125 -0
- package/locales/file-uploader/da.d.ts.map +1 -0
- package/locales/file-uploader/de.d.ts +125 -0
- package/locales/file-uploader/de.d.ts.map +1 -0
- package/locales/file-uploader/el.d.ts +125 -0
- package/locales/file-uploader/el.d.ts.map +1 -0
- package/locales/file-uploader/en.d.ts +125 -0
- package/locales/file-uploader/en.d.ts.map +1 -0
- package/locales/file-uploader/es.d.ts +127 -0
- package/locales/file-uploader/es.d.ts.map +1 -0
- package/locales/file-uploader/et.d.ts +125 -0
- package/locales/file-uploader/et.d.ts.map +1 -0
- package/locales/file-uploader/fi.d.ts +125 -0
- package/locales/file-uploader/fi.d.ts.map +1 -0
- package/locales/file-uploader/fr.d.ts +127 -0
- package/locales/file-uploader/fr.d.ts.map +1 -0
- package/locales/file-uploader/he.d.ts +127 -0
- package/locales/file-uploader/he.d.ts.map +1 -0
- package/locales/file-uploader/hy.d.ts +125 -0
- package/locales/file-uploader/hy.d.ts.map +1 -0
- package/locales/file-uploader/is.d.ts +125 -0
- package/locales/file-uploader/is.d.ts.map +1 -0
- package/locales/file-uploader/it.d.ts +127 -0
- package/locales/file-uploader/it.d.ts.map +1 -0
- package/locales/file-uploader/ja.d.ts +125 -0
- package/locales/file-uploader/ja.d.ts.map +1 -0
- package/locales/file-uploader/ka.d.ts +125 -0
- package/locales/file-uploader/ka.d.ts.map +1 -0
- package/locales/file-uploader/kk.d.ts +125 -0
- package/locales/file-uploader/kk.d.ts.map +1 -0
- package/locales/file-uploader/ko.d.ts +125 -0
- package/locales/file-uploader/ko.d.ts.map +1 -0
- package/locales/file-uploader/lv.d.ts +127 -0
- package/locales/file-uploader/lv.d.ts.map +1 -0
- package/locales/file-uploader/nb.d.ts +125 -0
- package/locales/file-uploader/nb.d.ts.map +1 -0
- package/locales/file-uploader/nl.d.ts +125 -0
- package/locales/file-uploader/nl.d.ts.map +1 -0
- package/locales/file-uploader/pl.d.ts +129 -0
- package/locales/file-uploader/pl.d.ts.map +1 -0
- package/locales/file-uploader/pt.d.ts +127 -0
- package/locales/file-uploader/pt.d.ts.map +1 -0
- package/locales/file-uploader/ro.d.ts +127 -0
- package/locales/file-uploader/ro.d.ts.map +1 -0
- package/locales/file-uploader/ru.d.ts +129 -0
- package/locales/file-uploader/ru.d.ts.map +1 -0
- package/locales/file-uploader/sk.d.ts +129 -0
- package/locales/file-uploader/sk.d.ts.map +1 -0
- package/locales/file-uploader/sr.d.ts +127 -0
- package/locales/file-uploader/sr.d.ts.map +1 -0
- package/locales/file-uploader/sv.d.ts +125 -0
- package/locales/file-uploader/sv.d.ts.map +1 -0
- package/locales/file-uploader/tr.d.ts +125 -0
- package/locales/file-uploader/tr.d.ts.map +1 -0
- package/locales/file-uploader/uk.d.ts +129 -0
- package/locales/file-uploader/uk.d.ts.map +1 -0
- package/locales/file-uploader/vi.d.ts +125 -0
- package/locales/file-uploader/vi.d.ts.map +1 -0
- package/locales/file-uploader/zh-TW.d.ts +125 -0
- package/locales/file-uploader/zh-TW.d.ts.map +1 -0
- package/locales/file-uploader/zh.d.ts +125 -0
- package/locales/file-uploader/zh.d.ts.map +1 -0
- package/package.json +1 -1
- package/solutions/adaptive-image/index.d.ts +3 -0
- package/solutions/adaptive-image/index.d.ts.map +1 -0
- package/solutions/cloud-image-editor/CloudImageEditor.d.ts +4 -0
- package/solutions/cloud-image-editor/CloudImageEditor.d.ts.map +1 -0
- package/solutions/cloud-image-editor/index.d.ts +6 -0
- package/solutions/cloud-image-editor/index.d.ts.map +1 -0
- package/solutions/file-uploader/inline/FileUploaderInline.d.ts +26 -0
- package/solutions/file-uploader/inline/FileUploaderInline.d.ts.map +1 -0
- package/solutions/file-uploader/inline/index.d.ts +2 -0
- package/solutions/file-uploader/inline/index.d.ts.map +1 -0
- package/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +42 -0
- package/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts.map +1 -0
- package/solutions/file-uploader/minimal/index.d.ts +2 -0
- package/solutions/file-uploader/minimal/index.d.ts.map +1 -0
- package/solutions/file-uploader/regular/FileUploaderRegular.d.ts +23 -0
- package/solutions/file-uploader/regular/FileUploaderRegular.d.ts.map +1 -0
- package/solutions/file-uploader/regular/index.d.ts +2 -0
- package/solutions/file-uploader/regular/index.d.ts.map +1 -0
- package/utils/WindowHeightTracker.d.ts +24 -0
- package/utils/WindowHeightTracker.d.ts.map +1 -0
- package/utils/browser-info.d.ts +13 -0
- package/utils/browser-info.d.ts.map +1 -0
- package/utils/browser-info.test.d.ts +2 -0
- package/utils/browser-info.test.d.ts.map +1 -0
- package/utils/cdn-utils.d.ts +59 -0
- package/utils/cdn-utils.d.ts.map +1 -0
- package/utils/cdn-utils.test.d.ts +2 -0
- package/utils/cdn-utils.test.d.ts.map +1 -0
- package/utils/delay.d.ts +2 -0
- package/utils/delay.d.ts.map +1 -0
- package/utils/fileTypes.d.ts +12 -0
- package/utils/fileTypes.d.ts.map +1 -0
- package/utils/fileTypes.test.d.ts +2 -0
- package/utils/fileTypes.test.d.ts.map +1 -0
- package/utils/get-top-level-origin.d.ts +2 -0
- package/utils/get-top-level-origin.d.ts.map +1 -0
- package/utils/getLocaleDirection.d.ts +2 -0
- package/utils/getLocaleDirection.d.ts.map +1 -0
- package/utils/getPluralForm.d.ts +3 -0
- package/utils/getPluralForm.d.ts.map +1 -0
- package/utils/getPluralForm.test.d.ts +2 -0
- package/utils/getPluralForm.test.d.ts.map +1 -0
- package/utils/ifRef.d.ts +7 -0
- package/utils/ifRef.d.ts.map +1 -0
- package/utils/isSecureTokenExpired.d.ts +4 -0
- package/utils/isSecureTokenExpired.d.ts.map +1 -0
- package/utils/isSecureTokenExpired.test.d.ts +2 -0
- package/utils/isSecureTokenExpired.test.d.ts.map +1 -0
- package/utils/memoize.d.ts +2 -0
- package/utils/memoize.d.ts.map +1 -0
- package/utils/memoize.test.d.ts +2 -0
- package/utils/memoize.test.d.ts.map +1 -0
- package/utils/mixinClass.d.ts +10 -0
- package/utils/mixinClass.d.ts.map +1 -0
- package/utils/parseCdnUrl.d.ts +9 -0
- package/utils/parseCdnUrl.d.ts.map +1 -0
- package/utils/parseCdnUrl.test.d.ts +2 -0
- package/utils/parseCdnUrl.test.d.ts.map +1 -0
- package/utils/parseShrink.d.ts +5 -0
- package/utils/parseShrink.d.ts.map +1 -0
- package/utils/parseShrink.test.d.ts +2 -0
- package/utils/parseShrink.test.d.ts.map +1 -0
- package/utils/prettyBytes.d.ts +11 -0
- package/utils/prettyBytes.d.ts.map +1 -0
- package/utils/prettyBytes.test.d.ts +2 -0
- package/utils/prettyBytes.test.d.ts.map +1 -0
- package/utils/stringToArray.d.ts +2 -0
- package/utils/stringToArray.d.ts.map +1 -0
- package/utils/stringToArray.test.d.ts +2 -0
- package/utils/stringToArray.test.d.ts.map +1 -0
- package/utils/template-utils.d.ts +40 -0
- package/utils/template-utils.d.ts.map +1 -0
- package/utils/template-utils.test.d.ts +2 -0
- package/utils/template-utils.test.d.ts.map +1 -0
- package/utils/toKebabCase.d.ts +3 -0
- package/utils/toKebabCase.d.ts.map +1 -0
- package/utils/toKebabCase.test.d.ts +2 -0
- package/utils/toKebabCase.test.d.ts.map +1 -0
- package/utils/transparentPixelSrc.d.ts +2 -0
- package/utils/transparentPixelSrc.d.ts.map +1 -0
- package/utils/uniqueArray.d.ts +2 -0
- package/utils/uniqueArray.d.ts.map +1 -0
- package/utils/uniqueArray.test.d.ts +2 -0
- package/utils/uniqueArray.test.d.ts.map +1 -0
- package/utils/validators/collection/index.d.ts +3 -0
- package/utils/validators/collection/index.d.ts.map +1 -0
- package/utils/validators/collection/validateCollectionUploadError.d.ts +3 -0
- package/utils/validators/collection/validateCollectionUploadError.d.ts.map +1 -0
- package/utils/validators/collection/validateMultiple.d.ts +3 -0
- package/utils/validators/collection/validateMultiple.d.ts.map +1 -0
- package/utils/validators/file/index.d.ts +5 -0
- package/utils/validators/file/index.d.ts.map +1 -0
- package/utils/validators/file/validateFileType.d.ts +3 -0
- package/utils/validators/file/validateFileType.d.ts.map +1 -0
- package/utils/validators/file/validateIsImage.d.ts +3 -0
- package/utils/validators/file/validateIsImage.d.ts.map +1 -0
- package/utils/validators/file/validateMaxSizeLimit.d.ts +3 -0
- package/utils/validators/file/validateMaxSizeLimit.d.ts.map +1 -0
- package/utils/validators/file/validateUploadError.d.ts +3 -0
- package/utils/validators/file/validateUploadError.d.ts.map +1 -0
- package/utils/waitForAttribute.d.ts +8 -0
- package/utils/waitForAttribute.d.ts.map +1 -0
- package/utils/waitForAttribute.test.d.ts +2 -0
- package/utils/waitForAttribute.test.d.ts.map +1 -0
- package/utils/warnOnce.d.ts +3 -0
- package/utils/warnOnce.d.ts.map +1 -0
- package/utils/wildcardRegexp.d.ts +2 -0
- package/utils/wildcardRegexp.d.ts.map +1 -0
- package/utils/wildcardRegexp.test.d.ts +2 -0
- package/utils/wildcardRegexp.test.d.ts.map +1 -0
- package/web/file-uploader.iife.min.js +29 -0
- package/web/file-uploader.min.js +29 -0
- package/web/uc-basic.min.css +1 -0
- package/web/uc-cloud-image-editor.min.css +1 -0
- package/web/uc-cloud-image-editor.min.js +29 -0
- package/web/uc-file-uploader-inline.min.css +1 -0
- package/web/uc-file-uploader-inline.min.js +29 -0
- package/web/uc-file-uploader-minimal.min.css +1 -0
- package/web/uc-file-uploader-minimal.min.js +29 -0
- package/web/uc-file-uploader-regular.min.css +1 -0
- package/web/uc-file-uploader-regular.min.js +29 -0
- package/web/uc-img.min.js +28 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.ssr.d.ts","sourceRoot":"","sources":["index.ssr.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;EAcE;AACF;;;;;;;;;;;;;;;EAcE;AACF;;;;;EAIE;AACF;;;;;;EAKE;AACF;;;;;;;;EAgBE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6IE;AACF;;;;;;;;EAuCE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CE;AACF;;;;;;;;EAuCE;AACF;;;;;;;EAgHE;AACF;;;;;;;EAaE;AACF;;;;;;;EAME;AACF;;;;;;;;;;;;;;;;EAeE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmEE;AACF;;;;;;;EAWE;AACF;;;;;;;EAWE;AACF;;;;;;;EASE;AACF;;;;;;EAKE;AACF;;;;;;;EAWE;AACF;;;;;;;EAME;AACF;;;;;;;EAWE;AACF;;;;;;;EA2IE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0EE;;;;;;;;;;;;;AAaF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqFE;AACF;;;;;;EAKE;AACF;;;;;;EAKE;AACF;;;;;;;EAME;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CE;AACF;;;;;;;;EAWE;AACF;;;;;;EAwBE;AACF;;;;;;;EAUE;AACF;;;;;;;;EAWE;;;;;;;;;AASF,oCAAqC;AACrC,uCAAwC;AACxC;;;;;;;EAME;AACF;;;;;;;EASE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgDE;AACF;;;;;;;EAME;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0DE;AACF;;;;;;;EAeE;AACF;;;;;;EAKE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsDE;AACF;;;;;;EAKE;AACF;;;;;;EAKE;AACF;;;;;;;;;;;;;;;;EAeE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuDE;AACF;;;;;;;;;;;;EAWE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmEE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuGE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsBF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CE;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2EE;AACK,yCAAiC;AACjC,qCAA6B;AAC7B,6CAAqC;AACrC,oCAA4B"}
|
package/index.ssr.js
CHANGED
|
@@ -154,7 +154,7 @@ export const CameraSource = class {
|
|
|
154
154
|
static extSrcList = {
|
|
155
155
|
FACEBOOK: "facebook",
|
|
156
156
|
DROPBOX: "dropbox",
|
|
157
|
-
GDRIVE: "
|
|
157
|
+
GDRIVE: "ngdrive",
|
|
158
158
|
GPHOTOS: "gphotos",
|
|
159
159
|
FLICKR: "flickr",
|
|
160
160
|
VK: "vk",
|
|
@@ -175,7 +175,7 @@ export const CameraSource = class {
|
|
|
175
175
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
176
176
|
FACEBOOK: "facebook",
|
|
177
177
|
DROPBOX: "dropbox",
|
|
178
|
-
GDRIVE: "
|
|
178
|
+
GDRIVE: "ngdrive",
|
|
179
179
|
GPHOTOS: "gphotos",
|
|
180
180
|
FLICKR: "flickr",
|
|
181
181
|
VK: "vk",
|
|
@@ -242,7 +242,7 @@ export const CloudImageEditorActivity = class {
|
|
|
242
242
|
static extSrcList = {
|
|
243
243
|
FACEBOOK: "facebook",
|
|
244
244
|
DROPBOX: "dropbox",
|
|
245
|
-
GDRIVE: "
|
|
245
|
+
GDRIVE: "ngdrive",
|
|
246
246
|
GPHOTOS: "gphotos",
|
|
247
247
|
FLICKR: "flickr",
|
|
248
248
|
VK: "vk",
|
|
@@ -263,7 +263,7 @@ export const CloudImageEditorActivity = class {
|
|
|
263
263
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
264
264
|
FACEBOOK: "facebook",
|
|
265
265
|
DROPBOX: "dropbox",
|
|
266
|
-
GDRIVE: "
|
|
266
|
+
GDRIVE: "ngdrive",
|
|
267
267
|
GPHOTOS: "gphotos",
|
|
268
268
|
FLICKR: "flickr",
|
|
269
269
|
VK: "vk",
|
|
@@ -501,7 +501,7 @@ export const DropArea = class {
|
|
|
501
501
|
static extSrcList = {
|
|
502
502
|
FACEBOOK: "facebook",
|
|
503
503
|
DROPBOX: "dropbox",
|
|
504
|
-
GDRIVE: "
|
|
504
|
+
GDRIVE: "ngdrive",
|
|
505
505
|
GPHOTOS: "gphotos",
|
|
506
506
|
FLICKR: "flickr",
|
|
507
507
|
VK: "vk",
|
|
@@ -522,7 +522,7 @@ export const DropArea = class {
|
|
|
522
522
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
523
523
|
FACEBOOK: "facebook",
|
|
524
524
|
DROPBOX: "dropbox",
|
|
525
|
-
GDRIVE: "
|
|
525
|
+
GDRIVE: "ngdrive",
|
|
526
526
|
GPHOTOS: "gphotos",
|
|
527
527
|
FLICKR: "flickr",
|
|
528
528
|
VK: "vk",
|
|
@@ -786,7 +786,7 @@ export const ExternalSource = class {
|
|
|
786
786
|
static extSrcList = {
|
|
787
787
|
FACEBOOK: "facebook",
|
|
788
788
|
DROPBOX: "dropbox",
|
|
789
|
-
GDRIVE: "
|
|
789
|
+
GDRIVE: "ngdrive",
|
|
790
790
|
GPHOTOS: "gphotos",
|
|
791
791
|
FLICKR: "flickr",
|
|
792
792
|
VK: "vk",
|
|
@@ -807,7 +807,7 @@ export const ExternalSource = class {
|
|
|
807
807
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
808
808
|
FACEBOOK: "facebook",
|
|
809
809
|
DROPBOX: "dropbox",
|
|
810
|
-
GDRIVE: "
|
|
810
|
+
GDRIVE: "ngdrive",
|
|
811
811
|
GPHOTOS: "gphotos",
|
|
812
812
|
FLICKR: "flickr",
|
|
813
813
|
VK: "vk",
|
|
@@ -833,7 +833,7 @@ export const ExternalSource = class {
|
|
|
833
833
|
export const ExternalUploadSource = {
|
|
834
834
|
FACEBOOK: "facebook",
|
|
835
835
|
DROPBOX: "dropbox",
|
|
836
|
-
GDRIVE: "
|
|
836
|
+
GDRIVE: "ngdrive",
|
|
837
837
|
GPHOTOS: "gphotos",
|
|
838
838
|
FLICKR: "flickr",
|
|
839
839
|
VK: "vk",
|
|
@@ -884,7 +884,7 @@ export const FileItem = class {
|
|
|
884
884
|
static extSrcList = {
|
|
885
885
|
FACEBOOK: "facebook",
|
|
886
886
|
DROPBOX: "dropbox",
|
|
887
|
-
GDRIVE: "
|
|
887
|
+
GDRIVE: "ngdrive",
|
|
888
888
|
GPHOTOS: "gphotos",
|
|
889
889
|
FLICKR: "flickr",
|
|
890
890
|
VK: "vk",
|
|
@@ -905,7 +905,7 @@ export const FileItem = class {
|
|
|
905
905
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
906
906
|
FACEBOOK: "facebook",
|
|
907
907
|
DROPBOX: "dropbox",
|
|
908
|
-
GDRIVE: "
|
|
908
|
+
GDRIVE: "ngdrive",
|
|
909
909
|
GPHOTOS: "gphotos",
|
|
910
910
|
FLICKR: "flickr",
|
|
911
911
|
VK: "vk",
|
|
@@ -951,7 +951,7 @@ export const FormInput = class {
|
|
|
951
951
|
static extSrcList = {
|
|
952
952
|
FACEBOOK: "facebook",
|
|
953
953
|
DROPBOX: "dropbox",
|
|
954
|
-
GDRIVE: "
|
|
954
|
+
GDRIVE: "ngdrive",
|
|
955
955
|
GPHOTOS: "gphotos",
|
|
956
956
|
FLICKR: "flickr",
|
|
957
957
|
VK: "vk",
|
|
@@ -972,7 +972,7 @@ export const FormInput = class {
|
|
|
972
972
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
973
973
|
FACEBOOK: "facebook",
|
|
974
974
|
DROPBOX: "dropbox",
|
|
975
|
-
GDRIVE: "
|
|
975
|
+
GDRIVE: "ngdrive",
|
|
976
976
|
GPHOTOS: "gphotos",
|
|
977
977
|
FLICKR: "flickr",
|
|
978
978
|
VK: "vk",
|
|
@@ -1087,7 +1087,7 @@ export const ProgressBarCommon = class {
|
|
|
1087
1087
|
static extSrcList = {
|
|
1088
1088
|
FACEBOOK: "facebook",
|
|
1089
1089
|
DROPBOX: "dropbox",
|
|
1090
|
-
GDRIVE: "
|
|
1090
|
+
GDRIVE: "ngdrive",
|
|
1091
1091
|
GPHOTOS: "gphotos",
|
|
1092
1092
|
FLICKR: "flickr",
|
|
1093
1093
|
VK: "vk",
|
|
@@ -1108,7 +1108,7 @@ export const ProgressBarCommon = class {
|
|
|
1108
1108
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1109
1109
|
FACEBOOK: "facebook",
|
|
1110
1110
|
DROPBOX: "dropbox",
|
|
1111
|
-
GDRIVE: "
|
|
1111
|
+
GDRIVE: "ngdrive",
|
|
1112
1112
|
GPHOTOS: "gphotos",
|
|
1113
1113
|
FLICKR: "flickr",
|
|
1114
1114
|
VK: "vk",
|
|
@@ -1154,7 +1154,7 @@ export const SimpleBtn = class {
|
|
|
1154
1154
|
static extSrcList = {
|
|
1155
1155
|
FACEBOOK: "facebook",
|
|
1156
1156
|
DROPBOX: "dropbox",
|
|
1157
|
-
GDRIVE: "
|
|
1157
|
+
GDRIVE: "ngdrive",
|
|
1158
1158
|
GPHOTOS: "gphotos",
|
|
1159
1159
|
FLICKR: "flickr",
|
|
1160
1160
|
VK: "vk",
|
|
@@ -1175,7 +1175,7 @@ export const SimpleBtn = class {
|
|
|
1175
1175
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1176
1176
|
FACEBOOK: "facebook",
|
|
1177
1177
|
DROPBOX: "dropbox",
|
|
1178
|
-
GDRIVE: "
|
|
1178
|
+
GDRIVE: "ngdrive",
|
|
1179
1179
|
GPHOTOS: "gphotos",
|
|
1180
1180
|
FLICKR: "flickr",
|
|
1181
1181
|
VK: "vk",
|
|
@@ -1230,7 +1230,7 @@ export const SourceBtn = class {
|
|
|
1230
1230
|
static extSrcList = {
|
|
1231
1231
|
FACEBOOK: "facebook",
|
|
1232
1232
|
DROPBOX: "dropbox",
|
|
1233
|
-
GDRIVE: "
|
|
1233
|
+
GDRIVE: "ngdrive",
|
|
1234
1234
|
GPHOTOS: "gphotos",
|
|
1235
1235
|
FLICKR: "flickr",
|
|
1236
1236
|
VK: "vk",
|
|
@@ -1251,7 +1251,7 @@ export const SourceBtn = class {
|
|
|
1251
1251
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1252
1252
|
FACEBOOK: "facebook",
|
|
1253
1253
|
DROPBOX: "dropbox",
|
|
1254
|
-
GDRIVE: "
|
|
1254
|
+
GDRIVE: "ngdrive",
|
|
1255
1255
|
GPHOTOS: "gphotos",
|
|
1256
1256
|
FLICKR: "flickr",
|
|
1257
1257
|
VK: "vk",
|
|
@@ -1314,7 +1314,7 @@ export const Thumb = class {
|
|
|
1314
1314
|
static extSrcList = {
|
|
1315
1315
|
FACEBOOK: "facebook",
|
|
1316
1316
|
DROPBOX: "dropbox",
|
|
1317
|
-
GDRIVE: "
|
|
1317
|
+
GDRIVE: "ngdrive",
|
|
1318
1318
|
GPHOTOS: "gphotos",
|
|
1319
1319
|
FLICKR: "flickr",
|
|
1320
1320
|
VK: "vk",
|
|
@@ -1335,7 +1335,7 @@ export const Thumb = class {
|
|
|
1335
1335
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1336
1336
|
FACEBOOK: "facebook",
|
|
1337
1337
|
DROPBOX: "dropbox",
|
|
1338
|
-
GDRIVE: "
|
|
1338
|
+
GDRIVE: "ngdrive",
|
|
1339
1339
|
GPHOTOS: "gphotos",
|
|
1340
1340
|
FLICKR: "flickr",
|
|
1341
1341
|
VK: "vk",
|
|
@@ -1394,7 +1394,7 @@ export const UploadCtxProvider = class {
|
|
|
1394
1394
|
static extSrcList = {
|
|
1395
1395
|
FACEBOOK: "facebook",
|
|
1396
1396
|
DROPBOX: "dropbox",
|
|
1397
|
-
GDRIVE: "
|
|
1397
|
+
GDRIVE: "ngdrive",
|
|
1398
1398
|
GPHOTOS: "gphotos",
|
|
1399
1399
|
FLICKR: "flickr",
|
|
1400
1400
|
VK: "vk",
|
|
@@ -1415,7 +1415,7 @@ export const UploadCtxProvider = class {
|
|
|
1415
1415
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1416
1416
|
FACEBOOK: "facebook",
|
|
1417
1417
|
DROPBOX: "dropbox",
|
|
1418
|
-
GDRIVE: "
|
|
1418
|
+
GDRIVE: "ngdrive",
|
|
1419
1419
|
GPHOTOS: "gphotos",
|
|
1420
1420
|
FLICKR: "flickr",
|
|
1421
1421
|
VK: "vk",
|
|
@@ -1498,7 +1498,7 @@ export const UploadList = class {
|
|
|
1498
1498
|
static extSrcList = {
|
|
1499
1499
|
FACEBOOK: "facebook",
|
|
1500
1500
|
DROPBOX: "dropbox",
|
|
1501
|
-
GDRIVE: "
|
|
1501
|
+
GDRIVE: "ngdrive",
|
|
1502
1502
|
GPHOTOS: "gphotos",
|
|
1503
1503
|
FLICKR: "flickr",
|
|
1504
1504
|
VK: "vk",
|
|
@@ -1519,7 +1519,7 @@ export const UploadList = class {
|
|
|
1519
1519
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1520
1520
|
FACEBOOK: "facebook",
|
|
1521
1521
|
DROPBOX: "dropbox",
|
|
1522
|
-
GDRIVE: "
|
|
1522
|
+
GDRIVE: "ngdrive",
|
|
1523
1523
|
GPHOTOS: "gphotos",
|
|
1524
1524
|
FLICKR: "flickr",
|
|
1525
1525
|
VK: "vk",
|
|
@@ -1554,7 +1554,7 @@ export const UploadSource = {
|
|
|
1554
1554
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1555
1555
|
FACEBOOK: "facebook",
|
|
1556
1556
|
DROPBOX: "dropbox",
|
|
1557
|
-
GDRIVE: "
|
|
1557
|
+
GDRIVE: "ngdrive",
|
|
1558
1558
|
GPHOTOS: "gphotos",
|
|
1559
1559
|
FLICKR: "flickr",
|
|
1560
1560
|
VK: "vk",
|
|
@@ -1567,7 +1567,7 @@ export const UploaderBlock = class {
|
|
|
1567
1567
|
static extSrcList = {
|
|
1568
1568
|
FACEBOOK: "facebook",
|
|
1569
1569
|
DROPBOX: "dropbox",
|
|
1570
|
-
GDRIVE: "
|
|
1570
|
+
GDRIVE: "ngdrive",
|
|
1571
1571
|
GPHOTOS: "gphotos",
|
|
1572
1572
|
FLICKR: "flickr",
|
|
1573
1573
|
VK: "vk",
|
|
@@ -1588,7 +1588,7 @@ export const UploaderBlock = class {
|
|
|
1588
1588
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1589
1589
|
FACEBOOK: "facebook",
|
|
1590
1590
|
DROPBOX: "dropbox",
|
|
1591
|
-
GDRIVE: "
|
|
1591
|
+
GDRIVE: "ngdrive",
|
|
1592
1592
|
GPHOTOS: "gphotos",
|
|
1593
1593
|
FLICKR: "flickr",
|
|
1594
1594
|
VK: "vk",
|
|
@@ -1643,7 +1643,7 @@ export const UrlSource = class {
|
|
|
1643
1643
|
static extSrcList = {
|
|
1644
1644
|
FACEBOOK: "facebook",
|
|
1645
1645
|
DROPBOX: "dropbox",
|
|
1646
|
-
GDRIVE: "
|
|
1646
|
+
GDRIVE: "ngdrive",
|
|
1647
1647
|
GPHOTOS: "gphotos",
|
|
1648
1648
|
FLICKR: "flickr",
|
|
1649
1649
|
VK: "vk",
|
|
@@ -1664,7 +1664,7 @@ export const UrlSource = class {
|
|
|
1664
1664
|
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1665
1665
|
FACEBOOK: "facebook",
|
|
1666
1666
|
DROPBOX: "dropbox",
|
|
1667
|
-
GDRIVE: "
|
|
1667
|
+
GDRIVE: "ngdrive",
|
|
1668
1668
|
GPHOTOS: "gphotos",
|
|
1669
1669
|
FLICKR: "flickr",
|
|
1670
1670
|
VK: "vk",
|
|
@@ -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__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-draw': string;
|
|
57
|
+
'src-type-facebook': string;
|
|
58
|
+
'src-type-dropbox': string;
|
|
59
|
+
'src-type-gdrive': 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-draw': string;
|
|
73
|
+
'caption-edit-file': string;
|
|
74
|
+
'file-no-name': string;
|
|
75
|
+
'toggle-fullscreen': string;
|
|
76
|
+
'toggle-guides': string;
|
|
77
|
+
rotate: string;
|
|
78
|
+
'flip-vertical': string;
|
|
79
|
+
'flip-horizontal': string;
|
|
80
|
+
apply: string;
|
|
81
|
+
brightness: string;
|
|
82
|
+
contrast: string;
|
|
83
|
+
saturation: string;
|
|
84
|
+
exposure: string;
|
|
85
|
+
gamma: string;
|
|
86
|
+
vibrance: string;
|
|
87
|
+
warmth: string;
|
|
88
|
+
enhance: string;
|
|
89
|
+
original: string;
|
|
90
|
+
resize: string;
|
|
91
|
+
crop: string;
|
|
92
|
+
'select-color': string;
|
|
93
|
+
text: string;
|
|
94
|
+
draw: string;
|
|
95
|
+
'cancel-edit': string;
|
|
96
|
+
'tab-view': string;
|
|
97
|
+
'tab-details': string;
|
|
98
|
+
'file-name': string;
|
|
99
|
+
'file-size': string;
|
|
100
|
+
'cdn-url': string;
|
|
101
|
+
'file-size-unknown': string;
|
|
102
|
+
'camera-permissions-denied': string;
|
|
103
|
+
'camera-permissions-prompt': string;
|
|
104
|
+
'camera-permissions-request': string;
|
|
105
|
+
'files-count-limit-error-title': string;
|
|
106
|
+
'files-count-limit-error-too-few': string;
|
|
107
|
+
'files-count-limit-error-too-many': string;
|
|
108
|
+
'files-max-size-limit-error': string;
|
|
109
|
+
'has-validation-errors': string;
|
|
110
|
+
'images-only-accepted': string;
|
|
111
|
+
'file-type-not-allowed': string;
|
|
112
|
+
'some-files-were-not-uploaded': string;
|
|
113
|
+
'file-item-edit-button': string;
|
|
114
|
+
'file-item-remove-button': string;
|
|
115
|
+
'a11y-activity-header-button-close': string;
|
|
116
|
+
'a11y-editor-tab-filters': string;
|
|
117
|
+
'a11y-editor-tab-tuning': string;
|
|
118
|
+
'a11y-editor-tab-crop': string;
|
|
119
|
+
flip: string;
|
|
120
|
+
mirror: string;
|
|
121
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
122
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
123
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
124
|
+
finished: string;
|
|
125
|
+
failed: string;
|
|
126
|
+
uploading: string;
|
|
127
|
+
idle: string;
|
|
128
|
+
queued: string;
|
|
129
|
+
'a11y-file-item-status': string;
|
|
130
|
+
'waiting-for': string;
|
|
131
|
+
};
|
|
132
|
+
export default _default;
|
|
133
|
+
//# sourceMappingURL=ar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ar.d.ts","sourceRoot":"","sources":["ar.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,125 @@
|
|
|
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-draw': string;
|
|
49
|
+
'src-type-facebook': string;
|
|
50
|
+
'src-type-dropbox': string;
|
|
51
|
+
'src-type-gdrive': 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-draw': string;
|
|
65
|
+
'caption-edit-file': string;
|
|
66
|
+
'file-no-name': string;
|
|
67
|
+
'toggle-fullscreen': string;
|
|
68
|
+
'toggle-guides': string;
|
|
69
|
+
rotate: string;
|
|
70
|
+
'flip-vertical': string;
|
|
71
|
+
'flip-horizontal': string;
|
|
72
|
+
apply: string;
|
|
73
|
+
brightness: string;
|
|
74
|
+
contrast: string;
|
|
75
|
+
saturation: string;
|
|
76
|
+
exposure: string;
|
|
77
|
+
gamma: string;
|
|
78
|
+
vibrance: string;
|
|
79
|
+
warmth: string;
|
|
80
|
+
enhance: string;
|
|
81
|
+
original: string;
|
|
82
|
+
resize: string;
|
|
83
|
+
crop: string;
|
|
84
|
+
'select-color': string;
|
|
85
|
+
text: string;
|
|
86
|
+
draw: string;
|
|
87
|
+
'cancel-edit': string;
|
|
88
|
+
'tab-view': string;
|
|
89
|
+
'tab-details': string;
|
|
90
|
+
'file-name': string;
|
|
91
|
+
'file-size': string;
|
|
92
|
+
'cdn-url': string;
|
|
93
|
+
'file-size-unknown': string;
|
|
94
|
+
'camera-permissions-denied': string;
|
|
95
|
+
'camera-permissions-prompt': string;
|
|
96
|
+
'camera-permissions-request': string;
|
|
97
|
+
'files-count-limit-error-title': string;
|
|
98
|
+
'files-count-limit-error-too-few': string;
|
|
99
|
+
'files-count-limit-error-too-many': string;
|
|
100
|
+
'files-max-size-limit-error': string;
|
|
101
|
+
'has-validation-errors': string;
|
|
102
|
+
'images-only-accepted': string;
|
|
103
|
+
'file-type-not-allowed': string;
|
|
104
|
+
'some-files-were-not-uploaded': string;
|
|
105
|
+
'file-item-edit-button': string;
|
|
106
|
+
'file-item-remove-button': string;
|
|
107
|
+
'a11y-activity-header-button-close': string;
|
|
108
|
+
'a11y-editor-tab-filters': string;
|
|
109
|
+
'a11y-editor-tab-tuning': string;
|
|
110
|
+
'a11y-editor-tab-crop': string;
|
|
111
|
+
flip: string;
|
|
112
|
+
mirror: string;
|
|
113
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
114
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
115
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
116
|
+
finished: string;
|
|
117
|
+
failed: string;
|
|
118
|
+
uploading: string;
|
|
119
|
+
idle: string;
|
|
120
|
+
queued: string;
|
|
121
|
+
'a11y-file-item-status': string;
|
|
122
|
+
'waiting-for': string;
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
|
125
|
+
//# sourceMappingURL=az.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"az.d.ts","sourceRoot":"","sources":["az.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,127 @@
|
|
|
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-draw': string;
|
|
51
|
+
'src-type-facebook': string;
|
|
52
|
+
'src-type-dropbox': string;
|
|
53
|
+
'src-type-gdrive': 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-draw': string;
|
|
67
|
+
'caption-edit-file': string;
|
|
68
|
+
'file-no-name': string;
|
|
69
|
+
'toggle-fullscreen': string;
|
|
70
|
+
'toggle-guides': string;
|
|
71
|
+
rotate: string;
|
|
72
|
+
'flip-vertical': string;
|
|
73
|
+
'flip-horizontal': string;
|
|
74
|
+
apply: string;
|
|
75
|
+
brightness: string;
|
|
76
|
+
contrast: string;
|
|
77
|
+
saturation: string;
|
|
78
|
+
exposure: string;
|
|
79
|
+
gamma: string;
|
|
80
|
+
vibrance: string;
|
|
81
|
+
warmth: string;
|
|
82
|
+
enhance: string;
|
|
83
|
+
original: string;
|
|
84
|
+
resize: string;
|
|
85
|
+
crop: string;
|
|
86
|
+
'select-color': string;
|
|
87
|
+
text: string;
|
|
88
|
+
draw: string;
|
|
89
|
+
'cancel-edit': string;
|
|
90
|
+
'tab-view': string;
|
|
91
|
+
'tab-details': string;
|
|
92
|
+
'file-name': string;
|
|
93
|
+
'file-size': string;
|
|
94
|
+
'cdn-url': string;
|
|
95
|
+
'file-size-unknown': string;
|
|
96
|
+
'camera-permissions-denied': string;
|
|
97
|
+
'camera-permissions-prompt': string;
|
|
98
|
+
'camera-permissions-request': string;
|
|
99
|
+
'files-count-limit-error-title': string;
|
|
100
|
+
'files-count-limit-error-too-few': string;
|
|
101
|
+
'files-count-limit-error-too-many': string;
|
|
102
|
+
'files-max-size-limit-error': string;
|
|
103
|
+
'has-validation-errors': string;
|
|
104
|
+
'images-only-accepted': string;
|
|
105
|
+
'file-type-not-allowed': string;
|
|
106
|
+
'some-files-were-not-uploaded': string;
|
|
107
|
+
'file-item-edit-button': string;
|
|
108
|
+
'file-item-remove-button': string;
|
|
109
|
+
'a11y-activity-header-button-close': string;
|
|
110
|
+
'a11y-editor-tab-filters': string;
|
|
111
|
+
'a11y-editor-tab-tuning': string;
|
|
112
|
+
'a11y-editor-tab-crop': string;
|
|
113
|
+
flip: string;
|
|
114
|
+
mirror: string;
|
|
115
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
116
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
117
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
118
|
+
finished: string;
|
|
119
|
+
failed: string;
|
|
120
|
+
uploading: string;
|
|
121
|
+
idle: string;
|
|
122
|
+
queued: string;
|
|
123
|
+
'a11y-file-item-status': string;
|
|
124
|
+
'waiting-for': string;
|
|
125
|
+
};
|
|
126
|
+
export default _default;
|
|
127
|
+
//# sourceMappingURL=ca.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ca.d.ts","sourceRoot":"","sources":["ca.js"],"names":[],"mappings":""}
|