@uploadcare/file-uploader 1.27.1 → 1.28.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ActivityHeader-R6Mlx-dA.js +9 -0
- package/dist/ActivityHeader.css +23 -0
- package/dist/ActivityHeader.layered.css +24 -0
- package/dist/CameraSource-DDwj1jCV.js +511 -0
- package/dist/CameraSource-n1tun2Df.js +10 -0
- package/dist/CameraSource.css +180 -0
- package/dist/CameraSource.layered.css +209 -0
- package/dist/CloudImageEditor-DcVoIRb3.js +2163 -0
- package/dist/CloudImageEditorActivity-Csij4nlC.js +87 -0
- package/dist/CloudImageEditorActivity-DD4NdU0P.js +9 -0
- package/dist/CloudImageEditorActivity.css +14 -0
- package/dist/CloudImageEditorActivity.layered.css +15 -0
- package/dist/Config-DKOromHY.js +433 -0
- package/dist/Config.css +4 -0
- package/dist/Config.layered.css +5 -0
- package/dist/ExternalSource-6MSUgxqy.js +10 -0
- package/dist/ExternalSource-DVEjSkPB.js +253 -0
- package/dist/ExternalSource.css +98 -0
- package/dist/ExternalSource.layered.css +116 -0
- package/dist/Icon-tXRTvEF2.js +1810 -0
- package/dist/Icon.css +14 -0
- package/dist/Icon.layered.css +15 -0
- package/dist/LitUploaderBlock-LxeOZ0ya.js +998 -0
- package/dist/UrlSource-BkyX00I2.js +73 -0
- package/dist/UrlSource-RI8TSD48.js +10 -0
- package/dist/UrlSource.css +17 -0
- package/dist/UrlSource.layered.css +18 -0
- package/dist/abstract/CTX.d.ts +40 -0
- package/dist/abstract/TypedCollection.d.ts +47 -0
- package/dist/abstract/TypedCollection.test.d.ts +1 -0
- package/dist/abstract/TypedData.d.ts +12 -0
- package/dist/abstract/TypedData.test.d.ts +1 -0
- package/dist/abstract/UploaderPublicApi.d.ts +41 -0
- package/dist/abstract/buildOutputCollectionState.d.ts +3 -0
- package/dist/abstract/customConfigOptions.d.ts +65 -0
- package/dist/abstract/defineComponents.d.ts +1 -0
- package/dist/abstract/features/ClipboardLayer.d.ts +12 -0
- package/dist/abstract/loadFileUploaderFrom.d.ts +3 -4
- package/dist/abstract/loadFileUploaderFrom.js +7 -6
- package/dist/abstract/localeRegistry.d.ts +5 -0
- package/dist/abstract/managers/LocaleManager.d.ts +10 -0
- package/dist/abstract/managers/ModalManager.d.ts +53 -0
- package/dist/abstract/managers/SecureUploadsManager.d.ts +7 -0
- package/dist/abstract/managers/TelemetryManager.d.ts +41 -0
- package/dist/abstract/managers/ValidationManager.d.ts +34 -0
- package/dist/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
- package/dist/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
- package/dist/abstract/managers/a11y.d.ts +9 -0
- package/dist/abstract/managers/plugin/PluginManager.d.ts +25 -0
- package/dist/abstract/managers/plugin/PluginTypes.d.ts +146 -0
- package/dist/abstract/managers/plugin/index.d.ts +2 -0
- package/dist/abstract/sharedConfigKey.d.ts +2 -0
- package/dist/abstract/uploadEntrySchema.d.ts +34 -0
- package/dist/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
- package/dist/blocks/CameraSource/CameraSource.d.ts +121 -0
- package/dist/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
- package/dist/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/dist/blocks/CameraSource/constants.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/index.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
- package/dist/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
- package/dist/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
- package/dist/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
- package/dist/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
- package/dist/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
- package/dist/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
- package/dist/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
- package/dist/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
- package/dist/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
- package/dist/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
- package/dist/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
- package/dist/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
- package/dist/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/state.d.ts +20 -0
- package/dist/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
- package/dist/blocks/CloudImageEditor/src/types.d.ts +60 -0
- package/dist/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
- package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
- package/dist/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
- package/dist/blocks/Config/Config.d.ts +60 -0
- package/dist/blocks/Config/assertions.d.ts +5 -0
- package/dist/blocks/Config/computed-properties.d.ts +24 -0
- package/dist/blocks/Config/computed-properties.test.d.ts +1 -0
- package/dist/blocks/Config/initialConfig.d.ts +6 -0
- package/dist/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/dist/blocks/Config/validatorsType.d.ts +18 -0
- package/dist/blocks/Copyright/Copyright.d.ts +10 -0
- package/dist/blocks/DropArea/DropArea.d.ts +47 -0
- package/dist/blocks/DropArea/addDropzone.d.ts +17 -0
- package/dist/blocks/DropArea/getDropItems.d.ts +12 -0
- package/dist/blocks/ExternalSource/ExternalSource.d.ts +45 -0
- package/dist/blocks/ExternalSource/MessageBridge.d.ts +11 -0
- package/dist/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
- package/dist/blocks/ExternalSource/query-string.d.ts +1 -0
- package/dist/blocks/ExternalSource/types.d.ts +105 -0
- package/dist/blocks/FileItem/FileItem.d.ts +50 -0
- package/dist/blocks/FileItem/FileItemConfig.d.ts +10 -0
- package/dist/blocks/FormInput/FormInput.d.ts +18 -0
- package/dist/blocks/Icon/Icon.d.ts +19 -0
- package/dist/blocks/Img/Img.d.ts +14 -0
- package/dist/blocks/Img/ImgBase.d.ts +29 -0
- package/dist/blocks/Img/ImgConfig.d.ts +28 -0
- package/dist/blocks/Img/configurations.d.ts +11 -0
- package/dist/blocks/Img/props-map.d.ts +28 -0
- package/dist/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/dist/blocks/Modal/Modal.d.ts +34 -0
- package/dist/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
- package/dist/blocks/PluginActivityRenderer/index.d.ts +1 -0
- package/dist/blocks/ProgressBar/ProgressBar.d.ts +21 -0
- package/dist/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
- package/dist/blocks/Select/Select.d.ts +18 -0
- package/dist/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
- package/dist/blocks/SourceBtn/SourceBtn.d.ts +23 -0
- package/dist/blocks/SourceList/SourceList.d.ts +24 -0
- package/dist/blocks/Spinner/Spinner.d.ts +9 -0
- package/dist/blocks/StartFrom/StartFrom.d.ts +12 -0
- package/dist/blocks/Thumb/Thumb.d.ts +35 -0
- package/dist/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
- package/dist/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
- package/dist/blocks/UploadList/UploadList.d.ts +39 -0
- package/dist/blocks/UrlSource/UrlSource.d.ts +14 -0
- package/dist/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
- package/dist/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
- package/dist/cameraPlugin-weRKO7eG.js +8 -0
- package/dist/cloud-image-editor-hhbyNWLG.js +11 -0
- package/dist/cloud-image-editor.css +1380 -0
- package/dist/cloud-image-editor.layered.css +1549 -0
- package/dist/cloudImageEditorPlugin-FjUgbMK3.js +8 -0
- package/dist/core.d.ts +42 -0
- package/dist/en-8OWEmZim.js +135 -0
- package/dist/env-mM-ksNPq.js +8 -0
- package/dist/env.d.ts +2 -4
- package/dist/env.js +7 -6
- package/dist/externalSourcesPlugin-CMBmLT8S.js +8 -0
- package/dist/imageShrinkPlugin-BN6loiP2.js +8 -0
- package/dist/index-base.css +2497 -0
- package/dist/index-base.layered.css +2837 -0
- package/dist/index.css +9 -6
- package/dist/index.d.ts +42 -2715
- package/dist/index.js +1796 -8
- package/dist/index.layered.css +9 -7
- package/dist/instagramPlugin-CXRm8MGL.js +8 -0
- package/dist/lit/BaseComponent.d.ts +12 -0
- package/dist/lit/Constructor.d.ts +1 -0
- package/dist/lit/CssDataMixin.d.ts +7 -0
- package/dist/lit/LightDomMixin.d.ts +8 -0
- package/dist/lit/LitActivityBlock.d.ts +53 -0
- package/dist/lit/LitBlock.d.ts +83 -0
- package/dist/lit/LitSolutionBlock.d.ts +21 -0
- package/dist/lit/LitUploaderBlock.d.ts +53 -0
- package/dist/lit/PubSubCompat.d.ts +18 -0
- package/dist/lit/RegisterableElementMixin.d.ts +7 -0
- package/dist/lit/SharedState.d.ts +119 -0
- package/dist/lit/SymbioteCompatMixin.d.ts +40 -0
- package/dist/lit/TestModeController.d.ts +16 -0
- package/dist/lit/Uid.d.ts +3 -0
- package/dist/lit/activity-constants.d.ts +11 -0
- package/dist/lit/createDebugPrinter.d.ts +3 -0
- package/dist/lit/findBlockInCtx.d.ts +3 -0
- package/dist/lit/getOutputData.d.ts +2 -0
- package/dist/lit/hasBlockInCtx.d.ts +3 -0
- package/dist/lit/l10n.d.ts +5 -0
- package/dist/lit/parseCssPropertyValue.d.ts +1 -0
- package/dist/lit/shared-instances.d.ts +65 -0
- package/dist/loadFileUploaderFrom-Bfz8L3VB.js +28 -0
- package/dist/locales/file-uploader/ar.d.ts +1 -4
- package/dist/locales/file-uploader/ar.js +142 -6
- package/dist/locales/file-uploader/az.d.ts +1 -4
- package/dist/locales/file-uploader/az.js +134 -6
- package/dist/locales/file-uploader/ca.d.ts +1 -4
- package/dist/locales/file-uploader/ca.js +136 -6
- package/dist/locales/file-uploader/cs.d.ts +1 -4
- package/dist/locales/file-uploader/cs.js +138 -6
- package/dist/locales/file-uploader/da.d.ts +1 -4
- package/dist/locales/file-uploader/da.js +134 -6
- package/dist/locales/file-uploader/de.d.ts +1 -4
- package/dist/locales/file-uploader/de.js +134 -6
- package/dist/locales/file-uploader/el.d.ts +1 -4
- package/dist/locales/file-uploader/el.js +134 -6
- package/dist/locales/file-uploader/en.d.ts +1 -4
- package/dist/locales/file-uploader/en.js +7 -6
- package/dist/locales/file-uploader/es.d.ts +1 -4
- package/dist/locales/file-uploader/es.js +136 -6
- package/dist/locales/file-uploader/et.d.ts +1 -4
- package/dist/locales/file-uploader/et.js +134 -6
- package/dist/locales/file-uploader/fi.d.ts +1 -4
- package/dist/locales/file-uploader/fi.js +134 -6
- package/dist/locales/file-uploader/fr.d.ts +1 -4
- package/dist/locales/file-uploader/fr.js +136 -6
- package/dist/locales/file-uploader/he.d.ts +1 -4
- package/dist/locales/file-uploader/he.js +136 -6
- package/dist/locales/file-uploader/hy.d.ts +1 -4
- package/dist/locales/file-uploader/hy.js +134 -6
- package/dist/locales/file-uploader/is.d.ts +1 -4
- package/dist/locales/file-uploader/is.js +134 -6
- package/dist/locales/file-uploader/it.d.ts +1 -4
- package/dist/locales/file-uploader/it.js +136 -6
- package/dist/locales/file-uploader/ja.d.ts +1 -4
- package/dist/locales/file-uploader/ja.js +134 -6
- package/dist/locales/file-uploader/ka.d.ts +1 -4
- package/dist/locales/file-uploader/ka.js +134 -6
- package/dist/locales/file-uploader/kk.d.ts +1 -4
- package/dist/locales/file-uploader/kk.js +134 -6
- package/dist/locales/file-uploader/ko.d.ts +1 -4
- package/dist/locales/file-uploader/ko.js +134 -6
- package/dist/locales/file-uploader/lv.d.ts +1 -4
- package/dist/locales/file-uploader/lv.js +136 -6
- package/dist/locales/file-uploader/nb.d.ts +1 -4
- package/dist/locales/file-uploader/nb.js +134 -6
- package/dist/locales/file-uploader/nl.d.ts +1 -4
- package/dist/locales/file-uploader/nl.js +134 -6
- package/dist/locales/file-uploader/pl.d.ts +1 -4
- package/dist/locales/file-uploader/pl.js +138 -6
- package/dist/locales/file-uploader/pt.d.ts +1 -4
- package/dist/locales/file-uploader/pt.js +136 -6
- package/dist/locales/file-uploader/ro.d.ts +1 -4
- package/dist/locales/file-uploader/ro.js +136 -6
- package/dist/locales/file-uploader/ru.d.ts +1 -4
- package/dist/locales/file-uploader/ru.js +138 -6
- package/dist/locales/file-uploader/sk.d.ts +1 -4
- package/dist/locales/file-uploader/sk.js +138 -6
- package/dist/locales/file-uploader/sr.d.ts +1 -4
- package/dist/locales/file-uploader/sr.js +136 -6
- package/dist/locales/file-uploader/sv.d.ts +1 -4
- package/dist/locales/file-uploader/sv.js +134 -6
- package/dist/locales/file-uploader/tr.d.ts +1 -4
- package/dist/locales/file-uploader/tr.js +134 -6
- package/dist/locales/file-uploader/uk.d.ts +1 -4
- package/dist/locales/file-uploader/uk.js +138 -6
- package/dist/locales/file-uploader/vi.d.ts +1 -4
- package/dist/locales/file-uploader/vi.js +134 -6
- package/dist/locales/file-uploader/zh-TW.d.ts +1 -4
- package/dist/locales/file-uploader/zh-TW.js +134 -6
- package/dist/locales/file-uploader/zh.d.ts +1 -4
- package/dist/locales/file-uploader/zh.js +134 -6
- package/dist/plugins/cameraPlugin.d.ts +2 -0
- package/dist/plugins/cloudImageEditorPlugin.d.ts +2 -0
- package/dist/plugins/externalSourcesPlugin.d.ts +2 -0
- package/dist/plugins/imageShrinkPlugin.d.ts +2 -0
- package/dist/plugins/instagramPlugin.d.ts +2 -0
- package/dist/plugins/unsplashPlugin.d.ts +16 -0
- package/dist/plugins/urlSourcePlugin.d.ts +2 -0
- package/dist/plugins-CGUls7EV.js +278 -0
- package/dist/solutions/adaptive-image/index.d.ts +2 -0
- package/dist/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
- package/dist/solutions/cloud-image-editor/index.d.ts +5 -0
- package/dist/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
- package/dist/solutions/file-uploader/inline/index.d.ts +1 -0
- package/dist/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
- package/dist/solutions/file-uploader/minimal/index.d.ts +1 -0
- package/dist/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
- package/dist/solutions/file-uploader/regular/index.d.ts +1 -0
- package/dist/types/dom.d.ts +1 -0
- package/dist/types/events.d.ts +4 -0
- package/dist/types/exported.d.ts +492 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/urlSourcePlugin-_WdbEhq2.js +8 -0
- package/dist/utils/UID.d.ts +5 -0
- package/dist/utils/UID.test.d.ts +1 -0
- package/dist/utils/UploadSource.d.ts +37 -0
- package/dist/utils/WindowHeightTracker.d.ts +9 -0
- package/dist/utils/abilities.d.ts +1 -0
- package/dist/utils/applyStyles.d.ts +1 -0
- package/dist/utils/browser-info.d.ts +12 -0
- package/dist/utils/browser-info.test.d.ts +1 -0
- package/dist/utils/cdn-utils.d.ts +53 -0
- package/dist/utils/cdn-utils.test.d.ts +1 -0
- package/dist/utils/comma-separated.d.ts +2 -0
- package/dist/utils/debounce.d.ts +3 -0
- package/dist/utils/delay.d.ts +1 -0
- package/dist/utils/fileTypes.d.ts +11 -0
- package/dist/utils/fileTypes.test.d.ts +1 -0
- package/dist/utils/get-top-level-origin.d.ts +1 -0
- package/dist/utils/get-top-level-origin.test.d.ts +1 -0
- package/dist/utils/getLocaleDirection.d.ts +1 -0
- package/dist/utils/getPluralForm.d.ts +1 -0
- package/dist/utils/getPluralForm.test.d.ts +1 -0
- package/dist/utils/isPromiseLike.d.ts +1 -0
- package/dist/utils/isPromiseLike.test.d.ts +1 -0
- package/dist/utils/isSecureTokenExpired.d.ts +8 -0
- package/dist/utils/isSecureTokenExpired.test.d.ts +1 -0
- package/dist/utils/memoize.d.ts +1 -0
- package/dist/utils/memoize.test.d.ts +1 -0
- package/dist/utils/mixinClass.d.ts +8 -0
- package/dist/utils/parseCdnUrl.d.ts +11 -0
- package/dist/utils/parseCdnUrl.test.d.ts +1 -0
- package/dist/utils/parseShrink.d.ts +7 -0
- package/dist/utils/parseShrink.test.d.ts +1 -0
- package/dist/utils/preloadImage.d.ts +10 -0
- package/dist/utils/prettyBytes.d.ts +11 -0
- package/dist/utils/prettyBytes.test.d.ts +1 -0
- package/dist/utils/resizeImage.d.ts +1 -0
- package/dist/utils/stringToArray.d.ts +1 -0
- package/dist/utils/stringToArray.test.d.ts +1 -0
- package/dist/utils/template-utils.d.ts +16 -0
- package/dist/utils/template-utils.test.d.ts +1 -0
- package/dist/utils/throttle.d.ts +3 -0
- package/dist/utils/toKebabCase.d.ts +2 -0
- package/dist/utils/toKebabCase.test.d.ts +1 -0
- package/dist/utils/transparentPixelSrc.d.ts +1 -0
- package/dist/utils/uniqueArray.d.ts +1 -0
- package/dist/utils/uniqueArray.test.d.ts +1 -0
- package/dist/utils/userAgent.d.ts +2 -0
- package/dist/utils/validators/collection/index.d.ts +2 -0
- package/dist/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
- package/dist/utils/validators/collection/validateMultiple.d.ts +2 -0
- package/dist/utils/validators/file/index.d.ts +4 -0
- package/dist/utils/validators/file/validateFileType.d.ts +2 -0
- package/dist/utils/validators/file/validateIsImage.d.ts +2 -0
- package/dist/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
- package/dist/utils/validators/file/validateUploadError.d.ts +2 -0
- package/dist/utils/warnOnce.d.ts +1 -0
- package/dist/utils/wildcardRegexp.d.ts +1 -0
- package/dist/utils/wildcardRegexp.test.d.ts +1 -0
- package/dist/utils/withResolvers.d.ts +5 -0
- package/dist/utils/withResolvers.test.d.ts +1 -0
- package/package.json +8 -2
- package/web/ActivityHeader-BFdTdVfD.js +9 -0
- package/web/ActivityHeader-DQy6rII1.js +9 -0
- package/web/ActivityHeader-DvzMl0uj.js +9 -0
- package/web/ActivityHeader-i4x6_Fne.js +9 -0
- package/web/CameraSource-BAWIA4Wm.js +508 -0
- package/web/CameraSource-BqZCQcij.js +11 -0
- package/web/CameraSource-Brxr4tz4.js +508 -0
- package/web/CameraSource-BvBJ5Uzy.js +508 -0
- package/web/CameraSource-CkHzIE-h.js +11 -0
- package/web/CameraSource-D964yPLu.js +508 -0
- package/web/CameraSource-DE48Az-f.js +11 -0
- package/web/CameraSource-DyPebtRF.js +478 -0
- package/web/CameraSource-pj7Xo81m.js +11 -0
- package/web/CloudImageEditor-CTgUWB07.js +2192 -0
- package/web/CloudImageEditor-CxqV9Lwm.js +2192 -0
- package/web/CloudImageEditor-DoLWHpqV.js +2192 -0
- package/web/CloudImageEditor-Drywn265.js +2192 -0
- package/web/CloudImageEditor-MXcaDtMx.js +2187 -0
- package/web/CloudImageEditorActivity-BPzmfaJV.js +85 -0
- package/web/CloudImageEditorActivity-Br8pU5gd.js +11 -0
- package/web/CloudImageEditorActivity-Cw8b2CEz.js +11 -0
- package/web/CloudImageEditorActivity-Df1ySGq0.js +86 -0
- package/web/CloudImageEditorActivity-DinG5r0y.js +11 -0
- package/web/CloudImageEditorActivity-DmnLLINR.js +85 -0
- package/web/CloudImageEditorActivity-U90BGCek.js +85 -0
- package/web/CloudImageEditorActivity-dNLQZRZI.js +11 -0
- package/web/CloudImageEditorActivity-ur-hQ-6p.js +85 -0
- package/web/Config-8hlBNhvs.js +455 -0
- package/web/Config-BDZhPIyz.js +455 -0
- package/web/Config-CJVNrrjj.js +455 -0
- package/web/Config-DvkVtlQ7.js +455 -0
- package/web/ExternalSource-B9ycBFiD.js +10 -0
- package/web/ExternalSource-BE7HX47E.js +250 -0
- package/web/ExternalSource-BL5GSlol.js +250 -0
- package/web/ExternalSource-BXQY6Dlc.js +10 -0
- package/web/ExternalSource-BXxH3JCD.js +250 -0
- package/web/ExternalSource-BYSS-PPV.js +245 -0
- package/web/ExternalSource-C57a61QN.js +10 -0
- package/web/ExternalSource-CKfMtOgU.js +250 -0
- package/web/ExternalSource-DP6q8ylB.js +10 -0
- package/web/LitUploaderBlock-AX6jOdAS.js +996 -0
- package/web/LitUploaderBlock-BjAaoLl2.js +996 -0
- package/web/LitUploaderBlock-D8E5HuwH.js +996 -0
- package/web/LitUploaderBlock-Dl3ce0Tc.js +996 -0
- package/web/LitUploaderBlock-Oi33U0uf.js +996 -0
- package/web/UrlSource-B9SX3K0L.js +10 -0
- package/web/UrlSource-C3zB1rCb.js +70 -0
- package/web/UrlSource-C7bEU6Xv.js +10 -0
- package/web/UrlSource-CE389CBz.js +70 -0
- package/web/UrlSource-CnvAJ58Y.js +10 -0
- package/web/UrlSource-CqF0h6B-.js +10 -0
- package/web/UrlSource-D-971Nut.js +70 -0
- package/web/UrlSource-DhI3YCt5.js +70 -0
- package/web/UrlSource-hWV7jtB2.js +70 -0
- package/web/abstract/CTX.d.ts +40 -0
- package/web/abstract/TypedCollection.d.ts +47 -0
- package/web/abstract/TypedCollection.test.d.ts +1 -0
- package/web/abstract/TypedData.d.ts +12 -0
- package/web/abstract/TypedData.test.d.ts +1 -0
- package/web/abstract/UploaderPublicApi.d.ts +41 -0
- package/web/abstract/buildOutputCollectionState.d.ts +3 -0
- package/web/abstract/customConfigOptions.d.ts +65 -0
- package/web/abstract/defineComponents.d.ts +1 -0
- package/web/abstract/features/ClipboardLayer.d.ts +12 -0
- package/web/abstract/loadFileUploaderFrom.d.ts +13 -0
- package/web/abstract/localeRegistry.d.ts +5 -0
- package/web/abstract/managers/LocaleManager.d.ts +10 -0
- package/web/abstract/managers/ModalManager.d.ts +53 -0
- package/web/abstract/managers/SecureUploadsManager.d.ts +7 -0
- package/web/abstract/managers/TelemetryManager.d.ts +41 -0
- package/web/abstract/managers/ValidationManager.d.ts +34 -0
- package/web/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
- package/web/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
- package/web/abstract/managers/a11y.d.ts +9 -0
- package/web/abstract/managers/plugin/PluginManager.d.ts +25 -0
- package/web/abstract/managers/plugin/PluginTypes.d.ts +146 -0
- package/web/abstract/managers/plugin/index.d.ts +2 -0
- package/web/abstract/sharedConfigKey.d.ts +2 -0
- package/web/abstract/uploadEntrySchema.d.ts +34 -0
- package/web/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
- package/web/blocks/CameraSource/CameraSource.d.ts +121 -0
- package/web/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
- package/web/blocks/CameraSource/calcCameraModes.d.ts +5 -0
- package/web/blocks/CameraSource/constants.d.ts +15 -0
- package/web/blocks/CloudImageEditor/index.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
- package/web/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
- package/web/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
- package/web/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
- package/web/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
- package/web/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
- package/web/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
- package/web/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
- package/web/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
- package/web/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
- package/web/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
- package/web/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
- package/web/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
- package/web/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
- package/web/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
- package/web/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
- package/web/blocks/CloudImageEditor/src/index.d.ts +15 -0
- package/web/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
- package/web/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
- package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
- package/web/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
- package/web/blocks/CloudImageEditor/src/state.d.ts +20 -0
- package/web/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
- package/web/blocks/CloudImageEditor/src/types.d.ts +60 -0
- package/web/blocks/CloudImageEditor/src/util.d.ts +2 -0
- package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
- package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
- package/web/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
- package/web/blocks/Config/Config.d.ts +60 -0
- package/web/blocks/Config/assertions.d.ts +5 -0
- package/web/blocks/Config/computed-properties.d.ts +24 -0
- package/web/blocks/Config/computed-properties.test.d.ts +1 -0
- package/web/blocks/Config/initialConfig.d.ts +6 -0
- package/web/blocks/Config/normalizeConfigValue.d.ts +2 -0
- package/web/blocks/Config/validatorsType.d.ts +18 -0
- package/web/blocks/Copyright/Copyright.d.ts +10 -0
- package/web/blocks/DropArea/DropArea.d.ts +47 -0
- package/web/blocks/DropArea/addDropzone.d.ts +17 -0
- package/web/blocks/DropArea/getDropItems.d.ts +12 -0
- package/web/blocks/ExternalSource/ExternalSource.d.ts +45 -0
- package/web/blocks/ExternalSource/MessageBridge.d.ts +11 -0
- package/web/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
- package/web/blocks/ExternalSource/query-string.d.ts +1 -0
- package/web/blocks/ExternalSource/types.d.ts +105 -0
- package/web/blocks/FileItem/FileItem.d.ts +50 -0
- package/web/blocks/FileItem/FileItemConfig.d.ts +10 -0
- package/web/blocks/FormInput/FormInput.d.ts +18 -0
- package/web/blocks/Icon/Icon.d.ts +19 -0
- package/web/blocks/Img/Img.d.ts +14 -0
- package/web/blocks/Img/ImgBase.d.ts +29 -0
- package/web/blocks/Img/ImgConfig.d.ts +28 -0
- package/web/blocks/Img/configurations.d.ts +11 -0
- package/web/blocks/Img/props-map.d.ts +28 -0
- package/web/blocks/Img/utils/parseObjectToString.d.ts +2 -0
- package/web/blocks/Modal/Modal.d.ts +34 -0
- package/web/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
- package/web/blocks/PluginActivityRenderer/index.d.ts +1 -0
- package/web/blocks/ProgressBar/ProgressBar.d.ts +21 -0
- package/web/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
- package/web/blocks/Select/Select.d.ts +18 -0
- package/web/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
- package/web/blocks/SourceBtn/SourceBtn.d.ts +23 -0
- package/web/blocks/SourceList/SourceList.d.ts +24 -0
- package/web/blocks/Spinner/Spinner.d.ts +9 -0
- package/web/blocks/StartFrom/StartFrom.d.ts +12 -0
- package/web/blocks/Thumb/Thumb.d.ts +35 -0
- package/web/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
- package/web/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
- package/web/blocks/UploadList/UploadList.d.ts +39 -0
- package/web/blocks/UrlSource/UrlSource.d.ts +14 -0
- package/web/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
- package/web/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
- package/web/cameraPlugin-DeedXMWV.js +8 -0
- package/web/cameraPlugin-Duy1QwjB.js +8 -0
- package/web/cameraPlugin-QS9SUOtO.js +8 -0
- package/web/cameraPlugin-bq8ggY04.js +8 -0
- package/web/cameraPlugin-cel9YgP_.js +8 -0
- package/web/cloud-image-editor-8DrVRZ7E.js +12 -0
- package/web/cloud-image-editor-BX50EK1U.js +12 -0
- package/web/cloud-image-editor-DSW3oWq-.js +12 -0
- package/web/cloud-image-editor-DuI2Lx4M.js +12 -0
- package/web/cloudImageEditorPlugin-5my6aD36.js +8 -0
- package/web/cloudImageEditorPlugin-Bk19DmJv.js +8 -0
- package/web/cloudImageEditorPlugin-CcdnmtBW.js +8 -0
- package/web/cloudImageEditorPlugin-DQJmDl03.js +8 -0
- package/web/cloudImageEditorPlugin-kojghfqw.js +8 -0
- package/web/constants-BCfCF0cJ.js +4025 -0
- package/web/core.d.ts +42 -0
- package/web/env.d.ts +2 -0
- package/web/externalSourcesPlugin-BTeRm5C0.js +8 -0
- package/web/externalSourcesPlugin-BXgVeojg.js +8 -0
- package/web/externalSourcesPlugin-BgLpuIK9.js +8 -0
- package/web/externalSourcesPlugin-DMc9zs4T.js +8 -0
- package/web/externalSourcesPlugin-Dm9vnTBv.js +8 -0
- package/web/file-uploader.iife.min.js +697 -8
- package/web/file-uploader.min.js +1858 -7
- package/web/imageShrinkPlugin-BdHgEGZH.js +8 -0
- package/web/imageShrinkPlugin-BjkMGfvT.js +8 -0
- package/web/imageShrinkPlugin-CCkGHL2w.js +8 -0
- package/web/imageShrinkPlugin-D4WjaRGo.js +8 -0
- package/web/imageShrinkPlugin-DqYGutVx.js +8 -0
- package/web/index.d.ts +42 -0
- package/web/instagramPlugin-BTMz0K2a.js +8 -0
- package/web/instagramPlugin-BbIKgTH7.js +8 -0
- package/web/instagramPlugin-CQQhsEJa.js +8 -0
- package/web/instagramPlugin-Cm7lWKae.js +8 -0
- package/web/instagramPlugin-DcclxM_d.js +8 -0
- package/web/lit/BaseComponent.d.ts +12 -0
- package/web/lit/Constructor.d.ts +1 -0
- package/web/lit/CssDataMixin.d.ts +7 -0
- package/web/lit/LightDomMixin.d.ts +8 -0
- package/web/lit/LitActivityBlock.d.ts +53 -0
- package/web/lit/LitBlock.d.ts +83 -0
- package/web/lit/LitSolutionBlock.d.ts +21 -0
- package/web/lit/LitUploaderBlock.d.ts +53 -0
- package/web/lit/PubSubCompat.d.ts +18 -0
- package/web/lit/RegisterableElementMixin.d.ts +7 -0
- package/web/lit/SharedState.d.ts +119 -0
- package/web/lit/SymbioteCompatMixin.d.ts +40 -0
- package/web/lit/TestModeController.d.ts +16 -0
- package/web/lit/Uid.d.ts +3 -0
- package/web/lit/activity-constants.d.ts +11 -0
- package/web/lit/createDebugPrinter.d.ts +3 -0
- package/web/lit/findBlockInCtx.d.ts +3 -0
- package/web/lit/getOutputData.d.ts +2 -0
- package/web/lit/hasBlockInCtx.d.ts +3 -0
- package/web/lit/l10n.d.ts +5 -0
- package/web/lit/parseCssPropertyValue.d.ts +1 -0
- package/web/lit/shared-instances.d.ts +65 -0
- package/web/locales/file-uploader/ar.d.ts +137 -0
- package/web/locales/file-uploader/az.d.ts +129 -0
- package/web/locales/file-uploader/ca.d.ts +131 -0
- package/web/locales/file-uploader/cs.d.ts +133 -0
- package/web/locales/file-uploader/da.d.ts +129 -0
- package/web/locales/file-uploader/de.d.ts +129 -0
- package/web/locales/file-uploader/el.d.ts +129 -0
- package/web/locales/file-uploader/en.d.ts +129 -0
- package/web/locales/file-uploader/es.d.ts +131 -0
- package/web/locales/file-uploader/et.d.ts +129 -0
- package/web/locales/file-uploader/fi.d.ts +129 -0
- package/web/locales/file-uploader/fr.d.ts +131 -0
- package/web/locales/file-uploader/he.d.ts +131 -0
- package/web/locales/file-uploader/hy.d.ts +129 -0
- package/web/locales/file-uploader/is.d.ts +129 -0
- package/web/locales/file-uploader/it.d.ts +131 -0
- package/web/locales/file-uploader/ja.d.ts +129 -0
- package/web/locales/file-uploader/ka.d.ts +129 -0
- package/web/locales/file-uploader/kk.d.ts +129 -0
- package/web/locales/file-uploader/ko.d.ts +129 -0
- package/web/locales/file-uploader/lv.d.ts +131 -0
- package/web/locales/file-uploader/nb.d.ts +129 -0
- package/web/locales/file-uploader/nl.d.ts +129 -0
- package/web/locales/file-uploader/pl.d.ts +133 -0
- package/web/locales/file-uploader/pt.d.ts +131 -0
- package/web/locales/file-uploader/ro.d.ts +131 -0
- package/web/locales/file-uploader/ru.d.ts +133 -0
- package/web/locales/file-uploader/sk.d.ts +133 -0
- package/web/locales/file-uploader/sr.d.ts +131 -0
- package/web/locales/file-uploader/sv.d.ts +129 -0
- package/web/locales/file-uploader/tr.d.ts +129 -0
- package/web/locales/file-uploader/uk.d.ts +133 -0
- package/web/locales/file-uploader/vi.d.ts +129 -0
- package/web/locales/file-uploader/zh-TW.d.ts +129 -0
- package/web/locales/file-uploader/zh.d.ts +129 -0
- package/web/plugins/cameraPlugin.d.ts +2 -0
- package/web/plugins/cloudImageEditorPlugin.d.ts +2 -0
- package/web/plugins/externalSourcesPlugin.d.ts +2 -0
- package/web/plugins/imageShrinkPlugin.d.ts +2 -0
- package/web/plugins/instagramPlugin.d.ts +2 -0
- package/web/plugins/unsplashPlugin.d.ts +16 -0
- package/web/plugins/urlSourcePlugin.d.ts +2 -0
- package/web/plugins-Bt7FXHKx.js +562 -0
- package/web/plugins-CaaolyMk.js +562 -0
- package/web/plugins-Cjgw5oWg.js +562 -0
- package/web/plugins-CzNtrVQB.js +562 -0
- package/web/plugins-DS0hIs2V.js +563 -0
- package/web/ref-BOnG19ns.js +4040 -0
- package/web/ref-BejJFG7m.js +4040 -0
- package/web/ref-DcRg7zo9.js +4040 -0
- package/web/ref-ZWPcLQB9.js +4040 -0
- package/web/solutions/adaptive-image/index.d.ts +2 -0
- package/web/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
- package/web/solutions/cloud-image-editor/index.d.ts +5 -0
- package/web/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
- package/web/solutions/file-uploader/inline/index.d.ts +1 -0
- package/web/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
- package/web/solutions/file-uploader/minimal/index.d.ts +1 -0
- package/web/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
- package/web/solutions/file-uploader/regular/index.d.ts +1 -0
- package/web/style-map-BmZdux7T.js +37 -0
- package/web/style-map-CZ6fSV6e.js +37 -0
- package/web/style-map-Dk7mLCrB.js +37 -0
- package/web/style-map-HkHnu9oA.js +37 -0
- package/web/style-map-tw1yUEaj.js +37 -0
- package/web/types/dom.d.ts +1 -0
- package/web/types/events.d.ts +4 -0
- package/web/types/exported.d.ts +492 -0
- package/web/types/index.d.ts +5 -0
- package/web/uc-basic.layered.min.css +6046 -7
- package/web/uc-basic.min.css +5487 -6
- package/web/uc-cloud-image-editor.layered.min.css +1884 -7
- package/web/uc-cloud-image-editor.min.css +1675 -6
- package/web/uc-cloud-image-editor.min.js +456 -7
- package/web/uc-file-uploader-inline.layered.min.css +4352 -7
- package/web/uc-file-uploader-inline.min.css +3836 -6
- package/web/uc-file-uploader-inline.min.js +1858 -7
- package/web/uc-file-uploader-minimal.layered.min.css +4352 -7
- package/web/uc-file-uploader-minimal.min.css +3836 -6
- package/web/uc-file-uploader-minimal.min.js +1858 -7
- package/web/uc-file-uploader-regular.layered.min.css +4352 -7
- package/web/uc-file-uploader-regular.min.css +3836 -6
- package/web/uc-file-uploader-regular.min.js +1858 -7
- package/web/uc-img.min.js +894 -7
- package/web/urlSourcePlugin-9lhcr02f.js +8 -0
- package/web/urlSourcePlugin-C-sLGhGb.js +8 -0
- package/web/urlSourcePlugin-DNXDpnRD.js +8 -0
- package/web/urlSourcePlugin-JnD0cnxb.js +8 -0
- package/web/urlSourcePlugin-hcMU2K6T.js +8 -0
- package/web/utils/UID.d.ts +5 -0
- package/web/utils/UID.test.d.ts +1 -0
- package/web/utils/UploadSource.d.ts +37 -0
- package/web/utils/WindowHeightTracker.d.ts +9 -0
- package/web/utils/abilities.d.ts +1 -0
- package/web/utils/applyStyles.d.ts +1 -0
- package/web/utils/browser-info.d.ts +12 -0
- package/web/utils/browser-info.test.d.ts +1 -0
- package/web/utils/cdn-utils.d.ts +53 -0
- package/web/utils/cdn-utils.test.d.ts +1 -0
- package/web/utils/comma-separated.d.ts +2 -0
- package/web/utils/debounce.d.ts +3 -0
- package/web/utils/delay.d.ts +1 -0
- package/web/utils/fileTypes.d.ts +11 -0
- package/web/utils/fileTypes.test.d.ts +1 -0
- package/web/utils/get-top-level-origin.d.ts +1 -0
- package/web/utils/get-top-level-origin.test.d.ts +1 -0
- package/web/utils/getLocaleDirection.d.ts +1 -0
- package/web/utils/getPluralForm.d.ts +1 -0
- package/web/utils/getPluralForm.test.d.ts +1 -0
- package/web/utils/isPromiseLike.d.ts +1 -0
- package/web/utils/isPromiseLike.test.d.ts +1 -0
- package/web/utils/isSecureTokenExpired.d.ts +8 -0
- package/web/utils/isSecureTokenExpired.test.d.ts +1 -0
- package/web/utils/memoize.d.ts +1 -0
- package/web/utils/memoize.test.d.ts +1 -0
- package/web/utils/mixinClass.d.ts +8 -0
- package/web/utils/parseCdnUrl.d.ts +11 -0
- package/web/utils/parseCdnUrl.test.d.ts +1 -0
- package/web/utils/parseShrink.d.ts +7 -0
- package/web/utils/parseShrink.test.d.ts +1 -0
- package/web/utils/preloadImage.d.ts +10 -0
- package/web/utils/prettyBytes.d.ts +11 -0
- package/web/utils/prettyBytes.test.d.ts +1 -0
- package/web/utils/resizeImage.d.ts +1 -0
- package/web/utils/stringToArray.d.ts +1 -0
- package/web/utils/stringToArray.test.d.ts +1 -0
- package/web/utils/template-utils.d.ts +16 -0
- package/web/utils/template-utils.test.d.ts +1 -0
- package/web/utils/throttle.d.ts +3 -0
- package/web/utils/toKebabCase.d.ts +2 -0
- package/web/utils/toKebabCase.test.d.ts +1 -0
- package/web/utils/transparentPixelSrc.d.ts +1 -0
- package/web/utils/uniqueArray.d.ts +1 -0
- package/web/utils/uniqueArray.test.d.ts +1 -0
- package/web/utils/userAgent.d.ts +2 -0
- package/web/utils/validators/collection/index.d.ts +2 -0
- package/web/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
- package/web/utils/validators/collection/validateMultiple.d.ts +2 -0
- package/web/utils/validators/file/index.d.ts +4 -0
- package/web/utils/validators/file/validateFileType.d.ts +2 -0
- package/web/utils/validators/file/validateIsImage.d.ts +2 -0
- package/web/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
- package/web/utils/validators/file/validateUploadError.d.ts +2 -0
- package/web/utils/warnOnce.d.ts +1 -0
- package/web/utils/wildcardRegexp.d.ts +1 -0
- package/web/utils/wildcardRegexp.test.d.ts +1 -0
- package/web/utils/withResolvers.d.ts +5 -0
- package/web/utils/withResolvers.test.d.ts +1 -0
- package/dist/index.ssr.js +0 -1538
- package/web/file-uploader.iife.min.d.ts +0 -2859
- package/web/file-uploader.iife.min.js.LEGAL.txt +0 -71
- package/web/file-uploader.min.d.ts +0 -2859
- package/web/file-uploader.min.js.LEGAL.txt +0 -71
- package/web/uc-cloud-image-editor.min.d.ts +0 -2816
- package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
- package/web/uc-file-uploader-inline.min.d.ts +0 -2859
- package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
- package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
- package/web/uc-file-uploader-regular.min.d.ts +0 -2859
- package/web/uc-file-uploader-regular.min.js.LEGAL.txt +0 -71
- package/web/uc-img.min.d.ts +0 -75
- package/web/uc-img.min.js.LEGAL.txt +0 -24
package/dist/index.ssr.js
DELETED
|
@@ -1,1538 +0,0 @@
|
|
|
1
|
-
export const ActivityBlock = class {
|
|
2
|
-
static activities = {
|
|
3
|
-
START_FROM: "start-from",
|
|
4
|
-
CAMERA: "camera",
|
|
5
|
-
DRAW: "draw",
|
|
6
|
-
UPLOAD_LIST: "upload-list",
|
|
7
|
-
URL: "url",
|
|
8
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
9
|
-
EXTERNAL: "external",
|
|
10
|
-
};
|
|
11
|
-
static finalized = {};
|
|
12
|
-
static elementProperties = {};
|
|
13
|
-
static elementStyles = [];
|
|
14
|
-
static styleAttrs = [];
|
|
15
|
-
static reg = () => {};
|
|
16
|
-
static addInitializer = () => {};
|
|
17
|
-
static createProperty = () => {};
|
|
18
|
-
static getPropertyDescriptor = () => {};
|
|
19
|
-
static getPropertyOptions = () => {};
|
|
20
|
-
static finalize = () => {};
|
|
21
|
-
static finalizeStyles = () => {};
|
|
22
|
-
static shadowRootOptions = { mode: "open" };
|
|
23
|
-
};
|
|
24
|
-
export const ActivityHeader = class {
|
|
25
|
-
static activities = {
|
|
26
|
-
START_FROM: "start-from",
|
|
27
|
-
CAMERA: "camera",
|
|
28
|
-
DRAW: "draw",
|
|
29
|
-
UPLOAD_LIST: "upload-list",
|
|
30
|
-
URL: "url",
|
|
31
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
32
|
-
EXTERNAL: "external",
|
|
33
|
-
};
|
|
34
|
-
static finalized = {};
|
|
35
|
-
static elementProperties = {};
|
|
36
|
-
static elementStyles = [];
|
|
37
|
-
static styleAttrs = [];
|
|
38
|
-
static reg = () => {};
|
|
39
|
-
static addInitializer = () => {};
|
|
40
|
-
static createProperty = () => {};
|
|
41
|
-
static getPropertyDescriptor = () => {};
|
|
42
|
-
static getPropertyOptions = () => {};
|
|
43
|
-
static finalize = () => {};
|
|
44
|
-
static finalizeStyles = () => {};
|
|
45
|
-
static shadowRootOptions = { mode: "open" };
|
|
46
|
-
};
|
|
47
|
-
export const BaseComponent = class {
|
|
48
|
-
static reg = () => {};
|
|
49
|
-
static elementProperties = {};
|
|
50
|
-
static finalized = {};
|
|
51
|
-
static elementStyles = [];
|
|
52
|
-
static addInitializer = () => {};
|
|
53
|
-
static createProperty = () => {};
|
|
54
|
-
static getPropertyDescriptor = () => {};
|
|
55
|
-
static getPropertyOptions = () => {};
|
|
56
|
-
static finalize = () => {};
|
|
57
|
-
static finalizeStyles = () => {};
|
|
58
|
-
static shadowRootOptions = { mode: "open" };
|
|
59
|
-
};
|
|
60
|
-
export const Block = class {
|
|
61
|
-
static styleAttrs = [];
|
|
62
|
-
static finalized = {};
|
|
63
|
-
static elementProperties = {};
|
|
64
|
-
static elementStyles = [];
|
|
65
|
-
static reg = () => {};
|
|
66
|
-
static addInitializer = () => {};
|
|
67
|
-
static createProperty = () => {};
|
|
68
|
-
static getPropertyDescriptor = () => {};
|
|
69
|
-
static getPropertyOptions = () => {};
|
|
70
|
-
static finalize = () => {};
|
|
71
|
-
static finalizeStyles = () => {};
|
|
72
|
-
static shadowRootOptions = { mode: "open" };
|
|
73
|
-
};
|
|
74
|
-
export const BtnUi = class {
|
|
75
|
-
static elementProperties = {};
|
|
76
|
-
static styleAttrs = [];
|
|
77
|
-
static finalized = {};
|
|
78
|
-
static elementStyles = [];
|
|
79
|
-
static reg = () => {};
|
|
80
|
-
static addInitializer = () => {};
|
|
81
|
-
static createProperty = () => {};
|
|
82
|
-
static getPropertyDescriptor = () => {};
|
|
83
|
-
static getPropertyOptions = () => {};
|
|
84
|
-
static finalize = () => {};
|
|
85
|
-
static finalizeStyles = () => {};
|
|
86
|
-
static shadowRootOptions = { mode: "open" };
|
|
87
|
-
};
|
|
88
|
-
export const CameraSource = class {
|
|
89
|
-
static elementProperties = {};
|
|
90
|
-
static extSrcList = {
|
|
91
|
-
FACEBOOK: "facebook",
|
|
92
|
-
DROPBOX: "dropbox",
|
|
93
|
-
GDRIVE: "gdrive",
|
|
94
|
-
GPHOTOS: "gphotos",
|
|
95
|
-
FLICKR: "flickr",
|
|
96
|
-
VK: "vk",
|
|
97
|
-
EVERNOTE: "evernote",
|
|
98
|
-
BOX: "box",
|
|
99
|
-
ONEDRIVE: "onedrive",
|
|
100
|
-
HUDDLE: "huddle",
|
|
101
|
-
};
|
|
102
|
-
static sourceTypes = {
|
|
103
|
-
LOCAL: "local",
|
|
104
|
-
DROP_AREA: "drop-area",
|
|
105
|
-
CAMERA: "camera",
|
|
106
|
-
EXTERNAL: "external",
|
|
107
|
-
API: "js-api",
|
|
108
|
-
URL: "url",
|
|
109
|
-
DRAW: "draw",
|
|
110
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
111
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
112
|
-
FACEBOOK: "facebook",
|
|
113
|
-
DROPBOX: "dropbox",
|
|
114
|
-
GDRIVE: "gdrive",
|
|
115
|
-
GPHOTOS: "gphotos",
|
|
116
|
-
FLICKR: "flickr",
|
|
117
|
-
VK: "vk",
|
|
118
|
-
EVERNOTE: "evernote",
|
|
119
|
-
BOX: "box",
|
|
120
|
-
ONEDRIVE: "onedrive",
|
|
121
|
-
HUDDLE: "huddle",
|
|
122
|
-
};
|
|
123
|
-
static finalized = {};
|
|
124
|
-
static elementStyles = [];
|
|
125
|
-
static activities = {
|
|
126
|
-
START_FROM: "start-from",
|
|
127
|
-
CAMERA: "camera",
|
|
128
|
-
DRAW: "draw",
|
|
129
|
-
UPLOAD_LIST: "upload-list",
|
|
130
|
-
URL: "url",
|
|
131
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
132
|
-
EXTERNAL: "external",
|
|
133
|
-
};
|
|
134
|
-
static styleAttrs = [];
|
|
135
|
-
static reg = () => {};
|
|
136
|
-
static addInitializer = () => {};
|
|
137
|
-
static createProperty = () => {};
|
|
138
|
-
static getPropertyDescriptor = () => {};
|
|
139
|
-
static getPropertyOptions = () => {};
|
|
140
|
-
static finalize = () => {};
|
|
141
|
-
static finalizeStyles = () => {};
|
|
142
|
-
static shadowRootOptions = { mode: "open" };
|
|
143
|
-
};
|
|
144
|
-
export const CloudImageEditor = class {
|
|
145
|
-
static styleAttrs = [];
|
|
146
|
-
static elementProperties = {};
|
|
147
|
-
static finalized = {};
|
|
148
|
-
static elementStyles = [];
|
|
149
|
-
static reg = () => {};
|
|
150
|
-
static addInitializer = () => {};
|
|
151
|
-
static createProperty = () => {};
|
|
152
|
-
static getPropertyDescriptor = () => {};
|
|
153
|
-
static getPropertyOptions = () => {};
|
|
154
|
-
static finalize = () => {};
|
|
155
|
-
static finalizeStyles = () => {};
|
|
156
|
-
static shadowRootOptions = { mode: "open" };
|
|
157
|
-
};
|
|
158
|
-
export const CloudImageEditorActivity = class {
|
|
159
|
-
static elementProperties = {};
|
|
160
|
-
static extSrcList = {
|
|
161
|
-
FACEBOOK: "facebook",
|
|
162
|
-
DROPBOX: "dropbox",
|
|
163
|
-
GDRIVE: "gdrive",
|
|
164
|
-
GPHOTOS: "gphotos",
|
|
165
|
-
FLICKR: "flickr",
|
|
166
|
-
VK: "vk",
|
|
167
|
-
EVERNOTE: "evernote",
|
|
168
|
-
BOX: "box",
|
|
169
|
-
ONEDRIVE: "onedrive",
|
|
170
|
-
HUDDLE: "huddle",
|
|
171
|
-
};
|
|
172
|
-
static sourceTypes = {
|
|
173
|
-
LOCAL: "local",
|
|
174
|
-
DROP_AREA: "drop-area",
|
|
175
|
-
CAMERA: "camera",
|
|
176
|
-
EXTERNAL: "external",
|
|
177
|
-
API: "js-api",
|
|
178
|
-
URL: "url",
|
|
179
|
-
DRAW: "draw",
|
|
180
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
181
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
182
|
-
FACEBOOK: "facebook",
|
|
183
|
-
DROPBOX: "dropbox",
|
|
184
|
-
GDRIVE: "gdrive",
|
|
185
|
-
GPHOTOS: "gphotos",
|
|
186
|
-
FLICKR: "flickr",
|
|
187
|
-
VK: "vk",
|
|
188
|
-
EVERNOTE: "evernote",
|
|
189
|
-
BOX: "box",
|
|
190
|
-
ONEDRIVE: "onedrive",
|
|
191
|
-
HUDDLE: "huddle",
|
|
192
|
-
};
|
|
193
|
-
static finalized = {};
|
|
194
|
-
static elementStyles = [];
|
|
195
|
-
static activities = {
|
|
196
|
-
START_FROM: "start-from",
|
|
197
|
-
CAMERA: "camera",
|
|
198
|
-
DRAW: "draw",
|
|
199
|
-
UPLOAD_LIST: "upload-list",
|
|
200
|
-
URL: "url",
|
|
201
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
202
|
-
EXTERNAL: "external",
|
|
203
|
-
};
|
|
204
|
-
static styleAttrs = [];
|
|
205
|
-
static reg = () => {};
|
|
206
|
-
static addInitializer = () => {};
|
|
207
|
-
static createProperty = () => {};
|
|
208
|
-
static getPropertyDescriptor = () => {};
|
|
209
|
-
static getPropertyOptions = () => {};
|
|
210
|
-
static finalize = () => {};
|
|
211
|
-
static finalizeStyles = () => {};
|
|
212
|
-
static shadowRootOptions = { mode: "open" };
|
|
213
|
-
};
|
|
214
|
-
export const CloudImageEditorBlock = class {
|
|
215
|
-
static styleAttrs = [];
|
|
216
|
-
static elementProperties = {};
|
|
217
|
-
static finalized = {};
|
|
218
|
-
static elementStyles = [];
|
|
219
|
-
static reg = () => {};
|
|
220
|
-
static addInitializer = () => {};
|
|
221
|
-
static createProperty = () => {};
|
|
222
|
-
static getPropertyDescriptor = () => {};
|
|
223
|
-
static getPropertyOptions = () => {};
|
|
224
|
-
static finalize = () => {};
|
|
225
|
-
static finalizeStyles = () => {};
|
|
226
|
-
static shadowRootOptions = { mode: "open" };
|
|
227
|
-
};
|
|
228
|
-
export const Config = class {
|
|
229
|
-
static observedAttributes = [
|
|
230
|
-
"ctx-name",
|
|
231
|
-
"debug",
|
|
232
|
-
"pubkey",
|
|
233
|
-
"multiple",
|
|
234
|
-
"multiple-min",
|
|
235
|
-
"multiple-max",
|
|
236
|
-
"confirm-upload",
|
|
237
|
-
"img-only",
|
|
238
|
-
"accept",
|
|
239
|
-
"external-sources-preferred-types",
|
|
240
|
-
"external-sources-embed-css",
|
|
241
|
-
"store",
|
|
242
|
-
"camera-mirror",
|
|
243
|
-
"camera-capture",
|
|
244
|
-
"source-list",
|
|
245
|
-
"top-level-origin",
|
|
246
|
-
"cloud-image-editor-tabs",
|
|
247
|
-
"max-local-file-size-bytes",
|
|
248
|
-
"thumb-size",
|
|
249
|
-
"show-empty-list",
|
|
250
|
-
"use-local-image-editor",
|
|
251
|
-
"use-cloud-image-editor",
|
|
252
|
-
"remove-copyright",
|
|
253
|
-
"crop-preset",
|
|
254
|
-
"image-shrink",
|
|
255
|
-
"modal-scroll-lock",
|
|
256
|
-
"modal-backdrop-strokes",
|
|
257
|
-
"source-list-wrap",
|
|
258
|
-
"remote-tab-session-key",
|
|
259
|
-
"cdn-cname",
|
|
260
|
-
"cdn-cname-prefixed",
|
|
261
|
-
"base-url",
|
|
262
|
-
"social-base-url",
|
|
263
|
-
"secure-signature",
|
|
264
|
-
"secure-expire",
|
|
265
|
-
"secure-delivery-proxy",
|
|
266
|
-
"retry-throttled-request-max-times",
|
|
267
|
-
"retry-network-error-max-times",
|
|
268
|
-
"multipart-min-file-size",
|
|
269
|
-
"multipart-chunk-size",
|
|
270
|
-
"max-concurrent-requests",
|
|
271
|
-
"multipart-max-concurrent-requests",
|
|
272
|
-
"multipart-max-attempts",
|
|
273
|
-
"check-for-url-duplicates",
|
|
274
|
-
"save-url-for-recurrent-uploads",
|
|
275
|
-
"group-output",
|
|
276
|
-
"user-agent-integration",
|
|
277
|
-
"locale-name",
|
|
278
|
-
"secure-uploads-expire-threshold",
|
|
279
|
-
"validation-timeout",
|
|
280
|
-
"validation-concurrency",
|
|
281
|
-
"camera-modes",
|
|
282
|
-
"default-camera-mode",
|
|
283
|
-
"enable-audio-recording",
|
|
284
|
-
"enable-video-recording",
|
|
285
|
-
"max-video-recording-duration",
|
|
286
|
-
"files-view-mode",
|
|
287
|
-
"grid-show-file-names",
|
|
288
|
-
"cloud-image-editor-auto-open",
|
|
289
|
-
"cloud-image-editor-mask-href",
|
|
290
|
-
"test-mode",
|
|
291
|
-
"quality-insights",
|
|
292
|
-
"paste-scope",
|
|
293
|
-
"multiplemin",
|
|
294
|
-
"multiplemax",
|
|
295
|
-
"confirmupload",
|
|
296
|
-
"imgonly",
|
|
297
|
-
"externalsourcespreferredtypes",
|
|
298
|
-
"externalsourcesembedcss",
|
|
299
|
-
"cameramirror",
|
|
300
|
-
"cameracapture",
|
|
301
|
-
"sourcelist",
|
|
302
|
-
"toplevelorigin",
|
|
303
|
-
"cloudimageeditortabs",
|
|
304
|
-
"maxlocalfilesizebytes",
|
|
305
|
-
"thumbsize",
|
|
306
|
-
"showemptylist",
|
|
307
|
-
"uselocalimageeditor",
|
|
308
|
-
"usecloudimageeditor",
|
|
309
|
-
"removecopyright",
|
|
310
|
-
"croppreset",
|
|
311
|
-
"imageshrink",
|
|
312
|
-
"modalscrolllock",
|
|
313
|
-
"modalbackdropstrokes",
|
|
314
|
-
"sourcelistwrap",
|
|
315
|
-
"remotetabsessionkey",
|
|
316
|
-
"cdncname",
|
|
317
|
-
"cdncnameprefixed",
|
|
318
|
-
"baseurl",
|
|
319
|
-
"socialbaseurl",
|
|
320
|
-
"securesignature",
|
|
321
|
-
"secureexpire",
|
|
322
|
-
"securedeliveryproxy",
|
|
323
|
-
"retrythrottledrequestmaxtimes",
|
|
324
|
-
"retrynetworkerrormaxtimes",
|
|
325
|
-
"multipartminfilesize",
|
|
326
|
-
"multipartchunksize",
|
|
327
|
-
"maxconcurrentrequests",
|
|
328
|
-
"multipartmaxconcurrentrequests",
|
|
329
|
-
"multipartmaxattempts",
|
|
330
|
-
"checkforurlduplicates",
|
|
331
|
-
"saveurlforrecurrentuploads",
|
|
332
|
-
"groupoutput",
|
|
333
|
-
"useragentintegration",
|
|
334
|
-
"localename",
|
|
335
|
-
"secureuploadsexpirethreshold",
|
|
336
|
-
"validationtimeout",
|
|
337
|
-
"validationconcurrency",
|
|
338
|
-
"cameramodes",
|
|
339
|
-
"defaultcameramode",
|
|
340
|
-
"enableaudiorecording",
|
|
341
|
-
"enablevideorecording",
|
|
342
|
-
"maxvideorecordingduration",
|
|
343
|
-
"filesviewmode",
|
|
344
|
-
"gridshowfilenames",
|
|
345
|
-
"cloudimageeditorautoopen",
|
|
346
|
-
"cloudimageeditormaskhref",
|
|
347
|
-
"testmode",
|
|
348
|
-
"qualityinsights",
|
|
349
|
-
"pastescope",
|
|
350
|
-
];
|
|
351
|
-
static styleAttrs = [];
|
|
352
|
-
static finalized = {};
|
|
353
|
-
static elementProperties = {};
|
|
354
|
-
static elementStyles = [];
|
|
355
|
-
static reg = () => {};
|
|
356
|
-
static addInitializer = () => {};
|
|
357
|
-
static createProperty = () => {};
|
|
358
|
-
static getPropertyDescriptor = () => {};
|
|
359
|
-
static getPropertyOptions = () => {};
|
|
360
|
-
static finalize = () => {};
|
|
361
|
-
static finalizeStyles = () => {};
|
|
362
|
-
static shadowRootOptions = { mode: "open" };
|
|
363
|
-
};
|
|
364
|
-
export const Copyright = class {
|
|
365
|
-
static styleAttrs = [];
|
|
366
|
-
static finalized = {};
|
|
367
|
-
static elementProperties = {};
|
|
368
|
-
static elementStyles = [];
|
|
369
|
-
static reg = () => {};
|
|
370
|
-
static addInitializer = () => {};
|
|
371
|
-
static createProperty = () => {};
|
|
372
|
-
static getPropertyDescriptor = () => {};
|
|
373
|
-
static getPropertyOptions = () => {};
|
|
374
|
-
static finalize = () => {};
|
|
375
|
-
static finalizeStyles = () => {};
|
|
376
|
-
static shadowRootOptions = { mode: "open" };
|
|
377
|
-
};
|
|
378
|
-
export const CropFrame = class {
|
|
379
|
-
static elementProperties = {};
|
|
380
|
-
static styleAttrs = [];
|
|
381
|
-
static finalized = {};
|
|
382
|
-
static elementStyles = [];
|
|
383
|
-
static reg = () => {};
|
|
384
|
-
static addInitializer = () => {};
|
|
385
|
-
static createProperty = () => {};
|
|
386
|
-
static getPropertyDescriptor = () => {};
|
|
387
|
-
static getPropertyOptions = () => {};
|
|
388
|
-
static finalize = () => {};
|
|
389
|
-
static finalizeStyles = () => {};
|
|
390
|
-
static shadowRootOptions = { mode: "open" };
|
|
391
|
-
};
|
|
392
|
-
export const Data = class {
|
|
393
|
-
static registerCtx = () => {};
|
|
394
|
-
static deleteCtx = () => {};
|
|
395
|
-
static getCtx = () => {};
|
|
396
|
-
static hasCtx = () => {};
|
|
397
|
-
static apply = () => {};
|
|
398
|
-
static bind = () => {};
|
|
399
|
-
static call = () => {};
|
|
400
|
-
static toString = () => {};
|
|
401
|
-
static hasOwnProperty = () => {};
|
|
402
|
-
static isPrototypeOf = () => {};
|
|
403
|
-
static propertyIsEnumerable = () => {};
|
|
404
|
-
static valueOf = () => {};
|
|
405
|
-
static toLocaleString = () => {};
|
|
406
|
-
};
|
|
407
|
-
export const DropArea = class {
|
|
408
|
-
static styleAttrs = [];
|
|
409
|
-
static elementProperties = {};
|
|
410
|
-
static extSrcList = {
|
|
411
|
-
FACEBOOK: "facebook",
|
|
412
|
-
DROPBOX: "dropbox",
|
|
413
|
-
GDRIVE: "gdrive",
|
|
414
|
-
GPHOTOS: "gphotos",
|
|
415
|
-
FLICKR: "flickr",
|
|
416
|
-
VK: "vk",
|
|
417
|
-
EVERNOTE: "evernote",
|
|
418
|
-
BOX: "box",
|
|
419
|
-
ONEDRIVE: "onedrive",
|
|
420
|
-
HUDDLE: "huddle",
|
|
421
|
-
};
|
|
422
|
-
static sourceTypes = {
|
|
423
|
-
LOCAL: "local",
|
|
424
|
-
DROP_AREA: "drop-area",
|
|
425
|
-
CAMERA: "camera",
|
|
426
|
-
EXTERNAL: "external",
|
|
427
|
-
API: "js-api",
|
|
428
|
-
URL: "url",
|
|
429
|
-
DRAW: "draw",
|
|
430
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
431
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
432
|
-
FACEBOOK: "facebook",
|
|
433
|
-
DROPBOX: "dropbox",
|
|
434
|
-
GDRIVE: "gdrive",
|
|
435
|
-
GPHOTOS: "gphotos",
|
|
436
|
-
FLICKR: "flickr",
|
|
437
|
-
VK: "vk",
|
|
438
|
-
EVERNOTE: "evernote",
|
|
439
|
-
BOX: "box",
|
|
440
|
-
ONEDRIVE: "onedrive",
|
|
441
|
-
HUDDLE: "huddle",
|
|
442
|
-
};
|
|
443
|
-
static finalized = {};
|
|
444
|
-
static elementStyles = [];
|
|
445
|
-
static activities = {
|
|
446
|
-
START_FROM: "start-from",
|
|
447
|
-
CAMERA: "camera",
|
|
448
|
-
DRAW: "draw",
|
|
449
|
-
UPLOAD_LIST: "upload-list",
|
|
450
|
-
URL: "url",
|
|
451
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
452
|
-
EXTERNAL: "external",
|
|
453
|
-
};
|
|
454
|
-
static reg = () => {};
|
|
455
|
-
static addInitializer = () => {};
|
|
456
|
-
static createProperty = () => {};
|
|
457
|
-
static getPropertyDescriptor = () => {};
|
|
458
|
-
static getPropertyOptions = () => {};
|
|
459
|
-
static finalize = () => {};
|
|
460
|
-
static finalizeStyles = () => {};
|
|
461
|
-
static shadowRootOptions = { mode: "open" };
|
|
462
|
-
};
|
|
463
|
-
export const EditorAspectRatioButtonControl = class {
|
|
464
|
-
static elementProperties = {};
|
|
465
|
-
static finalized = {};
|
|
466
|
-
static elementStyles = [];
|
|
467
|
-
static styleAttrs = [];
|
|
468
|
-
static reg = () => {};
|
|
469
|
-
static addInitializer = () => {};
|
|
470
|
-
static createProperty = () => {};
|
|
471
|
-
static getPropertyDescriptor = () => {};
|
|
472
|
-
static getPropertyOptions = () => {};
|
|
473
|
-
static finalize = () => {};
|
|
474
|
-
static finalizeStyles = () => {};
|
|
475
|
-
static shadowRootOptions = { mode: "open" };
|
|
476
|
-
};
|
|
477
|
-
export const EditorCropButtonControl = class {
|
|
478
|
-
static elementProperties = {};
|
|
479
|
-
static finalized = {};
|
|
480
|
-
static elementStyles = [];
|
|
481
|
-
static styleAttrs = [];
|
|
482
|
-
static reg = () => {};
|
|
483
|
-
static addInitializer = () => {};
|
|
484
|
-
static createProperty = () => {};
|
|
485
|
-
static getPropertyDescriptor = () => {};
|
|
486
|
-
static getPropertyOptions = () => {};
|
|
487
|
-
static finalize = () => {};
|
|
488
|
-
static finalizeStyles = () => {};
|
|
489
|
-
static shadowRootOptions = { mode: "open" };
|
|
490
|
-
};
|
|
491
|
-
export const EditorFilterControl = class {
|
|
492
|
-
static elementProperties = {};
|
|
493
|
-
static finalized = {};
|
|
494
|
-
static elementStyles = [];
|
|
495
|
-
static styleAttrs = [];
|
|
496
|
-
static reg = () => {};
|
|
497
|
-
static addInitializer = () => {};
|
|
498
|
-
static createProperty = () => {};
|
|
499
|
-
static getPropertyDescriptor = () => {};
|
|
500
|
-
static getPropertyOptions = () => {};
|
|
501
|
-
static finalize = () => {};
|
|
502
|
-
static finalizeStyles = () => {};
|
|
503
|
-
static shadowRootOptions = { mode: "open" };
|
|
504
|
-
};
|
|
505
|
-
export const EditorFreeformButtonControl = class {
|
|
506
|
-
static elementProperties = {};
|
|
507
|
-
static finalized = {};
|
|
508
|
-
static elementStyles = [];
|
|
509
|
-
static styleAttrs = [];
|
|
510
|
-
static reg = () => {};
|
|
511
|
-
static addInitializer = () => {};
|
|
512
|
-
static createProperty = () => {};
|
|
513
|
-
static getPropertyDescriptor = () => {};
|
|
514
|
-
static getPropertyOptions = () => {};
|
|
515
|
-
static finalize = () => {};
|
|
516
|
-
static finalizeStyles = () => {};
|
|
517
|
-
static shadowRootOptions = { mode: "open" };
|
|
518
|
-
};
|
|
519
|
-
export const EditorImageCropper = class {
|
|
520
|
-
static elementProperties = {};
|
|
521
|
-
static styleAttrs = [];
|
|
522
|
-
static finalized = {};
|
|
523
|
-
static elementStyles = [];
|
|
524
|
-
static reg = () => {};
|
|
525
|
-
static addInitializer = () => {};
|
|
526
|
-
static createProperty = () => {};
|
|
527
|
-
static getPropertyDescriptor = () => {};
|
|
528
|
-
static getPropertyOptions = () => {};
|
|
529
|
-
static finalize = () => {};
|
|
530
|
-
static finalizeStyles = () => {};
|
|
531
|
-
static shadowRootOptions = { mode: "open" };
|
|
532
|
-
};
|
|
533
|
-
export const EditorImageFader = class {
|
|
534
|
-
static styleAttrs = [];
|
|
535
|
-
static finalized = {};
|
|
536
|
-
static elementProperties = {};
|
|
537
|
-
static elementStyles = [];
|
|
538
|
-
static reg = () => {};
|
|
539
|
-
static addInitializer = () => {};
|
|
540
|
-
static createProperty = () => {};
|
|
541
|
-
static getPropertyDescriptor = () => {};
|
|
542
|
-
static getPropertyOptions = () => {};
|
|
543
|
-
static finalize = () => {};
|
|
544
|
-
static finalizeStyles = () => {};
|
|
545
|
-
static shadowRootOptions = { mode: "open" };
|
|
546
|
-
};
|
|
547
|
-
export const EditorOperationControl = class {
|
|
548
|
-
static elementProperties = {};
|
|
549
|
-
static finalized = {};
|
|
550
|
-
static elementStyles = [];
|
|
551
|
-
static styleAttrs = [];
|
|
552
|
-
static reg = () => {};
|
|
553
|
-
static addInitializer = () => {};
|
|
554
|
-
static createProperty = () => {};
|
|
555
|
-
static getPropertyDescriptor = () => {};
|
|
556
|
-
static getPropertyOptions = () => {};
|
|
557
|
-
static finalize = () => {};
|
|
558
|
-
static finalizeStyles = () => {};
|
|
559
|
-
static shadowRootOptions = { mode: "open" };
|
|
560
|
-
};
|
|
561
|
-
export const EditorScroller = class {
|
|
562
|
-
static elementProperties = {};
|
|
563
|
-
static styleAttrs = [];
|
|
564
|
-
static finalized = {};
|
|
565
|
-
static elementStyles = [];
|
|
566
|
-
static reg = () => {};
|
|
567
|
-
static addInitializer = () => {};
|
|
568
|
-
static createProperty = () => {};
|
|
569
|
-
static getPropertyDescriptor = () => {};
|
|
570
|
-
static getPropertyOptions = () => {};
|
|
571
|
-
static finalize = () => {};
|
|
572
|
-
static finalizeStyles = () => {};
|
|
573
|
-
static shadowRootOptions = { mode: "open" };
|
|
574
|
-
};
|
|
575
|
-
export const EditorSlider = class {
|
|
576
|
-
static elementProperties = {};
|
|
577
|
-
static styleAttrs = [];
|
|
578
|
-
static finalized = {};
|
|
579
|
-
static elementStyles = [];
|
|
580
|
-
static reg = () => {};
|
|
581
|
-
static addInitializer = () => {};
|
|
582
|
-
static createProperty = () => {};
|
|
583
|
-
static getPropertyDescriptor = () => {};
|
|
584
|
-
static getPropertyOptions = () => {};
|
|
585
|
-
static finalize = () => {};
|
|
586
|
-
static finalizeStyles = () => {};
|
|
587
|
-
static shadowRootOptions = { mode: "open" };
|
|
588
|
-
};
|
|
589
|
-
export const EditorToolbar = class {
|
|
590
|
-
static elementProperties = {};
|
|
591
|
-
static styleAttrs = [];
|
|
592
|
-
static finalized = {};
|
|
593
|
-
static elementStyles = [];
|
|
594
|
-
static reg = () => {};
|
|
595
|
-
static addInitializer = () => {};
|
|
596
|
-
static createProperty = () => {};
|
|
597
|
-
static getPropertyDescriptor = () => {};
|
|
598
|
-
static getPropertyOptions = () => {};
|
|
599
|
-
static finalize = () => {};
|
|
600
|
-
static finalizeStyles = () => {};
|
|
601
|
-
static shadowRootOptions = { mode: "open" };
|
|
602
|
-
};
|
|
603
|
-
export const ExternalSource = class {
|
|
604
|
-
static elementProperties = {};
|
|
605
|
-
static extSrcList = {
|
|
606
|
-
FACEBOOK: "facebook",
|
|
607
|
-
DROPBOX: "dropbox",
|
|
608
|
-
GDRIVE: "gdrive",
|
|
609
|
-
GPHOTOS: "gphotos",
|
|
610
|
-
FLICKR: "flickr",
|
|
611
|
-
VK: "vk",
|
|
612
|
-
EVERNOTE: "evernote",
|
|
613
|
-
BOX: "box",
|
|
614
|
-
ONEDRIVE: "onedrive",
|
|
615
|
-
HUDDLE: "huddle",
|
|
616
|
-
};
|
|
617
|
-
static sourceTypes = {
|
|
618
|
-
LOCAL: "local",
|
|
619
|
-
DROP_AREA: "drop-area",
|
|
620
|
-
CAMERA: "camera",
|
|
621
|
-
EXTERNAL: "external",
|
|
622
|
-
API: "js-api",
|
|
623
|
-
URL: "url",
|
|
624
|
-
DRAW: "draw",
|
|
625
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
626
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
627
|
-
FACEBOOK: "facebook",
|
|
628
|
-
DROPBOX: "dropbox",
|
|
629
|
-
GDRIVE: "gdrive",
|
|
630
|
-
GPHOTOS: "gphotos",
|
|
631
|
-
FLICKR: "flickr",
|
|
632
|
-
VK: "vk",
|
|
633
|
-
EVERNOTE: "evernote",
|
|
634
|
-
BOX: "box",
|
|
635
|
-
ONEDRIVE: "onedrive",
|
|
636
|
-
HUDDLE: "huddle",
|
|
637
|
-
};
|
|
638
|
-
static finalized = {};
|
|
639
|
-
static elementStyles = [];
|
|
640
|
-
static activities = {
|
|
641
|
-
START_FROM: "start-from",
|
|
642
|
-
CAMERA: "camera",
|
|
643
|
-
DRAW: "draw",
|
|
644
|
-
UPLOAD_LIST: "upload-list",
|
|
645
|
-
URL: "url",
|
|
646
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
647
|
-
EXTERNAL: "external",
|
|
648
|
-
};
|
|
649
|
-
static styleAttrs = [];
|
|
650
|
-
static reg = () => {};
|
|
651
|
-
static addInitializer = () => {};
|
|
652
|
-
static createProperty = () => {};
|
|
653
|
-
static getPropertyDescriptor = () => {};
|
|
654
|
-
static getPropertyOptions = () => {};
|
|
655
|
-
static finalize = () => {};
|
|
656
|
-
static finalizeStyles = () => {};
|
|
657
|
-
static shadowRootOptions = { mode: "open" };
|
|
658
|
-
};
|
|
659
|
-
export const ExternalUploadSource = {
|
|
660
|
-
FACEBOOK: "facebook",
|
|
661
|
-
DROPBOX: "dropbox",
|
|
662
|
-
GDRIVE: "gdrive",
|
|
663
|
-
GPHOTOS: "gphotos",
|
|
664
|
-
FLICKR: "flickr",
|
|
665
|
-
VK: "vk",
|
|
666
|
-
EVERNOTE: "evernote",
|
|
667
|
-
BOX: "box",
|
|
668
|
-
ONEDRIVE: "onedrive",
|
|
669
|
-
HUDDLE: "huddle",
|
|
670
|
-
};
|
|
671
|
-
export const FileItem = class {
|
|
672
|
-
static activeInstances = {};
|
|
673
|
-
static elementProperties = {};
|
|
674
|
-
static finalized = {};
|
|
675
|
-
static elementStyles = [];
|
|
676
|
-
static extSrcList = {
|
|
677
|
-
FACEBOOK: "facebook",
|
|
678
|
-
DROPBOX: "dropbox",
|
|
679
|
-
GDRIVE: "gdrive",
|
|
680
|
-
GPHOTOS: "gphotos",
|
|
681
|
-
FLICKR: "flickr",
|
|
682
|
-
VK: "vk",
|
|
683
|
-
EVERNOTE: "evernote",
|
|
684
|
-
BOX: "box",
|
|
685
|
-
ONEDRIVE: "onedrive",
|
|
686
|
-
HUDDLE: "huddle",
|
|
687
|
-
};
|
|
688
|
-
static sourceTypes = {
|
|
689
|
-
LOCAL: "local",
|
|
690
|
-
DROP_AREA: "drop-area",
|
|
691
|
-
CAMERA: "camera",
|
|
692
|
-
EXTERNAL: "external",
|
|
693
|
-
API: "js-api",
|
|
694
|
-
URL: "url",
|
|
695
|
-
DRAW: "draw",
|
|
696
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
697
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
698
|
-
FACEBOOK: "facebook",
|
|
699
|
-
DROPBOX: "dropbox",
|
|
700
|
-
GDRIVE: "gdrive",
|
|
701
|
-
GPHOTOS: "gphotos",
|
|
702
|
-
FLICKR: "flickr",
|
|
703
|
-
VK: "vk",
|
|
704
|
-
EVERNOTE: "evernote",
|
|
705
|
-
BOX: "box",
|
|
706
|
-
ONEDRIVE: "onedrive",
|
|
707
|
-
HUDDLE: "huddle",
|
|
708
|
-
};
|
|
709
|
-
static activities = {
|
|
710
|
-
START_FROM: "start-from",
|
|
711
|
-
CAMERA: "camera",
|
|
712
|
-
DRAW: "draw",
|
|
713
|
-
UPLOAD_LIST: "upload-list",
|
|
714
|
-
URL: "url",
|
|
715
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
716
|
-
EXTERNAL: "external",
|
|
717
|
-
};
|
|
718
|
-
static styleAttrs = [];
|
|
719
|
-
static reg = () => {};
|
|
720
|
-
static addInitializer = () => {};
|
|
721
|
-
static createProperty = () => {};
|
|
722
|
-
static getPropertyDescriptor = () => {};
|
|
723
|
-
static getPropertyOptions = () => {};
|
|
724
|
-
static finalize = () => {};
|
|
725
|
-
static finalizeStyles = () => {};
|
|
726
|
-
static shadowRootOptions = { mode: "open" };
|
|
727
|
-
};
|
|
728
|
-
export const FileUploaderInline = class {
|
|
729
|
-
static styleAttrs = [];
|
|
730
|
-
static elementProperties = {};
|
|
731
|
-
static finalized = {};
|
|
732
|
-
static elementStyles = [];
|
|
733
|
-
static reg = () => {};
|
|
734
|
-
static addInitializer = () => {};
|
|
735
|
-
static createProperty = () => {};
|
|
736
|
-
static getPropertyDescriptor = () => {};
|
|
737
|
-
static getPropertyOptions = () => {};
|
|
738
|
-
static finalize = () => {};
|
|
739
|
-
static finalizeStyles = () => {};
|
|
740
|
-
static shadowRootOptions = { mode: "open" };
|
|
741
|
-
};
|
|
742
|
-
export const FileUploaderMinimal = class {
|
|
743
|
-
static styleAttrs = [];
|
|
744
|
-
static elementProperties = {};
|
|
745
|
-
static finalized = {};
|
|
746
|
-
static elementStyles = [];
|
|
747
|
-
static reg = () => {};
|
|
748
|
-
static addInitializer = () => {};
|
|
749
|
-
static createProperty = () => {};
|
|
750
|
-
static getPropertyDescriptor = () => {};
|
|
751
|
-
static getPropertyOptions = () => {};
|
|
752
|
-
static finalize = () => {};
|
|
753
|
-
static finalizeStyles = () => {};
|
|
754
|
-
static shadowRootOptions = { mode: "open" };
|
|
755
|
-
};
|
|
756
|
-
export const FileUploaderRegular = class {
|
|
757
|
-
static styleAttrs = [];
|
|
758
|
-
static elementProperties = {};
|
|
759
|
-
static finalized = {};
|
|
760
|
-
static elementStyles = [];
|
|
761
|
-
static reg = () => {};
|
|
762
|
-
static addInitializer = () => {};
|
|
763
|
-
static createProperty = () => {};
|
|
764
|
-
static getPropertyDescriptor = () => {};
|
|
765
|
-
static getPropertyOptions = () => {};
|
|
766
|
-
static finalize = () => {};
|
|
767
|
-
static finalizeStyles = () => {};
|
|
768
|
-
static shadowRootOptions = { mode: "open" };
|
|
769
|
-
};
|
|
770
|
-
export const FormInput = class {
|
|
771
|
-
static elementProperties = {};
|
|
772
|
-
static extSrcList = {
|
|
773
|
-
FACEBOOK: "facebook",
|
|
774
|
-
DROPBOX: "dropbox",
|
|
775
|
-
GDRIVE: "gdrive",
|
|
776
|
-
GPHOTOS: "gphotos",
|
|
777
|
-
FLICKR: "flickr",
|
|
778
|
-
VK: "vk",
|
|
779
|
-
EVERNOTE: "evernote",
|
|
780
|
-
BOX: "box",
|
|
781
|
-
ONEDRIVE: "onedrive",
|
|
782
|
-
HUDDLE: "huddle",
|
|
783
|
-
};
|
|
784
|
-
static sourceTypes = {
|
|
785
|
-
LOCAL: "local",
|
|
786
|
-
DROP_AREA: "drop-area",
|
|
787
|
-
CAMERA: "camera",
|
|
788
|
-
EXTERNAL: "external",
|
|
789
|
-
API: "js-api",
|
|
790
|
-
URL: "url",
|
|
791
|
-
DRAW: "draw",
|
|
792
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
793
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
794
|
-
FACEBOOK: "facebook",
|
|
795
|
-
DROPBOX: "dropbox",
|
|
796
|
-
GDRIVE: "gdrive",
|
|
797
|
-
GPHOTOS: "gphotos",
|
|
798
|
-
FLICKR: "flickr",
|
|
799
|
-
VK: "vk",
|
|
800
|
-
EVERNOTE: "evernote",
|
|
801
|
-
BOX: "box",
|
|
802
|
-
ONEDRIVE: "onedrive",
|
|
803
|
-
HUDDLE: "huddle",
|
|
804
|
-
};
|
|
805
|
-
static finalized = {};
|
|
806
|
-
static elementStyles = [];
|
|
807
|
-
static activities = {
|
|
808
|
-
START_FROM: "start-from",
|
|
809
|
-
CAMERA: "camera",
|
|
810
|
-
DRAW: "draw",
|
|
811
|
-
UPLOAD_LIST: "upload-list",
|
|
812
|
-
URL: "url",
|
|
813
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
814
|
-
EXTERNAL: "external",
|
|
815
|
-
};
|
|
816
|
-
static styleAttrs = [];
|
|
817
|
-
static reg = () => {};
|
|
818
|
-
static addInitializer = () => {};
|
|
819
|
-
static createProperty = () => {};
|
|
820
|
-
static getPropertyDescriptor = () => {};
|
|
821
|
-
static getPropertyOptions = () => {};
|
|
822
|
-
static finalize = () => {};
|
|
823
|
-
static finalizeStyles = () => {};
|
|
824
|
-
static shadowRootOptions = { mode: "open" };
|
|
825
|
-
};
|
|
826
|
-
export const Icon = class {
|
|
827
|
-
static elementProperties = {};
|
|
828
|
-
static styleAttrs = [];
|
|
829
|
-
static finalized = {};
|
|
830
|
-
static elementStyles = [];
|
|
831
|
-
static reg = () => {};
|
|
832
|
-
static addInitializer = () => {};
|
|
833
|
-
static createProperty = () => {};
|
|
834
|
-
static getPropertyDescriptor = () => {};
|
|
835
|
-
static getPropertyOptions = () => {};
|
|
836
|
-
static finalize = () => {};
|
|
837
|
-
static finalizeStyles = () => {};
|
|
838
|
-
static shadowRootOptions = { mode: "open" };
|
|
839
|
-
};
|
|
840
|
-
export const Img = class {
|
|
841
|
-
static observedAttributes = [
|
|
842
|
-
"dev-mode",
|
|
843
|
-
"pubkey",
|
|
844
|
-
"uuid",
|
|
845
|
-
"src",
|
|
846
|
-
"lazy",
|
|
847
|
-
"intersection",
|
|
848
|
-
"breakpoints",
|
|
849
|
-
"cdn-cname",
|
|
850
|
-
"proxy-cname",
|
|
851
|
-
"secure-delivery-proxy",
|
|
852
|
-
"hi-res-support",
|
|
853
|
-
"ultra-res-support",
|
|
854
|
-
"format",
|
|
855
|
-
"cdn-operations",
|
|
856
|
-
"progressive",
|
|
857
|
-
"quality",
|
|
858
|
-
"is-background-for",
|
|
859
|
-
"is-preview-blur",
|
|
860
|
-
];
|
|
861
|
-
static reg = () => {};
|
|
862
|
-
static finalized = {};
|
|
863
|
-
static addInitializer = () => {};
|
|
864
|
-
static createProperty = () => {};
|
|
865
|
-
static getPropertyDescriptor = () => {};
|
|
866
|
-
static getPropertyOptions = () => {};
|
|
867
|
-
static finalize = () => {};
|
|
868
|
-
static finalizeStyles = () => {};
|
|
869
|
-
static elementStyles = [];
|
|
870
|
-
static shadowRootOptions = { mode: "open" };
|
|
871
|
-
static elementProperties = {};
|
|
872
|
-
};
|
|
873
|
-
export const LineLoaderUi = class {
|
|
874
|
-
static elementProperties = {};
|
|
875
|
-
static styleAttrs = [];
|
|
876
|
-
static finalized = {};
|
|
877
|
-
static elementStyles = [];
|
|
878
|
-
static reg = () => {};
|
|
879
|
-
static addInitializer = () => {};
|
|
880
|
-
static createProperty = () => {};
|
|
881
|
-
static getPropertyDescriptor = () => {};
|
|
882
|
-
static getPropertyOptions = () => {};
|
|
883
|
-
static finalize = () => {};
|
|
884
|
-
static finalizeStyles = () => {};
|
|
885
|
-
static shadowRootOptions = { mode: "open" };
|
|
886
|
-
};
|
|
887
|
-
export const Modal = class {
|
|
888
|
-
static styleAttrs = [];
|
|
889
|
-
static elementProperties = {};
|
|
890
|
-
static finalized = {};
|
|
891
|
-
static elementStyles = [];
|
|
892
|
-
static reg = () => {};
|
|
893
|
-
static addInitializer = () => {};
|
|
894
|
-
static createProperty = () => {};
|
|
895
|
-
static getPropertyDescriptor = () => {};
|
|
896
|
-
static getPropertyOptions = () => {};
|
|
897
|
-
static finalize = () => {};
|
|
898
|
-
static finalizeStyles = () => {};
|
|
899
|
-
static shadowRootOptions = { mode: "open" };
|
|
900
|
-
};
|
|
901
|
-
export const ModalEvents = {
|
|
902
|
-
ADD: "modal:add",
|
|
903
|
-
DELETE: "modal:delete",
|
|
904
|
-
OPEN: "modal:open",
|
|
905
|
-
CLOSE: "modal:close",
|
|
906
|
-
CLOSE_ALL: "modal:closeAll",
|
|
907
|
-
DESTROY: "modal:destroy",
|
|
908
|
-
};
|
|
909
|
-
export const PACKAGE_NAME = `blocks`;
|
|
910
|
-
export const PACKAGE_VERSION = `1.27.1`;
|
|
911
|
-
export const PresenceToggle = class {
|
|
912
|
-
static elementProperties = {};
|
|
913
|
-
static styleAttrs = [];
|
|
914
|
-
static finalized = {};
|
|
915
|
-
static elementStyles = [];
|
|
916
|
-
static reg = () => {};
|
|
917
|
-
static addInitializer = () => {};
|
|
918
|
-
static createProperty = () => {};
|
|
919
|
-
static getPropertyDescriptor = () => {};
|
|
920
|
-
static getPropertyOptions = () => {};
|
|
921
|
-
static finalize = () => {};
|
|
922
|
-
static finalizeStyles = () => {};
|
|
923
|
-
static shadowRootOptions = { mode: "open" };
|
|
924
|
-
};
|
|
925
|
-
export const ProgressBar = class {
|
|
926
|
-
static elementProperties = {};
|
|
927
|
-
static styleAttrs = [];
|
|
928
|
-
static finalized = {};
|
|
929
|
-
static elementStyles = [];
|
|
930
|
-
static reg = () => {};
|
|
931
|
-
static addInitializer = () => {};
|
|
932
|
-
static createProperty = () => {};
|
|
933
|
-
static getPropertyDescriptor = () => {};
|
|
934
|
-
static getPropertyOptions = () => {};
|
|
935
|
-
static finalize = () => {};
|
|
936
|
-
static finalizeStyles = () => {};
|
|
937
|
-
static shadowRootOptions = { mode: "open" };
|
|
938
|
-
};
|
|
939
|
-
export const ProgressBarCommon = class {
|
|
940
|
-
static elementProperties = {};
|
|
941
|
-
static extSrcList = {
|
|
942
|
-
FACEBOOK: "facebook",
|
|
943
|
-
DROPBOX: "dropbox",
|
|
944
|
-
GDRIVE: "gdrive",
|
|
945
|
-
GPHOTOS: "gphotos",
|
|
946
|
-
FLICKR: "flickr",
|
|
947
|
-
VK: "vk",
|
|
948
|
-
EVERNOTE: "evernote",
|
|
949
|
-
BOX: "box",
|
|
950
|
-
ONEDRIVE: "onedrive",
|
|
951
|
-
HUDDLE: "huddle",
|
|
952
|
-
};
|
|
953
|
-
static sourceTypes = {
|
|
954
|
-
LOCAL: "local",
|
|
955
|
-
DROP_AREA: "drop-area",
|
|
956
|
-
CAMERA: "camera",
|
|
957
|
-
EXTERNAL: "external",
|
|
958
|
-
API: "js-api",
|
|
959
|
-
URL: "url",
|
|
960
|
-
DRAW: "draw",
|
|
961
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
962
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
963
|
-
FACEBOOK: "facebook",
|
|
964
|
-
DROPBOX: "dropbox",
|
|
965
|
-
GDRIVE: "gdrive",
|
|
966
|
-
GPHOTOS: "gphotos",
|
|
967
|
-
FLICKR: "flickr",
|
|
968
|
-
VK: "vk",
|
|
969
|
-
EVERNOTE: "evernote",
|
|
970
|
-
BOX: "box",
|
|
971
|
-
ONEDRIVE: "onedrive",
|
|
972
|
-
HUDDLE: "huddle",
|
|
973
|
-
};
|
|
974
|
-
static finalized = {};
|
|
975
|
-
static elementStyles = [];
|
|
976
|
-
static activities = {
|
|
977
|
-
START_FROM: "start-from",
|
|
978
|
-
CAMERA: "camera",
|
|
979
|
-
DRAW: "draw",
|
|
980
|
-
UPLOAD_LIST: "upload-list",
|
|
981
|
-
URL: "url",
|
|
982
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
983
|
-
EXTERNAL: "external",
|
|
984
|
-
};
|
|
985
|
-
static styleAttrs = [];
|
|
986
|
-
static reg = () => {};
|
|
987
|
-
static addInitializer = () => {};
|
|
988
|
-
static createProperty = () => {};
|
|
989
|
-
static getPropertyDescriptor = () => {};
|
|
990
|
-
static getPropertyOptions = () => {};
|
|
991
|
-
static finalize = () => {};
|
|
992
|
-
static finalizeStyles = () => {};
|
|
993
|
-
static shadowRootOptions = { mode: "open" };
|
|
994
|
-
};
|
|
995
|
-
export const Select = class {
|
|
996
|
-
static elementProperties = {};
|
|
997
|
-
static styleAttrs = [];
|
|
998
|
-
static finalized = {};
|
|
999
|
-
static elementStyles = [];
|
|
1000
|
-
static reg = () => {};
|
|
1001
|
-
static addInitializer = () => {};
|
|
1002
|
-
static createProperty = () => {};
|
|
1003
|
-
static getPropertyDescriptor = () => {};
|
|
1004
|
-
static getPropertyOptions = () => {};
|
|
1005
|
-
static finalize = () => {};
|
|
1006
|
-
static finalizeStyles = () => {};
|
|
1007
|
-
static shadowRootOptions = { mode: "open" };
|
|
1008
|
-
};
|
|
1009
|
-
export const SimpleBtn = class {
|
|
1010
|
-
static styleAttrs = [];
|
|
1011
|
-
static elementProperties = {};
|
|
1012
|
-
static extSrcList = {
|
|
1013
|
-
FACEBOOK: "facebook",
|
|
1014
|
-
DROPBOX: "dropbox",
|
|
1015
|
-
GDRIVE: "gdrive",
|
|
1016
|
-
GPHOTOS: "gphotos",
|
|
1017
|
-
FLICKR: "flickr",
|
|
1018
|
-
VK: "vk",
|
|
1019
|
-
EVERNOTE: "evernote",
|
|
1020
|
-
BOX: "box",
|
|
1021
|
-
ONEDRIVE: "onedrive",
|
|
1022
|
-
HUDDLE: "huddle",
|
|
1023
|
-
};
|
|
1024
|
-
static sourceTypes = {
|
|
1025
|
-
LOCAL: "local",
|
|
1026
|
-
DROP_AREA: "drop-area",
|
|
1027
|
-
CAMERA: "camera",
|
|
1028
|
-
EXTERNAL: "external",
|
|
1029
|
-
API: "js-api",
|
|
1030
|
-
URL: "url",
|
|
1031
|
-
DRAW: "draw",
|
|
1032
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1033
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1034
|
-
FACEBOOK: "facebook",
|
|
1035
|
-
DROPBOX: "dropbox",
|
|
1036
|
-
GDRIVE: "gdrive",
|
|
1037
|
-
GPHOTOS: "gphotos",
|
|
1038
|
-
FLICKR: "flickr",
|
|
1039
|
-
VK: "vk",
|
|
1040
|
-
EVERNOTE: "evernote",
|
|
1041
|
-
BOX: "box",
|
|
1042
|
-
ONEDRIVE: "onedrive",
|
|
1043
|
-
HUDDLE: "huddle",
|
|
1044
|
-
};
|
|
1045
|
-
static finalized = {};
|
|
1046
|
-
static elementStyles = [];
|
|
1047
|
-
static activities = {
|
|
1048
|
-
START_FROM: "start-from",
|
|
1049
|
-
CAMERA: "camera",
|
|
1050
|
-
DRAW: "draw",
|
|
1051
|
-
UPLOAD_LIST: "upload-list",
|
|
1052
|
-
URL: "url",
|
|
1053
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1054
|
-
EXTERNAL: "external",
|
|
1055
|
-
};
|
|
1056
|
-
static reg = () => {};
|
|
1057
|
-
static addInitializer = () => {};
|
|
1058
|
-
static createProperty = () => {};
|
|
1059
|
-
static getPropertyDescriptor = () => {};
|
|
1060
|
-
static getPropertyOptions = () => {};
|
|
1061
|
-
static finalize = () => {};
|
|
1062
|
-
static finalizeStyles = () => {};
|
|
1063
|
-
static shadowRootOptions = { mode: "open" };
|
|
1064
|
-
};
|
|
1065
|
-
export const SliderUi = class {
|
|
1066
|
-
static elementProperties = {};
|
|
1067
|
-
static styleAttrs = [];
|
|
1068
|
-
static finalized = {};
|
|
1069
|
-
static elementStyles = [];
|
|
1070
|
-
static reg = () => {};
|
|
1071
|
-
static addInitializer = () => {};
|
|
1072
|
-
static createProperty = () => {};
|
|
1073
|
-
static getPropertyDescriptor = () => {};
|
|
1074
|
-
static getPropertyOptions = () => {};
|
|
1075
|
-
static finalize = () => {};
|
|
1076
|
-
static finalizeStyles = () => {};
|
|
1077
|
-
static shadowRootOptions = { mode: "open" };
|
|
1078
|
-
};
|
|
1079
|
-
export const SolutionBlock = class {
|
|
1080
|
-
static styleAttrs = [];
|
|
1081
|
-
static finalized = {};
|
|
1082
|
-
static elementProperties = {};
|
|
1083
|
-
static elementStyles = [];
|
|
1084
|
-
static reg = () => {};
|
|
1085
|
-
static addInitializer = () => {};
|
|
1086
|
-
static createProperty = () => {};
|
|
1087
|
-
static getPropertyDescriptor = () => {};
|
|
1088
|
-
static getPropertyOptions = () => {};
|
|
1089
|
-
static finalize = () => {};
|
|
1090
|
-
static finalizeStyles = () => {};
|
|
1091
|
-
static shadowRootOptions = { mode: "open" };
|
|
1092
|
-
};
|
|
1093
|
-
export const SourceBtn = class {
|
|
1094
|
-
static elementProperties = {};
|
|
1095
|
-
static extSrcList = {
|
|
1096
|
-
FACEBOOK: "facebook",
|
|
1097
|
-
DROPBOX: "dropbox",
|
|
1098
|
-
GDRIVE: "gdrive",
|
|
1099
|
-
GPHOTOS: "gphotos",
|
|
1100
|
-
FLICKR: "flickr",
|
|
1101
|
-
VK: "vk",
|
|
1102
|
-
EVERNOTE: "evernote",
|
|
1103
|
-
BOX: "box",
|
|
1104
|
-
ONEDRIVE: "onedrive",
|
|
1105
|
-
HUDDLE: "huddle",
|
|
1106
|
-
};
|
|
1107
|
-
static sourceTypes = {
|
|
1108
|
-
LOCAL: "local",
|
|
1109
|
-
DROP_AREA: "drop-area",
|
|
1110
|
-
CAMERA: "camera",
|
|
1111
|
-
EXTERNAL: "external",
|
|
1112
|
-
API: "js-api",
|
|
1113
|
-
URL: "url",
|
|
1114
|
-
DRAW: "draw",
|
|
1115
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1116
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1117
|
-
FACEBOOK: "facebook",
|
|
1118
|
-
DROPBOX: "dropbox",
|
|
1119
|
-
GDRIVE: "gdrive",
|
|
1120
|
-
GPHOTOS: "gphotos",
|
|
1121
|
-
FLICKR: "flickr",
|
|
1122
|
-
VK: "vk",
|
|
1123
|
-
EVERNOTE: "evernote",
|
|
1124
|
-
BOX: "box",
|
|
1125
|
-
ONEDRIVE: "onedrive",
|
|
1126
|
-
HUDDLE: "huddle",
|
|
1127
|
-
};
|
|
1128
|
-
static finalized = {};
|
|
1129
|
-
static elementStyles = [];
|
|
1130
|
-
static activities = {
|
|
1131
|
-
START_FROM: "start-from",
|
|
1132
|
-
CAMERA: "camera",
|
|
1133
|
-
DRAW: "draw",
|
|
1134
|
-
UPLOAD_LIST: "upload-list",
|
|
1135
|
-
URL: "url",
|
|
1136
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1137
|
-
EXTERNAL: "external",
|
|
1138
|
-
};
|
|
1139
|
-
static styleAttrs = [];
|
|
1140
|
-
static reg = () => {};
|
|
1141
|
-
static addInitializer = () => {};
|
|
1142
|
-
static createProperty = () => {};
|
|
1143
|
-
static getPropertyDescriptor = () => {};
|
|
1144
|
-
static getPropertyOptions = () => {};
|
|
1145
|
-
static finalize = () => {};
|
|
1146
|
-
static finalizeStyles = () => {};
|
|
1147
|
-
static shadowRootOptions = { mode: "open" };
|
|
1148
|
-
};
|
|
1149
|
-
export const SourceList = class {
|
|
1150
|
-
static elementProperties = {};
|
|
1151
|
-
static styleAttrs = [];
|
|
1152
|
-
static finalized = {};
|
|
1153
|
-
static elementStyles = [];
|
|
1154
|
-
static reg = () => {};
|
|
1155
|
-
static addInitializer = () => {};
|
|
1156
|
-
static createProperty = () => {};
|
|
1157
|
-
static getPropertyDescriptor = () => {};
|
|
1158
|
-
static getPropertyOptions = () => {};
|
|
1159
|
-
static finalize = () => {};
|
|
1160
|
-
static finalizeStyles = () => {};
|
|
1161
|
-
static shadowRootOptions = { mode: "open" };
|
|
1162
|
-
};
|
|
1163
|
-
export const Spinner = class {
|
|
1164
|
-
static styleAttrs = [];
|
|
1165
|
-
static finalized = {};
|
|
1166
|
-
static elementProperties = {};
|
|
1167
|
-
static elementStyles = [];
|
|
1168
|
-
static reg = () => {};
|
|
1169
|
-
static addInitializer = () => {};
|
|
1170
|
-
static createProperty = () => {};
|
|
1171
|
-
static getPropertyDescriptor = () => {};
|
|
1172
|
-
static getPropertyOptions = () => {};
|
|
1173
|
-
static finalize = () => {};
|
|
1174
|
-
static finalizeStyles = () => {};
|
|
1175
|
-
static shadowRootOptions = { mode: "open" };
|
|
1176
|
-
};
|
|
1177
|
-
export const StartFrom = class {
|
|
1178
|
-
static activities = {
|
|
1179
|
-
START_FROM: "start-from",
|
|
1180
|
-
CAMERA: "camera",
|
|
1181
|
-
DRAW: "draw",
|
|
1182
|
-
UPLOAD_LIST: "upload-list",
|
|
1183
|
-
URL: "url",
|
|
1184
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1185
|
-
EXTERNAL: "external",
|
|
1186
|
-
};
|
|
1187
|
-
static finalized = {};
|
|
1188
|
-
static elementProperties = {};
|
|
1189
|
-
static elementStyles = [];
|
|
1190
|
-
static styleAttrs = [];
|
|
1191
|
-
static reg = () => {};
|
|
1192
|
-
static addInitializer = () => {};
|
|
1193
|
-
static createProperty = () => {};
|
|
1194
|
-
static getPropertyDescriptor = () => {};
|
|
1195
|
-
static getPropertyOptions = () => {};
|
|
1196
|
-
static finalize = () => {};
|
|
1197
|
-
static finalizeStyles = () => {};
|
|
1198
|
-
static shadowRootOptions = { mode: "open" };
|
|
1199
|
-
};
|
|
1200
|
-
export const Thumb = class {
|
|
1201
|
-
static elementProperties = {};
|
|
1202
|
-
static finalized = {};
|
|
1203
|
-
static elementStyles = [];
|
|
1204
|
-
static extSrcList = {
|
|
1205
|
-
FACEBOOK: "facebook",
|
|
1206
|
-
DROPBOX: "dropbox",
|
|
1207
|
-
GDRIVE: "gdrive",
|
|
1208
|
-
GPHOTOS: "gphotos",
|
|
1209
|
-
FLICKR: "flickr",
|
|
1210
|
-
VK: "vk",
|
|
1211
|
-
EVERNOTE: "evernote",
|
|
1212
|
-
BOX: "box",
|
|
1213
|
-
ONEDRIVE: "onedrive",
|
|
1214
|
-
HUDDLE: "huddle",
|
|
1215
|
-
};
|
|
1216
|
-
static sourceTypes = {
|
|
1217
|
-
LOCAL: "local",
|
|
1218
|
-
DROP_AREA: "drop-area",
|
|
1219
|
-
CAMERA: "camera",
|
|
1220
|
-
EXTERNAL: "external",
|
|
1221
|
-
API: "js-api",
|
|
1222
|
-
URL: "url",
|
|
1223
|
-
DRAW: "draw",
|
|
1224
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1225
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1226
|
-
FACEBOOK: "facebook",
|
|
1227
|
-
DROPBOX: "dropbox",
|
|
1228
|
-
GDRIVE: "gdrive",
|
|
1229
|
-
GPHOTOS: "gphotos",
|
|
1230
|
-
FLICKR: "flickr",
|
|
1231
|
-
VK: "vk",
|
|
1232
|
-
EVERNOTE: "evernote",
|
|
1233
|
-
BOX: "box",
|
|
1234
|
-
ONEDRIVE: "onedrive",
|
|
1235
|
-
HUDDLE: "huddle",
|
|
1236
|
-
};
|
|
1237
|
-
static activities = {
|
|
1238
|
-
START_FROM: "start-from",
|
|
1239
|
-
CAMERA: "camera",
|
|
1240
|
-
DRAW: "draw",
|
|
1241
|
-
UPLOAD_LIST: "upload-list",
|
|
1242
|
-
URL: "url",
|
|
1243
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1244
|
-
EXTERNAL: "external",
|
|
1245
|
-
};
|
|
1246
|
-
static styleAttrs = [];
|
|
1247
|
-
static reg = () => {};
|
|
1248
|
-
static addInitializer = () => {};
|
|
1249
|
-
static createProperty = () => {};
|
|
1250
|
-
static getPropertyDescriptor = () => {};
|
|
1251
|
-
static getPropertyOptions = () => {};
|
|
1252
|
-
static finalize = () => {};
|
|
1253
|
-
static finalizeStyles = () => {};
|
|
1254
|
-
static shadowRootOptions = { mode: "open" };
|
|
1255
|
-
};
|
|
1256
|
-
export const UID = class {
|
|
1257
|
-
static generateFastUid = () => {};
|
|
1258
|
-
static generateRandomUUID = () => {};
|
|
1259
|
-
static apply = () => {};
|
|
1260
|
-
static bind = () => {};
|
|
1261
|
-
static call = () => {};
|
|
1262
|
-
static toString = () => {};
|
|
1263
|
-
static hasOwnProperty = () => {};
|
|
1264
|
-
static isPrototypeOf = () => {};
|
|
1265
|
-
static propertyIsEnumerable = () => {};
|
|
1266
|
-
static valueOf = () => {};
|
|
1267
|
-
static toLocaleString = () => {};
|
|
1268
|
-
};
|
|
1269
|
-
export const UploadCtxProvider = class {
|
|
1270
|
-
static styleAttrs = [];
|
|
1271
|
-
static EventType = {
|
|
1272
|
-
FILE_ADDED: "file-added",
|
|
1273
|
-
FILE_REMOVED: "file-removed",
|
|
1274
|
-
FILE_UPLOAD_START: "file-upload-start",
|
|
1275
|
-
FILE_UPLOAD_PROGRESS: "file-upload-progress",
|
|
1276
|
-
FILE_UPLOAD_SUCCESS: "file-upload-success",
|
|
1277
|
-
FILE_UPLOAD_FAILED: "file-upload-failed",
|
|
1278
|
-
FILE_URL_CHANGED: "file-url-changed",
|
|
1279
|
-
MODAL_OPEN: "modal-open",
|
|
1280
|
-
MODAL_CLOSE: "modal-close",
|
|
1281
|
-
DONE_CLICK: "done-click",
|
|
1282
|
-
UPLOAD_CLICK: "upload-click",
|
|
1283
|
-
ACTIVITY_CHANGE: "activity-change",
|
|
1284
|
-
COMMON_UPLOAD_START: "common-upload-start",
|
|
1285
|
-
COMMON_UPLOAD_PROGRESS: "common-upload-progress",
|
|
1286
|
-
COMMON_UPLOAD_SUCCESS: "common-upload-success",
|
|
1287
|
-
COMMON_UPLOAD_FAILED: "common-upload-failed",
|
|
1288
|
-
CHANGE: "change",
|
|
1289
|
-
GROUP_CREATED: "group-created",
|
|
1290
|
-
};
|
|
1291
|
-
static extSrcList = {
|
|
1292
|
-
FACEBOOK: "facebook",
|
|
1293
|
-
DROPBOX: "dropbox",
|
|
1294
|
-
GDRIVE: "gdrive",
|
|
1295
|
-
GPHOTOS: "gphotos",
|
|
1296
|
-
FLICKR: "flickr",
|
|
1297
|
-
VK: "vk",
|
|
1298
|
-
EVERNOTE: "evernote",
|
|
1299
|
-
BOX: "box",
|
|
1300
|
-
ONEDRIVE: "onedrive",
|
|
1301
|
-
HUDDLE: "huddle",
|
|
1302
|
-
};
|
|
1303
|
-
static sourceTypes = {
|
|
1304
|
-
LOCAL: "local",
|
|
1305
|
-
DROP_AREA: "drop-area",
|
|
1306
|
-
CAMERA: "camera",
|
|
1307
|
-
EXTERNAL: "external",
|
|
1308
|
-
API: "js-api",
|
|
1309
|
-
URL: "url",
|
|
1310
|
-
DRAW: "draw",
|
|
1311
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1312
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1313
|
-
FACEBOOK: "facebook",
|
|
1314
|
-
DROPBOX: "dropbox",
|
|
1315
|
-
GDRIVE: "gdrive",
|
|
1316
|
-
GPHOTOS: "gphotos",
|
|
1317
|
-
FLICKR: "flickr",
|
|
1318
|
-
VK: "vk",
|
|
1319
|
-
EVERNOTE: "evernote",
|
|
1320
|
-
BOX: "box",
|
|
1321
|
-
ONEDRIVE: "onedrive",
|
|
1322
|
-
HUDDLE: "huddle",
|
|
1323
|
-
};
|
|
1324
|
-
static finalized = {};
|
|
1325
|
-
static elementProperties = {};
|
|
1326
|
-
static elementStyles = [];
|
|
1327
|
-
static activities = {
|
|
1328
|
-
START_FROM: "start-from",
|
|
1329
|
-
CAMERA: "camera",
|
|
1330
|
-
DRAW: "draw",
|
|
1331
|
-
UPLOAD_LIST: "upload-list",
|
|
1332
|
-
URL: "url",
|
|
1333
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1334
|
-
EXTERNAL: "external",
|
|
1335
|
-
};
|
|
1336
|
-
static reg = () => {};
|
|
1337
|
-
static addInitializer = () => {};
|
|
1338
|
-
static createProperty = () => {};
|
|
1339
|
-
static getPropertyDescriptor = () => {};
|
|
1340
|
-
static getPropertyOptions = () => {};
|
|
1341
|
-
static finalize = () => {};
|
|
1342
|
-
static finalizeStyles = () => {};
|
|
1343
|
-
static shadowRootOptions = { mode: "open" };
|
|
1344
|
-
};
|
|
1345
|
-
export const UploadList = class {
|
|
1346
|
-
static elementProperties = {};
|
|
1347
|
-
static extSrcList = {
|
|
1348
|
-
FACEBOOK: "facebook",
|
|
1349
|
-
DROPBOX: "dropbox",
|
|
1350
|
-
GDRIVE: "gdrive",
|
|
1351
|
-
GPHOTOS: "gphotos",
|
|
1352
|
-
FLICKR: "flickr",
|
|
1353
|
-
VK: "vk",
|
|
1354
|
-
EVERNOTE: "evernote",
|
|
1355
|
-
BOX: "box",
|
|
1356
|
-
ONEDRIVE: "onedrive",
|
|
1357
|
-
HUDDLE: "huddle",
|
|
1358
|
-
};
|
|
1359
|
-
static sourceTypes = {
|
|
1360
|
-
LOCAL: "local",
|
|
1361
|
-
DROP_AREA: "drop-area",
|
|
1362
|
-
CAMERA: "camera",
|
|
1363
|
-
EXTERNAL: "external",
|
|
1364
|
-
API: "js-api",
|
|
1365
|
-
URL: "url",
|
|
1366
|
-
DRAW: "draw",
|
|
1367
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1368
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1369
|
-
FACEBOOK: "facebook",
|
|
1370
|
-
DROPBOX: "dropbox",
|
|
1371
|
-
GDRIVE: "gdrive",
|
|
1372
|
-
GPHOTOS: "gphotos",
|
|
1373
|
-
FLICKR: "flickr",
|
|
1374
|
-
VK: "vk",
|
|
1375
|
-
EVERNOTE: "evernote",
|
|
1376
|
-
BOX: "box",
|
|
1377
|
-
ONEDRIVE: "onedrive",
|
|
1378
|
-
HUDDLE: "huddle",
|
|
1379
|
-
};
|
|
1380
|
-
static finalized = {};
|
|
1381
|
-
static elementStyles = [];
|
|
1382
|
-
static activities = {
|
|
1383
|
-
START_FROM: "start-from",
|
|
1384
|
-
CAMERA: "camera",
|
|
1385
|
-
DRAW: "draw",
|
|
1386
|
-
UPLOAD_LIST: "upload-list",
|
|
1387
|
-
URL: "url",
|
|
1388
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1389
|
-
EXTERNAL: "external",
|
|
1390
|
-
};
|
|
1391
|
-
static styleAttrs = [];
|
|
1392
|
-
static reg = () => {};
|
|
1393
|
-
static addInitializer = () => {};
|
|
1394
|
-
static createProperty = () => {};
|
|
1395
|
-
static getPropertyDescriptor = () => {};
|
|
1396
|
-
static getPropertyOptions = () => {};
|
|
1397
|
-
static finalize = () => {};
|
|
1398
|
-
static finalizeStyles = () => {};
|
|
1399
|
-
static shadowRootOptions = { mode: "open" };
|
|
1400
|
-
};
|
|
1401
|
-
export const UploadSource = {
|
|
1402
|
-
LOCAL: "local",
|
|
1403
|
-
DROP_AREA: "drop-area",
|
|
1404
|
-
CAMERA: "camera",
|
|
1405
|
-
EXTERNAL: "external",
|
|
1406
|
-
API: "js-api",
|
|
1407
|
-
URL: "url",
|
|
1408
|
-
DRAW: "draw",
|
|
1409
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1410
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1411
|
-
FACEBOOK: "facebook",
|
|
1412
|
-
DROPBOX: "dropbox",
|
|
1413
|
-
GDRIVE: "gdrive",
|
|
1414
|
-
GPHOTOS: "gphotos",
|
|
1415
|
-
FLICKR: "flickr",
|
|
1416
|
-
VK: "vk",
|
|
1417
|
-
EVERNOTE: "evernote",
|
|
1418
|
-
BOX: "box",
|
|
1419
|
-
ONEDRIVE: "onedrive",
|
|
1420
|
-
HUDDLE: "huddle",
|
|
1421
|
-
};
|
|
1422
|
-
export const UploaderBlock = class {
|
|
1423
|
-
static extSrcList = {
|
|
1424
|
-
FACEBOOK: "facebook",
|
|
1425
|
-
DROPBOX: "dropbox",
|
|
1426
|
-
GDRIVE: "gdrive",
|
|
1427
|
-
GPHOTOS: "gphotos",
|
|
1428
|
-
FLICKR: "flickr",
|
|
1429
|
-
VK: "vk",
|
|
1430
|
-
EVERNOTE: "evernote",
|
|
1431
|
-
BOX: "box",
|
|
1432
|
-
ONEDRIVE: "onedrive",
|
|
1433
|
-
HUDDLE: "huddle",
|
|
1434
|
-
};
|
|
1435
|
-
static sourceTypes = {
|
|
1436
|
-
LOCAL: "local",
|
|
1437
|
-
DROP_AREA: "drop-area",
|
|
1438
|
-
CAMERA: "camera",
|
|
1439
|
-
EXTERNAL: "external",
|
|
1440
|
-
API: "js-api",
|
|
1441
|
-
URL: "url",
|
|
1442
|
-
DRAW: "draw",
|
|
1443
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1444
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1445
|
-
FACEBOOK: "facebook",
|
|
1446
|
-
DROPBOX: "dropbox",
|
|
1447
|
-
GDRIVE: "gdrive",
|
|
1448
|
-
GPHOTOS: "gphotos",
|
|
1449
|
-
FLICKR: "flickr",
|
|
1450
|
-
VK: "vk",
|
|
1451
|
-
EVERNOTE: "evernote",
|
|
1452
|
-
BOX: "box",
|
|
1453
|
-
ONEDRIVE: "onedrive",
|
|
1454
|
-
HUDDLE: "huddle",
|
|
1455
|
-
};
|
|
1456
|
-
static finalized = {};
|
|
1457
|
-
static elementProperties = {};
|
|
1458
|
-
static elementStyles = [];
|
|
1459
|
-
static activities = {
|
|
1460
|
-
START_FROM: "start-from",
|
|
1461
|
-
CAMERA: "camera",
|
|
1462
|
-
DRAW: "draw",
|
|
1463
|
-
UPLOAD_LIST: "upload-list",
|
|
1464
|
-
URL: "url",
|
|
1465
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1466
|
-
EXTERNAL: "external",
|
|
1467
|
-
};
|
|
1468
|
-
static styleAttrs = [];
|
|
1469
|
-
static reg = () => {};
|
|
1470
|
-
static addInitializer = () => {};
|
|
1471
|
-
static createProperty = () => {};
|
|
1472
|
-
static getPropertyDescriptor = () => {};
|
|
1473
|
-
static getPropertyOptions = () => {};
|
|
1474
|
-
static finalize = () => {};
|
|
1475
|
-
static finalizeStyles = () => {};
|
|
1476
|
-
static shadowRootOptions = { mode: "open" };
|
|
1477
|
-
};
|
|
1478
|
-
export const UrlSource = class {
|
|
1479
|
-
static elementProperties = {};
|
|
1480
|
-
static extSrcList = {
|
|
1481
|
-
FACEBOOK: "facebook",
|
|
1482
|
-
DROPBOX: "dropbox",
|
|
1483
|
-
GDRIVE: "gdrive",
|
|
1484
|
-
GPHOTOS: "gphotos",
|
|
1485
|
-
FLICKR: "flickr",
|
|
1486
|
-
VK: "vk",
|
|
1487
|
-
EVERNOTE: "evernote",
|
|
1488
|
-
BOX: "box",
|
|
1489
|
-
ONEDRIVE: "onedrive",
|
|
1490
|
-
HUDDLE: "huddle",
|
|
1491
|
-
};
|
|
1492
|
-
static sourceTypes = {
|
|
1493
|
-
LOCAL: "local",
|
|
1494
|
-
DROP_AREA: "drop-area",
|
|
1495
|
-
CAMERA: "camera",
|
|
1496
|
-
EXTERNAL: "external",
|
|
1497
|
-
API: "js-api",
|
|
1498
|
-
URL: "url",
|
|
1499
|
-
DRAW: "draw",
|
|
1500
|
-
MOBILE_VIDEO_CAMERA: "mobile-video-camera",
|
|
1501
|
-
MOBILE_PHOTO_CAMERA: "mobile-photo-camera",
|
|
1502
|
-
FACEBOOK: "facebook",
|
|
1503
|
-
DROPBOX: "dropbox",
|
|
1504
|
-
GDRIVE: "gdrive",
|
|
1505
|
-
GPHOTOS: "gphotos",
|
|
1506
|
-
FLICKR: "flickr",
|
|
1507
|
-
VK: "vk",
|
|
1508
|
-
EVERNOTE: "evernote",
|
|
1509
|
-
BOX: "box",
|
|
1510
|
-
ONEDRIVE: "onedrive",
|
|
1511
|
-
HUDDLE: "huddle",
|
|
1512
|
-
};
|
|
1513
|
-
static finalized = {};
|
|
1514
|
-
static elementStyles = [];
|
|
1515
|
-
static activities = {
|
|
1516
|
-
START_FROM: "start-from",
|
|
1517
|
-
CAMERA: "camera",
|
|
1518
|
-
DRAW: "draw",
|
|
1519
|
-
UPLOAD_LIST: "upload-list",
|
|
1520
|
-
URL: "url",
|
|
1521
|
-
CLOUD_IMG_EDIT: "cloud-image-edit",
|
|
1522
|
-
EXTERNAL: "external",
|
|
1523
|
-
};
|
|
1524
|
-
static styleAttrs = [];
|
|
1525
|
-
static reg = () => {};
|
|
1526
|
-
static addInitializer = () => {};
|
|
1527
|
-
static createProperty = () => {};
|
|
1528
|
-
static getPropertyDescriptor = () => {};
|
|
1529
|
-
static getPropertyOptions = () => {};
|
|
1530
|
-
static finalize = () => {};
|
|
1531
|
-
static finalizeStyles = () => {};
|
|
1532
|
-
static shadowRootOptions = { mode: "open" };
|
|
1533
|
-
};
|
|
1534
|
-
export const defineComponents = () => {};
|
|
1535
|
-
export const defineLocale = () => {};
|
|
1536
|
-
export const loadFileUploaderFrom = () => {};
|
|
1537
|
-
export const toKebabCase = () => {};
|
|
1538
|
-
export const IS_SSR_STUBS = true;
|