@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.
Files changed (722) hide show
  1. package/dist/ActivityHeader-R6Mlx-dA.js +9 -0
  2. package/dist/ActivityHeader.css +23 -0
  3. package/dist/ActivityHeader.layered.css +24 -0
  4. package/dist/CameraSource-DDwj1jCV.js +511 -0
  5. package/dist/CameraSource-n1tun2Df.js +10 -0
  6. package/dist/CameraSource.css +180 -0
  7. package/dist/CameraSource.layered.css +209 -0
  8. package/dist/CloudImageEditor-DcVoIRb3.js +2163 -0
  9. package/dist/CloudImageEditorActivity-Csij4nlC.js +87 -0
  10. package/dist/CloudImageEditorActivity-DD4NdU0P.js +9 -0
  11. package/dist/CloudImageEditorActivity.css +14 -0
  12. package/dist/CloudImageEditorActivity.layered.css +15 -0
  13. package/dist/Config-DKOromHY.js +433 -0
  14. package/dist/Config.css +4 -0
  15. package/dist/Config.layered.css +5 -0
  16. package/dist/ExternalSource-6MSUgxqy.js +10 -0
  17. package/dist/ExternalSource-DVEjSkPB.js +253 -0
  18. package/dist/ExternalSource.css +98 -0
  19. package/dist/ExternalSource.layered.css +116 -0
  20. package/dist/Icon-tXRTvEF2.js +1810 -0
  21. package/dist/Icon.css +14 -0
  22. package/dist/Icon.layered.css +15 -0
  23. package/dist/LitUploaderBlock-LxeOZ0ya.js +998 -0
  24. package/dist/UrlSource-BkyX00I2.js +73 -0
  25. package/dist/UrlSource-RI8TSD48.js +10 -0
  26. package/dist/UrlSource.css +17 -0
  27. package/dist/UrlSource.layered.css +18 -0
  28. package/dist/abstract/CTX.d.ts +40 -0
  29. package/dist/abstract/TypedCollection.d.ts +47 -0
  30. package/dist/abstract/TypedCollection.test.d.ts +1 -0
  31. package/dist/abstract/TypedData.d.ts +12 -0
  32. package/dist/abstract/TypedData.test.d.ts +1 -0
  33. package/dist/abstract/UploaderPublicApi.d.ts +41 -0
  34. package/dist/abstract/buildOutputCollectionState.d.ts +3 -0
  35. package/dist/abstract/customConfigOptions.d.ts +65 -0
  36. package/dist/abstract/defineComponents.d.ts +1 -0
  37. package/dist/abstract/features/ClipboardLayer.d.ts +12 -0
  38. package/dist/abstract/loadFileUploaderFrom.d.ts +3 -4
  39. package/dist/abstract/loadFileUploaderFrom.js +7 -6
  40. package/dist/abstract/localeRegistry.d.ts +5 -0
  41. package/dist/abstract/managers/LocaleManager.d.ts +10 -0
  42. package/dist/abstract/managers/ModalManager.d.ts +53 -0
  43. package/dist/abstract/managers/SecureUploadsManager.d.ts +7 -0
  44. package/dist/abstract/managers/TelemetryManager.d.ts +41 -0
  45. package/dist/abstract/managers/ValidationManager.d.ts +34 -0
  46. package/dist/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
  47. package/dist/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
  48. package/dist/abstract/managers/a11y.d.ts +9 -0
  49. package/dist/abstract/managers/plugin/PluginManager.d.ts +25 -0
  50. package/dist/abstract/managers/plugin/PluginTypes.d.ts +146 -0
  51. package/dist/abstract/managers/plugin/index.d.ts +2 -0
  52. package/dist/abstract/sharedConfigKey.d.ts +2 -0
  53. package/dist/abstract/uploadEntrySchema.d.ts +34 -0
  54. package/dist/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
  55. package/dist/blocks/CameraSource/CameraSource.d.ts +121 -0
  56. package/dist/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
  57. package/dist/blocks/CameraSource/calcCameraModes.d.ts +5 -0
  58. package/dist/blocks/CameraSource/constants.d.ts +15 -0
  59. package/dist/blocks/CloudImageEditor/index.d.ts +1 -0
  60. package/dist/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
  61. package/dist/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
  62. package/dist/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
  63. package/dist/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
  64. package/dist/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
  65. package/dist/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
  66. package/dist/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
  67. package/dist/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
  68. package/dist/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
  69. package/dist/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
  70. package/dist/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
  71. package/dist/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
  72. package/dist/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
  73. package/dist/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
  74. package/dist/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
  75. package/dist/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
  76. package/dist/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
  77. package/dist/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
  78. package/dist/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
  79. package/dist/blocks/CloudImageEditor/src/index.d.ts +15 -0
  80. package/dist/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
  81. package/dist/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
  82. package/dist/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
  83. package/dist/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
  84. package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
  85. package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
  86. package/dist/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
  87. package/dist/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
  88. package/dist/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
  89. package/dist/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
  90. package/dist/blocks/CloudImageEditor/src/state.d.ts +20 -0
  91. package/dist/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
  92. package/dist/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
  93. package/dist/blocks/CloudImageEditor/src/types.d.ts +60 -0
  94. package/dist/blocks/CloudImageEditor/src/util.d.ts +2 -0
  95. package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
  96. package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
  97. package/dist/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
  98. package/dist/blocks/Config/Config.d.ts +60 -0
  99. package/dist/blocks/Config/assertions.d.ts +5 -0
  100. package/dist/blocks/Config/computed-properties.d.ts +24 -0
  101. package/dist/blocks/Config/computed-properties.test.d.ts +1 -0
  102. package/dist/blocks/Config/initialConfig.d.ts +6 -0
  103. package/dist/blocks/Config/normalizeConfigValue.d.ts +2 -0
  104. package/dist/blocks/Config/validatorsType.d.ts +18 -0
  105. package/dist/blocks/Copyright/Copyright.d.ts +10 -0
  106. package/dist/blocks/DropArea/DropArea.d.ts +47 -0
  107. package/dist/blocks/DropArea/addDropzone.d.ts +17 -0
  108. package/dist/blocks/DropArea/getDropItems.d.ts +12 -0
  109. package/dist/blocks/ExternalSource/ExternalSource.d.ts +45 -0
  110. package/dist/blocks/ExternalSource/MessageBridge.d.ts +11 -0
  111. package/dist/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
  112. package/dist/blocks/ExternalSource/query-string.d.ts +1 -0
  113. package/dist/blocks/ExternalSource/types.d.ts +105 -0
  114. package/dist/blocks/FileItem/FileItem.d.ts +50 -0
  115. package/dist/blocks/FileItem/FileItemConfig.d.ts +10 -0
  116. package/dist/blocks/FormInput/FormInput.d.ts +18 -0
  117. package/dist/blocks/Icon/Icon.d.ts +19 -0
  118. package/dist/blocks/Img/Img.d.ts +14 -0
  119. package/dist/blocks/Img/ImgBase.d.ts +29 -0
  120. package/dist/blocks/Img/ImgConfig.d.ts +28 -0
  121. package/dist/blocks/Img/configurations.d.ts +11 -0
  122. package/dist/blocks/Img/props-map.d.ts +28 -0
  123. package/dist/blocks/Img/utils/parseObjectToString.d.ts +2 -0
  124. package/dist/blocks/Modal/Modal.d.ts +34 -0
  125. package/dist/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
  126. package/dist/blocks/PluginActivityRenderer/index.d.ts +1 -0
  127. package/dist/blocks/ProgressBar/ProgressBar.d.ts +21 -0
  128. package/dist/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
  129. package/dist/blocks/Select/Select.d.ts +18 -0
  130. package/dist/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
  131. package/dist/blocks/SourceBtn/SourceBtn.d.ts +23 -0
  132. package/dist/blocks/SourceList/SourceList.d.ts +24 -0
  133. package/dist/blocks/Spinner/Spinner.d.ts +9 -0
  134. package/dist/blocks/StartFrom/StartFrom.d.ts +12 -0
  135. package/dist/blocks/Thumb/Thumb.d.ts +35 -0
  136. package/dist/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
  137. package/dist/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
  138. package/dist/blocks/UploadList/UploadList.d.ts +39 -0
  139. package/dist/blocks/UrlSource/UrlSource.d.ts +14 -0
  140. package/dist/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
  141. package/dist/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
  142. package/dist/cameraPlugin-weRKO7eG.js +8 -0
  143. package/dist/cloud-image-editor-hhbyNWLG.js +11 -0
  144. package/dist/cloud-image-editor.css +1380 -0
  145. package/dist/cloud-image-editor.layered.css +1549 -0
  146. package/dist/cloudImageEditorPlugin-FjUgbMK3.js +8 -0
  147. package/dist/core.d.ts +42 -0
  148. package/dist/en-8OWEmZim.js +135 -0
  149. package/dist/env-mM-ksNPq.js +8 -0
  150. package/dist/env.d.ts +2 -4
  151. package/dist/env.js +7 -6
  152. package/dist/externalSourcesPlugin-CMBmLT8S.js +8 -0
  153. package/dist/imageShrinkPlugin-BN6loiP2.js +8 -0
  154. package/dist/index-base.css +2497 -0
  155. package/dist/index-base.layered.css +2837 -0
  156. package/dist/index.css +9 -6
  157. package/dist/index.d.ts +42 -2715
  158. package/dist/index.js +1796 -8
  159. package/dist/index.layered.css +9 -7
  160. package/dist/instagramPlugin-CXRm8MGL.js +8 -0
  161. package/dist/lit/BaseComponent.d.ts +12 -0
  162. package/dist/lit/Constructor.d.ts +1 -0
  163. package/dist/lit/CssDataMixin.d.ts +7 -0
  164. package/dist/lit/LightDomMixin.d.ts +8 -0
  165. package/dist/lit/LitActivityBlock.d.ts +53 -0
  166. package/dist/lit/LitBlock.d.ts +83 -0
  167. package/dist/lit/LitSolutionBlock.d.ts +21 -0
  168. package/dist/lit/LitUploaderBlock.d.ts +53 -0
  169. package/dist/lit/PubSubCompat.d.ts +18 -0
  170. package/dist/lit/RegisterableElementMixin.d.ts +7 -0
  171. package/dist/lit/SharedState.d.ts +119 -0
  172. package/dist/lit/SymbioteCompatMixin.d.ts +40 -0
  173. package/dist/lit/TestModeController.d.ts +16 -0
  174. package/dist/lit/Uid.d.ts +3 -0
  175. package/dist/lit/activity-constants.d.ts +11 -0
  176. package/dist/lit/createDebugPrinter.d.ts +3 -0
  177. package/dist/lit/findBlockInCtx.d.ts +3 -0
  178. package/dist/lit/getOutputData.d.ts +2 -0
  179. package/dist/lit/hasBlockInCtx.d.ts +3 -0
  180. package/dist/lit/l10n.d.ts +5 -0
  181. package/dist/lit/parseCssPropertyValue.d.ts +1 -0
  182. package/dist/lit/shared-instances.d.ts +65 -0
  183. package/dist/loadFileUploaderFrom-Bfz8L3VB.js +28 -0
  184. package/dist/locales/file-uploader/ar.d.ts +1 -4
  185. package/dist/locales/file-uploader/ar.js +142 -6
  186. package/dist/locales/file-uploader/az.d.ts +1 -4
  187. package/dist/locales/file-uploader/az.js +134 -6
  188. package/dist/locales/file-uploader/ca.d.ts +1 -4
  189. package/dist/locales/file-uploader/ca.js +136 -6
  190. package/dist/locales/file-uploader/cs.d.ts +1 -4
  191. package/dist/locales/file-uploader/cs.js +138 -6
  192. package/dist/locales/file-uploader/da.d.ts +1 -4
  193. package/dist/locales/file-uploader/da.js +134 -6
  194. package/dist/locales/file-uploader/de.d.ts +1 -4
  195. package/dist/locales/file-uploader/de.js +134 -6
  196. package/dist/locales/file-uploader/el.d.ts +1 -4
  197. package/dist/locales/file-uploader/el.js +134 -6
  198. package/dist/locales/file-uploader/en.d.ts +1 -4
  199. package/dist/locales/file-uploader/en.js +7 -6
  200. package/dist/locales/file-uploader/es.d.ts +1 -4
  201. package/dist/locales/file-uploader/es.js +136 -6
  202. package/dist/locales/file-uploader/et.d.ts +1 -4
  203. package/dist/locales/file-uploader/et.js +134 -6
  204. package/dist/locales/file-uploader/fi.d.ts +1 -4
  205. package/dist/locales/file-uploader/fi.js +134 -6
  206. package/dist/locales/file-uploader/fr.d.ts +1 -4
  207. package/dist/locales/file-uploader/fr.js +136 -6
  208. package/dist/locales/file-uploader/he.d.ts +1 -4
  209. package/dist/locales/file-uploader/he.js +136 -6
  210. package/dist/locales/file-uploader/hy.d.ts +1 -4
  211. package/dist/locales/file-uploader/hy.js +134 -6
  212. package/dist/locales/file-uploader/is.d.ts +1 -4
  213. package/dist/locales/file-uploader/is.js +134 -6
  214. package/dist/locales/file-uploader/it.d.ts +1 -4
  215. package/dist/locales/file-uploader/it.js +136 -6
  216. package/dist/locales/file-uploader/ja.d.ts +1 -4
  217. package/dist/locales/file-uploader/ja.js +134 -6
  218. package/dist/locales/file-uploader/ka.d.ts +1 -4
  219. package/dist/locales/file-uploader/ka.js +134 -6
  220. package/dist/locales/file-uploader/kk.d.ts +1 -4
  221. package/dist/locales/file-uploader/kk.js +134 -6
  222. package/dist/locales/file-uploader/ko.d.ts +1 -4
  223. package/dist/locales/file-uploader/ko.js +134 -6
  224. package/dist/locales/file-uploader/lv.d.ts +1 -4
  225. package/dist/locales/file-uploader/lv.js +136 -6
  226. package/dist/locales/file-uploader/nb.d.ts +1 -4
  227. package/dist/locales/file-uploader/nb.js +134 -6
  228. package/dist/locales/file-uploader/nl.d.ts +1 -4
  229. package/dist/locales/file-uploader/nl.js +134 -6
  230. package/dist/locales/file-uploader/pl.d.ts +1 -4
  231. package/dist/locales/file-uploader/pl.js +138 -6
  232. package/dist/locales/file-uploader/pt.d.ts +1 -4
  233. package/dist/locales/file-uploader/pt.js +136 -6
  234. package/dist/locales/file-uploader/ro.d.ts +1 -4
  235. package/dist/locales/file-uploader/ro.js +136 -6
  236. package/dist/locales/file-uploader/ru.d.ts +1 -4
  237. package/dist/locales/file-uploader/ru.js +138 -6
  238. package/dist/locales/file-uploader/sk.d.ts +1 -4
  239. package/dist/locales/file-uploader/sk.js +138 -6
  240. package/dist/locales/file-uploader/sr.d.ts +1 -4
  241. package/dist/locales/file-uploader/sr.js +136 -6
  242. package/dist/locales/file-uploader/sv.d.ts +1 -4
  243. package/dist/locales/file-uploader/sv.js +134 -6
  244. package/dist/locales/file-uploader/tr.d.ts +1 -4
  245. package/dist/locales/file-uploader/tr.js +134 -6
  246. package/dist/locales/file-uploader/uk.d.ts +1 -4
  247. package/dist/locales/file-uploader/uk.js +138 -6
  248. package/dist/locales/file-uploader/vi.d.ts +1 -4
  249. package/dist/locales/file-uploader/vi.js +134 -6
  250. package/dist/locales/file-uploader/zh-TW.d.ts +1 -4
  251. package/dist/locales/file-uploader/zh-TW.js +134 -6
  252. package/dist/locales/file-uploader/zh.d.ts +1 -4
  253. package/dist/locales/file-uploader/zh.js +134 -6
  254. package/dist/plugins/cameraPlugin.d.ts +2 -0
  255. package/dist/plugins/cloudImageEditorPlugin.d.ts +2 -0
  256. package/dist/plugins/externalSourcesPlugin.d.ts +2 -0
  257. package/dist/plugins/imageShrinkPlugin.d.ts +2 -0
  258. package/dist/plugins/instagramPlugin.d.ts +2 -0
  259. package/dist/plugins/unsplashPlugin.d.ts +16 -0
  260. package/dist/plugins/urlSourcePlugin.d.ts +2 -0
  261. package/dist/plugins-CGUls7EV.js +278 -0
  262. package/dist/solutions/adaptive-image/index.d.ts +2 -0
  263. package/dist/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
  264. package/dist/solutions/cloud-image-editor/index.d.ts +5 -0
  265. package/dist/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
  266. package/dist/solutions/file-uploader/inline/index.d.ts +1 -0
  267. package/dist/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
  268. package/dist/solutions/file-uploader/minimal/index.d.ts +1 -0
  269. package/dist/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
  270. package/dist/solutions/file-uploader/regular/index.d.ts +1 -0
  271. package/dist/types/dom.d.ts +1 -0
  272. package/dist/types/events.d.ts +4 -0
  273. package/dist/types/exported.d.ts +492 -0
  274. package/dist/types/index.d.ts +5 -0
  275. package/dist/urlSourcePlugin-_WdbEhq2.js +8 -0
  276. package/dist/utils/UID.d.ts +5 -0
  277. package/dist/utils/UID.test.d.ts +1 -0
  278. package/dist/utils/UploadSource.d.ts +37 -0
  279. package/dist/utils/WindowHeightTracker.d.ts +9 -0
  280. package/dist/utils/abilities.d.ts +1 -0
  281. package/dist/utils/applyStyles.d.ts +1 -0
  282. package/dist/utils/browser-info.d.ts +12 -0
  283. package/dist/utils/browser-info.test.d.ts +1 -0
  284. package/dist/utils/cdn-utils.d.ts +53 -0
  285. package/dist/utils/cdn-utils.test.d.ts +1 -0
  286. package/dist/utils/comma-separated.d.ts +2 -0
  287. package/dist/utils/debounce.d.ts +3 -0
  288. package/dist/utils/delay.d.ts +1 -0
  289. package/dist/utils/fileTypes.d.ts +11 -0
  290. package/dist/utils/fileTypes.test.d.ts +1 -0
  291. package/dist/utils/get-top-level-origin.d.ts +1 -0
  292. package/dist/utils/get-top-level-origin.test.d.ts +1 -0
  293. package/dist/utils/getLocaleDirection.d.ts +1 -0
  294. package/dist/utils/getPluralForm.d.ts +1 -0
  295. package/dist/utils/getPluralForm.test.d.ts +1 -0
  296. package/dist/utils/isPromiseLike.d.ts +1 -0
  297. package/dist/utils/isPromiseLike.test.d.ts +1 -0
  298. package/dist/utils/isSecureTokenExpired.d.ts +8 -0
  299. package/dist/utils/isSecureTokenExpired.test.d.ts +1 -0
  300. package/dist/utils/memoize.d.ts +1 -0
  301. package/dist/utils/memoize.test.d.ts +1 -0
  302. package/dist/utils/mixinClass.d.ts +8 -0
  303. package/dist/utils/parseCdnUrl.d.ts +11 -0
  304. package/dist/utils/parseCdnUrl.test.d.ts +1 -0
  305. package/dist/utils/parseShrink.d.ts +7 -0
  306. package/dist/utils/parseShrink.test.d.ts +1 -0
  307. package/dist/utils/preloadImage.d.ts +10 -0
  308. package/dist/utils/prettyBytes.d.ts +11 -0
  309. package/dist/utils/prettyBytes.test.d.ts +1 -0
  310. package/dist/utils/resizeImage.d.ts +1 -0
  311. package/dist/utils/stringToArray.d.ts +1 -0
  312. package/dist/utils/stringToArray.test.d.ts +1 -0
  313. package/dist/utils/template-utils.d.ts +16 -0
  314. package/dist/utils/template-utils.test.d.ts +1 -0
  315. package/dist/utils/throttle.d.ts +3 -0
  316. package/dist/utils/toKebabCase.d.ts +2 -0
  317. package/dist/utils/toKebabCase.test.d.ts +1 -0
  318. package/dist/utils/transparentPixelSrc.d.ts +1 -0
  319. package/dist/utils/uniqueArray.d.ts +1 -0
  320. package/dist/utils/uniqueArray.test.d.ts +1 -0
  321. package/dist/utils/userAgent.d.ts +2 -0
  322. package/dist/utils/validators/collection/index.d.ts +2 -0
  323. package/dist/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
  324. package/dist/utils/validators/collection/validateMultiple.d.ts +2 -0
  325. package/dist/utils/validators/file/index.d.ts +4 -0
  326. package/dist/utils/validators/file/validateFileType.d.ts +2 -0
  327. package/dist/utils/validators/file/validateIsImage.d.ts +2 -0
  328. package/dist/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
  329. package/dist/utils/validators/file/validateUploadError.d.ts +2 -0
  330. package/dist/utils/warnOnce.d.ts +1 -0
  331. package/dist/utils/wildcardRegexp.d.ts +1 -0
  332. package/dist/utils/wildcardRegexp.test.d.ts +1 -0
  333. package/dist/utils/withResolvers.d.ts +5 -0
  334. package/dist/utils/withResolvers.test.d.ts +1 -0
  335. package/package.json +8 -2
  336. package/web/ActivityHeader-BFdTdVfD.js +9 -0
  337. package/web/ActivityHeader-DQy6rII1.js +9 -0
  338. package/web/ActivityHeader-DvzMl0uj.js +9 -0
  339. package/web/ActivityHeader-i4x6_Fne.js +9 -0
  340. package/web/CameraSource-BAWIA4Wm.js +508 -0
  341. package/web/CameraSource-BqZCQcij.js +11 -0
  342. package/web/CameraSource-Brxr4tz4.js +508 -0
  343. package/web/CameraSource-BvBJ5Uzy.js +508 -0
  344. package/web/CameraSource-CkHzIE-h.js +11 -0
  345. package/web/CameraSource-D964yPLu.js +508 -0
  346. package/web/CameraSource-DE48Az-f.js +11 -0
  347. package/web/CameraSource-DyPebtRF.js +478 -0
  348. package/web/CameraSource-pj7Xo81m.js +11 -0
  349. package/web/CloudImageEditor-CTgUWB07.js +2192 -0
  350. package/web/CloudImageEditor-CxqV9Lwm.js +2192 -0
  351. package/web/CloudImageEditor-DoLWHpqV.js +2192 -0
  352. package/web/CloudImageEditor-Drywn265.js +2192 -0
  353. package/web/CloudImageEditor-MXcaDtMx.js +2187 -0
  354. package/web/CloudImageEditorActivity-BPzmfaJV.js +85 -0
  355. package/web/CloudImageEditorActivity-Br8pU5gd.js +11 -0
  356. package/web/CloudImageEditorActivity-Cw8b2CEz.js +11 -0
  357. package/web/CloudImageEditorActivity-Df1ySGq0.js +86 -0
  358. package/web/CloudImageEditorActivity-DinG5r0y.js +11 -0
  359. package/web/CloudImageEditorActivity-DmnLLINR.js +85 -0
  360. package/web/CloudImageEditorActivity-U90BGCek.js +85 -0
  361. package/web/CloudImageEditorActivity-dNLQZRZI.js +11 -0
  362. package/web/CloudImageEditorActivity-ur-hQ-6p.js +85 -0
  363. package/web/Config-8hlBNhvs.js +455 -0
  364. package/web/Config-BDZhPIyz.js +455 -0
  365. package/web/Config-CJVNrrjj.js +455 -0
  366. package/web/Config-DvkVtlQ7.js +455 -0
  367. package/web/ExternalSource-B9ycBFiD.js +10 -0
  368. package/web/ExternalSource-BE7HX47E.js +250 -0
  369. package/web/ExternalSource-BL5GSlol.js +250 -0
  370. package/web/ExternalSource-BXQY6Dlc.js +10 -0
  371. package/web/ExternalSource-BXxH3JCD.js +250 -0
  372. package/web/ExternalSource-BYSS-PPV.js +245 -0
  373. package/web/ExternalSource-C57a61QN.js +10 -0
  374. package/web/ExternalSource-CKfMtOgU.js +250 -0
  375. package/web/ExternalSource-DP6q8ylB.js +10 -0
  376. package/web/LitUploaderBlock-AX6jOdAS.js +996 -0
  377. package/web/LitUploaderBlock-BjAaoLl2.js +996 -0
  378. package/web/LitUploaderBlock-D8E5HuwH.js +996 -0
  379. package/web/LitUploaderBlock-Dl3ce0Tc.js +996 -0
  380. package/web/LitUploaderBlock-Oi33U0uf.js +996 -0
  381. package/web/UrlSource-B9SX3K0L.js +10 -0
  382. package/web/UrlSource-C3zB1rCb.js +70 -0
  383. package/web/UrlSource-C7bEU6Xv.js +10 -0
  384. package/web/UrlSource-CE389CBz.js +70 -0
  385. package/web/UrlSource-CnvAJ58Y.js +10 -0
  386. package/web/UrlSource-CqF0h6B-.js +10 -0
  387. package/web/UrlSource-D-971Nut.js +70 -0
  388. package/web/UrlSource-DhI3YCt5.js +70 -0
  389. package/web/UrlSource-hWV7jtB2.js +70 -0
  390. package/web/abstract/CTX.d.ts +40 -0
  391. package/web/abstract/TypedCollection.d.ts +47 -0
  392. package/web/abstract/TypedCollection.test.d.ts +1 -0
  393. package/web/abstract/TypedData.d.ts +12 -0
  394. package/web/abstract/TypedData.test.d.ts +1 -0
  395. package/web/abstract/UploaderPublicApi.d.ts +41 -0
  396. package/web/abstract/buildOutputCollectionState.d.ts +3 -0
  397. package/web/abstract/customConfigOptions.d.ts +65 -0
  398. package/web/abstract/defineComponents.d.ts +1 -0
  399. package/web/abstract/features/ClipboardLayer.d.ts +12 -0
  400. package/web/abstract/loadFileUploaderFrom.d.ts +13 -0
  401. package/web/abstract/localeRegistry.d.ts +5 -0
  402. package/web/abstract/managers/LocaleManager.d.ts +10 -0
  403. package/web/abstract/managers/ModalManager.d.ts +53 -0
  404. package/web/abstract/managers/SecureUploadsManager.d.ts +7 -0
  405. package/web/abstract/managers/TelemetryManager.d.ts +41 -0
  406. package/web/abstract/managers/ValidationManager.d.ts +34 -0
  407. package/web/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
  408. package/web/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
  409. package/web/abstract/managers/a11y.d.ts +9 -0
  410. package/web/abstract/managers/plugin/PluginManager.d.ts +25 -0
  411. package/web/abstract/managers/plugin/PluginTypes.d.ts +146 -0
  412. package/web/abstract/managers/plugin/index.d.ts +2 -0
  413. package/web/abstract/sharedConfigKey.d.ts +2 -0
  414. package/web/abstract/uploadEntrySchema.d.ts +34 -0
  415. package/web/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
  416. package/web/blocks/CameraSource/CameraSource.d.ts +121 -0
  417. package/web/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
  418. package/web/blocks/CameraSource/calcCameraModes.d.ts +5 -0
  419. package/web/blocks/CameraSource/constants.d.ts +15 -0
  420. package/web/blocks/CloudImageEditor/index.d.ts +1 -0
  421. package/web/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
  422. package/web/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
  423. package/web/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
  424. package/web/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
  425. package/web/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
  426. package/web/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
  427. package/web/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
  428. package/web/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
  429. package/web/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
  430. package/web/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
  431. package/web/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
  432. package/web/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
  433. package/web/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
  434. package/web/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
  435. package/web/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
  436. package/web/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
  437. package/web/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
  438. package/web/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
  439. package/web/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
  440. package/web/blocks/CloudImageEditor/src/index.d.ts +15 -0
  441. package/web/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
  442. package/web/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
  443. package/web/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
  444. package/web/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
  445. package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
  446. package/web/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
  447. package/web/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
  448. package/web/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
  449. package/web/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
  450. package/web/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
  451. package/web/blocks/CloudImageEditor/src/state.d.ts +20 -0
  452. package/web/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
  453. package/web/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
  454. package/web/blocks/CloudImageEditor/src/types.d.ts +60 -0
  455. package/web/blocks/CloudImageEditor/src/util.d.ts +2 -0
  456. package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
  457. package/web/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
  458. package/web/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
  459. package/web/blocks/Config/Config.d.ts +60 -0
  460. package/web/blocks/Config/assertions.d.ts +5 -0
  461. package/web/blocks/Config/computed-properties.d.ts +24 -0
  462. package/web/blocks/Config/computed-properties.test.d.ts +1 -0
  463. package/web/blocks/Config/initialConfig.d.ts +6 -0
  464. package/web/blocks/Config/normalizeConfigValue.d.ts +2 -0
  465. package/web/blocks/Config/validatorsType.d.ts +18 -0
  466. package/web/blocks/Copyright/Copyright.d.ts +10 -0
  467. package/web/blocks/DropArea/DropArea.d.ts +47 -0
  468. package/web/blocks/DropArea/addDropzone.d.ts +17 -0
  469. package/web/blocks/DropArea/getDropItems.d.ts +12 -0
  470. package/web/blocks/ExternalSource/ExternalSource.d.ts +45 -0
  471. package/web/blocks/ExternalSource/MessageBridge.d.ts +11 -0
  472. package/web/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
  473. package/web/blocks/ExternalSource/query-string.d.ts +1 -0
  474. package/web/blocks/ExternalSource/types.d.ts +105 -0
  475. package/web/blocks/FileItem/FileItem.d.ts +50 -0
  476. package/web/blocks/FileItem/FileItemConfig.d.ts +10 -0
  477. package/web/blocks/FormInput/FormInput.d.ts +18 -0
  478. package/web/blocks/Icon/Icon.d.ts +19 -0
  479. package/web/blocks/Img/Img.d.ts +14 -0
  480. package/web/blocks/Img/ImgBase.d.ts +29 -0
  481. package/web/blocks/Img/ImgConfig.d.ts +28 -0
  482. package/web/blocks/Img/configurations.d.ts +11 -0
  483. package/web/blocks/Img/props-map.d.ts +28 -0
  484. package/web/blocks/Img/utils/parseObjectToString.d.ts +2 -0
  485. package/web/blocks/Modal/Modal.d.ts +34 -0
  486. package/web/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
  487. package/web/blocks/PluginActivityRenderer/index.d.ts +1 -0
  488. package/web/blocks/ProgressBar/ProgressBar.d.ts +21 -0
  489. package/web/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
  490. package/web/blocks/Select/Select.d.ts +18 -0
  491. package/web/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
  492. package/web/blocks/SourceBtn/SourceBtn.d.ts +23 -0
  493. package/web/blocks/SourceList/SourceList.d.ts +24 -0
  494. package/web/blocks/Spinner/Spinner.d.ts +9 -0
  495. package/web/blocks/StartFrom/StartFrom.d.ts +12 -0
  496. package/web/blocks/Thumb/Thumb.d.ts +35 -0
  497. package/web/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
  498. package/web/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
  499. package/web/blocks/UploadList/UploadList.d.ts +39 -0
  500. package/web/blocks/UrlSource/UrlSource.d.ts +14 -0
  501. package/web/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
  502. package/web/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
  503. package/web/cameraPlugin-DeedXMWV.js +8 -0
  504. package/web/cameraPlugin-Duy1QwjB.js +8 -0
  505. package/web/cameraPlugin-QS9SUOtO.js +8 -0
  506. package/web/cameraPlugin-bq8ggY04.js +8 -0
  507. package/web/cameraPlugin-cel9YgP_.js +8 -0
  508. package/web/cloud-image-editor-8DrVRZ7E.js +12 -0
  509. package/web/cloud-image-editor-BX50EK1U.js +12 -0
  510. package/web/cloud-image-editor-DSW3oWq-.js +12 -0
  511. package/web/cloud-image-editor-DuI2Lx4M.js +12 -0
  512. package/web/cloudImageEditorPlugin-5my6aD36.js +8 -0
  513. package/web/cloudImageEditorPlugin-Bk19DmJv.js +8 -0
  514. package/web/cloudImageEditorPlugin-CcdnmtBW.js +8 -0
  515. package/web/cloudImageEditorPlugin-DQJmDl03.js +8 -0
  516. package/web/cloudImageEditorPlugin-kojghfqw.js +8 -0
  517. package/web/constants-BCfCF0cJ.js +4025 -0
  518. package/web/core.d.ts +42 -0
  519. package/web/env.d.ts +2 -0
  520. package/web/externalSourcesPlugin-BTeRm5C0.js +8 -0
  521. package/web/externalSourcesPlugin-BXgVeojg.js +8 -0
  522. package/web/externalSourcesPlugin-BgLpuIK9.js +8 -0
  523. package/web/externalSourcesPlugin-DMc9zs4T.js +8 -0
  524. package/web/externalSourcesPlugin-Dm9vnTBv.js +8 -0
  525. package/web/file-uploader.iife.min.js +697 -8
  526. package/web/file-uploader.min.js +1858 -7
  527. package/web/imageShrinkPlugin-BdHgEGZH.js +8 -0
  528. package/web/imageShrinkPlugin-BjkMGfvT.js +8 -0
  529. package/web/imageShrinkPlugin-CCkGHL2w.js +8 -0
  530. package/web/imageShrinkPlugin-D4WjaRGo.js +8 -0
  531. package/web/imageShrinkPlugin-DqYGutVx.js +8 -0
  532. package/web/index.d.ts +42 -0
  533. package/web/instagramPlugin-BTMz0K2a.js +8 -0
  534. package/web/instagramPlugin-BbIKgTH7.js +8 -0
  535. package/web/instagramPlugin-CQQhsEJa.js +8 -0
  536. package/web/instagramPlugin-Cm7lWKae.js +8 -0
  537. package/web/instagramPlugin-DcclxM_d.js +8 -0
  538. package/web/lit/BaseComponent.d.ts +12 -0
  539. package/web/lit/Constructor.d.ts +1 -0
  540. package/web/lit/CssDataMixin.d.ts +7 -0
  541. package/web/lit/LightDomMixin.d.ts +8 -0
  542. package/web/lit/LitActivityBlock.d.ts +53 -0
  543. package/web/lit/LitBlock.d.ts +83 -0
  544. package/web/lit/LitSolutionBlock.d.ts +21 -0
  545. package/web/lit/LitUploaderBlock.d.ts +53 -0
  546. package/web/lit/PubSubCompat.d.ts +18 -0
  547. package/web/lit/RegisterableElementMixin.d.ts +7 -0
  548. package/web/lit/SharedState.d.ts +119 -0
  549. package/web/lit/SymbioteCompatMixin.d.ts +40 -0
  550. package/web/lit/TestModeController.d.ts +16 -0
  551. package/web/lit/Uid.d.ts +3 -0
  552. package/web/lit/activity-constants.d.ts +11 -0
  553. package/web/lit/createDebugPrinter.d.ts +3 -0
  554. package/web/lit/findBlockInCtx.d.ts +3 -0
  555. package/web/lit/getOutputData.d.ts +2 -0
  556. package/web/lit/hasBlockInCtx.d.ts +3 -0
  557. package/web/lit/l10n.d.ts +5 -0
  558. package/web/lit/parseCssPropertyValue.d.ts +1 -0
  559. package/web/lit/shared-instances.d.ts +65 -0
  560. package/web/locales/file-uploader/ar.d.ts +137 -0
  561. package/web/locales/file-uploader/az.d.ts +129 -0
  562. package/web/locales/file-uploader/ca.d.ts +131 -0
  563. package/web/locales/file-uploader/cs.d.ts +133 -0
  564. package/web/locales/file-uploader/da.d.ts +129 -0
  565. package/web/locales/file-uploader/de.d.ts +129 -0
  566. package/web/locales/file-uploader/el.d.ts +129 -0
  567. package/web/locales/file-uploader/en.d.ts +129 -0
  568. package/web/locales/file-uploader/es.d.ts +131 -0
  569. package/web/locales/file-uploader/et.d.ts +129 -0
  570. package/web/locales/file-uploader/fi.d.ts +129 -0
  571. package/web/locales/file-uploader/fr.d.ts +131 -0
  572. package/web/locales/file-uploader/he.d.ts +131 -0
  573. package/web/locales/file-uploader/hy.d.ts +129 -0
  574. package/web/locales/file-uploader/is.d.ts +129 -0
  575. package/web/locales/file-uploader/it.d.ts +131 -0
  576. package/web/locales/file-uploader/ja.d.ts +129 -0
  577. package/web/locales/file-uploader/ka.d.ts +129 -0
  578. package/web/locales/file-uploader/kk.d.ts +129 -0
  579. package/web/locales/file-uploader/ko.d.ts +129 -0
  580. package/web/locales/file-uploader/lv.d.ts +131 -0
  581. package/web/locales/file-uploader/nb.d.ts +129 -0
  582. package/web/locales/file-uploader/nl.d.ts +129 -0
  583. package/web/locales/file-uploader/pl.d.ts +133 -0
  584. package/web/locales/file-uploader/pt.d.ts +131 -0
  585. package/web/locales/file-uploader/ro.d.ts +131 -0
  586. package/web/locales/file-uploader/ru.d.ts +133 -0
  587. package/web/locales/file-uploader/sk.d.ts +133 -0
  588. package/web/locales/file-uploader/sr.d.ts +131 -0
  589. package/web/locales/file-uploader/sv.d.ts +129 -0
  590. package/web/locales/file-uploader/tr.d.ts +129 -0
  591. package/web/locales/file-uploader/uk.d.ts +133 -0
  592. package/web/locales/file-uploader/vi.d.ts +129 -0
  593. package/web/locales/file-uploader/zh-TW.d.ts +129 -0
  594. package/web/locales/file-uploader/zh.d.ts +129 -0
  595. package/web/plugins/cameraPlugin.d.ts +2 -0
  596. package/web/plugins/cloudImageEditorPlugin.d.ts +2 -0
  597. package/web/plugins/externalSourcesPlugin.d.ts +2 -0
  598. package/web/plugins/imageShrinkPlugin.d.ts +2 -0
  599. package/web/plugins/instagramPlugin.d.ts +2 -0
  600. package/web/plugins/unsplashPlugin.d.ts +16 -0
  601. package/web/plugins/urlSourcePlugin.d.ts +2 -0
  602. package/web/plugins-Bt7FXHKx.js +562 -0
  603. package/web/plugins-CaaolyMk.js +562 -0
  604. package/web/plugins-Cjgw5oWg.js +562 -0
  605. package/web/plugins-CzNtrVQB.js +562 -0
  606. package/web/plugins-DS0hIs2V.js +563 -0
  607. package/web/ref-BOnG19ns.js +4040 -0
  608. package/web/ref-BejJFG7m.js +4040 -0
  609. package/web/ref-DcRg7zo9.js +4040 -0
  610. package/web/ref-ZWPcLQB9.js +4040 -0
  611. package/web/solutions/adaptive-image/index.d.ts +2 -0
  612. package/web/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
  613. package/web/solutions/cloud-image-editor/index.d.ts +5 -0
  614. package/web/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
  615. package/web/solutions/file-uploader/inline/index.d.ts +1 -0
  616. package/web/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
  617. package/web/solutions/file-uploader/minimal/index.d.ts +1 -0
  618. package/web/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
  619. package/web/solutions/file-uploader/regular/index.d.ts +1 -0
  620. package/web/style-map-BmZdux7T.js +37 -0
  621. package/web/style-map-CZ6fSV6e.js +37 -0
  622. package/web/style-map-Dk7mLCrB.js +37 -0
  623. package/web/style-map-HkHnu9oA.js +37 -0
  624. package/web/style-map-tw1yUEaj.js +37 -0
  625. package/web/types/dom.d.ts +1 -0
  626. package/web/types/events.d.ts +4 -0
  627. package/web/types/exported.d.ts +492 -0
  628. package/web/types/index.d.ts +5 -0
  629. package/web/uc-basic.layered.min.css +6046 -7
  630. package/web/uc-basic.min.css +5487 -6
  631. package/web/uc-cloud-image-editor.layered.min.css +1884 -7
  632. package/web/uc-cloud-image-editor.min.css +1675 -6
  633. package/web/uc-cloud-image-editor.min.js +456 -7
  634. package/web/uc-file-uploader-inline.layered.min.css +4352 -7
  635. package/web/uc-file-uploader-inline.min.css +3836 -6
  636. package/web/uc-file-uploader-inline.min.js +1858 -7
  637. package/web/uc-file-uploader-minimal.layered.min.css +4352 -7
  638. package/web/uc-file-uploader-minimal.min.css +3836 -6
  639. package/web/uc-file-uploader-minimal.min.js +1858 -7
  640. package/web/uc-file-uploader-regular.layered.min.css +4352 -7
  641. package/web/uc-file-uploader-regular.min.css +3836 -6
  642. package/web/uc-file-uploader-regular.min.js +1858 -7
  643. package/web/uc-img.min.js +894 -7
  644. package/web/urlSourcePlugin-9lhcr02f.js +8 -0
  645. package/web/urlSourcePlugin-C-sLGhGb.js +8 -0
  646. package/web/urlSourcePlugin-DNXDpnRD.js +8 -0
  647. package/web/urlSourcePlugin-JnD0cnxb.js +8 -0
  648. package/web/urlSourcePlugin-hcMU2K6T.js +8 -0
  649. package/web/utils/UID.d.ts +5 -0
  650. package/web/utils/UID.test.d.ts +1 -0
  651. package/web/utils/UploadSource.d.ts +37 -0
  652. package/web/utils/WindowHeightTracker.d.ts +9 -0
  653. package/web/utils/abilities.d.ts +1 -0
  654. package/web/utils/applyStyles.d.ts +1 -0
  655. package/web/utils/browser-info.d.ts +12 -0
  656. package/web/utils/browser-info.test.d.ts +1 -0
  657. package/web/utils/cdn-utils.d.ts +53 -0
  658. package/web/utils/cdn-utils.test.d.ts +1 -0
  659. package/web/utils/comma-separated.d.ts +2 -0
  660. package/web/utils/debounce.d.ts +3 -0
  661. package/web/utils/delay.d.ts +1 -0
  662. package/web/utils/fileTypes.d.ts +11 -0
  663. package/web/utils/fileTypes.test.d.ts +1 -0
  664. package/web/utils/get-top-level-origin.d.ts +1 -0
  665. package/web/utils/get-top-level-origin.test.d.ts +1 -0
  666. package/web/utils/getLocaleDirection.d.ts +1 -0
  667. package/web/utils/getPluralForm.d.ts +1 -0
  668. package/web/utils/getPluralForm.test.d.ts +1 -0
  669. package/web/utils/isPromiseLike.d.ts +1 -0
  670. package/web/utils/isPromiseLike.test.d.ts +1 -0
  671. package/web/utils/isSecureTokenExpired.d.ts +8 -0
  672. package/web/utils/isSecureTokenExpired.test.d.ts +1 -0
  673. package/web/utils/memoize.d.ts +1 -0
  674. package/web/utils/memoize.test.d.ts +1 -0
  675. package/web/utils/mixinClass.d.ts +8 -0
  676. package/web/utils/parseCdnUrl.d.ts +11 -0
  677. package/web/utils/parseCdnUrl.test.d.ts +1 -0
  678. package/web/utils/parseShrink.d.ts +7 -0
  679. package/web/utils/parseShrink.test.d.ts +1 -0
  680. package/web/utils/preloadImage.d.ts +10 -0
  681. package/web/utils/prettyBytes.d.ts +11 -0
  682. package/web/utils/prettyBytes.test.d.ts +1 -0
  683. package/web/utils/resizeImage.d.ts +1 -0
  684. package/web/utils/stringToArray.d.ts +1 -0
  685. package/web/utils/stringToArray.test.d.ts +1 -0
  686. package/web/utils/template-utils.d.ts +16 -0
  687. package/web/utils/template-utils.test.d.ts +1 -0
  688. package/web/utils/throttle.d.ts +3 -0
  689. package/web/utils/toKebabCase.d.ts +2 -0
  690. package/web/utils/toKebabCase.test.d.ts +1 -0
  691. package/web/utils/transparentPixelSrc.d.ts +1 -0
  692. package/web/utils/uniqueArray.d.ts +1 -0
  693. package/web/utils/uniqueArray.test.d.ts +1 -0
  694. package/web/utils/userAgent.d.ts +2 -0
  695. package/web/utils/validators/collection/index.d.ts +2 -0
  696. package/web/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
  697. package/web/utils/validators/collection/validateMultiple.d.ts +2 -0
  698. package/web/utils/validators/file/index.d.ts +4 -0
  699. package/web/utils/validators/file/validateFileType.d.ts +2 -0
  700. package/web/utils/validators/file/validateIsImage.d.ts +2 -0
  701. package/web/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
  702. package/web/utils/validators/file/validateUploadError.d.ts +2 -0
  703. package/web/utils/warnOnce.d.ts +1 -0
  704. package/web/utils/wildcardRegexp.d.ts +1 -0
  705. package/web/utils/wildcardRegexp.test.d.ts +1 -0
  706. package/web/utils/withResolvers.d.ts +5 -0
  707. package/web/utils/withResolvers.test.d.ts +1 -0
  708. package/dist/index.ssr.js +0 -1538
  709. package/web/file-uploader.iife.min.d.ts +0 -2859
  710. package/web/file-uploader.iife.min.js.LEGAL.txt +0 -71
  711. package/web/file-uploader.min.d.ts +0 -2859
  712. package/web/file-uploader.min.js.LEGAL.txt +0 -71
  713. package/web/uc-cloud-image-editor.min.d.ts +0 -2816
  714. package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
  715. package/web/uc-file-uploader-inline.min.d.ts +0 -2859
  716. package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
  717. package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
  718. package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
  719. package/web/uc-file-uploader-regular.min.d.ts +0 -2859
  720. package/web/uc-file-uploader-regular.min.js.LEGAL.txt +0 -71
  721. package/web/uc-img.min.d.ts +0 -75
  722. package/web/uc-img.min.js.LEGAL.txt +0 -24
@@ -1,7 +1,137 @@
1
1
  /**
2
- * @license
3
- * Package: @uploadcare/file-uploader@1.27.1 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-16T22:57:30.783Z
6
- */
7
- var e={"locale-id":"ca","social-source-lang":"ca","upload-file":"Pujar fitxer","upload-files":"Pujar fitxers","choose-file":"Tria fitxer","choose-files":"Tria fitxers","drop-files-here":"Deixa caure els fitxers aqu\xED","select-file-source":"Selecciona l'origen del fitxer",selected:"Seleccionat",upload:"Pujar","add-more":"Afegir m\xE9s",cancel:"Cancel\xB7lar","start-from-cancel":"Cancel\xB7lar",clear:"Netejar","camera-shot":"Captura","upload-url":"Importar","upload-url-placeholder":"Enganxa l'enlla\xE7 aqu\xED","edit-image":"Editar imatge","edit-detail":"Detalls",back:"Enrere",done:"Fet",ok:"D'acord","remove-from-list":"Eliminar",no:"No",yes:"S\xED","confirm-your-action":"Confirma l'acci\xF3","are-you-sure":"Est\xE0s segur?","selected-count":"Seleccionat:","select-all":"Seleccionar tot","deselect-all":"Deseleccionar tot","upload-error":"Error de c\xE0rrega","validation-error":"Error de validaci\xF3","no-files":"Cap fitxer seleccionat",browse:"Navegar",file__one:"fitxer","not-uploaded-yet":"Encara no s'ha pujat...",file__other:"fitxers",file__many:"fitxers",error__one:"error",error__other:"errors",error__many:"errors","header-uploading":"S'est\xE0 pujant {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} pujat","header-total":"{{count}} {{plural:file(count)}} seleccionat","src-type-local":"Des de dispositiu","src-type-from-url":"Des d'enlla\xE7","src-type-camera":"C\xE0mera","src-type-draw":"Dibuix","src-type-facebook":"Facebook","src-type-dropbox":"Dropbox","src-type-gdrive":"Google Drive","src-type-ngdrive":"Google Drive","src-type-gphotos":"Google Photos","src-type-flickr":"Flickr","src-type-vk":"VK","src-type-evernote":"Evernote","src-type-box":"Box","src-type-onedrive":"OneDrive","src-type-huddle":"Huddle","src-type-other":"Altres","src-type-mobile-video-camera":"V\xEDdeo","src-type-mobile-photo-camera":"Foto","caption-from-url":"Importar des d'enlla\xE7","caption-camera":"C\xE0mera","caption-draw":"Dibuix","caption-edit-file":"Editar fitxer","file-no-name":"Sense nom...","toggle-fullscreen":"Commuta pantalla completa","toggle-guides":"Commuta guies",rotate:"Rotar","flip-vertical":"Voltejar verticalment","flip-horizontal":"Voltejar horitzontalment",apply:"Aplica",brightness:"Brillantor",contrast:"Contrast",saturation:"Saturaci\xF3",exposure:"Exposici\xF3",gamma:"Gamma",vibrance:"Vibraci\xF3",warmth:"Calidesa",enhance:"Millora",original:"Original",resize:"Redimensionar imatge",crop:"Retallar","select-color":"Selecciona color",text:"Text",draw:"Dibuixar","cancel-edit":"Cancel\xB7lar edici\xF3","tab-view":"Vista pr\xE8via","tab-details":"Detalls","file-name":"Nom","file-size":"Mida","cdn-url":"URL CDN","file-size-unknown":"Desconeguda","camera-permissions-denied":"Acc\xE9s a la c\xE0mera denegat","camera-permissions-prompt":"Si us plau, permet l'acc\xE9s a la c\xE0mera","camera-permissions-request":"Sol\xB7licitar acc\xE9s","files-count-limit-error-title":"L\xEDmit de fitxers superat","files-count-limit-error-too-few":"Has seleccionat {{total}} {{plural:file(total)}}. S'exigeix un m\xEDnim de {{min}} {{plural:file(min)}}.","files-count-limit-error-too-many":"Has seleccionat massa fitxers. El m\xE0xim perm\xE8s \xE9s {{max}} {{plural:file(max)}}.","files-max-size-limit-error":"El fitxer \xE9s massa gran. La mida m\xE0xima de fitxer \xE9s {{maxFileSize}}.","has-validation-errors":"S'ha produ\xEFt un error de validaci\xF3 dels fitxers. Si us plau, revisa els teus fitxers abans de pujar-los.","images-only-accepted":"Nom\xE9s s'accepten fitxers d'imatge.","file-type-not-allowed":"No est\xE0 perm\xE8s pujar fitxers d'aquest tipus.","some-files-were-not-uploaded":"Alguns fitxers no s'han pujat.","file-item-edit-button":"Editar","file-item-remove-button":"Eliminar","a11y-activity-header-button-close":"Tancar","a11y-editor-tab-filters":"Filtres","a11y-editor-tab-tuning":"Ajust","a11y-editor-tab-crop":"Retallar",flip:"Capgirar",mirror:"Mirall","a11y-cloud-editor-apply-filter":"Aplicar el filtre {{name}}","a11y-cloud-editor-apply-crop":"Aplicar l'operaci\xF3 {{name}}","a11y-cloud-editor-apply-tuning":"Aplicar l'ajust {{name}}",finished:"Acabat",failed:"Fallat",uploading:"Carregant",idle:"Inactiu","a11y-file-item-status":"El fitxer {{fileName}} est\xE0 en estat {{status}}","waiting-for":"Esperant per {{source}}","queued-uploading":"En cua per pujar","queued-validation":"En cua per validar",validation:"Validant","a11y-cloud-editor-apply-aspect-ratio":"Aplicar operaci\xF3 {{name}} {{value}}","crop-to-shape":"Retalla a {{value}}",custom:"Forma lliure","freeform-crop":"Retallat lliure"};export{e as default};
2
+ * @license
3
+ * Package: @uploadcare/file-uploader@1.28.0-alpha.1 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T20:26:07.910Z
6
+ */
7
+ var ca_default = {
8
+ "locale-id": "ca",
9
+ "social-source-lang": "ca",
10
+ "upload-file": "Pujar fitxer",
11
+ "upload-files": "Pujar fitxers",
12
+ "choose-file": "Tria fitxer",
13
+ "choose-files": "Tria fitxers",
14
+ "drop-files-here": "Deixa caure els fitxers aquí",
15
+ "select-file-source": "Selecciona l'origen del fitxer",
16
+ selected: "Seleccionat",
17
+ upload: "Pujar",
18
+ "add-more": "Afegir més",
19
+ cancel: "Cancel·lar",
20
+ "start-from-cancel": "Cancel·lar",
21
+ clear: "Netejar",
22
+ "camera-shot": "Captura",
23
+ "upload-url": "Importar",
24
+ "upload-url-placeholder": "Enganxa l'enllaç aquí",
25
+ "edit-image": "Editar imatge",
26
+ "edit-detail": "Detalls",
27
+ back: "Enrere",
28
+ done: "Fet",
29
+ ok: "D'acord",
30
+ "remove-from-list": "Eliminar",
31
+ no: "No",
32
+ yes: "Sí",
33
+ "confirm-your-action": "Confirma l'acció",
34
+ "are-you-sure": "Estàs segur?",
35
+ "selected-count": "Seleccionat:",
36
+ "select-all": "Seleccionar tot",
37
+ "deselect-all": "Deseleccionar tot",
38
+ "upload-error": "Error de càrrega",
39
+ "validation-error": "Error de validació",
40
+ "no-files": "Cap fitxer seleccionat",
41
+ browse: "Navegar",
42
+ file__one: "fitxer",
43
+ "not-uploaded-yet": "Encara no s'ha pujat...",
44
+ file__other: "fitxers",
45
+ file__many: "fitxers",
46
+ error__one: "error",
47
+ error__other: "errors",
48
+ error__many: "errors",
49
+ "header-uploading": "S'està pujant {{count}} {{plural:file(count)}}",
50
+ "header-failed": "{{count}} {{plural:error(count)}}",
51
+ "header-succeed": "{{count}} {{plural:file(count)}} pujat",
52
+ "header-total": "{{count}} {{plural:file(count)}} seleccionat",
53
+ "src-type-local": "Des de dispositiu",
54
+ "src-type-from-url": "Des d'enllaç",
55
+ "src-type-camera": "Càmera",
56
+ "src-type-facebook": "Facebook",
57
+ "src-type-dropbox": "Dropbox",
58
+ "src-type-gdrive": "Google Drive",
59
+ "src-type-ngdrive": "Google Drive",
60
+ "src-type-gphotos": "Google Photos",
61
+ "src-type-flickr": "Flickr",
62
+ "src-type-vk": "VK",
63
+ "src-type-evernote": "Evernote",
64
+ "src-type-box": "Box",
65
+ "src-type-onedrive": "OneDrive",
66
+ "src-type-huddle": "Huddle",
67
+ "src-type-other": "Altres",
68
+ "src-type-mobile-video-camera": "Vídeo",
69
+ "src-type-mobile-photo-camera": "Foto",
70
+ "caption-from-url": "Importar des d'enllaç",
71
+ "caption-camera": "Càmera",
72
+ "caption-edit-file": "Editar fitxer",
73
+ "file-no-name": "Sense nom...",
74
+ "toggle-fullscreen": "Commuta pantalla completa",
75
+ "toggle-guides": "Commuta guies",
76
+ rotate: "Rotar",
77
+ "flip-vertical": "Voltejar verticalment",
78
+ "flip-horizontal": "Voltejar horitzontalment",
79
+ apply: "Aplica",
80
+ brightness: "Brillantor",
81
+ contrast: "Contrast",
82
+ saturation: "Saturació",
83
+ exposure: "Exposició",
84
+ gamma: "Gamma",
85
+ vibrance: "Vibració",
86
+ warmth: "Calidesa",
87
+ enhance: "Millora",
88
+ original: "Original",
89
+ resize: "Redimensionar imatge",
90
+ crop: "Retallar",
91
+ "select-color": "Selecciona color",
92
+ text: "Text",
93
+ draw: "Dibuixar",
94
+ "cancel-edit": "Cancel·lar edició",
95
+ "tab-view": "Vista prèvia",
96
+ "tab-details": "Detalls",
97
+ "file-name": "Nom",
98
+ "file-size": "Mida",
99
+ "cdn-url": "URL CDN",
100
+ "file-size-unknown": "Desconeguda",
101
+ "camera-permissions-denied": "Accés a la càmera denegat",
102
+ "camera-permissions-prompt": "Si us plau, permet l'accés a la càmera",
103
+ "camera-permissions-request": "Sol·licitar accés",
104
+ "files-count-limit-error-title": "Límit de fitxers superat",
105
+ "files-count-limit-error-too-few": "Has seleccionat {{total}} {{plural:file(total)}}. S'exigeix un mínim de {{min}} {{plural:file(min)}}.",
106
+ "files-count-limit-error-too-many": "Has seleccionat massa fitxers. El màxim permès és {{max}} {{plural:file(max)}}.",
107
+ "files-max-size-limit-error": "El fitxer és massa gran. La mida màxima de fitxer és {{maxFileSize}}.",
108
+ "has-validation-errors": "S'ha produït un error de validació dels fitxers. Si us plau, revisa els teus fitxers abans de pujar-los.",
109
+ "images-only-accepted": "Només s'accepten fitxers d'imatge.",
110
+ "file-type-not-allowed": "No està permès pujar fitxers d'aquest tipus.",
111
+ "some-files-were-not-uploaded": "Alguns fitxers no s'han pujat.",
112
+ "file-item-edit-button": "Editar",
113
+ "file-item-remove-button": "Eliminar",
114
+ "a11y-activity-header-button-close": "Tancar",
115
+ "a11y-editor-tab-filters": "Filtres",
116
+ "a11y-editor-tab-tuning": "Ajust",
117
+ "a11y-editor-tab-crop": "Retallar",
118
+ flip: "Capgirar",
119
+ mirror: "Mirall",
120
+ "a11y-cloud-editor-apply-filter": "Aplicar el filtre {{name}}",
121
+ "a11y-cloud-editor-apply-crop": "Aplicar l'operació {{name}}",
122
+ "a11y-cloud-editor-apply-tuning": "Aplicar l'ajust {{name}}",
123
+ finished: "Acabat",
124
+ failed: "Fallat",
125
+ uploading: "Carregant",
126
+ idle: "Inactiu",
127
+ "a11y-file-item-status": "El fitxer {{fileName}} està en estat {{status}}",
128
+ "waiting-for": "Esperant per {{source}}",
129
+ "queued-uploading": "En cua per pujar",
130
+ "queued-validation": "En cua per validar",
131
+ validation: "Validant",
132
+ "a11y-cloud-editor-apply-aspect-ratio": "Aplicar operació {{name}} {{value}}",
133
+ "crop-to-shape": "Retalla a {{value}}",
134
+ custom: "Forma lliure",
135
+ "freeform-crop": "Retallat lliure"
136
+ };
137
+ export { ca_default as default };
@@ -49,7 +49,6 @@ declare const _default: {
49
49
  'src-type-local': string;
50
50
  'src-type-from-url': string;
51
51
  'src-type-camera': string;
52
- 'src-type-draw': string;
53
52
  'src-type-facebook': string;
54
53
  'src-type-dropbox': string;
55
54
  'src-type-gdrive': string;
@@ -66,7 +65,6 @@ declare const _default: {
66
65
  'src-type-mobile-photo-camera': string;
67
66
  'caption-from-url': string;
68
67
  'caption-camera': string;
69
- 'caption-draw': string;
70
68
  'caption-edit-file': string;
71
69
  'file-no-name': string;
72
70
  'toggle-fullscreen': string;
@@ -132,5 +130,4 @@ declare const _default: {
132
130
  custom: string;
133
131
  'freeform-crop': string;
134
132
  };
135
-
136
- export { _default as default };
133
+ export default _default;
@@ -1,7 +1,139 @@
1
1
  /**
2
- * @license
3
- * Package: @uploadcare/file-uploader@1.27.1 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-16T22:57:30.783Z
6
- */
7
- var e={"locale-id":"cs","social-source-lang":"cs","upload-file":"Nahr\xE1t soubor","upload-files":"Nahr\xE1t soubory","choose-file":"Vybrat soubor","choose-files":"Vybrat soubory","drop-files-here":"P\u0159et\xE1hn\u011Bte soubory sem","select-file-source":"Vyberte zdroj souboru",selected:"Vybr\xE1no",upload:"Nahr\xE1t","add-more":"P\u0159idat dal\u0161\xED",cancel:"Zru\u0161it","start-from-cancel":"Zru\u0161it",clear:"Vy\u010Distit","camera-shot":"Sn\xEDmek","upload-url":"Importovat","upload-url-placeholder":"Vlo\u017Ete odkaz zde","edit-image":"Upravit obr\xE1zek","edit-detail":"Detaily",back:"Zp\u011Bt",done:"Hotovo",ok:"Ok","remove-from-list":"Odebrat",no:"Ne",yes:"Ano","confirm-your-action":"Potvrdit akci","are-you-sure":"Jste si jist\xED?","selected-count":"Vybr\xE1no:","select-all":"Vybrat v\u0161e","deselect-all":"Zru\u0161it v\xFDb\u011Br v\u0161eho","upload-error":"Chyba nahr\xE1v\xE1n\xED","validation-error":"Chyba validace","no-files":"Nebyly vybr\xE1ny \u017E\xE1dn\xE9 soubory",browse:"Proch\xE1zet","not-uploaded-yet":"Je\u0161t\u011B nebylo nahr\xE1no...",file__one:"soubor",file__few:"soubory",file__many:"soubor\u016F",file__other:"soubor\u016F",error__one:"chyba",error__few:"chyby",error__many:"chyby",error__other:"chyb","header-uploading":"Nahr\xE1v\xE1 se {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} nahr\xE1no","header-total":"{{count}} {{plural:file(count)}} vybr\xE1no","src-type-local":"Za\u0159\xEDzen\xED","src-type-from-url":"Z odkazu","src-type-camera":"Kamera","src-type-draw":"Kreslit","src-type-facebook":"Facebook","src-type-dropbox":"Dropbox","src-type-gdrive":"Google Drive","src-type-ngdrive":"Google Drive","src-type-gphotos":"Google Photos","src-type-flickr":"Flickr","src-type-vk":"VK","src-type-evernote":"Evernote","src-type-box":"Box","src-type-onedrive":"OneDrive","src-type-huddle":"Huddle","src-type-other":"Jin\xE9","src-type-mobile-video-camera":"Video","src-type-mobile-photo-camera":"Foto","caption-from-url":"Importovat z odkazu","caption-camera":"Kamera","caption-draw":"Kreslit","caption-edit-file":"Upravit soubor","file-no-name":"Bez n\xE1zvu...","toggle-fullscreen":"P\u0159epnout celou obrazovku","toggle-guides":"P\u0159epnout pr\u016Fvodce",rotate:"Oto\u010Dit","flip-vertical":"P\u0159evr\xE1tit vertik\xE1ln\u011B","flip-horizontal":"P\u0159evr\xE1tit horizont\xE1ln\u011B",apply:"Pou\u017E\xEDt",brightness:"Jas",contrast:"Kontrast",saturation:"Sytost",exposure:"Expozice",gamma:"Gama",vibrance:"Vibrance",warmth:"Teplo",enhance:"Vylep\u0161it",original:"Origin\xE1l",resize:"Zm\u011Bnit velikost",crop:"O\u0159\xEDznout","select-color":"Vybrat barvu",text:"Text",draw:"Kreslit","cancel-edit":"Zru\u0161it \xFApravy","tab-view":"N\xE1hled","tab-details":"Detaily","file-name":"N\xE1zev","file-size":"Velikost","cdn-url":"CDN URL","file-size-unknown":"Nezn\xE1m\xE1","camera-permissions-denied":"P\u0159\xEDstup ke kame\u0159e byl zam\xEDtnut","camera-permissions-prompt":"Pros\xEDm, povolte p\u0159\xEDstup ke kame\u0159e","camera-permissions-request":"Po\u017E\xE1dat o p\u0159\xEDstup","files-count-limit-error-title":"P\u0159ekro\u010Den limit po\u010Dtu soubor\u016F","files-count-limit-error-too-few":"Vybrali jste {{total}} {{plural:file(total)}}. Minim\xE1ln\u011B je vy\u017Eadov\xE1no {{min}} {{plural:file(min)}}.","files-count-limit-error-too-many":"Vybrali jste p\u0159\xEDli\u0161 mnoho soubor\u016F. Maxim\xE1ln\u011B je mo\u017En\xE9 {{max}} {{plural:file(max)}}.","files-max-size-limit-error":"Soubor je p\u0159\xEDli\u0161 velk\xFD. Maxim\xE1ln\xED velikost souboru je {{maxFileSize}}.","has-validation-errors":"P\u0159i validaci soubor\u016F do\u0161lo k chyb\xE1m. Pros\xEDm, p\u0159ekontrolujte sv\xE9 soubory p\u0159ed nahr\xE1n\xEDm.","images-only-accepted":"P\u0159ij\xEDm\xE1ny jsou pouze obr\xE1zkov\xE9 soubory.","file-type-not-allowed":"Nahr\xE1v\xE1n\xED t\u011Bchto typ\u016F soubor\u016F nen\xED povoleno.","some-files-were-not-uploaded":"N\u011Bkter\xE9 soubory nebyly nahr\xE1ny.","file-item-edit-button":"Upravit","file-item-remove-button":"Odstranit","a11y-activity-header-button-close":"Zav\u0159\xEDt","a11y-editor-tab-filters":"Filtry","a11y-editor-tab-tuning":"Lad\u011Bn\xED","a11y-editor-tab-crop":"O\u0159\xEDznut\xED",flip:"P\u0159evr\xE1tit",mirror:"Zrcadlit","a11y-cloud-editor-apply-filter":"Pou\u017E\xEDt filtr {{name}}","a11y-cloud-editor-apply-crop":"Pou\u017E\xEDt operaci {{name}}","a11y-cloud-editor-apply-tuning":"Pou\u017E\xEDt lad\u011Bn\xED {{name}}",finished:"Dokon\u010Deno",failed:"Selhalo",uploading:"Nahr\xE1v\xE1 se",idle:"Ne\u010Dinn\xFD","a11y-file-item-status":"Soubor {{fileName}} je ve stavu {{status}}","waiting-for":"\u010Cek\xE1n\xED na {{source}}","queued-uploading":"Ve front\u011B na nahr\xE1n\xED","queued-validation":"Ve front\u011B na validaci",validation:"Prob\xEDh\xE1 validace","a11y-cloud-editor-apply-aspect-ratio":"Pou\u017E\xEDt operaci {{name}} {{value}}","crop-to-shape":"O\u0159\xEDznout na {{value}}",custom:"Voln\xE1 forma","freeform-crop":"Voln\xE9 o\u0159ez\xE1n\xED"};export{e as default};
2
+ * @license
3
+ * Package: @uploadcare/file-uploader@1.28.0-alpha.1 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T20:26:07.910Z
6
+ */
7
+ var cs_default = {
8
+ "locale-id": "cs",
9
+ "social-source-lang": "cs",
10
+ "upload-file": "Nahrát soubor",
11
+ "upload-files": "Nahrát soubory",
12
+ "choose-file": "Vybrat soubor",
13
+ "choose-files": "Vybrat soubory",
14
+ "drop-files-here": "Přetáhněte soubory sem",
15
+ "select-file-source": "Vyberte zdroj souboru",
16
+ selected: "Vybráno",
17
+ upload: "Nahrát",
18
+ "add-more": "Přidat další",
19
+ cancel: "Zrušit",
20
+ "start-from-cancel": "Zrušit",
21
+ clear: "Vyčistit",
22
+ "camera-shot": "Snímek",
23
+ "upload-url": "Importovat",
24
+ "upload-url-placeholder": "Vložte odkaz zde",
25
+ "edit-image": "Upravit obrázek",
26
+ "edit-detail": "Detaily",
27
+ back: "Zpět",
28
+ done: "Hotovo",
29
+ ok: "Ok",
30
+ "remove-from-list": "Odebrat",
31
+ no: "Ne",
32
+ yes: "Ano",
33
+ "confirm-your-action": "Potvrdit akci",
34
+ "are-you-sure": "Jste si jistí?",
35
+ "selected-count": "Vybráno:",
36
+ "select-all": "Vybrat vše",
37
+ "deselect-all": "Zrušit výběr všeho",
38
+ "upload-error": "Chyba nahrávání",
39
+ "validation-error": "Chyba validace",
40
+ "no-files": "Nebyly vybrány žádné soubory",
41
+ browse: "Procházet",
42
+ "not-uploaded-yet": "Ještě nebylo nahráno...",
43
+ file__one: "soubor",
44
+ file__few: "soubory",
45
+ file__many: "souborů",
46
+ file__other: "souborů",
47
+ error__one: "chyba",
48
+ error__few: "chyby",
49
+ error__many: "chyby",
50
+ error__other: "chyb",
51
+ "header-uploading": "Nahrává se {{count}} {{plural:file(count)}}",
52
+ "header-failed": "{{count}} {{plural:error(count)}}",
53
+ "header-succeed": "{{count}} {{plural:file(count)}} nahráno",
54
+ "header-total": "{{count}} {{plural:file(count)}} vybráno",
55
+ "src-type-local": "Zařízení",
56
+ "src-type-from-url": "Z odkazu",
57
+ "src-type-camera": "Kamera",
58
+ "src-type-facebook": "Facebook",
59
+ "src-type-dropbox": "Dropbox",
60
+ "src-type-gdrive": "Google Drive",
61
+ "src-type-ngdrive": "Google Drive",
62
+ "src-type-gphotos": "Google Photos",
63
+ "src-type-flickr": "Flickr",
64
+ "src-type-vk": "VK",
65
+ "src-type-evernote": "Evernote",
66
+ "src-type-box": "Box",
67
+ "src-type-onedrive": "OneDrive",
68
+ "src-type-huddle": "Huddle",
69
+ "src-type-other": "Jiné",
70
+ "src-type-mobile-video-camera": "Video",
71
+ "src-type-mobile-photo-camera": "Foto",
72
+ "caption-from-url": "Importovat z odkazu",
73
+ "caption-camera": "Kamera",
74
+ "caption-edit-file": "Upravit soubor",
75
+ "file-no-name": "Bez názvu...",
76
+ "toggle-fullscreen": "Přepnout celou obrazovku",
77
+ "toggle-guides": "Přepnout průvodce",
78
+ rotate: "Otočit",
79
+ "flip-vertical": "Převrátit vertikálně",
80
+ "flip-horizontal": "Převrátit horizontálně",
81
+ apply: "Použít",
82
+ brightness: "Jas",
83
+ contrast: "Kontrast",
84
+ saturation: "Sytost",
85
+ exposure: "Expozice",
86
+ gamma: "Gama",
87
+ vibrance: "Vibrance",
88
+ warmth: "Teplo",
89
+ enhance: "Vylepšit",
90
+ original: "Originál",
91
+ resize: "Změnit velikost",
92
+ crop: "Oříznout",
93
+ "select-color": "Vybrat barvu",
94
+ text: "Text",
95
+ draw: "Kreslit",
96
+ "cancel-edit": "Zrušit úpravy",
97
+ "tab-view": "Náhled",
98
+ "tab-details": "Detaily",
99
+ "file-name": "Název",
100
+ "file-size": "Velikost",
101
+ "cdn-url": "CDN URL",
102
+ "file-size-unknown": "Neznámá",
103
+ "camera-permissions-denied": "Přístup ke kameře byl zamítnut",
104
+ "camera-permissions-prompt": "Prosím, povolte přístup ke kameře",
105
+ "camera-permissions-request": "Požádat o přístup",
106
+ "files-count-limit-error-title": "Překročen limit počtu souborů",
107
+ "files-count-limit-error-too-few": "Vybrali jste {{total}} {{plural:file(total)}}. Minimálně je vyžadováno {{min}} {{plural:file(min)}}.",
108
+ "files-count-limit-error-too-many": "Vybrali jste příliš mnoho souborů. Maximálně je možné {{max}} {{plural:file(max)}}.",
109
+ "files-max-size-limit-error": "Soubor je příliš velký. Maximální velikost souboru je {{maxFileSize}}.",
110
+ "has-validation-errors": "Při validaci souborů došlo k chybám. Prosím, překontrolujte své soubory před nahráním.",
111
+ "images-only-accepted": "Přijímány jsou pouze obrázkové soubory.",
112
+ "file-type-not-allowed": "Nahrávání těchto typů souborů není povoleno.",
113
+ "some-files-were-not-uploaded": "Některé soubory nebyly nahrány.",
114
+ "file-item-edit-button": "Upravit",
115
+ "file-item-remove-button": "Odstranit",
116
+ "a11y-activity-header-button-close": "Zavřít",
117
+ "a11y-editor-tab-filters": "Filtry",
118
+ "a11y-editor-tab-tuning": "Ladění",
119
+ "a11y-editor-tab-crop": "Oříznutí",
120
+ flip: "Převrátit",
121
+ mirror: "Zrcadlit",
122
+ "a11y-cloud-editor-apply-filter": "Použít filtr {{name}}",
123
+ "a11y-cloud-editor-apply-crop": "Použít operaci {{name}}",
124
+ "a11y-cloud-editor-apply-tuning": "Použít ladění {{name}}",
125
+ finished: "Dokončeno",
126
+ failed: "Selhalo",
127
+ uploading: "Nahrává se",
128
+ idle: "Nečinný",
129
+ "a11y-file-item-status": "Soubor {{fileName}} je ve stavu {{status}}",
130
+ "waiting-for": "Čekání na {{source}}",
131
+ "queued-uploading": "Ve frontě na nahrání",
132
+ "queued-validation": "Ve frontě na validaci",
133
+ validation: "Probíhá validace",
134
+ "a11y-cloud-editor-apply-aspect-ratio": "Použít operaci {{name}} {{value}}",
135
+ "crop-to-shape": "Oříznout na {{value}}",
136
+ custom: "Volná forma",
137
+ "freeform-crop": "Volné ořezání"
138
+ };
139
+ export { cs_default as default };
@@ -45,7 +45,6 @@ declare const _default: {
45
45
  'src-type-local': string;
46
46
  'src-type-from-url': string;
47
47
  'src-type-camera': string;
48
- 'src-type-draw': string;
49
48
  'src-type-facebook': string;
50
49
  'src-type-dropbox': string;
51
50
  'src-type-gdrive': string;
@@ -62,7 +61,6 @@ declare const _default: {
62
61
  'src-type-mobile-photo-camera': string;
63
62
  'caption-from-url': string;
64
63
  'caption-camera': string;
65
- 'caption-draw': string;
66
64
  'caption-edit-file': string;
67
65
  'file-no-name': string;
68
66
  'toggle-fullscreen': string;
@@ -128,5 +126,4 @@ declare const _default: {
128
126
  custom: string;
129
127
  'freeform-crop': string;
130
128
  };
131
-
132
- export { _default as default };
129
+ export default _default;
@@ -1,7 +1,135 @@
1
1
  /**
2
- * @license
3
- * Package: @uploadcare/file-uploader@1.27.1 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-16T22:57:30.783Z
6
- */
7
- var e={"locale-id":"da","social-source-lang":"da","upload-file":"Upload fil","upload-files":"Upload filer","choose-file":"V\xE6lg fil","choose-files":"V\xE6lg filer","drop-files-here":"Slip filer her","select-file-source":"V\xE6lg filkilde",selected:"Valgt",upload:"Upload","add-more":"Tilf\xF8j flere",cancel:"Annuller","start-from-cancel":"Annuller",clear:"Ryd","camera-shot":"Tag billede","upload-url":"Importer","upload-url-placeholder":"Inds\xE6t link her","edit-image":"Rediger billede","edit-detail":"Detaljer",back:"Tilbage",done:"F\xE6rdig",ok:"Ok","remove-from-list":"Fjern",no:"Nej",yes:"Ja","confirm-your-action":"Bekr\xE6ft din handling","are-you-sure":"Er du sikker?","selected-count":"Valgt:","select-all":"V\xE6lg alle","deselect-all":"Frav\xE6lg alle","upload-error":"Fejl ved upload","validation-error":"Valideringsfejl","no-files":"Ingen filer valgt",browse:"Gennemse","not-uploaded-yet":"Ikke uploadet endnu...",file__one:"fil",file__other:"filer",error__one:"fejl",error__other:"fejl","header-uploading":"Uploader {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} uploadet","header-total":"{{count}} {{plural:file(count)}} valgt","src-type-local":"Fra enhed","src-type-from-url":"Fra link","src-type-camera":"Kamera","src-type-draw":"Tegn","src-type-facebook":"Facebook","src-type-dropbox":"Dropbox","src-type-gdrive":"Google Drive","src-type-ngdrive":"Google Drive","src-type-gphotos":"Google Photos","src-type-flickr":"Flickr","src-type-vk":"VK","src-type-evernote":"Evernote","src-type-box":"Box","src-type-onedrive":"OneDrive","src-type-huddle":"Huddle","src-type-other":"Andet","src-type-mobile-video-camera":"Video","src-type-mobile-photo-camera":"Foto","caption-from-url":"Importer fra link","caption-camera":"Kamera","caption-draw":"Tegn","caption-edit-file":"Rediger fil","file-no-name":"Intet navn...","toggle-fullscreen":"Fuldsk\xE6rm til/fra","toggle-guides":"Guides til/fra",rotate:"Roter","flip-vertical":"Vend lodret","flip-horizontal":"Vend vandret",apply:"Anvend",brightness:"Lysstyrke",contrast:"Kontrast",saturation:"M\xE6tning",exposure:"Eksponering",gamma:"Gamma",vibrance:"Levende farver",warmth:"Varme",enhance:"Forbedre",original:"Original",resize:"\xC6ndre st\xF8rrelse",crop:"Besk\xE6r","select-color":"V\xE6lg farve",text:"Tekst",draw:"Tegn","cancel-edit":"Annuller redigering","tab-view":"Forh\xE5ndsvisning","tab-details":"Detaljer","file-name":"Navn","file-size":"St\xF8rrelse","cdn-url":"CDN URL","file-size-unknown":"Ukendt","camera-permissions-denied":"Kameraadgang n\xE6gtet","camera-permissions-prompt":"Tillad venligst adgang til kameraet","camera-permissions-request":"Anmod om adgang","files-count-limit-error-title":"Filantal gr\xE6nse overskredet","files-count-limit-error-too-few":"Du har valgt {{total}} {{plural:file(total)}}. Mindst {{min}} {{plural:file(min)}} er p\xE5kr\xE6vet.","files-count-limit-error-too-many":"Du har valgt for mange filer. Maksimalt {{max}} {{plural:file(max)}} er tilladt.","files-max-size-limit-error":"Filen er for stor. Maksimal filst\xF8rrelse er {{maxFileSize}}.","has-validation-errors":"Der opstod en valideringsfejl p\xE5 filen. Tjek venligst dine filer f\xF8r upload.","images-only-accepted":"Kun billedfiler accepteres.","file-type-not-allowed":"Upload af denne filtype er ikke tilladt.","some-files-were-not-uploaded":"Nogle filer blev ikke uploadet.","file-item-edit-button":"Rediger","file-item-remove-button":"Fjern","a11y-activity-header-button-close":"Luk","a11y-editor-tab-filters":"Filtre","a11y-editor-tab-tuning":"Justering","a11y-editor-tab-crop":"Besk\xE6r",flip:"Vend",mirror:"Spejl","a11y-cloud-editor-apply-filter":"Anvend {{name}} filter","a11y-cloud-editor-apply-crop":"Anvend {{name}} handling","a11y-cloud-editor-apply-tuning":"Anvend {{name}} justering",finished:"Afsluttet",failed:"Mislykkedes",uploading:"Uploader",idle:"Inaktiv","a11y-file-item-status":"Filen {{fileName}} er i status {{status}}","waiting-for":"Venter p\xE5 {{source}}","queued-uploading":"I k\xF8 til upload","queued-validation":"I k\xF8 til validering",validation:"Validerer","a11y-cloud-editor-apply-aspect-ratio":"Anvend handling {{name}} {{value}}","crop-to-shape":"Besk\xE6r til {{value}}",custom:"Fri form","freeform-crop":"Fri besk\xE6ring"};export{e as default};
2
+ * @license
3
+ * Package: @uploadcare/file-uploader@1.28.0-alpha.1 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T20:26:07.910Z
6
+ */
7
+ var da_default = {
8
+ "locale-id": "da",
9
+ "social-source-lang": "da",
10
+ "upload-file": "Upload fil",
11
+ "upload-files": "Upload filer",
12
+ "choose-file": "Vælg fil",
13
+ "choose-files": "Vælg filer",
14
+ "drop-files-here": "Slip filer her",
15
+ "select-file-source": "Vælg filkilde",
16
+ selected: "Valgt",
17
+ upload: "Upload",
18
+ "add-more": "Tilføj flere",
19
+ cancel: "Annuller",
20
+ "start-from-cancel": "Annuller",
21
+ clear: "Ryd",
22
+ "camera-shot": "Tag billede",
23
+ "upload-url": "Importer",
24
+ "upload-url-placeholder": "Indsæt link her",
25
+ "edit-image": "Rediger billede",
26
+ "edit-detail": "Detaljer",
27
+ back: "Tilbage",
28
+ done: "Færdig",
29
+ ok: "Ok",
30
+ "remove-from-list": "Fjern",
31
+ no: "Nej",
32
+ yes: "Ja",
33
+ "confirm-your-action": "Bekræft din handling",
34
+ "are-you-sure": "Er du sikker?",
35
+ "selected-count": "Valgt:",
36
+ "select-all": "Vælg alle",
37
+ "deselect-all": "Fravælg alle",
38
+ "upload-error": "Fejl ved upload",
39
+ "validation-error": "Valideringsfejl",
40
+ "no-files": "Ingen filer valgt",
41
+ browse: "Gennemse",
42
+ "not-uploaded-yet": "Ikke uploadet endnu...",
43
+ file__one: "fil",
44
+ file__other: "filer",
45
+ error__one: "fejl",
46
+ error__other: "fejl",
47
+ "header-uploading": "Uploader {{count}} {{plural:file(count)}}",
48
+ "header-failed": "{{count}} {{plural:error(count)}}",
49
+ "header-succeed": "{{count}} {{plural:file(count)}} uploadet",
50
+ "header-total": "{{count}} {{plural:file(count)}} valgt",
51
+ "src-type-local": "Fra enhed",
52
+ "src-type-from-url": "Fra link",
53
+ "src-type-camera": "Kamera",
54
+ "src-type-facebook": "Facebook",
55
+ "src-type-dropbox": "Dropbox",
56
+ "src-type-gdrive": "Google Drive",
57
+ "src-type-ngdrive": "Google Drive",
58
+ "src-type-gphotos": "Google Photos",
59
+ "src-type-flickr": "Flickr",
60
+ "src-type-vk": "VK",
61
+ "src-type-evernote": "Evernote",
62
+ "src-type-box": "Box",
63
+ "src-type-onedrive": "OneDrive",
64
+ "src-type-huddle": "Huddle",
65
+ "src-type-other": "Andet",
66
+ "src-type-mobile-video-camera": "Video",
67
+ "src-type-mobile-photo-camera": "Foto",
68
+ "caption-from-url": "Importer fra link",
69
+ "caption-camera": "Kamera",
70
+ "caption-edit-file": "Rediger fil",
71
+ "file-no-name": "Intet navn...",
72
+ "toggle-fullscreen": "Fuldskærm til/fra",
73
+ "toggle-guides": "Guides til/fra",
74
+ rotate: "Roter",
75
+ "flip-vertical": "Vend lodret",
76
+ "flip-horizontal": "Vend vandret",
77
+ apply: "Anvend",
78
+ brightness: "Lysstyrke",
79
+ contrast: "Kontrast",
80
+ saturation: "Mætning",
81
+ exposure: "Eksponering",
82
+ gamma: "Gamma",
83
+ vibrance: "Levende farver",
84
+ warmth: "Varme",
85
+ enhance: "Forbedre",
86
+ original: "Original",
87
+ resize: "Ændre størrelse",
88
+ crop: "Beskær",
89
+ "select-color": "Vælg farve",
90
+ text: "Tekst",
91
+ draw: "Tegn",
92
+ "cancel-edit": "Annuller redigering",
93
+ "tab-view": "Forhåndsvisning",
94
+ "tab-details": "Detaljer",
95
+ "file-name": "Navn",
96
+ "file-size": "Størrelse",
97
+ "cdn-url": "CDN URL",
98
+ "file-size-unknown": "Ukendt",
99
+ "camera-permissions-denied": "Kameraadgang nægtet",
100
+ "camera-permissions-prompt": "Tillad venligst adgang til kameraet",
101
+ "camera-permissions-request": "Anmod om adgang",
102
+ "files-count-limit-error-title": "Filantal grænse overskredet",
103
+ "files-count-limit-error-too-few": "Du har valgt {{total}} {{plural:file(total)}}. Mindst {{min}} {{plural:file(min)}} er påkrævet.",
104
+ "files-count-limit-error-too-many": "Du har valgt for mange filer. Maksimalt {{max}} {{plural:file(max)}} er tilladt.",
105
+ "files-max-size-limit-error": "Filen er for stor. Maksimal filstørrelse er {{maxFileSize}}.",
106
+ "has-validation-errors": "Der opstod en valideringsfejl på filen. Tjek venligst dine filer før upload.",
107
+ "images-only-accepted": "Kun billedfiler accepteres.",
108
+ "file-type-not-allowed": "Upload af denne filtype er ikke tilladt.",
109
+ "some-files-were-not-uploaded": "Nogle filer blev ikke uploadet.",
110
+ "file-item-edit-button": "Rediger",
111
+ "file-item-remove-button": "Fjern",
112
+ "a11y-activity-header-button-close": "Luk",
113
+ "a11y-editor-tab-filters": "Filtre",
114
+ "a11y-editor-tab-tuning": "Justering",
115
+ "a11y-editor-tab-crop": "Beskær",
116
+ flip: "Vend",
117
+ mirror: "Spejl",
118
+ "a11y-cloud-editor-apply-filter": "Anvend {{name}} filter",
119
+ "a11y-cloud-editor-apply-crop": "Anvend {{name}} handling",
120
+ "a11y-cloud-editor-apply-tuning": "Anvend {{name}} justering",
121
+ finished: "Afsluttet",
122
+ failed: "Mislykkedes",
123
+ uploading: "Uploader",
124
+ idle: "Inaktiv",
125
+ "a11y-file-item-status": "Filen {{fileName}} er i status {{status}}",
126
+ "waiting-for": "Venter på {{source}}",
127
+ "queued-uploading": "I kø til upload",
128
+ "queued-validation": "I kø til validering",
129
+ validation: "Validerer",
130
+ "a11y-cloud-editor-apply-aspect-ratio": "Anvend handling {{name}} {{value}}",
131
+ "crop-to-shape": "Beskær til {{value}}",
132
+ custom: "Fri form",
133
+ "freeform-crop": "Fri beskæring"
134
+ };
135
+ export { da_default as default };
@@ -45,7 +45,6 @@ declare const _default: {
45
45
  'src-type-local': string;
46
46
  'src-type-from-url': string;
47
47
  'src-type-camera': string;
48
- 'src-type-draw': string;
49
48
  'src-type-facebook': string;
50
49
  'src-type-dropbox': string;
51
50
  'src-type-gdrive': string;
@@ -62,7 +61,6 @@ declare const _default: {
62
61
  'src-type-mobile-photo-camera': string;
63
62
  'caption-from-url': string;
64
63
  'caption-camera': string;
65
- 'caption-draw': string;
66
64
  'caption-edit-file': string;
67
65
  'file-no-name': string;
68
66
  'toggle-fullscreen': string;
@@ -128,5 +126,4 @@ declare const _default: {
128
126
  custom: string;
129
127
  'freeform-crop': string;
130
128
  };
131
-
132
- export { _default as default };
129
+ export default _default;