@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,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
|
+
'upload-error': string;
|
|
31
|
+
'validation-error': string;
|
|
32
|
+
'no-files': string;
|
|
33
|
+
browse: string;
|
|
34
|
+
'not-uploaded-yet': string;
|
|
35
|
+
file__one: string;
|
|
36
|
+
file__other: string;
|
|
37
|
+
error__one: string;
|
|
38
|
+
error__other: string;
|
|
39
|
+
'header-uploading': string;
|
|
40
|
+
'header-failed': string;
|
|
41
|
+
'header-succeed': string;
|
|
42
|
+
'header-total': string;
|
|
43
|
+
'src-type-local': string;
|
|
44
|
+
'src-type-from-url': string;
|
|
45
|
+
'src-type-camera': string;
|
|
46
|
+
'src-type-draw': string;
|
|
47
|
+
'src-type-facebook': string;
|
|
48
|
+
'src-type-dropbox': string;
|
|
49
|
+
'src-type-gdrive': string;
|
|
50
|
+
'src-type-gphotos': string;
|
|
51
|
+
'src-type-flickr': string;
|
|
52
|
+
'src-type-vk': string;
|
|
53
|
+
'src-type-evernote': string;
|
|
54
|
+
'src-type-box': string;
|
|
55
|
+
'src-type-onedrive': string;
|
|
56
|
+
'src-type-huddle': string;
|
|
57
|
+
'src-type-other': string;
|
|
58
|
+
'src-type-mobile-video-camera': string;
|
|
59
|
+
'src-type-mobile-photo-camera': string;
|
|
60
|
+
'caption-from-url': string;
|
|
61
|
+
'caption-camera': string;
|
|
62
|
+
'caption-draw': string;
|
|
63
|
+
'caption-edit-file': string;
|
|
64
|
+
'file-no-name': string;
|
|
65
|
+
'toggle-fullscreen': string;
|
|
66
|
+
'toggle-guides': string;
|
|
67
|
+
rotate: string;
|
|
68
|
+
'flip-vertical': string;
|
|
69
|
+
'flip-horizontal': string;
|
|
70
|
+
apply: string;
|
|
71
|
+
brightness: string;
|
|
72
|
+
contrast: string;
|
|
73
|
+
saturation: string;
|
|
74
|
+
exposure: string;
|
|
75
|
+
gamma: string;
|
|
76
|
+
vibrance: string;
|
|
77
|
+
warmth: string;
|
|
78
|
+
enhance: string;
|
|
79
|
+
original: string;
|
|
80
|
+
resize: string;
|
|
81
|
+
crop: string;
|
|
82
|
+
'select-color': string;
|
|
83
|
+
text: string;
|
|
84
|
+
draw: string;
|
|
85
|
+
'cancel-edit': string;
|
|
86
|
+
'tab-view': string;
|
|
87
|
+
'tab-details': string;
|
|
88
|
+
'file-name': string;
|
|
89
|
+
'file-size': string;
|
|
90
|
+
'cdn-url': string;
|
|
91
|
+
'file-size-unknown': string;
|
|
92
|
+
'camera-permissions-denied': string;
|
|
93
|
+
'camera-permissions-prompt': string;
|
|
94
|
+
'camera-permissions-request': string;
|
|
95
|
+
'files-count-limit-error-title': string;
|
|
96
|
+
'files-count-limit-error-too-few': string;
|
|
97
|
+
'files-count-limit-error-too-many': string;
|
|
98
|
+
'files-max-size-limit-error': string;
|
|
99
|
+
'has-validation-errors': string;
|
|
100
|
+
'images-only-accepted': string;
|
|
101
|
+
'file-type-not-allowed': string;
|
|
102
|
+
'some-files-were-not-uploaded': string;
|
|
103
|
+
'file-item-edit-button': string;
|
|
104
|
+
'file-item-remove-button': string;
|
|
105
|
+
'a11y-activity-header-button-close': string;
|
|
106
|
+
'a11y-editor-tab-filters': string;
|
|
107
|
+
'a11y-editor-tab-tuning': string;
|
|
108
|
+
'a11y-editor-tab-crop': string;
|
|
109
|
+
flip: string;
|
|
110
|
+
mirror: string;
|
|
111
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
112
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
113
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
114
|
+
finished: string;
|
|
115
|
+
failed: string;
|
|
116
|
+
uploading: string;
|
|
117
|
+
idle: string;
|
|
118
|
+
queued: string;
|
|
119
|
+
'a11y-file-item-status': string;
|
|
120
|
+
'select-all': string;
|
|
121
|
+
'deselect-all': string;
|
|
122
|
+
'waiting-for': string;
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
|
125
|
+
//# sourceMappingURL=zh-TW.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh-TW.d.ts","sourceRoot":"","sources":["zh-TW.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
|
+
'upload-error': string;
|
|
31
|
+
'validation-error': string;
|
|
32
|
+
'no-files': string;
|
|
33
|
+
browse: string;
|
|
34
|
+
'not-uploaded-yet': string;
|
|
35
|
+
file__one: string;
|
|
36
|
+
file__other: string;
|
|
37
|
+
error__one: string;
|
|
38
|
+
error__other: string;
|
|
39
|
+
'header-uploading': string;
|
|
40
|
+
'header-failed': string;
|
|
41
|
+
'header-succeed': string;
|
|
42
|
+
'header-total': string;
|
|
43
|
+
'src-type-local': string;
|
|
44
|
+
'src-type-from-url': string;
|
|
45
|
+
'src-type-camera': string;
|
|
46
|
+
'src-type-draw': string;
|
|
47
|
+
'src-type-facebook': string;
|
|
48
|
+
'src-type-dropbox': string;
|
|
49
|
+
'src-type-gdrive': string;
|
|
50
|
+
'src-type-gphotos': string;
|
|
51
|
+
'src-type-flickr': string;
|
|
52
|
+
'src-type-vk': string;
|
|
53
|
+
'src-type-evernote': string;
|
|
54
|
+
'src-type-box': string;
|
|
55
|
+
'src-type-onedrive': string;
|
|
56
|
+
'src-type-huddle': string;
|
|
57
|
+
'src-type-other': string;
|
|
58
|
+
'src-type-mobile-video-camera': string;
|
|
59
|
+
'src-type-mobile-photo-camera': string;
|
|
60
|
+
'caption-from-url': string;
|
|
61
|
+
'caption-camera': string;
|
|
62
|
+
'caption-draw': string;
|
|
63
|
+
'caption-edit-file': string;
|
|
64
|
+
'file-no-name': string;
|
|
65
|
+
'toggle-fullscreen': string;
|
|
66
|
+
'toggle-guides': string;
|
|
67
|
+
rotate: string;
|
|
68
|
+
'flip-vertical': string;
|
|
69
|
+
'flip-horizontal': string;
|
|
70
|
+
apply: string;
|
|
71
|
+
brightness: string;
|
|
72
|
+
contrast: string;
|
|
73
|
+
saturation: string;
|
|
74
|
+
exposure: string;
|
|
75
|
+
gamma: string;
|
|
76
|
+
vibrance: string;
|
|
77
|
+
warmth: string;
|
|
78
|
+
enhance: string;
|
|
79
|
+
original: string;
|
|
80
|
+
resize: string;
|
|
81
|
+
crop: string;
|
|
82
|
+
'select-color': string;
|
|
83
|
+
text: string;
|
|
84
|
+
draw: string;
|
|
85
|
+
'cancel-edit': string;
|
|
86
|
+
'tab-view': string;
|
|
87
|
+
'tab-details': string;
|
|
88
|
+
'file-name': string;
|
|
89
|
+
'file-size': string;
|
|
90
|
+
'cdn-url': string;
|
|
91
|
+
'file-size-unknown': string;
|
|
92
|
+
'camera-permissions-denied': string;
|
|
93
|
+
'camera-permissions-prompt': string;
|
|
94
|
+
'camera-permissions-request': string;
|
|
95
|
+
'files-count-limit-error-title': string;
|
|
96
|
+
'files-count-limit-error-too-few': string;
|
|
97
|
+
'files-count-limit-error-too-many': string;
|
|
98
|
+
'files-max-size-limit-error': string;
|
|
99
|
+
'has-validation-errors': string;
|
|
100
|
+
'images-only-accepted': string;
|
|
101
|
+
'file-type-not-allowed': string;
|
|
102
|
+
'some-files-were-not-uploaded': string;
|
|
103
|
+
'file-item-edit-button': string;
|
|
104
|
+
'file-item-remove-button': string;
|
|
105
|
+
'a11y-activity-header-button-close': string;
|
|
106
|
+
'a11y-editor-tab-filters': string;
|
|
107
|
+
'a11y-editor-tab-tuning': string;
|
|
108
|
+
'a11y-editor-tab-crop': string;
|
|
109
|
+
flip: string;
|
|
110
|
+
mirror: string;
|
|
111
|
+
'a11y-cloud-editor-apply-filter': string;
|
|
112
|
+
'a11y-cloud-editor-apply-crop': string;
|
|
113
|
+
'a11y-cloud-editor-apply-tuning': string;
|
|
114
|
+
finished: string;
|
|
115
|
+
failed: string;
|
|
116
|
+
uploading: string;
|
|
117
|
+
idle: string;
|
|
118
|
+
queued: string;
|
|
119
|
+
'a11y-file-item-status': string;
|
|
120
|
+
'select-all': string;
|
|
121
|
+
'deselect-all': string;
|
|
122
|
+
'waiting-for': string;
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
|
125
|
+
//# sourceMappingURL=zh.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh.d.ts","sourceRoot":"","sources":["zh.js"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":";oBAAoB,yBAAyB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CloudImageEditor.d.ts","sourceRoot":"","sources":["CloudImageEditor.js"],"names":[],"mappings":"AAGA;CAQC;sCAVqC,4DAA4D"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "../../blocks/CloudImageEditor/index.js";
|
|
2
|
+
export * from "./CloudImageEditor.js";
|
|
3
|
+
export { Icon } from "../../blocks/Icon/Icon.js";
|
|
4
|
+
export { defineComponents } from "../../abstract/defineComponents.js";
|
|
5
|
+
export { Config } from "../../blocks/Config/Config.js";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export class FileUploaderInline extends SolutionBlock {
|
|
2
|
+
init$: {
|
|
3
|
+
couldCancel: boolean;
|
|
4
|
+
cancel: () => void;
|
|
5
|
+
'*commonProgress': number;
|
|
6
|
+
'*uploadList': never[];
|
|
7
|
+
'*uploadQueue': import("@uploadcare/upload-client").Queue;
|
|
8
|
+
'*collectionErrors': ReturnType<import("./index.js").OutputErrorCollection>[];
|
|
9
|
+
'*collectionState': import("./index.js").OutputCollectionState | null;
|
|
10
|
+
'*groupInfo': import("@uploadcare/upload-client").UploadcareGroup | null;
|
|
11
|
+
'*uploadTrigger': Set<string>;
|
|
12
|
+
'*secureUploadsManager': import("../../../abstract/SecureUploadsManager.js").SecureUploadsManager | null;
|
|
13
|
+
'*currentActivity': null;
|
|
14
|
+
'*currentActivityParams': {};
|
|
15
|
+
'*history': never[];
|
|
16
|
+
'*historyBack': null;
|
|
17
|
+
'*closeModal': () => void;
|
|
18
|
+
};
|
|
19
|
+
get couldHistoryBack(): boolean;
|
|
20
|
+
get couldShowList(): boolean;
|
|
21
|
+
}
|
|
22
|
+
export namespace FileUploaderInline {
|
|
23
|
+
let template: string;
|
|
24
|
+
}
|
|
25
|
+
import { SolutionBlock } from '../../../abstract/SolutionBlock.js';
|
|
26
|
+
//# sourceMappingURL=FileUploaderInline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileUploaderInline.d.ts","sourceRoot":"","sources":["FileUploaderInline.js"],"names":[],"mappings":"AAIA;IAMI;;;;;;;;;;;;;;;;MAUC;IAGH,gCAGC;IAED,6BAEC;CA0BF;;;;8BAtD6B,oCAAoC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export class FileUploaderMinimal extends SolutionBlock {
|
|
2
|
+
init$: {
|
|
3
|
+
singleUpload: boolean;
|
|
4
|
+
isHiddenStartFrom: boolean;
|
|
5
|
+
classUploadList: string;
|
|
6
|
+
classStartFrom: string;
|
|
7
|
+
'*commonProgress': number;
|
|
8
|
+
'*uploadList': never[];
|
|
9
|
+
'*uploadQueue': import("@uploadcare/upload-client").Queue;
|
|
10
|
+
'*collectionErrors': ReturnType<import("./index.js").OutputErrorCollection>[];
|
|
11
|
+
'*collectionState': import("./index.js").OutputCollectionState | null;
|
|
12
|
+
'*groupInfo': import("@uploadcare/upload-client").UploadcareGroup | null;
|
|
13
|
+
'*uploadTrigger': Set<string>;
|
|
14
|
+
'*secureUploadsManager': import("../../../abstract/SecureUploadsManager.js").SecureUploadsManager | null;
|
|
15
|
+
'*currentActivity': null;
|
|
16
|
+
'*currentActivityParams': {};
|
|
17
|
+
'*history': never[];
|
|
18
|
+
'*historyBack': null;
|
|
19
|
+
'*closeModal': () => void;
|
|
20
|
+
};
|
|
21
|
+
_handleModalOpen(data: {
|
|
22
|
+
id: import("../../../abstract/ModalManager.js").ModalId;
|
|
23
|
+
modal: import("../../../abstract/ModalManager.js").ModalNode;
|
|
24
|
+
}): void;
|
|
25
|
+
_handleModalClose(data: {
|
|
26
|
+
id: import("../../../abstract/ModalManager.js").ModalId;
|
|
27
|
+
modal: import("../../../abstract/ModalManager.js").ModalNode;
|
|
28
|
+
}): void;
|
|
29
|
+
handleModalOpen: ((data: {
|
|
30
|
+
id: import("../../../abstract/ModalManager.js").ModalId;
|
|
31
|
+
modal: import("../../../abstract/ModalManager.js").ModalNode;
|
|
32
|
+
}) => void) | undefined;
|
|
33
|
+
handleModalClose: ((data: {
|
|
34
|
+
id: import("../../../abstract/ModalManager.js").ModalId;
|
|
35
|
+
modal: import("../../../abstract/ModalManager.js").ModalNode;
|
|
36
|
+
}) => void) | undefined;
|
|
37
|
+
}
|
|
38
|
+
export namespace FileUploaderMinimal {
|
|
39
|
+
let template: string;
|
|
40
|
+
}
|
|
41
|
+
import { SolutionBlock } from '../../../abstract/SolutionBlock.js';
|
|
42
|
+
//# sourceMappingURL=FileUploaderMinimal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileUploaderMinimal.d.ts","sourceRoot":"","sources":["FileUploaderMinimal.js"],"names":[],"mappings":"AAQA;IAMI;;;;;;;;;;;;;;;;;;MAMC;;;;;;;;;IA8FD;;;4BAAuD;IACvD;;;4BAAyD;CAW5D;;;;8BA5H6B,oCAAoC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export class FileUploaderRegular extends SolutionBlock {
|
|
2
|
+
init$: {
|
|
3
|
+
isHidden: boolean;
|
|
4
|
+
'*commonProgress': number;
|
|
5
|
+
'*uploadList': never[];
|
|
6
|
+
'*uploadQueue': import("@uploadcare/upload-client").Queue;
|
|
7
|
+
'*collectionErrors': ReturnType<import("./index.js").OutputErrorCollection>[];
|
|
8
|
+
'*collectionState': import("./index.js").OutputCollectionState | null;
|
|
9
|
+
'*groupInfo': import("@uploadcare/upload-client").UploadcareGroup | null;
|
|
10
|
+
'*uploadTrigger': Set<string>;
|
|
11
|
+
'*secureUploadsManager': import("../../../abstract/SecureUploadsManager.js").SecureUploadsManager | null;
|
|
12
|
+
'*currentActivity': null;
|
|
13
|
+
'*currentActivityParams': {};
|
|
14
|
+
'*history': never[];
|
|
15
|
+
'*historyBack': null;
|
|
16
|
+
'*closeModal': () => void;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export namespace FileUploaderRegular {
|
|
20
|
+
let template: string;
|
|
21
|
+
}
|
|
22
|
+
import { SolutionBlock } from '../../../abstract/SolutionBlock.js';
|
|
23
|
+
//# sourceMappingURL=FileUploaderRegular.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileUploaderRegular.d.ts","sourceRoot":"","sources":["FileUploaderRegular.js"],"names":[],"mappings":"AAIA;IAMI;;;;;;;;;;;;;;;MAGC;CAaJ;;;;8BAzB6B,oCAAoC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export class WindowHeightTracker {
|
|
2
|
+
/**
|
|
3
|
+
* @private
|
|
4
|
+
* @type {Set<unknown>}
|
|
5
|
+
*/
|
|
6
|
+
private static clientsRegistry;
|
|
7
|
+
/** @private */
|
|
8
|
+
private static flush;
|
|
9
|
+
/**
|
|
10
|
+
* @param {unknown} client
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
public static registerClient(client: unknown): void;
|
|
14
|
+
/**
|
|
15
|
+
* @param {unknown} client
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
public static unregisterClient(client: unknown): void;
|
|
19
|
+
/** @private */
|
|
20
|
+
private static attachTracker;
|
|
21
|
+
/** @private */
|
|
22
|
+
private static detachTracker;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=WindowHeightTracker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WindowHeightTracker.d.ts","sourceRoot":"","sources":["WindowHeightTracker.js"],"names":[],"mappings":"AAKA;IACE;;;OAGG;IACH,+BAAmC;IAEnC,eAAe;IACf,qBAEQ;IAER;;;OAGG;IACH,qCAHW,OAAO,QAQjB;IAED;;;OAGG;IACH,uCAHW,OAAO,QAQjB;IAED,eAAe;IACf,6BAGC;IAED,eAAe;IACf,6BAGC;CACF"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export function calcBrowserInfo(): {
|
|
2
|
+
safariDesktop: boolean;
|
|
3
|
+
};
|
|
4
|
+
export function calcBrowserFeatures(): {
|
|
5
|
+
htmlMediaCapture: boolean;
|
|
6
|
+
};
|
|
7
|
+
export namespace browserInfo {
|
|
8
|
+
let safariDesktop: boolean;
|
|
9
|
+
}
|
|
10
|
+
export namespace browserFeatures {
|
|
11
|
+
let htmlMediaCapture: boolean;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=browser-info.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-info.d.ts","sourceRoot":"","sources":["browser-info.js"],"names":[],"mappings":"AAWO;;EAEL;AAEK;;EAEL"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-info.test.d.ts","sourceRoot":"","sources":["browser-info.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Extract filename or file URL
|
|
3
|
+
*
|
|
4
|
+
* @param {String} cdnUrl
|
|
5
|
+
* @returns {String}
|
|
6
|
+
*/
|
|
7
|
+
export function extractFilename(cdnUrl: string): string;
|
|
8
|
+
/**
|
|
9
|
+
* Extract UUID from CDN URL
|
|
10
|
+
*
|
|
11
|
+
* @param {string} cdnUrl
|
|
12
|
+
* @returns {string}
|
|
13
|
+
*/
|
|
14
|
+
export function extractUuid(cdnUrl: string): string;
|
|
15
|
+
/**
|
|
16
|
+
* Extract operations string from CDN URL
|
|
17
|
+
*
|
|
18
|
+
* @param {string} cdnUrl
|
|
19
|
+
* @returns {string}
|
|
20
|
+
*/
|
|
21
|
+
export function extractCdnUrlModifiers(cdnUrl: string): string;
|
|
22
|
+
/**
|
|
23
|
+
* Extract UUID from CDN URL
|
|
24
|
+
*
|
|
25
|
+
* @param {string} cdnUrl
|
|
26
|
+
* @returns {string[]}
|
|
27
|
+
*/
|
|
28
|
+
export function extractOperations(cdnUrl: string): string[];
|
|
29
|
+
/**
|
|
30
|
+
* Trim filename or file URL
|
|
31
|
+
*
|
|
32
|
+
* @param {String} cdnUrl
|
|
33
|
+
* @returns {String}
|
|
34
|
+
*/
|
|
35
|
+
export function trimFilename(cdnUrl: string): string;
|
|
36
|
+
/**
|
|
37
|
+
* Detect if filename is actually file URL
|
|
38
|
+
*
|
|
39
|
+
* @param {String} filename
|
|
40
|
+
* @returns {Boolean}
|
|
41
|
+
*/
|
|
42
|
+
export function isFileUrl(filename: string): boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Split file URL into the path and search parts
|
|
45
|
+
*
|
|
46
|
+
* @param {String} fileUrl
|
|
47
|
+
* @returns {{ pathname: String; search: String; hash: String }}
|
|
48
|
+
*/
|
|
49
|
+
export function splitFileUrl(fileUrl: string): {
|
|
50
|
+
pathname: string;
|
|
51
|
+
search: string;
|
|
52
|
+
hash: string;
|
|
53
|
+
};
|
|
54
|
+
export function normalizeCdnOperation(operation?: string | unknown): string;
|
|
55
|
+
export function joinCdnOperations(...operations?: (string | unknown)[]): string;
|
|
56
|
+
export function createCdnUrlModifiers(...cdnOperations?: (string | unknown)[]): string;
|
|
57
|
+
export function createCdnUrl(baseCdnUrl: string, cdnModifiers?: string, filename?: string): string;
|
|
58
|
+
export function createOriginalUrl(cdnUrl: string, uuid: string): string;
|
|
59
|
+
//# sourceMappingURL=cdn-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cdn-utils.d.ts","sourceRoot":"","sources":["cdn-utils.js"],"names":[],"mappings":"AAgDA;;;;;GAKG;AACH,wDAcC;AAED;;;;;GAKG;AACH,oCAHW,MAAM,GACJ,MAAM,CAQlB;AAED;;;;;GAKG;AACH,+CAHW,MAAM,GACJ,MAAM,CAYlB;AAED;;;;;GAKG;AACH,0CAHW,MAAM,GACJ,MAAM,EAAE,CASpB;AAED;;;;;GAKG;AACH,qDASC;AAED;;;;;GAKG;AACH,qDAEC;AAED;;;;;GAKG;AACH,+CAFa;IAAE,QAAQ,SAAS;IAAC,MAAM,SAAS;IAAC,IAAI,SAAQ;CAAE,CAS9D;AAvJM,kDAHI,SAAS,OAAO,UAkB1B;AAQM,kDAHO,CAAC,SAAS,OAAO,CAAC,EAAA,UAQ/B;AASM,yDAHO,CAAC,SAAS,OAAO,CAAC,EAAA,UAM/B;AA2HM,mGAgBN;AASM,wEAIN"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cdn-utils.test.d.ts","sourceRoot":"","sources":["cdn-utils.test.js"],"names":[],"mappings":""}
|
package/utils/delay.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delay.d.ts","sourceRoot":"","sources":["delay.js"],"names":[],"mappings":"AAGO,0BADK,MAAM,gBAC4D"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const BASIC_IMAGE_WILDCARD: "image/*";
|
|
2
|
+
export const BASIC_VIDEO_WILDCARD: "video/*";
|
|
3
|
+
export const HEIC_IMAGE_MIME_LIST: string[];
|
|
4
|
+
export function calcImageAcceptList(): string[];
|
|
5
|
+
export const IMAGE_ACCEPT_LIST: string[];
|
|
6
|
+
export function mergeFileTypes(fileTypes?: string[]): string[];
|
|
7
|
+
export function matchMimeType(mimeType: string, allowedFileTypes: string[]): boolean;
|
|
8
|
+
export function matchExtension(fileName: string, allowedFileTypes: string[]): boolean;
|
|
9
|
+
export function fileIsImage(file: File | Blob): boolean;
|
|
10
|
+
export function isBlob(data: unknown): boolean;
|
|
11
|
+
export function isFile(data: unknown): boolean;
|
|
12
|
+
//# sourceMappingURL=fileTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fileTypes.d.ts","sourceRoot":"","sources":["fileTypes.js"],"names":[],"mappings":"AAIA,mCAAoC,SAAS,CAAC;AAC9C,mCAAoC,SAAS,CAAC;AAC9C,4CAaE;AAEK,gDAUN;AAED,yCAAuD;AAMhD,2CAHI,MAAM,EAAE,GACN,MAAM,EAAE,CAUpB;AAOM,kEAHI,QAAQ,WAYlB;AAOM,mEAHI,QAAQ,WAWlB;AAMM,kCAHI,IAAI,GAAG,IAAI,WASrB;AAQM,6BAHI,OAAO,GACL,OAAO,CAInB;AAQM,6BAHI,OAAO,GACL,OAAO,CAInB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fileTypes.test.d.ts","sourceRoot":"","sources":["fileTypes.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-top-level-origin.d.ts","sourceRoot":"","sources":["get-top-level-origin.js"],"names":[],"mappings":"AAEO,4CAQN"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLocaleDirection.d.ts","sourceRoot":"","sources":["getLocaleDirection.js"],"names":[],"mappings":"AAEO,6CADK,MAAM,UAgBjB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPluralForm.d.ts","sourceRoot":"","sources":["getPluralForm.js"],"names":[],"mappings":"AASO,sCAJI,MAAM,SACN,MAAM,GACJ,UAAU,CAKtB;yBAVa,IAAI,CAAC,cAAc"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPluralForm.test.d.ts","sourceRoot":"","sources":["getPluralForm.test.js"],"names":[],"mappings":""}
|
package/utils/ifRef.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ifRef.d.ts","sourceRoot":"","sources":["ifRef.js"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,0CAGC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isSecureTokenExpired.d.ts","sourceRoot":"","sources":["isSecureTokenExpired.js"],"names":[],"mappings":"AAUO,kDAHI,OAAO,UAAU,EAAE,+BAA+B,iBAClD;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,WAQhC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isSecureTokenExpired.test.d.ts","sourceRoot":"","sources":["isSecureTokenExpired.test.js"],"names":[],"mappings":""}
|