@uploadcare/file-uploader 1.27.0 → 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 +10 -4
  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,135 @@
1
1
  /**
2
- * @license
3
- * Package: @uploadcare/file-uploader@1.27.0 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-11T17:11:01.159Z
6
- */
7
- var e={"locale-id":"nl","social-source-lang":"nl","upload-file":"Bestand uploaden","upload-files":"Bestanden uploaden","choose-file":"Kies bestand","choose-files":"Kies bestanden","drop-files-here":"Bestanden hier neerzetten","select-file-source":"Selecteer bestandsbron",selected:"Geselecteerd",upload:"Uploaden","add-more":"Meer toevoegen",cancel:"Annuleren","start-from-cancel":"Annuleren",clear:"Wissen","camera-shot":"Foto maken","upload-url":"Importeren","upload-url-placeholder":"Plak hier de link","edit-image":"Afbeelding bewerken","edit-detail":"Details bewerken",back:"Terug",done:"Gedaan",ok:"Ok","remove-from-list":"Verwijderen",no:"Nee",yes:"Ja","confirm-your-action":"Bevestig je actie","are-you-sure":"Weet je het zeker?","selected-count":"Geselecteerd:","upload-error":"Uploadfout","validation-error":"Validatiefout","no-files":"Geen bestanden geselecteerd",browse:"Bladeren","not-uploaded-yet":"Nog niet ge\xFCpload...",file__one:"bestand",file__other:"bestanden",error__one:"fout",error__other:"fouten","header-uploading":"Uploaden van {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} ge\xFCpload","header-total":"{{count}} {{plural:file(count)}} geselecteerd","src-type-local":"Van apparaat","src-type-from-url":"Van link","src-type-camera":"Camera","src-type-draw":"Tekenen","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":"Importeren van link","caption-camera":"Camera","caption-draw":"Tekenen","caption-edit-file":"Bestand bewerken","file-no-name":"Geen naam...","toggle-fullscreen":"Volledig scherm wisselen","toggle-guides":"Richtlijnen wisselen",rotate:"Roteren","flip-vertical":"Verticaal spiegelen","flip-horizontal":"Horizontaal spiegelen",apply:"Toepassen",brightness:"Helderheid",contrast:"Contrast",saturation:"Verzadiging",exposure:"Belichting",gamma:"Gamma",vibrance:"Levendigheid",warmth:"Warmte",enhance:"Verbeteren",original:"Origineel",resize:"Afbeelding schalen",crop:"Bijsnijden","select-color":"Kleur selecteren",text:"Tekst",draw:"Tekenen","cancel-edit":"Bewerken annuleren","tab-view":"Voorbeeld","tab-details":"Details","file-name":"Naam","file-size":"Grootte","cdn-url":"CDN URL","file-size-unknown":"Onbekend","camera-permissions-denied":"Toegang tot de camera geweigerd","camera-permissions-prompt":"Geef toegang tot de camera alstublieft","camera-permissions-request":"Toegang aanvragen","files-count-limit-error-title":"Bestandslimiet overschreden","files-count-limit-error-too-few":"U heeft {{total}} {{plural:file(total)}} gekozen. Minimaal {{min}} {{plural:file(min)}} vereist.","files-count-limit-error-too-many":"U heeft te veel bestanden gekozen. Maximaal {{max}} {{plural:file(max)}} toegestaan.","files-max-size-limit-error":"Bestand is te groot. Max bestandsgrootte is {{maxFileSize}}.","has-validation-errors":"Er is een validatiefout opgetreden. Controleer uw bestanden voor het uploaden.","images-only-accepted":"Alleen afbeeldingsbestanden worden geaccepteerd.","file-type-not-allowed":"Dit bestandstype is niet toegestaan.","some-files-were-not-uploaded":"Sommige bestanden zijn niet ge\xFCpload.","file-item-edit-button":"Bewerken","file-item-remove-button":"Verwijderen","a11y-activity-header-button-close":"Sluiten","a11y-editor-tab-filters":"Filters","a11y-editor-tab-tuning":"Afstemming","a11y-editor-tab-crop":"Bijsnijden",flip:"Omdraaien",mirror:"Spiegel","a11y-cloud-editor-apply-filter":"{{name}} filter toepassen","a11y-cloud-editor-apply-crop":"{{name}} operatie toepassen","a11y-cloud-editor-apply-tuning":"{{name}} afstemming toepassen",finished:"Voltooid",failed:"Mislukt",uploading:"Uploaden",idle:"Inactief","a11y-file-item-status":"Bestand {{fileName}} in status {{status}}","select-all":"Selecteer alles","deselect-all":"Deselecteer alles","waiting-for":"Wachten op {{source}}","queued-uploading":"In de wachtrij voor upload","queued-validation":"In de wachtrij voor validatie",validation:"Bezig met valideren","a11y-cloud-editor-apply-aspect-ratio":"Bewerking {{name}} {{value}} toepassen","crop-to-shape":"Bijsnijden naar {{value}}",custom:"Vrije vorm","freeform-crop":"Vrije uitsnijding"};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 nl_default = {
8
+ "locale-id": "nl",
9
+ "social-source-lang": "nl",
10
+ "upload-file": "Bestand uploaden",
11
+ "upload-files": "Bestanden uploaden",
12
+ "choose-file": "Kies bestand",
13
+ "choose-files": "Kies bestanden",
14
+ "drop-files-here": "Bestanden hier neerzetten",
15
+ "select-file-source": "Selecteer bestandsbron",
16
+ selected: "Geselecteerd",
17
+ upload: "Uploaden",
18
+ "add-more": "Meer toevoegen",
19
+ cancel: "Annuleren",
20
+ "start-from-cancel": "Annuleren",
21
+ clear: "Wissen",
22
+ "camera-shot": "Foto maken",
23
+ "upload-url": "Importeren",
24
+ "upload-url-placeholder": "Plak hier de link",
25
+ "edit-image": "Afbeelding bewerken",
26
+ "edit-detail": "Details bewerken",
27
+ back: "Terug",
28
+ done: "Gedaan",
29
+ ok: "Ok",
30
+ "remove-from-list": "Verwijderen",
31
+ no: "Nee",
32
+ yes: "Ja",
33
+ "confirm-your-action": "Bevestig je actie",
34
+ "are-you-sure": "Weet je het zeker?",
35
+ "selected-count": "Geselecteerd:",
36
+ "upload-error": "Uploadfout",
37
+ "validation-error": "Validatiefout",
38
+ "no-files": "Geen bestanden geselecteerd",
39
+ browse: "Bladeren",
40
+ "not-uploaded-yet": "Nog niet geüpload...",
41
+ file__one: "bestand",
42
+ file__other: "bestanden",
43
+ error__one: "fout",
44
+ error__other: "fouten",
45
+ "header-uploading": "Uploaden van {{count}} {{plural:file(count)}}",
46
+ "header-failed": "{{count}} {{plural:error(count)}}",
47
+ "header-succeed": "{{count}} {{plural:file(count)}} geüpload",
48
+ "header-total": "{{count}} {{plural:file(count)}} geselecteerd",
49
+ "src-type-local": "Van apparaat",
50
+ "src-type-from-url": "Van link",
51
+ "src-type-camera": "Camera",
52
+ "src-type-facebook": "Facebook",
53
+ "src-type-dropbox": "Dropbox",
54
+ "src-type-gdrive": "Google Drive",
55
+ "src-type-ngdrive": "Google Drive",
56
+ "src-type-gphotos": "Google Photos",
57
+ "src-type-flickr": "Flickr",
58
+ "src-type-vk": "VK",
59
+ "src-type-evernote": "Evernote",
60
+ "src-type-box": "Box",
61
+ "src-type-onedrive": "OneDrive",
62
+ "src-type-huddle": "Huddle",
63
+ "src-type-other": "Andere",
64
+ "src-type-mobile-video-camera": "Video",
65
+ "src-type-mobile-photo-camera": "Foto",
66
+ "caption-from-url": "Importeren van link",
67
+ "caption-camera": "Camera",
68
+ "caption-edit-file": "Bestand bewerken",
69
+ "file-no-name": "Geen naam...",
70
+ "toggle-fullscreen": "Volledig scherm wisselen",
71
+ "toggle-guides": "Richtlijnen wisselen",
72
+ rotate: "Roteren",
73
+ "flip-vertical": "Verticaal spiegelen",
74
+ "flip-horizontal": "Horizontaal spiegelen",
75
+ apply: "Toepassen",
76
+ brightness: "Helderheid",
77
+ contrast: "Contrast",
78
+ saturation: "Verzadiging",
79
+ exposure: "Belichting",
80
+ gamma: "Gamma",
81
+ vibrance: "Levendigheid",
82
+ warmth: "Warmte",
83
+ enhance: "Verbeteren",
84
+ original: "Origineel",
85
+ resize: "Afbeelding schalen",
86
+ crop: "Bijsnijden",
87
+ "select-color": "Kleur selecteren",
88
+ text: "Tekst",
89
+ draw: "Tekenen",
90
+ "cancel-edit": "Bewerken annuleren",
91
+ "tab-view": "Voorbeeld",
92
+ "tab-details": "Details",
93
+ "file-name": "Naam",
94
+ "file-size": "Grootte",
95
+ "cdn-url": "CDN URL",
96
+ "file-size-unknown": "Onbekend",
97
+ "camera-permissions-denied": "Toegang tot de camera geweigerd",
98
+ "camera-permissions-prompt": "Geef toegang tot de camera alstublieft",
99
+ "camera-permissions-request": "Toegang aanvragen",
100
+ "files-count-limit-error-title": "Bestandslimiet overschreden",
101
+ "files-count-limit-error-too-few": "U heeft {{total}} {{plural:file(total)}} gekozen. Minimaal {{min}} {{plural:file(min)}} vereist.",
102
+ "files-count-limit-error-too-many": "U heeft te veel bestanden gekozen. Maximaal {{max}} {{plural:file(max)}} toegestaan.",
103
+ "files-max-size-limit-error": "Bestand is te groot. Max bestandsgrootte is {{maxFileSize}}.",
104
+ "has-validation-errors": "Er is een validatiefout opgetreden. Controleer uw bestanden voor het uploaden.",
105
+ "images-only-accepted": "Alleen afbeeldingsbestanden worden geaccepteerd.",
106
+ "file-type-not-allowed": "Dit bestandstype is niet toegestaan.",
107
+ "some-files-were-not-uploaded": "Sommige bestanden zijn niet geüpload.",
108
+ "file-item-edit-button": "Bewerken",
109
+ "file-item-remove-button": "Verwijderen",
110
+ "a11y-activity-header-button-close": "Sluiten",
111
+ "a11y-editor-tab-filters": "Filters",
112
+ "a11y-editor-tab-tuning": "Afstemming",
113
+ "a11y-editor-tab-crop": "Bijsnijden",
114
+ flip: "Omdraaien",
115
+ mirror: "Spiegel",
116
+ "a11y-cloud-editor-apply-filter": "{{name}} filter toepassen",
117
+ "a11y-cloud-editor-apply-crop": "{{name}} operatie toepassen",
118
+ "a11y-cloud-editor-apply-tuning": "{{name}} afstemming toepassen",
119
+ finished: "Voltooid",
120
+ failed: "Mislukt",
121
+ uploading: "Uploaden",
122
+ idle: "Inactief",
123
+ "a11y-file-item-status": "Bestand {{fileName}} in status {{status}}",
124
+ "select-all": "Selecteer alles",
125
+ "deselect-all": "Deselecteer alles",
126
+ "waiting-for": "Wachten op {{source}}",
127
+ "queued-uploading": "In de wachtrij voor upload",
128
+ "queued-validation": "In de wachtrij voor validatie",
129
+ validation: "Bezig met valideren",
130
+ "a11y-cloud-editor-apply-aspect-ratio": "Bewerking {{name}} {{value}} toepassen",
131
+ "crop-to-shape": "Bijsnijden naar {{value}}",
132
+ custom: "Vrije vorm",
133
+ "freeform-crop": "Vrije uitsnijding"
134
+ };
135
+ export { nl_default as default };
@@ -47,7 +47,6 @@ declare const _default: {
47
47
  'src-type-local': string;
48
48
  'src-type-from-url': string;
49
49
  'src-type-camera': string;
50
- 'src-type-draw': string;
51
50
  'src-type-facebook': string;
52
51
  'src-type-dropbox': string;
53
52
  'src-type-gdrive': string;
@@ -64,7 +63,6 @@ declare const _default: {
64
63
  'src-type-mobile-photo-camera': string;
65
64
  'caption-from-url': string;
66
65
  'caption-camera': string;
67
- 'caption-draw': string;
68
66
  'caption-edit-file': string;
69
67
  'file-no-name': string;
70
68
  '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.0 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-11T17:11:01.159Z
6
- */
7
- var e={"locale-id":"pl","social-source-lang":"pl","upload-file":"Prze\u015Blij plik","upload-files":"Prze\u015Blij pliki","choose-file":"Wybierz plik","choose-files":"Wybierz pliki","drop-files-here":"Upu\u015B\u0107 pliki tutaj","select-file-source":"Wybierz \u017Ar\xF3d\u0142o pliku",selected:"Wybrane",upload:"Prze\u015Blij","add-more":"Dodaj wi\u0119cej",cancel:"Anuluj","start-from-cancel":"Anuluj",clear:"Wyczy\u015B\u0107","camera-shot":"Zdj\u0119cie","upload-url":"Importuj","upload-url-placeholder":"Wklej link tutaj","edit-image":"Edytuj obraz","edit-detail":"Szczeg\xF3\u0142y",back:"Wstecz",done:"Gotowe",ok:"Ok","remove-from-list":"Usu\u0144",no:"Nie",yes:"Tak","confirm-your-action":"Potwierd\u017A swoj\u0105 akcj\u0119","are-you-sure":"Jeste\u015B pewny?","selected-count":"Wybrano:","upload-error":"B\u0142\u0105d przesy\u0142ania","validation-error":"B\u0142\u0105d walidacji","no-files":"Nie wybrano plik\xF3w",browse:"Przegl\u0105daj","not-uploaded-yet":"Jeszcze nie przes\u0142ano...",file__one:"plik",file__few:"pliki",file__many:"plik\xF3w",file__other:"plik\xF3w",error__one:"b\u0142\u0105d",error__few:"b\u0142\u0119dy",error__many:"b\u0142\u0119d\xF3w",error__other:"b\u0142\u0119d\xF3w","header-uploading":"Przesy\u0142anie {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} przes\u0142ane","header-total":"{{count}} {{plural:file(count)}} wybrane","src-type-local":"Z urz\u0105dzenia","src-type-from-url":"Z linku","src-type-camera":"Aparat","src-type-draw":"Rysuj","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":"Inne","src-type-mobile-video-camera":"Wideo","src-type-mobile-photo-camera":"Zdj\u0119cie","caption-from-url":"Import z linku","caption-camera":"Aparat","caption-draw":"Rysuj","caption-edit-file":"Edytuj plik","file-no-name":"Bez nazwy...","toggle-fullscreen":"Pe\u0142ny ekran","toggle-guides":"Prze\u0142\u0105cz przewodniki",rotate:"Obr\xF3\u0107","flip-vertical":"Odwr\xF3\u0107 w pionie","flip-horizontal":"Odwr\xF3\u0107 w poziomie",apply:"Zastosuj",brightness:"Jasno\u015B\u0107",contrast:"Kontrast",saturation:"Nasycenie",exposure:"Ekspozycja",gamma:"Gamma",vibrance:"Wibracja",warmth:"Ciep\u0142o",enhance:"Popraw",original:"Oryginalny",resize:"Zmie\u0144 rozmiar obrazu",crop:"Przytnij","select-color":"Wybierz kolor",text:"Tekst",draw:"Rysuj","cancel-edit":"Anuluj edycj\u0119","tab-view":"Podgl\u0105d","tab-details":"Szczeg\xF3\u0142y","file-name":"Nazwa","file-size":"Rozmiar","cdn-url":"URL CDN","file-size-unknown":"Nieznany","camera-permissions-denied":"Dost\u0119p do kamery zosta\u0142 zabroniony","camera-permissions-prompt":"Prosz\u0119 zezwoli\u0107 na dost\u0119p do kamery","camera-permissions-request":"Za\u017C\u0105daj dost\u0119pu","files-count-limit-error-title":"Przekroczono limit liczby plik\xF3w","files-count-limit-error-too-few":"Wybra\u0142e\u015B {{total}} {{plural:file(total)}}. Wymagane jest co najmniej {{min}} {{plural:file(min)}}.","files-count-limit-error-too-many":"Wybra\u0142e\u015B za du\u017Co plik\xF3w. Maksymalnie {{max}} {{plural:file(max)}}.","files-max-size-limit-error":"Plik jest za du\u017Cy. Maksymalny rozmiar pliku to {{maxFileSize}}.","has-validation-errors":"Wyst\u0105pi\u0142 b\u0142\u0105d walidacji pliku. Prosz\u0119, sprawd\u017A swoje pliki przed przes\u0142aniem.","images-only-accepted":"Akceptowane s\u0105 tylko pliki obraz\xF3w.","file-type-not-allowed":"Przesy\u0142anie tego typu plik\xF3w jest niedozwolone.","some-files-were-not-uploaded":"Niekt\xF3re pliki nie zosta\u0142y przes\u0142ane.","file-item-edit-button":"Edytuj","file-item-remove-button":"Usu\u0144","a11y-activity-header-button-close":"Zamknij","a11y-editor-tab-filters":"Filtry","a11y-editor-tab-tuning":"Dostrajanie","a11y-editor-tab-crop":"Przytnij",flip:"Obr\xF3\u0107",mirror:"Lustro","a11y-cloud-editor-apply-filter":"Zastosuj filtr {{name}}","a11y-cloud-editor-apply-crop":"Zastosuj operacj\u0119 {{name}}","a11y-cloud-editor-apply-tuning":"Zastosuj dostrajanie {{name}}",finished:"Zako\u0144czono",failed:"Nie powiod\u0142o si\u0119",uploading:"Przesy\u0142anie",idle:"Bezczynny","a11y-file-item-status":"Plik {{fileName}} ma status {{status}}","select-all":"Zaznacz wszystko","deselect-all":"Odznacz wszystko","waiting-for":"Oczekiwanie na {{source}}","queued-uploading":"W kolejce do przes\u0142ania","queued-validation":"W kolejce do walidacji",validation:"Walidacja w toku","a11y-cloud-editor-apply-aspect-ratio":"Zastosuj operacj\u0119 {{name}} {{value}}","crop-to-shape":"Przytnij do {{value}}",custom:"Forma swobodna","freeform-crop":"Swobodne kadrowanie"};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 pl_default = {
8
+ "locale-id": "pl",
9
+ "social-source-lang": "pl",
10
+ "upload-file": "Prześlij plik",
11
+ "upload-files": "Prześlij pliki",
12
+ "choose-file": "Wybierz plik",
13
+ "choose-files": "Wybierz pliki",
14
+ "drop-files-here": "Upuść pliki tutaj",
15
+ "select-file-source": "Wybierz źródło pliku",
16
+ selected: "Wybrane",
17
+ upload: "Prześlij",
18
+ "add-more": "Dodaj więcej",
19
+ cancel: "Anuluj",
20
+ "start-from-cancel": "Anuluj",
21
+ clear: "Wyczyść",
22
+ "camera-shot": "Zdjęcie",
23
+ "upload-url": "Importuj",
24
+ "upload-url-placeholder": "Wklej link tutaj",
25
+ "edit-image": "Edytuj obraz",
26
+ "edit-detail": "Szczegóły",
27
+ back: "Wstecz",
28
+ done: "Gotowe",
29
+ ok: "Ok",
30
+ "remove-from-list": "Usuń",
31
+ no: "Nie",
32
+ yes: "Tak",
33
+ "confirm-your-action": "Potwierdź swoją akcję",
34
+ "are-you-sure": "Jesteś pewny?",
35
+ "selected-count": "Wybrano:",
36
+ "upload-error": "Błąd przesyłania",
37
+ "validation-error": "Błąd walidacji",
38
+ "no-files": "Nie wybrano plików",
39
+ browse: "Przeglądaj",
40
+ "not-uploaded-yet": "Jeszcze nie przesłano...",
41
+ file__one: "plik",
42
+ file__few: "pliki",
43
+ file__many: "plików",
44
+ file__other: "plików",
45
+ error__one: "błąd",
46
+ error__few: "błędy",
47
+ error__many: "błędów",
48
+ error__other: "błędów",
49
+ "header-uploading": "Przesyłanie {{count}} {{plural:file(count)}}",
50
+ "header-failed": "{{count}} {{plural:error(count)}}",
51
+ "header-succeed": "{{count}} {{plural:file(count)}} przesłane",
52
+ "header-total": "{{count}} {{plural:file(count)}} wybrane",
53
+ "src-type-local": "Z urządzenia",
54
+ "src-type-from-url": "Z linku",
55
+ "src-type-camera": "Aparat",
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": "Inne",
68
+ "src-type-mobile-video-camera": "Wideo",
69
+ "src-type-mobile-photo-camera": "Zdjęcie",
70
+ "caption-from-url": "Import z linku",
71
+ "caption-camera": "Aparat",
72
+ "caption-edit-file": "Edytuj plik",
73
+ "file-no-name": "Bez nazwy...",
74
+ "toggle-fullscreen": "Pełny ekran",
75
+ "toggle-guides": "Przełącz przewodniki",
76
+ rotate: "Obróć",
77
+ "flip-vertical": "Odwróć w pionie",
78
+ "flip-horizontal": "Odwróć w poziomie",
79
+ apply: "Zastosuj",
80
+ brightness: "Jasność",
81
+ contrast: "Kontrast",
82
+ saturation: "Nasycenie",
83
+ exposure: "Ekspozycja",
84
+ gamma: "Gamma",
85
+ vibrance: "Wibracja",
86
+ warmth: "Ciepło",
87
+ enhance: "Popraw",
88
+ original: "Oryginalny",
89
+ resize: "Zmień rozmiar obrazu",
90
+ crop: "Przytnij",
91
+ "select-color": "Wybierz kolor",
92
+ text: "Tekst",
93
+ draw: "Rysuj",
94
+ "cancel-edit": "Anuluj edycję",
95
+ "tab-view": "Podgląd",
96
+ "tab-details": "Szczegóły",
97
+ "file-name": "Nazwa",
98
+ "file-size": "Rozmiar",
99
+ "cdn-url": "URL CDN",
100
+ "file-size-unknown": "Nieznany",
101
+ "camera-permissions-denied": "Dostęp do kamery został zabroniony",
102
+ "camera-permissions-prompt": "Proszę zezwolić na dostęp do kamery",
103
+ "camera-permissions-request": "Zażądaj dostępu",
104
+ "files-count-limit-error-title": "Przekroczono limit liczby plików",
105
+ "files-count-limit-error-too-few": "Wybrałeś {{total}} {{plural:file(total)}}. Wymagane jest co najmniej {{min}} {{plural:file(min)}}.",
106
+ "files-count-limit-error-too-many": "Wybrałeś za dużo plików. Maksymalnie {{max}} {{plural:file(max)}}.",
107
+ "files-max-size-limit-error": "Plik jest za duży. Maksymalny rozmiar pliku to {{maxFileSize}}.",
108
+ "has-validation-errors": "Wystąpił błąd walidacji pliku. Proszę, sprawdź swoje pliki przed przesłaniem.",
109
+ "images-only-accepted": "Akceptowane są tylko pliki obrazów.",
110
+ "file-type-not-allowed": "Przesyłanie tego typu plików jest niedozwolone.",
111
+ "some-files-were-not-uploaded": "Niektóre pliki nie zostały przesłane.",
112
+ "file-item-edit-button": "Edytuj",
113
+ "file-item-remove-button": "Usuń",
114
+ "a11y-activity-header-button-close": "Zamknij",
115
+ "a11y-editor-tab-filters": "Filtry",
116
+ "a11y-editor-tab-tuning": "Dostrajanie",
117
+ "a11y-editor-tab-crop": "Przytnij",
118
+ flip: "Obróć",
119
+ mirror: "Lustro",
120
+ "a11y-cloud-editor-apply-filter": "Zastosuj filtr {{name}}",
121
+ "a11y-cloud-editor-apply-crop": "Zastosuj operację {{name}}",
122
+ "a11y-cloud-editor-apply-tuning": "Zastosuj dostrajanie {{name}}",
123
+ finished: "Zakończono",
124
+ failed: "Nie powiodło się",
125
+ uploading: "Przesyłanie",
126
+ idle: "Bezczynny",
127
+ "a11y-file-item-status": "Plik {{fileName}} ma status {{status}}",
128
+ "select-all": "Zaznacz wszystko",
129
+ "deselect-all": "Odznacz wszystko",
130
+ "waiting-for": "Oczekiwanie na {{source}}",
131
+ "queued-uploading": "W kolejce do przesłania",
132
+ "queued-validation": "W kolejce do walidacji",
133
+ validation: "Walidacja w toku",
134
+ "a11y-cloud-editor-apply-aspect-ratio": "Zastosuj operację {{name}} {{value}}",
135
+ "crop-to-shape": "Przytnij do {{value}}",
136
+ custom: "Forma swobodna",
137
+ "freeform-crop": "Swobodne kadrowanie"
138
+ };
139
+ export { pl_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;
@@ -130,5 +128,4 @@ declare const _default: {
130
128
  custom: string;
131
129
  'freeform-crop': string;
132
130
  };
133
-
134
- export { _default as default };
131
+ export default _default;
@@ -1,7 +1,137 @@
1
1
  /**
2
- * @license
3
- * Package: @uploadcare/file-uploader@1.27.0 (MIT)
4
- * License: https://github.com/uploadcare/blob/main/LICENSE
5
- * Built: 2026-02-11T17:11:01.159Z
6
- */
7
- var e={"locale-id":"pt","social-source-lang":"pt","upload-file":"Carregar arquivo","upload-files":"Carregar arquivos","choose-file":"Escolher arquivo","choose-files":"Escolher arquivos","drop-files-here":"Solte os arquivos aqui","select-file-source":"Selecionar origem do arquivo",selected:"Selecionado",upload:"Carregar","add-more":"Adicionar mais",cancel:"Cancelar","start-from-cancel":"Cancelar",clear:"Limpar","camera-shot":"Tirar foto","upload-url":"Importar","upload-url-placeholder":"Cole o link aqui","edit-image":"Editar imagem","edit-detail":"Detalhes",back:"Voltar",done:"Conclu\xEDdo",ok:"Ok","remove-from-list":"Remover",no:"N\xE3o",yes:"Sim","confirm-your-action":"Confirmar sua a\xE7\xE3o","are-you-sure":"Tem certeza?","selected-count":"Selecionados:","upload-error":"Erro no upload","validation-error":"Erro de valida\xE7\xE3o","no-files":"Nenhum arquivo selecionado",browse:"Procurar","not-uploaded-yet":"Ainda n\xE3o carregado...",file__one:"arquivo",file__many:"arquivos",file__other:"arquivos",error__one:"erro",error__many:"erros",error__other:"erros","header-uploading":"Carregando {{count}} {{plural:file(count)}}","header-failed":"{{count}} {{plural:error(count)}}","header-succeed":"{{count}} {{plural:file(count)}} carregado","header-total":"{{count}} {{plural:file(count)}} selecionado","src-type-local":"Do dispositivo","src-type-from-url":"Do link","src-type-camera":"C\xE2mera","src-type-draw":"Desenhar","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":"Outro","src-type-mobile-video-camera":"V\xEDdeo","src-type-mobile-photo-camera":"Foto","caption-from-url":"Importar do link","caption-camera":"C\xE2mera","caption-draw":"Desenhar","caption-edit-file":"Editar arquivo","file-no-name":"Sem nome...","toggle-fullscreen":"Alternar tela cheia","toggle-guides":"Alternar guias",rotate:"Rotacionar","flip-vertical":"Virar verticalmente","flip-horizontal":"Virar horizontalmente",apply:"Aplicar",brightness:"Brilho",contrast:"Contraste",saturation:"Satura\xE7\xE3o",exposure:"Exposi\xE7\xE3o",gamma:"Gama",vibrance:"Vivacidade",warmth:"Calor",enhance:"Melhorar",original:"Original",resize:"Redimensionar imagem",crop:"Cortar","select-color":"Selecionar cor",text:"Texto",draw:"Desenhar","cancel-edit":"Cancelar edi\xE7\xE3o","tab-view":"Pr\xE9-visualizar","tab-details":"Detalhes","file-name":"Nome","file-size":"Tamanho","cdn-url":"URL CDN","file-size-unknown":"Desconhecido","camera-permissions-denied":"Acesso \xE0 c\xE2mera negado","camera-permissions-prompt":"Por favor, permita o acesso \xE0 c\xE2mera","camera-permissions-request":"Solicitar acesso","files-count-limit-error-title":"Limite de quantidade de arquivos excedido","files-count-limit-error-too-few":"Voc\xEA selecionou {{total}} {{plural:file(total)}}. Pelo menos {{min}} {{plural:file(min)}} s\xE3o necess\xE1rios.","files-count-limit-error-too-many":"Voc\xEA selecionou muitos arquivos. {{max}} {{plural:file(max)}} \xE9 o m\xE1ximo.","files-max-size-limit-error":"Arquivo muito grande. O tamanho m\xE1ximo do arquivo \xE9 {{maxFileSize}}.","has-validation-errors":"Ocorreu um erro de valida\xE7\xE3o do arquivo. Por favor, verifique seus arquivos antes do upload.","images-only-accepted":"Apenas arquivos de imagem s\xE3o aceitos.","file-type-not-allowed":"O upload desses tipos de arquivo n\xE3o \xE9 permitido.","some-files-were-not-uploaded":"Alguns arquivos n\xE3o foram carregados.","file-item-edit-button":"Editar","file-item-remove-button":"Remover","a11y-activity-header-button-close":"Fechar","a11y-editor-tab-filters":"Filtros","a11y-editor-tab-tuning":"Ajustes","a11y-editor-tab-crop":"Cortar",flip:"Virar",mirror:"Espelho","a11y-cloud-editor-apply-filter":"Aplicar filtro {{name}}","a11y-cloud-editor-apply-crop":"Aplicar opera\xE7\xE3o {{name}}","a11y-cloud-editor-apply-tuning":"Aplicar ajuste {{name}}",finished:"Conclu\xEDdo",failed:"Falhou",uploading:"Carregando",idle:"Ocioso","a11y-file-item-status":"O arquivo {{fileName}} est\xE1 no status {{status}}","select-all":"Selecionar tudo","deselect-all":"Desmarcar tudo","waiting-for":"Aguardando {{source}}","queued-uploading":"Na fila para envio","queued-validation":"Na fila para valida\xE7\xE3o",validation:"Validando","a11y-cloud-editor-apply-aspect-ratio":"Aplicar opera\xE7\xE3o {{name}} {{value}}","crop-to-shape":"Recortar para {{value}}",custom:"Forma livre","freeform-crop":"Recorte livre"};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 pt_default = {
8
+ "locale-id": "pt",
9
+ "social-source-lang": "pt",
10
+ "upload-file": "Carregar arquivo",
11
+ "upload-files": "Carregar arquivos",
12
+ "choose-file": "Escolher arquivo",
13
+ "choose-files": "Escolher arquivos",
14
+ "drop-files-here": "Solte os arquivos aqui",
15
+ "select-file-source": "Selecionar origem do arquivo",
16
+ selected: "Selecionado",
17
+ upload: "Carregar",
18
+ "add-more": "Adicionar mais",
19
+ cancel: "Cancelar",
20
+ "start-from-cancel": "Cancelar",
21
+ clear: "Limpar",
22
+ "camera-shot": "Tirar foto",
23
+ "upload-url": "Importar",
24
+ "upload-url-placeholder": "Cole o link aqui",
25
+ "edit-image": "Editar imagem",
26
+ "edit-detail": "Detalhes",
27
+ back: "Voltar",
28
+ done: "Concluído",
29
+ ok: "Ok",
30
+ "remove-from-list": "Remover",
31
+ no: "Não",
32
+ yes: "Sim",
33
+ "confirm-your-action": "Confirmar sua ação",
34
+ "are-you-sure": "Tem certeza?",
35
+ "selected-count": "Selecionados:",
36
+ "upload-error": "Erro no upload",
37
+ "validation-error": "Erro de validação",
38
+ "no-files": "Nenhum arquivo selecionado",
39
+ browse: "Procurar",
40
+ "not-uploaded-yet": "Ainda não carregado...",
41
+ file__one: "arquivo",
42
+ file__many: "arquivos",
43
+ file__other: "arquivos",
44
+ error__one: "erro",
45
+ error__many: "erros",
46
+ error__other: "erros",
47
+ "header-uploading": "Carregando {{count}} {{plural:file(count)}}",
48
+ "header-failed": "{{count}} {{plural:error(count)}}",
49
+ "header-succeed": "{{count}} {{plural:file(count)}} carregado",
50
+ "header-total": "{{count}} {{plural:file(count)}} selecionado",
51
+ "src-type-local": "Do dispositivo",
52
+ "src-type-from-url": "Do link",
53
+ "src-type-camera": "Câmera",
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": "Outro",
66
+ "src-type-mobile-video-camera": "Vídeo",
67
+ "src-type-mobile-photo-camera": "Foto",
68
+ "caption-from-url": "Importar do link",
69
+ "caption-camera": "Câmera",
70
+ "caption-edit-file": "Editar arquivo",
71
+ "file-no-name": "Sem nome...",
72
+ "toggle-fullscreen": "Alternar tela cheia",
73
+ "toggle-guides": "Alternar guias",
74
+ rotate: "Rotacionar",
75
+ "flip-vertical": "Virar verticalmente",
76
+ "flip-horizontal": "Virar horizontalmente",
77
+ apply: "Aplicar",
78
+ brightness: "Brilho",
79
+ contrast: "Contraste",
80
+ saturation: "Saturação",
81
+ exposure: "Exposição",
82
+ gamma: "Gama",
83
+ vibrance: "Vivacidade",
84
+ warmth: "Calor",
85
+ enhance: "Melhorar",
86
+ original: "Original",
87
+ resize: "Redimensionar imagem",
88
+ crop: "Cortar",
89
+ "select-color": "Selecionar cor",
90
+ text: "Texto",
91
+ draw: "Desenhar",
92
+ "cancel-edit": "Cancelar edição",
93
+ "tab-view": "Pré-visualizar",
94
+ "tab-details": "Detalhes",
95
+ "file-name": "Nome",
96
+ "file-size": "Tamanho",
97
+ "cdn-url": "URL CDN",
98
+ "file-size-unknown": "Desconhecido",
99
+ "camera-permissions-denied": "Acesso à câmera negado",
100
+ "camera-permissions-prompt": "Por favor, permita o acesso à câmera",
101
+ "camera-permissions-request": "Solicitar acesso",
102
+ "files-count-limit-error-title": "Limite de quantidade de arquivos excedido",
103
+ "files-count-limit-error-too-few": "Você selecionou {{total}} {{plural:file(total)}}. Pelo menos {{min}} {{plural:file(min)}} são necessários.",
104
+ "files-count-limit-error-too-many": "Você selecionou muitos arquivos. {{max}} {{plural:file(max)}} é o máximo.",
105
+ "files-max-size-limit-error": "Arquivo muito grande. O tamanho máximo do arquivo é {{maxFileSize}}.",
106
+ "has-validation-errors": "Ocorreu um erro de validação do arquivo. Por favor, verifique seus arquivos antes do upload.",
107
+ "images-only-accepted": "Apenas arquivos de imagem são aceitos.",
108
+ "file-type-not-allowed": "O upload desses tipos de arquivo não é permitido.",
109
+ "some-files-were-not-uploaded": "Alguns arquivos não foram carregados.",
110
+ "file-item-edit-button": "Editar",
111
+ "file-item-remove-button": "Remover",
112
+ "a11y-activity-header-button-close": "Fechar",
113
+ "a11y-editor-tab-filters": "Filtros",
114
+ "a11y-editor-tab-tuning": "Ajustes",
115
+ "a11y-editor-tab-crop": "Cortar",
116
+ flip: "Virar",
117
+ mirror: "Espelho",
118
+ "a11y-cloud-editor-apply-filter": "Aplicar filtro {{name}}",
119
+ "a11y-cloud-editor-apply-crop": "Aplicar operação {{name}}",
120
+ "a11y-cloud-editor-apply-tuning": "Aplicar ajuste {{name}}",
121
+ finished: "Concluído",
122
+ failed: "Falhou",
123
+ uploading: "Carregando",
124
+ idle: "Ocioso",
125
+ "a11y-file-item-status": "O arquivo {{fileName}} está no status {{status}}",
126
+ "select-all": "Selecionar tudo",
127
+ "deselect-all": "Desmarcar tudo",
128
+ "waiting-for": "Aguardando {{source}}",
129
+ "queued-uploading": "Na fila para envio",
130
+ "queued-validation": "Na fila para validação",
131
+ validation: "Validando",
132
+ "a11y-cloud-editor-apply-aspect-ratio": "Aplicar operação {{name}} {{value}}",
133
+ "crop-to-shape": "Recortar para {{value}}",
134
+ custom: "Forma livre",
135
+ "freeform-crop": "Recorte livre"
136
+ };
137
+ export { pt_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;
@@ -130,5 +128,4 @@ declare const _default: {
130
128
  custom: string;
131
129
  'freeform-crop': string;
132
130
  };
133
-
134
- export { _default as default };
131
+ export default _default;