@uploadcare/file-uploader 1.27.1 → 1.28.0-alpha.0

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 (348) hide show
  1. package/dist/CameraSource-DbyO6GoK.js +481 -0
  2. package/dist/CameraSource-px4BzEMI.js +9 -0
  3. package/dist/CloudImageEditor-BIxf1V4M.js +2162 -0
  4. package/dist/CloudImageEditorActivity-CJxP5N0S.js +9 -0
  5. package/dist/CloudImageEditorActivity-d4DpK6fQ.js +87 -0
  6. package/dist/Config-DuWre5p3.js +433 -0
  7. package/dist/ExternalSource-BKTFp95O.js +248 -0
  8. package/dist/ExternalSource-CR5DG0Jv.js +9 -0
  9. package/dist/Icon-CqTVC82Q.js +1811 -0
  10. package/dist/LitUploaderBlock-BA34rzeU.js +998 -0
  11. package/dist/UrlSource-BxVL9Pve.js +9 -0
  12. package/dist/UrlSource-DZK5EBwT.js +73 -0
  13. package/dist/abstract/CTX.d.ts +40 -0
  14. package/dist/abstract/TypedCollection.d.ts +47 -0
  15. package/dist/abstract/TypedCollection.test.d.ts +1 -0
  16. package/dist/abstract/TypedData.d.ts +12 -0
  17. package/dist/abstract/TypedData.test.d.ts +1 -0
  18. package/dist/abstract/UploaderPublicApi.d.ts +41 -0
  19. package/dist/abstract/buildOutputCollectionState.d.ts +3 -0
  20. package/dist/abstract/customConfigOptions.d.ts +65 -0
  21. package/dist/abstract/defineComponents.d.ts +1 -0
  22. package/dist/abstract/features/ClipboardLayer.d.ts +12 -0
  23. package/dist/abstract/loadFileUploaderFrom.d.ts +3 -4
  24. package/dist/abstract/loadFileUploaderFrom.js +7 -6
  25. package/dist/abstract/localeRegistry.d.ts +5 -0
  26. package/dist/abstract/managers/LocaleManager.d.ts +10 -0
  27. package/dist/abstract/managers/ModalManager.d.ts +53 -0
  28. package/dist/abstract/managers/SecureUploadsManager.d.ts +7 -0
  29. package/dist/abstract/managers/TelemetryManager.d.ts +41 -0
  30. package/dist/abstract/managers/ValidationManager.d.ts +34 -0
  31. package/dist/abstract/managers/__tests__/ModalManager.test.d.ts +13 -0
  32. package/dist/abstract/managers/__tests__/SecureUploadsManager.test.d.ts +1 -0
  33. package/dist/abstract/managers/a11y.d.ts +9 -0
  34. package/dist/abstract/managers/plugin/PluginManager.d.ts +25 -0
  35. package/dist/abstract/managers/plugin/PluginTypes.d.ts +146 -0
  36. package/dist/abstract/managers/plugin/index.d.ts +2 -0
  37. package/dist/abstract/sharedConfigKey.d.ts +2 -0
  38. package/dist/abstract/uploadEntrySchema.d.ts +34 -0
  39. package/dist/blocks/ActivityHeader/ActivityHeader.d.ts +8 -0
  40. package/dist/blocks/CameraSource/CameraSource.d.ts +121 -0
  41. package/dist/blocks/CameraSource/__tests__/calcCameraModes.test.d.ts +1 -0
  42. package/dist/blocks/CameraSource/calcCameraModes.d.ts +5 -0
  43. package/dist/blocks/CameraSource/constants.d.ts +15 -0
  44. package/dist/blocks/CloudImageEditor/index.d.ts +1 -0
  45. package/dist/blocks/CloudImageEditor/src/CloudImageEditorBlock.d.ts +60 -0
  46. package/dist/blocks/CloudImageEditor/src/CropFrame.d.ts +56 -0
  47. package/dist/blocks/CloudImageEditor/src/EditorAspectRatioButtonControl.d.ts +24 -0
  48. package/dist/blocks/CloudImageEditor/src/EditorButtonControl.d.ts +14 -0
  49. package/dist/blocks/CloudImageEditor/src/EditorCropButtonControl.d.ts +13 -0
  50. package/dist/blocks/CloudImageEditor/src/EditorFilterControl.d.ts +35 -0
  51. package/dist/blocks/CloudImageEditor/src/EditorImageCropper.d.ts +56 -0
  52. package/dist/blocks/CloudImageEditor/src/EditorImageFader.d.ts +63 -0
  53. package/dist/blocks/CloudImageEditor/src/EditorOperationControl.d.ts +15 -0
  54. package/dist/blocks/CloudImageEditor/src/EditorScroller.d.ts +15 -0
  55. package/dist/blocks/CloudImageEditor/src/EditorSlider.d.ts +33 -0
  56. package/dist/blocks/CloudImageEditor/src/EditorToolbar.d.ts +68 -0
  57. package/dist/blocks/CloudImageEditor/src/crop-utils.d.ts +36 -0
  58. package/dist/blocks/CloudImageEditor/src/crop-utils.test.d.ts +1 -0
  59. package/dist/blocks/CloudImageEditor/src/cropper-constants.d.ts +10 -0
  60. package/dist/blocks/CloudImageEditor/src/elements/button/BtnUi.d.ts +31 -0
  61. package/dist/blocks/CloudImageEditor/src/elements/line-loader/LineLoaderUi.d.ts +19 -0
  62. package/dist/blocks/CloudImageEditor/src/elements/presence-toggle/PresenceToggle.d.ts +27 -0
  63. package/dist/blocks/CloudImageEditor/src/elements/slider/SliderUi.d.ts +38 -0
  64. package/dist/blocks/CloudImageEditor/src/index.d.ts +15 -0
  65. package/dist/blocks/CloudImageEditor/src/lib/classNames.d.ts +5 -0
  66. package/dist/blocks/CloudImageEditor/src/lib/classNames.test.d.ts +1 -0
  67. package/dist/blocks/CloudImageEditor/src/lib/linspace.d.ts +1 -0
  68. package/dist/blocks/CloudImageEditor/src/lib/linspace.test.d.ts +1 -0
  69. package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.d.ts +4 -0
  70. package/dist/blocks/CloudImageEditor/src/lib/parseCropPreset.test.d.ts +1 -0
  71. package/dist/blocks/CloudImageEditor/src/lib/parseTabs.d.ts +2 -0
  72. package/dist/blocks/CloudImageEditor/src/lib/pick.d.ts +1 -0
  73. package/dist/blocks/CloudImageEditor/src/lib/pick.test.d.ts +1 -0
  74. package/dist/blocks/CloudImageEditor/src/lib/transformationUtils.d.ts +7 -0
  75. package/dist/blocks/CloudImageEditor/src/state.d.ts +20 -0
  76. package/dist/blocks/CloudImageEditor/src/svg-sprite.d.ts +2 -0
  77. package/dist/blocks/CloudImageEditor/src/toolbar-constants.d.ts +61 -0
  78. package/dist/blocks/CloudImageEditor/src/types.d.ts +60 -0
  79. package/dist/blocks/CloudImageEditor/src/util.d.ts +2 -0
  80. package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.d.ts +7 -0
  81. package/dist/blocks/CloudImageEditor/src/utils/parseFilterValue.test.d.ts +1 -0
  82. package/dist/blocks/CloudImageEditorActivity/CloudImageEditorActivity.d.ts +25 -0
  83. package/dist/blocks/Config/Config.d.ts +60 -0
  84. package/dist/blocks/Config/assertions.d.ts +5 -0
  85. package/dist/blocks/Config/computed-properties.d.ts +24 -0
  86. package/dist/blocks/Config/computed-properties.test.d.ts +1 -0
  87. package/dist/blocks/Config/initialConfig.d.ts +6 -0
  88. package/dist/blocks/Config/normalizeConfigValue.d.ts +2 -0
  89. package/dist/blocks/Config/validatorsType.d.ts +18 -0
  90. package/dist/blocks/Copyright/Copyright.d.ts +10 -0
  91. package/dist/blocks/DropArea/DropArea.d.ts +47 -0
  92. package/dist/blocks/DropArea/addDropzone.d.ts +17 -0
  93. package/dist/blocks/DropArea/getDropItems.d.ts +12 -0
  94. package/dist/blocks/ExternalSource/ExternalSource.d.ts +45 -0
  95. package/dist/blocks/ExternalSource/MessageBridge.d.ts +11 -0
  96. package/dist/blocks/ExternalSource/buildThemeDefinition.d.ts +4 -0
  97. package/dist/blocks/ExternalSource/query-string.d.ts +1 -0
  98. package/dist/blocks/ExternalSource/types.d.ts +105 -0
  99. package/dist/blocks/FileItem/FileItem.d.ts +50 -0
  100. package/dist/blocks/FileItem/FileItemConfig.d.ts +10 -0
  101. package/dist/blocks/FormInput/FormInput.d.ts +18 -0
  102. package/dist/blocks/Icon/Icon.d.ts +19 -0
  103. package/dist/blocks/Img/Img.d.ts +14 -0
  104. package/dist/blocks/Img/ImgBase.d.ts +29 -0
  105. package/dist/blocks/Img/ImgConfig.d.ts +28 -0
  106. package/dist/blocks/Img/configurations.d.ts +11 -0
  107. package/dist/blocks/Img/props-map.d.ts +28 -0
  108. package/dist/blocks/Img/utils/parseObjectToString.d.ts +2 -0
  109. package/dist/blocks/Modal/Modal.d.ts +34 -0
  110. package/dist/blocks/PluginActivityRenderer/PluginActivityRenderer.d.ts +32 -0
  111. package/dist/blocks/PluginActivityRenderer/index.d.ts +1 -0
  112. package/dist/blocks/ProgressBar/ProgressBar.d.ts +21 -0
  113. package/dist/blocks/ProgressBarCommon/ProgressBarCommon.d.ts +17 -0
  114. package/dist/blocks/Select/Select.d.ts +18 -0
  115. package/dist/blocks/SimpleBtn/SimpleBtn.d.ts +15 -0
  116. package/dist/blocks/SourceBtn/SourceBtn.d.ts +23 -0
  117. package/dist/blocks/SourceList/SourceList.d.ts +24 -0
  118. package/dist/blocks/Spinner/Spinner.d.ts +9 -0
  119. package/dist/blocks/StartFrom/StartFrom.d.ts +12 -0
  120. package/dist/blocks/Thumb/Thumb.d.ts +35 -0
  121. package/dist/blocks/UploadCtxProvider/EventEmitter.d.ts +70 -0
  122. package/dist/blocks/UploadCtxProvider/UploadCtxProvider.d.ts +44 -0
  123. package/dist/blocks/UploadList/UploadList.d.ts +39 -0
  124. package/dist/blocks/UrlSource/UrlSource.d.ts +14 -0
  125. package/dist/blocks/svg-backgrounds/svg-backgrounds.d.ts +3 -0
  126. package/dist/blocks/themes/uc-basic/svg-sprite.d.ts +2 -0
  127. package/dist/cameraPlugin-dGash48Q.js +8 -0
  128. package/dist/cloud-image-editor-fNswWrI4.js +11 -0
  129. package/dist/cloudImageEditorPlugin-2EU0Pm_j.js +8 -0
  130. package/dist/core.d.ts +42 -0
  131. package/dist/en-DNCwRJsB.js +135 -0
  132. package/dist/env-B1nfXy9i.js +8 -0
  133. package/dist/env.d.ts +2 -4
  134. package/dist/env.js +7 -6
  135. package/dist/externalSourcesPlugin-DKQqk3AC.js +8 -0
  136. package/dist/imageShrinkPlugin-DAx8eRen.js +8 -0
  137. package/dist/index.css +3964 -6
  138. package/dist/index.d.ts +29 -2715
  139. package/dist/index.js +1011 -8
  140. package/dist/index.layered.css +4478 -7
  141. package/dist/instagramPlugin-k67tMAo3.js +8 -0
  142. package/dist/lit/BaseComponent.d.ts +12 -0
  143. package/dist/lit/Constructor.d.ts +1 -0
  144. package/dist/lit/CssDataMixin.d.ts +7 -0
  145. package/dist/lit/LightDomMixin.d.ts +8 -0
  146. package/dist/lit/LitActivityBlock.d.ts +53 -0
  147. package/dist/lit/LitBlock.d.ts +83 -0
  148. package/dist/lit/LitSolutionBlock.d.ts +21 -0
  149. package/dist/lit/LitUploaderBlock.d.ts +53 -0
  150. package/dist/lit/PubSubCompat.d.ts +18 -0
  151. package/dist/lit/RegisterableElementMixin.d.ts +7 -0
  152. package/dist/lit/SharedState.d.ts +119 -0
  153. package/dist/lit/SymbioteCompatMixin.d.ts +40 -0
  154. package/dist/lit/TestModeController.d.ts +16 -0
  155. package/dist/lit/Uid.d.ts +3 -0
  156. package/dist/lit/activity-constants.d.ts +11 -0
  157. package/dist/lit/createDebugPrinter.d.ts +3 -0
  158. package/dist/lit/findBlockInCtx.d.ts +3 -0
  159. package/dist/lit/getOutputData.d.ts +2 -0
  160. package/dist/lit/hasBlockInCtx.d.ts +3 -0
  161. package/dist/lit/l10n.d.ts +5 -0
  162. package/dist/lit/parseCssPropertyValue.d.ts +1 -0
  163. package/dist/lit/shared-instances.d.ts +65 -0
  164. package/dist/loadFileUploaderFrom-BWJM43Yq.js +28 -0
  165. package/dist/locales/file-uploader/ar.d.ts +1 -4
  166. package/dist/locales/file-uploader/ar.js +142 -6
  167. package/dist/locales/file-uploader/az.d.ts +1 -4
  168. package/dist/locales/file-uploader/az.js +134 -6
  169. package/dist/locales/file-uploader/ca.d.ts +1 -4
  170. package/dist/locales/file-uploader/ca.js +136 -6
  171. package/dist/locales/file-uploader/cs.d.ts +1 -4
  172. package/dist/locales/file-uploader/cs.js +138 -6
  173. package/dist/locales/file-uploader/da.d.ts +1 -4
  174. package/dist/locales/file-uploader/da.js +134 -6
  175. package/dist/locales/file-uploader/de.d.ts +1 -4
  176. package/dist/locales/file-uploader/de.js +134 -6
  177. package/dist/locales/file-uploader/el.d.ts +1 -4
  178. package/dist/locales/file-uploader/el.js +134 -6
  179. package/dist/locales/file-uploader/en.d.ts +1 -4
  180. package/dist/locales/file-uploader/en.js +7 -6
  181. package/dist/locales/file-uploader/es.d.ts +1 -4
  182. package/dist/locales/file-uploader/es.js +136 -6
  183. package/dist/locales/file-uploader/et.d.ts +1 -4
  184. package/dist/locales/file-uploader/et.js +134 -6
  185. package/dist/locales/file-uploader/fi.d.ts +1 -4
  186. package/dist/locales/file-uploader/fi.js +134 -6
  187. package/dist/locales/file-uploader/fr.d.ts +1 -4
  188. package/dist/locales/file-uploader/fr.js +136 -6
  189. package/dist/locales/file-uploader/he.d.ts +1 -4
  190. package/dist/locales/file-uploader/he.js +136 -6
  191. package/dist/locales/file-uploader/hy.d.ts +1 -4
  192. package/dist/locales/file-uploader/hy.js +134 -6
  193. package/dist/locales/file-uploader/is.d.ts +1 -4
  194. package/dist/locales/file-uploader/is.js +134 -6
  195. package/dist/locales/file-uploader/it.d.ts +1 -4
  196. package/dist/locales/file-uploader/it.js +136 -6
  197. package/dist/locales/file-uploader/ja.d.ts +1 -4
  198. package/dist/locales/file-uploader/ja.js +134 -6
  199. package/dist/locales/file-uploader/ka.d.ts +1 -4
  200. package/dist/locales/file-uploader/ka.js +134 -6
  201. package/dist/locales/file-uploader/kk.d.ts +1 -4
  202. package/dist/locales/file-uploader/kk.js +134 -6
  203. package/dist/locales/file-uploader/ko.d.ts +1 -4
  204. package/dist/locales/file-uploader/ko.js +134 -6
  205. package/dist/locales/file-uploader/lv.d.ts +1 -4
  206. package/dist/locales/file-uploader/lv.js +136 -6
  207. package/dist/locales/file-uploader/nb.d.ts +1 -4
  208. package/dist/locales/file-uploader/nb.js +134 -6
  209. package/dist/locales/file-uploader/nl.d.ts +1 -4
  210. package/dist/locales/file-uploader/nl.js +134 -6
  211. package/dist/locales/file-uploader/pl.d.ts +1 -4
  212. package/dist/locales/file-uploader/pl.js +138 -6
  213. package/dist/locales/file-uploader/pt.d.ts +1 -4
  214. package/dist/locales/file-uploader/pt.js +136 -6
  215. package/dist/locales/file-uploader/ro.d.ts +1 -4
  216. package/dist/locales/file-uploader/ro.js +136 -6
  217. package/dist/locales/file-uploader/ru.d.ts +1 -4
  218. package/dist/locales/file-uploader/ru.js +138 -6
  219. package/dist/locales/file-uploader/sk.d.ts +1 -4
  220. package/dist/locales/file-uploader/sk.js +138 -6
  221. package/dist/locales/file-uploader/sr.d.ts +1 -4
  222. package/dist/locales/file-uploader/sr.js +136 -6
  223. package/dist/locales/file-uploader/sv.d.ts +1 -4
  224. package/dist/locales/file-uploader/sv.js +134 -6
  225. package/dist/locales/file-uploader/tr.d.ts +1 -4
  226. package/dist/locales/file-uploader/tr.js +134 -6
  227. package/dist/locales/file-uploader/uk.d.ts +1 -4
  228. package/dist/locales/file-uploader/uk.js +138 -6
  229. package/dist/locales/file-uploader/vi.d.ts +1 -4
  230. package/dist/locales/file-uploader/vi.js +134 -6
  231. package/dist/locales/file-uploader/zh-TW.d.ts +1 -4
  232. package/dist/locales/file-uploader/zh-TW.js +134 -6
  233. package/dist/locales/file-uploader/zh.d.ts +1 -4
  234. package/dist/locales/file-uploader/zh.js +134 -6
  235. package/dist/plugins/cameraPlugin.d.ts +2 -0
  236. package/dist/plugins/cloudImageEditorPlugin.d.ts +2 -0
  237. package/dist/plugins/externalSourcesPlugin.d.ts +2 -0
  238. package/dist/plugins/imageShrinkPlugin.d.ts +2 -0
  239. package/dist/plugins/instagramPlugin.d.ts +2 -0
  240. package/dist/plugins/unsplashPlugin.d.ts +16 -0
  241. package/dist/plugins/urlSourcePlugin.d.ts +2 -0
  242. package/dist/plugins-DxjsQUa8.js +278 -0
  243. package/dist/solutions/adaptive-image/index.d.ts +2 -0
  244. package/dist/solutions/cloud-image-editor/CloudImageEditor.d.ts +11 -0
  245. package/dist/solutions/cloud-image-editor/index.d.ts +5 -0
  246. package/dist/solutions/file-uploader/inline/FileUploaderInline.d.ts +20 -0
  247. package/dist/solutions/file-uploader/inline/index.d.ts +1 -0
  248. package/dist/solutions/file-uploader/minimal/FileUploaderMinimal.d.ts +23 -0
  249. package/dist/solutions/file-uploader/minimal/index.d.ts +1 -0
  250. package/dist/solutions/file-uploader/regular/FileUploaderRegular.d.ts +17 -0
  251. package/dist/solutions/file-uploader/regular/index.d.ts +1 -0
  252. package/dist/types/dom.d.ts +1 -0
  253. package/dist/types/events.d.ts +4 -0
  254. package/dist/types/exported.d.ts +492 -0
  255. package/dist/types/index.d.ts +5 -0
  256. package/dist/urlSourcePlugin-9xdB7Pvw.js +8 -0
  257. package/dist/utils/UID.d.ts +5 -0
  258. package/dist/utils/UID.test.d.ts +1 -0
  259. package/dist/utils/UploadSource.d.ts +37 -0
  260. package/dist/utils/WindowHeightTracker.d.ts +9 -0
  261. package/dist/utils/abilities.d.ts +1 -0
  262. package/dist/utils/applyStyles.d.ts +1 -0
  263. package/dist/utils/browser-info.d.ts +12 -0
  264. package/dist/utils/browser-info.test.d.ts +1 -0
  265. package/dist/utils/cdn-utils.d.ts +53 -0
  266. package/dist/utils/cdn-utils.test.d.ts +1 -0
  267. package/dist/utils/comma-separated.d.ts +2 -0
  268. package/dist/utils/debounce.d.ts +3 -0
  269. package/dist/utils/delay.d.ts +1 -0
  270. package/dist/utils/fileTypes.d.ts +11 -0
  271. package/dist/utils/fileTypes.test.d.ts +1 -0
  272. package/dist/utils/get-top-level-origin.d.ts +1 -0
  273. package/dist/utils/get-top-level-origin.test.d.ts +1 -0
  274. package/dist/utils/getLocaleDirection.d.ts +1 -0
  275. package/dist/utils/getPluralForm.d.ts +1 -0
  276. package/dist/utils/getPluralForm.test.d.ts +1 -0
  277. package/dist/utils/isPromiseLike.d.ts +1 -0
  278. package/dist/utils/isPromiseLike.test.d.ts +1 -0
  279. package/dist/utils/isSecureTokenExpired.d.ts +8 -0
  280. package/dist/utils/isSecureTokenExpired.test.d.ts +1 -0
  281. package/dist/utils/memoize.d.ts +1 -0
  282. package/dist/utils/memoize.test.d.ts +1 -0
  283. package/dist/utils/mixinClass.d.ts +8 -0
  284. package/dist/utils/parseCdnUrl.d.ts +11 -0
  285. package/dist/utils/parseCdnUrl.test.d.ts +1 -0
  286. package/dist/utils/parseShrink.d.ts +7 -0
  287. package/dist/utils/parseShrink.test.d.ts +1 -0
  288. package/dist/utils/preloadImage.d.ts +10 -0
  289. package/dist/utils/prettyBytes.d.ts +11 -0
  290. package/dist/utils/prettyBytes.test.d.ts +1 -0
  291. package/dist/utils/resizeImage.d.ts +1 -0
  292. package/dist/utils/stringToArray.d.ts +1 -0
  293. package/dist/utils/stringToArray.test.d.ts +1 -0
  294. package/dist/utils/template-utils.d.ts +16 -0
  295. package/dist/utils/template-utils.test.d.ts +1 -0
  296. package/dist/utils/throttle.d.ts +3 -0
  297. package/dist/utils/toKebabCase.d.ts +2 -0
  298. package/dist/utils/toKebabCase.test.d.ts +1 -0
  299. package/dist/utils/transparentPixelSrc.d.ts +1 -0
  300. package/dist/utils/uniqueArray.d.ts +1 -0
  301. package/dist/utils/uniqueArray.test.d.ts +1 -0
  302. package/dist/utils/userAgent.d.ts +2 -0
  303. package/dist/utils/validators/collection/index.d.ts +2 -0
  304. package/dist/utils/validators/collection/validateCollectionUploadError.d.ts +2 -0
  305. package/dist/utils/validators/collection/validateMultiple.d.ts +2 -0
  306. package/dist/utils/validators/file/index.d.ts +4 -0
  307. package/dist/utils/validators/file/validateFileType.d.ts +2 -0
  308. package/dist/utils/validators/file/validateIsImage.d.ts +2 -0
  309. package/dist/utils/validators/file/validateMaxSizeLimit.d.ts +2 -0
  310. package/dist/utils/validators/file/validateUploadError.d.ts +2 -0
  311. package/dist/utils/warnOnce.d.ts +1 -0
  312. package/dist/utils/wildcardRegexp.d.ts +1 -0
  313. package/dist/utils/wildcardRegexp.test.d.ts +1 -0
  314. package/dist/utils/withResolvers.d.ts +5 -0
  315. package/dist/utils/withResolvers.test.d.ts +1 -0
  316. package/package.json +8 -2
  317. package/dist/index.ssr.js +0 -1538
  318. package/web/file-uploader.iife.min.d.ts +0 -2859
  319. package/web/file-uploader.iife.min.js +0 -8
  320. package/web/file-uploader.iife.min.js.LEGAL.txt +0 -71
  321. package/web/file-uploader.min.d.ts +0 -2859
  322. package/web/file-uploader.min.js +0 -8
  323. package/web/file-uploader.min.js.LEGAL.txt +0 -71
  324. package/web/uc-basic.layered.min.css +0 -7
  325. package/web/uc-basic.min.css +0 -6
  326. package/web/uc-cloud-image-editor.layered.min.css +0 -7
  327. package/web/uc-cloud-image-editor.min.css +0 -6
  328. package/web/uc-cloud-image-editor.min.d.ts +0 -2816
  329. package/web/uc-cloud-image-editor.min.js +0 -8
  330. package/web/uc-cloud-image-editor.min.js.LEGAL.txt +0 -70
  331. package/web/uc-file-uploader-inline.layered.min.css +0 -7
  332. package/web/uc-file-uploader-inline.min.css +0 -6
  333. package/web/uc-file-uploader-inline.min.d.ts +0 -2859
  334. package/web/uc-file-uploader-inline.min.js +0 -8
  335. package/web/uc-file-uploader-inline.min.js.LEGAL.txt +0 -71
  336. package/web/uc-file-uploader-minimal.layered.min.css +0 -7
  337. package/web/uc-file-uploader-minimal.min.css +0 -6
  338. package/web/uc-file-uploader-minimal.min.d.ts +0 -2859
  339. package/web/uc-file-uploader-minimal.min.js +0 -8
  340. package/web/uc-file-uploader-minimal.min.js.LEGAL.txt +0 -71
  341. package/web/uc-file-uploader-regular.layered.min.css +0 -7
  342. package/web/uc-file-uploader-regular.min.css +0 -6
  343. package/web/uc-file-uploader-regular.min.d.ts +0 -2859
  344. package/web/uc-file-uploader-regular.min.js +0 -8
  345. package/web/uc-file-uploader-regular.min.js.LEGAL.txt +0 -71
  346. package/web/uc-img.min.d.ts +0 -75
  347. package/web/uc-img.min.js +0 -8
  348. package/web/uc-img.min.js.LEGAL.txt +0 -24
@@ -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.0 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T14:46:15.080Z
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.0 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T14:46:15.080Z
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;
@@ -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":"de","social-source-lang":"de","upload-file":"Datei hochladen","upload-files":"Dateien hochladen","choose-file":"Datei w\xE4hlen","choose-files":"Dateien w\xE4hlen","drop-files-here":"Dateien hier ablegen","select-file-source":"Dateiquelle ausw\xE4hlen",selected:"Ausgew\xE4hlt",upload:"Hochladen","add-more":"Weitere hinzuf\xFCgen",cancel:"Abbrechen","start-from-cancel":"Abbrechen",clear:"Leeren","camera-shot":"Aufnahme","upload-url":"Importieren","upload-url-placeholder":"Link hier einf\xFCgen","edit-image":"Bild bearbeiten","edit-detail":"Details",back:"Zur\xFCck",done:"Fertig",ok:"OK","remove-from-list":"Entfernen",no:"Nein",yes:"Ja","confirm-your-action":"Aktion best\xE4tigen","are-you-sure":"Sind Sie sicher?","selected-count":"Ausgew\xE4hlt:","select-all":"Alles ausw\xE4hlen","deselect-all":"Alles abw\xE4hlen","upload-error":"Fehler beim Hochladen","validation-error":"Validierungsfehler","no-files":"Keine Dateien ausgew\xE4hlt",browse:"Durchsuchen","not-uploaded-yet":"Noch nicht hochgeladen...",file__one:"Datei",file__other:"Dateien",error__one:"Fehler",error__other:"Fehler","header-uploading":"Lade {{count}} {{plural:file(count)}} hoch","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} hochgeladen","header-total":"{{count}} {{plural:file(count)}} ausgew\xE4hlt","src-type-local":"Vom Ger\xE4t","src-type-from-url":"Vom Link","src-type-camera":"Kamera","src-type-draw":"Zeichnen","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":"Andere","src-type-mobile-video-camera":"Video","src-type-mobile-photo-camera":"Foto","caption-from-url":"Von Link importieren","caption-camera":"Kamera","caption-draw":"Zeichnen","caption-edit-file":"Datei bearbeiten","file-no-name":"Kein Name...","toggle-fullscreen":"Vollbild umschalten","toggle-guides":"Anleitungen umschalten",rotate:"Drehen","flip-vertical":"Vertikal spiegeln","flip-horizontal":"Horizontal spiegeln",apply:"Anwenden",brightness:"Helligkeit",contrast:"Kontrast",saturation:"S\xE4ttigung",exposure:"Belichtung",gamma:"Gamma",vibrance:"Lebendigkeit",warmth:"W\xE4rme",enhance:"Verbessern",original:"Original",resize:"Bildgr\xF6\xDFe \xE4ndern",crop:"Zuschneiden","select-color":"Farbe ausw\xE4hlen",text:"Text",draw:"Zeichnen","cancel-edit":"Bearbeitung abbrechen","tab-view":"Vorschau","tab-details":"Details","file-name":"Name","file-size":"Gr\xF6\xDFe","cdn-url":"CDN-URL","file-size-unknown":"Unbekannt","camera-permissions-denied":"Kamerazugriff verweigert","camera-permissions-prompt":"Bitte Zugriff auf die Kamera erlauben","camera-permissions-request":"Zugriff anfordern","files-count-limit-error-title":"Dateianzahlbegrenzung \xFCberschritten","files-count-limit-error-too-few":"Sie haben {{total}} {{plural:file(total)}} ausgew\xE4hlt. Mindestens {{min}} {{plural:file(min)}} erforderlich.","files-count-limit-error-too-many":"Sie haben zu viele Dateien ausgew\xE4hlt. Maximal {{max}} {{plural:file(max)}} m\xF6glich.","files-max-size-limit-error":"Datei ist zu gro\xDF. Maximale Dateigr\xF6\xDFe ist {{maxFileSize}}.","has-validation-errors":"Es ist ein Validierungsfehler aufgetreten. Bitte \xFCberpr\xFCfen Sie Ihre Dateien vor dem Hochladen.","images-only-accepted":"Nur Bilddateien werden akzeptiert.","file-type-not-allowed":"Das Hochladen dieser Dateitypen ist nicht erlaubt.","some-files-were-not-uploaded":"Einige Dateien wurden nicht hochgeladen.","file-item-edit-button":"Bearbeiten","file-item-remove-button":"Entfernen","a11y-activity-header-button-close":"Schlie\xDFen","a11y-editor-tab-filters":"Filter","a11y-editor-tab-tuning":"Feinabstimmung","a11y-editor-tab-crop":"Zuschneiden",flip:"Drehen",mirror:"Spiegeln","a11y-cloud-editor-apply-filter":"{{name}}-Filter anwenden","a11y-cloud-editor-apply-crop":"{{name}}-Operation anwenden","a11y-cloud-editor-apply-tuning":"{{name}}-Abstimmung anwenden",finished:"Abgeschlossen",failed:"Fehlgeschlagen",uploading:"Hochladen",idle:"Leerlauf","a11y-file-item-status":"Datei {{fileName}} im Status {{status}}","waiting-for":"Warten auf {{source}}","queued-uploading":"In Warteschlange zum Hochladen","queued-validation":"In Warteschlange zur Validierung",validation:"Validierung l\xE4uft","a11y-cloud-editor-apply-aspect-ratio":"Vorgang {{name}} {{value}} anwenden","crop-to-shape":"Zuschneiden auf {{value}}",custom:"Freiform","freeform-crop":"Freier Zuschnitt"};export{e as default};
2
+ * @license
3
+ * Package: @uploadcare/file-uploader@1.28.0-alpha.0 (MIT)
4
+ * License: https://github.com/uploadcare/blob/main/LICENSE
5
+ * Built: 2026-03-02T14:46:15.080Z
6
+ */
7
+ var de_default = {
8
+ "locale-id": "de",
9
+ "social-source-lang": "de",
10
+ "upload-file": "Datei hochladen",
11
+ "upload-files": "Dateien hochladen",
12
+ "choose-file": "Datei wählen",
13
+ "choose-files": "Dateien wählen",
14
+ "drop-files-here": "Dateien hier ablegen",
15
+ "select-file-source": "Dateiquelle auswählen",
16
+ selected: "Ausgewählt",
17
+ upload: "Hochladen",
18
+ "add-more": "Weitere hinzufügen",
19
+ cancel: "Abbrechen",
20
+ "start-from-cancel": "Abbrechen",
21
+ clear: "Leeren",
22
+ "camera-shot": "Aufnahme",
23
+ "upload-url": "Importieren",
24
+ "upload-url-placeholder": "Link hier einfügen",
25
+ "edit-image": "Bild bearbeiten",
26
+ "edit-detail": "Details",
27
+ back: "Zurück",
28
+ done: "Fertig",
29
+ ok: "OK",
30
+ "remove-from-list": "Entfernen",
31
+ no: "Nein",
32
+ yes: "Ja",
33
+ "confirm-your-action": "Aktion bestätigen",
34
+ "are-you-sure": "Sind Sie sicher?",
35
+ "selected-count": "Ausgewählt:",
36
+ "select-all": "Alles auswählen",
37
+ "deselect-all": "Alles abwählen",
38
+ "upload-error": "Fehler beim Hochladen",
39
+ "validation-error": "Validierungsfehler",
40
+ "no-files": "Keine Dateien ausgewählt",
41
+ browse: "Durchsuchen",
42
+ "not-uploaded-yet": "Noch nicht hochgeladen...",
43
+ file__one: "Datei",
44
+ file__other: "Dateien",
45
+ error__one: "Fehler",
46
+ error__other: "Fehler",
47
+ "header-uploading": "Lade {{count}} {{plural:file(count)}} hoch",
48
+ "header-failed": "{{count}} {{plural:error(count)}}",
49
+ "header-succeed": "{{count}} {{plural:file(count)}} hochgeladen",
50
+ "header-total": "{{count}} {{plural:file(count)}} ausgewählt",
51
+ "src-type-local": "Vom Gerät",
52
+ "src-type-from-url": "Vom 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": "Andere",
66
+ "src-type-mobile-video-camera": "Video",
67
+ "src-type-mobile-photo-camera": "Foto",
68
+ "caption-from-url": "Von Link importieren",
69
+ "caption-camera": "Kamera",
70
+ "caption-edit-file": "Datei bearbeiten",
71
+ "file-no-name": "Kein Name...",
72
+ "toggle-fullscreen": "Vollbild umschalten",
73
+ "toggle-guides": "Anleitungen umschalten",
74
+ rotate: "Drehen",
75
+ "flip-vertical": "Vertikal spiegeln",
76
+ "flip-horizontal": "Horizontal spiegeln",
77
+ apply: "Anwenden",
78
+ brightness: "Helligkeit",
79
+ contrast: "Kontrast",
80
+ saturation: "Sättigung",
81
+ exposure: "Belichtung",
82
+ gamma: "Gamma",
83
+ vibrance: "Lebendigkeit",
84
+ warmth: "Wärme",
85
+ enhance: "Verbessern",
86
+ original: "Original",
87
+ resize: "Bildgröße ändern",
88
+ crop: "Zuschneiden",
89
+ "select-color": "Farbe auswählen",
90
+ text: "Text",
91
+ draw: "Zeichnen",
92
+ "cancel-edit": "Bearbeitung abbrechen",
93
+ "tab-view": "Vorschau",
94
+ "tab-details": "Details",
95
+ "file-name": "Name",
96
+ "file-size": "Größe",
97
+ "cdn-url": "CDN-URL",
98
+ "file-size-unknown": "Unbekannt",
99
+ "camera-permissions-denied": "Kamerazugriff verweigert",
100
+ "camera-permissions-prompt": "Bitte Zugriff auf die Kamera erlauben",
101
+ "camera-permissions-request": "Zugriff anfordern",
102
+ "files-count-limit-error-title": "Dateianzahlbegrenzung überschritten",
103
+ "files-count-limit-error-too-few": "Sie haben {{total}} {{plural:file(total)}} ausgewählt. Mindestens {{min}} {{plural:file(min)}} erforderlich.",
104
+ "files-count-limit-error-too-many": "Sie haben zu viele Dateien ausgewählt. Maximal {{max}} {{plural:file(max)}} möglich.",
105
+ "files-max-size-limit-error": "Datei ist zu groß. Maximale Dateigröße ist {{maxFileSize}}.",
106
+ "has-validation-errors": "Es ist ein Validierungsfehler aufgetreten. Bitte überprüfen Sie Ihre Dateien vor dem Hochladen.",
107
+ "images-only-accepted": "Nur Bilddateien werden akzeptiert.",
108
+ "file-type-not-allowed": "Das Hochladen dieser Dateitypen ist nicht erlaubt.",
109
+ "some-files-were-not-uploaded": "Einige Dateien wurden nicht hochgeladen.",
110
+ "file-item-edit-button": "Bearbeiten",
111
+ "file-item-remove-button": "Entfernen",
112
+ "a11y-activity-header-button-close": "Schließen",
113
+ "a11y-editor-tab-filters": "Filter",
114
+ "a11y-editor-tab-tuning": "Feinabstimmung",
115
+ "a11y-editor-tab-crop": "Zuschneiden",
116
+ flip: "Drehen",
117
+ mirror: "Spiegeln",
118
+ "a11y-cloud-editor-apply-filter": "{{name}}-Filter anwenden",
119
+ "a11y-cloud-editor-apply-crop": "{{name}}-Operation anwenden",
120
+ "a11y-cloud-editor-apply-tuning": "{{name}}-Abstimmung anwenden",
121
+ finished: "Abgeschlossen",
122
+ failed: "Fehlgeschlagen",
123
+ uploading: "Hochladen",
124
+ idle: "Leerlauf",
125
+ "a11y-file-item-status": "Datei {{fileName}} im Status {{status}}",
126
+ "waiting-for": "Warten auf {{source}}",
127
+ "queued-uploading": "In Warteschlange zum Hochladen",
128
+ "queued-validation": "In Warteschlange zur Validierung",
129
+ validation: "Validierung läuft",
130
+ "a11y-cloud-editor-apply-aspect-ratio": "Vorgang {{name}} {{value}} anwenden",
131
+ "crop-to-shape": "Zuschneiden auf {{value}}",
132
+ custom: "Freiform",
133
+ "freeform-crop": "Freier Zuschnitt"
134
+ };
135
+ export { de_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;