filepond 5.0.0-beta.2 → 5.0.0-beta.21

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 (368) hide show
  1. package/README.md +27 -4
  2. package/cdn/assets/index.js +1 -1
  3. package/cdn/dev/index.js +1 -0
  4. package/cdn/extensions/blob-loader.js +1 -1
  5. package/cdn/extensions/canvas-loader.js +1 -1
  6. package/cdn/extensions/chunked-upload-store.js +1 -1
  7. package/cdn/extensions/clipboard-source.js +1 -1
  8. package/cdn/extensions/console-view.js +1 -1
  9. package/cdn/extensions/data-transfer-loader.js +1 -1
  10. package/cdn/extensions/data-url-store.js +1 -1
  11. package/cdn/extensions/drag-drop-source.js +1 -1
  12. package/cdn/extensions/dropbox-source.js +1 -1
  13. package/cdn/extensions/entry-list-view.js +1 -1
  14. package/cdn/extensions/file-extension-validator.js +1 -1
  15. package/cdn/extensions/file-input-source.js +1 -1
  16. package/cdn/extensions/file-input-store.js +1 -1
  17. package/cdn/extensions/file-mime-type-validator.js +1 -1
  18. package/cdn/extensions/file-name-transform.js +1 -1
  19. package/cdn/extensions/file-name-validator.js +1 -1
  20. package/cdn/extensions/file-size-validator.js +1 -1
  21. package/cdn/extensions/form-post-store.js +1 -1
  22. package/cdn/extensions/image-bitmap-transform.js +1 -0
  23. package/cdn/extensions/index.js +1 -1
  24. package/cdn/extensions/list-count-validator.js +1 -1
  25. package/cdn/extensions/list-size-validator.js +1 -1
  26. package/cdn/extensions/media-resolution-validator.js +1 -1
  27. package/cdn/extensions/object-url-store.js +1 -1
  28. package/cdn/extensions/simulated-loader.js +1 -1
  29. package/cdn/extensions/simulated-store.js +1 -1
  30. package/cdn/extensions/text-input-store.js +1 -1
  31. package/cdn/extensions/url-loader.js +1 -1
  32. package/cdn/extensions/value-callback-store.js +1 -1
  33. package/cdn/index.js +1 -7
  34. package/cdn/locales/ar-ar.js +72 -48
  35. package/cdn/locales/bn-bd.js +72 -48
  36. package/cdn/locales/cs-cz.js +83 -59
  37. package/cdn/locales/da-dk.js +74 -50
  38. package/cdn/locales/de-de.js +72 -42
  39. package/cdn/locales/el-gr.js +72 -48
  40. package/cdn/locales/en-gb.js +85 -62
  41. package/cdn/locales/es-es.js +69 -39
  42. package/cdn/locales/fi-fi.js +69 -45
  43. package/cdn/locales/fr-fr.js +78 -48
  44. package/cdn/locales/hi-in.js +72 -42
  45. package/cdn/locales/hu-hu.js +66 -42
  46. package/cdn/locales/index.js +1 -1
  47. package/cdn/locales/is-is.js +71 -47
  48. package/cdn/locales/it-it.js +73 -43
  49. package/cdn/locales/ja-jp.js +72 -42
  50. package/cdn/locales/ko-kr.js +72 -42
  51. package/cdn/locales/nb-no.js +74 -44
  52. package/cdn/locales/nl-nl.js +71 -48
  53. package/cdn/locales/pl-pl.js +76 -52
  54. package/cdn/locales/pt-pt.js +71 -41
  55. package/cdn/locales/sv-se.js +73 -43
  56. package/cdn/locales/tr-tr.js +83 -59
  57. package/cdn/locales/uk-ua.js +72 -48
  58. package/cdn/locales/vi-vn.js +82 -58
  59. package/cdn/locales/zh-cn.js +72 -42
  60. package/cdn/main.js +7 -0
  61. package/cdn/templates/entry.js +1 -1
  62. package/cdn/templates/helpers.js +1 -1
  63. package/cdn/templates/index.js +1 -1
  64. package/cdn/templates/media.js +1 -1
  65. package/cdn/workers/httpRequest.js +45 -0
  66. package/cdn/workers/httpRequestWorker.js +37 -0
  67. package/cdn/workers/readFile.js +14 -0
  68. package/cdn/workers/readFileWorker.js +6 -0
  69. package/cdn/workers/transformImage.js +16 -0
  70. package/cdn/workers/transformImageWorker.js +8 -0
  71. package/esm/assets/index.js +1 -1
  72. package/esm/common/console.js +1 -1
  73. package/esm/common/entry.js +1 -1
  74. package/esm/common/perceivedPerformanceProxy.js +1 -1
  75. package/esm/common/readEntriesFromDataTransfer.js +1 -1
  76. package/esm/common/ssr.js +1 -1
  77. package/esm/common/status.js +1 -1
  78. package/esm/core/entryTree.js +142 -133
  79. package/esm/core/extensionManager.js +89 -86
  80. package/esm/core/taskScheduler.js +78 -97
  81. package/esm/dev/index.js +122 -0
  82. package/esm/elements/FilePondDefault/index.css.js +2 -2
  83. package/esm/elements/FilePondDefault/index.js +164 -125
  84. package/esm/elements/FilePondDropArea/index.css.js +1 -1
  85. package/esm/elements/FilePondDropArea/index.js +1 -1
  86. package/esm/elements/FilePondDropArea/index.svelte.js +38 -40
  87. package/esm/elements/FilePondDropIndicator/index.css.js +1 -1
  88. package/esm/elements/FilePondDropIndicator/index.js +1 -1
  89. package/esm/elements/FilePondDropIndicator/index.svelte.js +65 -67
  90. package/esm/elements/FilePondEntryList/components/Entry/index.css.js +2 -2
  91. package/esm/elements/FilePondEntryList/components/Entry/index.js +1 -1
  92. package/esm/elements/FilePondEntryList/components/Entry/index.svelte.js +37 -37
  93. package/esm/elements/FilePondEntryList/components/EntryActivityIndicator/index.css.js +2 -2
  94. package/esm/elements/FilePondEntryList/components/EntryActivityIndicator/index.js +1 -2
  95. package/esm/elements/FilePondEntryList/components/EntryActivityIndicator/index.svelte.js +115 -86
  96. package/esm/elements/FilePondEntryList/components/EntryList/index.css.js +1 -1
  97. package/esm/elements/FilePondEntryList/components/EntryList/index.js +1 -1
  98. package/esm/elements/FilePondEntryList/components/EntryList/index.svelte.js +159 -154
  99. package/esm/elements/FilePondEntryList/components/EntryListItem/index.css.js +1 -1
  100. package/esm/elements/FilePondEntryList/components/EntryListItem/index.js +1 -2
  101. package/esm/elements/FilePondEntryList/components/EntryListItem/index.svelte.js +70 -46
  102. package/esm/elements/FilePondEntryList/components/EntryListItemPlaceholder/index.svelte.js +1 -1
  103. package/esm/elements/FilePondEntryList/components/EntryStatus/index.css.js +1 -1
  104. package/esm/elements/FilePondEntryList/components/EntryStatus/index.js +1 -2
  105. package/esm/elements/FilePondEntryList/components/EntryStatus/index.svelte.js +62 -62
  106. package/esm/elements/FilePondEntryList/components/MediaImage/components/BitmapRenderer.svelte.js +65 -60
  107. package/esm/elements/FilePondEntryList/components/MediaImage/components/BitmapRendererCache.js +1 -1
  108. package/esm/elements/FilePondEntryList/components/MediaImage/index.css.js +1 -1
  109. package/esm/elements/FilePondEntryList/components/MediaImage/index.js +2 -1
  110. package/esm/elements/FilePondEntryList/components/MediaImage/index.svelte.js +91 -83
  111. package/esm/elements/FilePondEntryList/components/MediaPane/index.css.js +2 -2
  112. package/esm/elements/FilePondEntryList/components/MediaPane/index.js +1 -1
  113. package/esm/elements/FilePondEntryList/components/MediaPane/index.svelte.js +33 -35
  114. package/esm/elements/FilePondEntryList/components/MediaTimeIndicator/index.css.js +1 -1
  115. package/esm/elements/FilePondEntryList/components/MediaTimeIndicator/index.js +1 -1
  116. package/esm/elements/FilePondEntryList/components/MediaTimeIndicator/index.svelte.js +1 -1
  117. package/esm/elements/FilePondEntryList/components/MediaVideo/index.css.js +1 -1
  118. package/esm/elements/FilePondEntryList/components/MediaVideo/index.js +1 -1
  119. package/esm/elements/FilePondEntryList/components/MediaVideo/index.svelte.js +88 -88
  120. package/esm/elements/FilePondEntryList/contexts/appContext.js +1 -1
  121. package/esm/elements/FilePondEntryList/contexts/dragContext.js +1 -1
  122. package/esm/elements/FilePondEntryList/contexts/dropContext.js +1 -1
  123. package/esm/elements/FilePondEntryList/contexts/entryContext.js +1 -1
  124. package/esm/elements/FilePondEntryList/contexts/springElementTreeContext.js +1 -1
  125. package/esm/elements/FilePondEntryList/index.css.js +2 -2
  126. package/esm/elements/FilePondEntryList/index.js +11 -14
  127. package/esm/elements/FilePondEntryList/index.svelte.js +351 -271
  128. package/esm/elements/FilePondInput/index.css.js +3 -3
  129. package/esm/elements/FilePondInput/index.js +252 -191
  130. package/esm/elements/FilePondSvelteComponent/index.svelte.js +11 -11
  131. package/esm/elements/attachments/dragarea.js +62 -63
  132. package/esm/elements/attachments/droparea.js +1 -1
  133. package/esm/elements/attachments/measurable.js +1 -1
  134. package/esm/elements/attachments/resizable.js +1 -1
  135. package/esm/elements/attachments/transitions.js +1 -1
  136. package/esm/elements/common/animationGuard.js +1 -1
  137. package/esm/elements/common/animationPreference.svelte.js +35 -41
  138. package/esm/elements/common/dragDrop.js +1 -1
  139. package/esm/elements/common/event.js +1 -1
  140. package/esm/elements/common/extendStyles.js +1 -1
  141. package/esm/elements/common/getClosestElement.js +1 -1
  142. package/esm/elements/common/html.js +4 -4
  143. package/esm/elements/common/nodeTree.js +9 -9
  144. package/esm/elements/common/store.svelte.js +1 -1
  145. package/esm/elements/common/string.js +75 -55
  146. package/esm/elements/common/transition.js +1 -1
  147. package/esm/elements/components/BooleanInput/index.css.js +1 -1
  148. package/esm/elements/components/BooleanInput/index.js +1 -1
  149. package/esm/elements/components/BooleanInput/index.svelte.js +31 -33
  150. package/esm/elements/components/Button/index.css.js +2 -2
  151. package/esm/elements/components/Button/index.js +1 -1
  152. package/esm/elements/components/Button/index.svelte.js +49 -49
  153. package/esm/elements/components/ElementPane/index.css.js +1 -1
  154. package/esm/elements/components/ElementPane/index.js +1 -1
  155. package/esm/elements/components/ElementPane/index.svelte.js +1 -1
  156. package/esm/elements/components/ElementSkeleton/index.css.js +1 -1
  157. package/esm/elements/components/ElementSkeleton/index.js +1 -1
  158. package/esm/elements/components/ElementSkeleton/index.svelte.js +1 -1
  159. package/esm/elements/components/FilenameInput/index.css.js +2 -2
  160. package/esm/elements/components/FilenameInput/index.js +1 -1
  161. package/esm/elements/components/FilenameInput/index.svelte.js +1 -1
  162. package/esm/elements/components/NodeList/index.svelte.js +174 -200
  163. package/esm/elements/components/ProgressIndicator/index.css.js +2 -2
  164. package/esm/elements/components/ProgressIndicator/index.js +1 -1
  165. package/esm/elements/components/ProgressIndicator/index.svelte.js +98 -124
  166. package/esm/elements/components/RangeInput/index.css.js +2 -2
  167. package/esm/elements/components/RangeInput/index.js +1 -1
  168. package/esm/elements/components/RangeInput/index.svelte.js +86 -85
  169. package/esm/elements/components/SpringElement/index.svelte.js +91 -90
  170. package/esm/elements/components/TextInput/index.css.js +1 -1
  171. package/esm/elements/components/TextInput/index.js +1 -1
  172. package/esm/elements/components/TextInput/index.svelte.js +25 -27
  173. package/esm/extensions/blob-loader.js +1 -1
  174. package/esm/extensions/canvas-loader.js +1 -1
  175. package/esm/extensions/chunked-upload-store.js +1 -1
  176. package/esm/extensions/clipboard-source.js +1 -1
  177. package/esm/extensions/common/createExtension.js +38 -37
  178. package/esm/extensions/common/createStoreExtension.js +1 -1
  179. package/esm/extensions/common/createTransformExtension.js +1 -1
  180. package/esm/extensions/common/createValidatorExtension.js +1 -1
  181. package/esm/extensions/console-view.js +36 -33
  182. package/esm/extensions/data-transfer-loader.js +1 -1
  183. package/esm/extensions/data-url-store.js +24 -19
  184. package/esm/extensions/drag-drop-source.js +1 -1
  185. package/esm/extensions/dropbox-source.js +1 -1
  186. package/esm/extensions/entry-list-view.js +35 -29
  187. package/esm/extensions/file-extension-validator.js +1 -1
  188. package/esm/extensions/file-input-source.js +1 -1
  189. package/esm/extensions/file-input-store.js +1 -1
  190. package/esm/extensions/file-mime-type-validator.js +21 -17
  191. package/esm/extensions/file-name-transform.js +1 -1
  192. package/esm/extensions/file-name-validator.js +1 -1
  193. package/esm/extensions/file-size-validator.js +33 -22
  194. package/esm/extensions/form-post-store.js +1 -1
  195. package/esm/extensions/image-bitmap-transform.js +109 -0
  196. package/esm/extensions/index.js +23 -21
  197. package/esm/extensions/list-count-validator.js +21 -21
  198. package/esm/extensions/list-size-validator.js +42 -31
  199. package/esm/extensions/media-resolution-validator.js +57 -47
  200. package/esm/extensions/object-url-store.js +1 -1
  201. package/esm/extensions/simulated-loader.js +74 -65
  202. package/esm/extensions/simulated-store.js +1 -1
  203. package/esm/extensions/text-input-store.js +1 -1
  204. package/esm/extensions/url-loader.js +74 -71
  205. package/esm/extensions/value-callback-store.js +1 -1
  206. package/esm/index.js +1 -1
  207. package/esm/locales/ar-ar.js +72 -48
  208. package/esm/locales/bn-bd.js +72 -48
  209. package/esm/locales/cs-cz.js +83 -59
  210. package/esm/locales/da-dk.js +74 -50
  211. package/esm/locales/de-de.js +72 -42
  212. package/esm/locales/el-gr.js +72 -48
  213. package/esm/locales/en-gb.js +85 -62
  214. package/esm/locales/es-es.js +69 -39
  215. package/esm/locales/fi-fi.js +69 -45
  216. package/esm/locales/fr-fr.js +78 -48
  217. package/esm/locales/hi-in.js +72 -42
  218. package/esm/locales/hu-hu.js +66 -42
  219. package/esm/locales/index.js +1 -1
  220. package/esm/locales/is-is.js +71 -47
  221. package/esm/locales/it-it.js +73 -43
  222. package/esm/locales/ja-jp.js +72 -42
  223. package/esm/locales/ko-kr.js +72 -42
  224. package/esm/locales/nb-no.js +74 -44
  225. package/esm/locales/nl-nl.js +71 -48
  226. package/esm/locales/pl-pl.js +76 -52
  227. package/esm/locales/pt-pt.js +71 -41
  228. package/esm/locales/sv-se.js +73 -43
  229. package/esm/locales/tr-tr.js +83 -59
  230. package/esm/locales/uk-ua.js +72 -48
  231. package/esm/locales/vi-vn.js +82 -58
  232. package/esm/locales/zh-cn.js +72 -42
  233. package/esm/svelte/svelte/src/constants.js +13 -12
  234. package/esm/svelte/svelte/src/internal/client/constants.js +29 -24
  235. package/esm/svelte/svelte/src/internal/client/context.js +33 -28
  236. package/esm/svelte/svelte/src/internal/client/dom/blocks/boundary.js +185 -126
  237. package/esm/svelte/svelte/src/internal/client/dom/blocks/branches.js +42 -43
  238. package/esm/svelte/svelte/src/internal/client/dom/blocks/each.js +175 -150
  239. package/esm/svelte/svelte/src/internal/client/dom/blocks/html.js +55 -32
  240. package/esm/svelte/svelte/src/internal/client/dom/blocks/if.js +12 -12
  241. package/esm/svelte/svelte/src/internal/client/dom/blocks/svelte-element.js +17 -17
  242. package/esm/svelte/svelte/src/internal/client/dom/elements/attributes.js +111 -113
  243. package/esm/svelte/svelte/src/internal/client/dom/elements/bindings/this.js +29 -16
  244. package/esm/svelte/svelte/src/internal/client/dom/elements/events.js +65 -60
  245. package/esm/svelte/svelte/src/internal/client/dom/elements/transitions.js +54 -54
  246. package/esm/svelte/svelte/src/internal/client/dom/operations.js +30 -22
  247. package/esm/svelte/svelte/src/internal/client/dom/reconciler.js +19 -4
  248. package/esm/svelte/svelte/src/internal/client/error-handling.js +17 -17
  249. package/esm/svelte/svelte/src/internal/client/errors.js +24 -20
  250. package/esm/svelte/svelte/src/internal/client/proxy.js +1 -1
  251. package/esm/svelte/svelte/src/internal/client/reactivity/async.js +60 -40
  252. package/esm/svelte/svelte/src/internal/client/reactivity/batch.js +273 -236
  253. package/esm/svelte/svelte/src/internal/client/reactivity/deriveds.js +110 -84
  254. package/esm/svelte/svelte/src/internal/client/reactivity/effects.js +160 -157
  255. package/esm/svelte/svelte/src/internal/client/reactivity/props.js +2 -1
  256. package/esm/svelte/svelte/src/internal/client/reactivity/sources.js +69 -70
  257. package/esm/svelte/svelte/src/internal/client/reactivity/status.js +12 -0
  258. package/esm/svelte/svelte/src/internal/client/reactivity/utils.js +16 -0
  259. package/esm/svelte/svelte/src/internal/client/render.js +68 -64
  260. package/esm/svelte/svelte/src/internal/client/runtime.js +174 -170
  261. package/esm/svelte/svelte/src/internal/shared/attributes.js +32 -32
  262. package/esm/svelte/svelte/src/internal/shared/utils.js +16 -15
  263. package/esm/svelte/svelte/src/motion/spring.js +7 -7
  264. package/esm/svelte/svelte/src/reactivity/map.js +17 -21
  265. package/esm/templates/entry.js +194 -159
  266. package/esm/templates/helpers.js +85 -75
  267. package/esm/templates/index.js +1 -1
  268. package/esm/templates/media.js +163 -131
  269. package/esm/utils/array.js +1 -1
  270. package/esm/utils/bounds.js +1 -1
  271. package/esm/utils/cache.js +1 -1
  272. package/esm/utils/canvasToBlob.js +1 -1
  273. package/esm/utils/date.js +1 -1
  274. package/esm/utils/debounce.js +1 -1
  275. package/esm/utils/dom.js +84 -74
  276. package/esm/utils/file.js +82 -69
  277. package/esm/utils/functionToBlob.js +1 -1
  278. package/esm/utils/keyboard.js +34 -0
  279. package/esm/utils/math.js +14 -7
  280. package/esm/utils/media.js +1 -1
  281. package/esm/utils/number.js +11 -16
  282. package/esm/utils/object.js +1 -1
  283. package/esm/utils/objectURL.js +1 -1
  284. package/esm/utils/placeholder.js +1 -1
  285. package/esm/utils/poly.js +1 -1
  286. package/esm/utils/pubsub.js +1 -1
  287. package/esm/utils/rect.js +39 -30
  288. package/esm/utils/size.js +1 -1
  289. package/esm/utils/sleep.js +1 -1
  290. package/esm/utils/string.js +25 -21
  291. package/esm/utils/support.js +5 -6
  292. package/esm/utils/test.js +1 -1
  293. package/esm/utils/thread.js +50 -43
  294. package/esm/utils/tree.js +1 -1
  295. package/esm/utils/url.js +2 -2
  296. package/esm/utils/vector.js +1 -1
  297. package/esm/utils/window.js +1 -1
  298. package/esm/utils/xhr.js +88 -113
  299. package/esm/workers/httpRequest.js +45 -0
  300. package/esm/workers/httpRequestWorker.js +37 -0
  301. package/esm/workers/readFile.js +14 -0
  302. package/esm/workers/readFileWorker.js +6 -0
  303. package/esm/workers/transformImage.js +16 -0
  304. package/esm/workers/transformImageWorker.js +8 -0
  305. package/package.json +17 -12
  306. package/types/core/entryTree.d.ts +6 -2
  307. package/types/core/extensionManager.d.ts +16 -2
  308. package/types/core/taskScheduler.d.ts +2 -2
  309. package/types/dev/index.d.ts +11 -3
  310. package/types/elements/FilePondDefault/index.d.ts +15 -5
  311. package/types/elements/FilePondEntryList/components/MediaImage/index.d.ts +1 -1
  312. package/types/elements/FilePondEntryList/components/MediaVideo/index.d.ts +1 -1
  313. package/types/elements/FilePondEntryList/contexts/appContext.d.ts +1 -0
  314. package/types/elements/FilePondEntryList/contexts/entryContext.d.ts +1 -0
  315. package/types/elements/FilePondEntryList/index.d.ts +10 -11
  316. package/types/elements/FilePondInput/index.d.ts +22 -11
  317. package/types/elements/common/animationPreference.svelte.d.ts +6 -3
  318. package/types/elements/common/nodeTree.d.ts +1 -1
  319. package/types/elements/common/string.d.ts +1 -1
  320. package/types/extensions/common/createTransformExtension.d.ts +1 -1
  321. package/types/extensions/data-url-store.d.ts +2 -0
  322. package/types/extensions/file-name-transform.d.ts +1 -1
  323. package/types/extensions/file-size-validator.d.ts +2 -0
  324. package/types/extensions/image-bitmap-transform.d.ts +32 -0
  325. package/types/extensions/index.d.ts +1 -0
  326. package/types/extensions/list-size-validator.d.ts +2 -0
  327. package/types/extensions/simulated-loader.d.ts +2 -0
  328. package/types/extensions/simulated-store.d.ts +1 -1
  329. package/types/extensions/url-loader.d.ts +2 -0
  330. package/types/locales/ar-ar.d.ts +101 -76
  331. package/types/locales/bn-bd.d.ts +101 -76
  332. package/types/locales/cs-cz.d.ts +101 -76
  333. package/types/locales/da-dk.d.ts +101 -76
  334. package/types/locales/de-de.d.ts +101 -76
  335. package/types/locales/el-gr.d.ts +101 -76
  336. package/types/locales/en-gb.d.ts +102 -82
  337. package/types/locales/es-es.d.ts +101 -76
  338. package/types/locales/fi-fi.d.ts +101 -76
  339. package/types/locales/fr-fr.d.ts +101 -76
  340. package/types/locales/hi-in.d.ts +101 -76
  341. package/types/locales/hu-hu.d.ts +101 -76
  342. package/types/locales/is-is.d.ts +101 -76
  343. package/types/locales/it-it.d.ts +101 -76
  344. package/types/locales/ja-jp.d.ts +101 -76
  345. package/types/locales/ko-kr.d.ts +101 -76
  346. package/types/locales/nb-no.d.ts +101 -76
  347. package/types/locales/nl-nl.d.ts +101 -76
  348. package/types/locales/pl-pl.d.ts +101 -76
  349. package/types/locales/pt-pt.d.ts +101 -76
  350. package/types/locales/sv-se.d.ts +101 -76
  351. package/types/locales/tr-tr.d.ts +101 -76
  352. package/types/locales/uk-ua.d.ts +101 -76
  353. package/types/locales/vi-vn.d.ts +101 -76
  354. package/types/locales/zh-cn.d.ts +101 -76
  355. package/types/templates/entry.d.ts +15 -16
  356. package/types/templates/helpers.d.ts +5 -1
  357. package/types/templates/media.d.ts +43 -6
  358. package/types/types/index.d.ts +9 -15
  359. package/types/utils/file.d.ts +7 -15
  360. package/types/utils/keyboard.d.ts +5 -0
  361. package/types/utils/rect.d.ts +5 -0
  362. package/types/utils/string.d.ts +1 -0
  363. package/types/utils/thread.d.ts +6 -0
  364. package/types/utils/xhr.d.ts +1 -0
  365. package/types/workers/httpRequest.d.ts +23 -0
  366. package/types/workers/readFile.d.ts +9 -0
  367. package/types/workers/transformImage.d.ts +6 -0
  368. package/types/elements/FilePondEntryList/components/EntryContext/index.d.ts +0 -1
@@ -1,3 +1,8 @@
1
+ /**
2
+ * This locale file was generated using automated translation tools. It may contain inaccuracies or unnatural phrasing.
3
+ *
4
+ * If you're a native speaker, a pull request to improve these translations is very welcome.
5
+ */
1
6
  export declare const core: {
2
7
  abort: string;
3
8
  remove: string;
@@ -8,6 +13,28 @@ export declare const core: {
8
13
  revert: string;
9
14
  busy: string;
10
15
  loading: string;
16
+ unitB: {
17
+ 1: string;
18
+ else: string;
19
+ };
20
+ unitKB: string;
21
+ unitMB: string;
22
+ unitGB: string;
23
+ unitTB: string;
24
+ unitPB: string;
25
+ unitKiB: string;
26
+ unitMiB: string;
27
+ unitGiB: string;
28
+ unitTiB: string;
29
+ unitPiB: string;
30
+ unitPixels: {
31
+ 1: string;
32
+ else: string;
33
+ };
34
+ unitFiles: {
35
+ 1: string;
36
+ else: string;
37
+ };
11
38
  error: string;
12
39
  warning: string;
13
40
  success: string;
@@ -19,7 +46,8 @@ export declare const core: {
19
46
  fileMainTypeApplication: string;
20
47
  assistAbort: string;
21
48
  assistUndo: string;
22
- dropAreaLabel: string;
49
+ browse: string;
50
+ browseAndDrop: string;
23
51
  loadError: string;
24
52
  loadDataTranserProgress: string;
25
53
  loadDataTranserInfo: string;
@@ -28,7 +56,27 @@ export declare const core: {
28
56
  validationInvalidEntries: string;
29
57
  validationInvalidState: string;
30
58
  validationInvalidBusy: string;
31
- validationInvalidEmpty: string;
59
+ validationInvalidEmpty: {
60
+ template: string;
61
+ variables: {
62
+ files: {
63
+ context: string;
64
+ map: {
65
+ false: string;
66
+ true: string;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ ariaRequired: string;
72
+ ariaNoEntries: string;
73
+ ariaSingleEntry: string;
74
+ ariaMultipleEntries: string;
75
+ ariaItemRoleDescription: string;
76
+ ariaDragDescription: string;
77
+ ariaDragStateDrop: string;
78
+ ariaDragStateGrab: string;
79
+ ariaDragStateSort: string;
32
80
  };
33
81
  export declare const media: {
34
82
  mediaEdit: string;
@@ -106,56 +154,12 @@ export declare const validationMediaResolution: {
106
154
  validationMediaResolutionOverflow: string;
107
155
  };
108
156
  export declare const validationListCount: {
109
- validationListEntryCountUnderflow: {
110
- template: string;
111
- variables: {
112
- files: {
113
- context: string;
114
- map: {
115
- 1: string;
116
- else: string;
117
- };
118
- };
119
- };
120
- };
121
- validationListEntryCountOverflow: {
122
- template: string;
123
- variables: {
124
- files: {
125
- context: string;
126
- map: {
127
- 1: string;
128
- else: string;
129
- };
130
- };
131
- };
132
- };
157
+ validationListEntryCountUnderflow: string;
158
+ validationListEntryCountOverflow: string;
133
159
  };
134
160
  export declare const validation: {
135
- validationListEntryCountUnderflow: {
136
- template: string;
137
- variables: {
138
- files: {
139
- context: string;
140
- map: {
141
- 1: string;
142
- else: string;
143
- };
144
- };
145
- };
146
- };
147
- validationListEntryCountOverflow: {
148
- template: string;
149
- variables: {
150
- files: {
151
- context: string;
152
- map: {
153
- 1: string;
154
- else: string;
155
- };
156
- };
157
- };
158
- };
161
+ validationListEntryCountUnderflow: string;
162
+ validationListEntryCountOverflow: string;
159
163
  validationListSizeUnderflow: string;
160
164
  validationListSizeOverflow: string;
161
165
  validationMediaSizeUnavailable: string;
@@ -200,30 +204,8 @@ export declare const validation: {
200
204
  export declare const locale: {
201
205
  transformEditBusy: string;
202
206
  transformError: string;
203
- validationListEntryCountUnderflow: {
204
- template: string;
205
- variables: {
206
- files: {
207
- context: string;
208
- map: {
209
- 1: string;
210
- else: string;
211
- };
212
- };
213
- };
214
- };
215
- validationListEntryCountOverflow: {
216
- template: string;
217
- variables: {
218
- files: {
219
- context: string;
220
- map: {
221
- 1: string;
222
- else: string;
223
- };
224
- };
225
- };
226
- };
207
+ validationListEntryCountUnderflow: string;
208
+ validationListEntryCountOverflow: string;
227
209
  validationListSizeUnderflow: string;
228
210
  validationListSizeOverflow: string;
229
211
  validationMediaSizeUnavailable: string;
@@ -288,6 +270,28 @@ export declare const locale: {
288
270
  revert: string;
289
271
  busy: string;
290
272
  loading: string;
273
+ unitB: {
274
+ 1: string;
275
+ else: string;
276
+ };
277
+ unitKB: string;
278
+ unitMB: string;
279
+ unitGB: string;
280
+ unitTB: string;
281
+ unitPB: string;
282
+ unitKiB: string;
283
+ unitMiB: string;
284
+ unitGiB: string;
285
+ unitTiB: string;
286
+ unitPiB: string;
287
+ unitPixels: {
288
+ 1: string;
289
+ else: string;
290
+ };
291
+ unitFiles: {
292
+ 1: string;
293
+ else: string;
294
+ };
291
295
  error: string;
292
296
  warning: string;
293
297
  success: string;
@@ -299,7 +303,8 @@ export declare const locale: {
299
303
  fileMainTypeApplication: string;
300
304
  assistAbort: string;
301
305
  assistUndo: string;
302
- dropAreaLabel: string;
306
+ browse: string;
307
+ browseAndDrop: string;
303
308
  loadError: string;
304
309
  loadDataTranserProgress: string;
305
310
  loadDataTranserInfo: string;
@@ -307,5 +312,25 @@ export declare const locale: {
307
312
  validationInvalidEntries: string;
308
313
  validationInvalidState: string;
309
314
  validationInvalidBusy: string;
310
- validationInvalidEmpty: string;
315
+ validationInvalidEmpty: {
316
+ template: string;
317
+ variables: {
318
+ files: {
319
+ context: string;
320
+ map: {
321
+ false: string;
322
+ true: string;
323
+ };
324
+ };
325
+ };
326
+ };
327
+ ariaRequired: string;
328
+ ariaNoEntries: string;
329
+ ariaSingleEntry: string;
330
+ ariaMultipleEntries: string;
331
+ ariaItemRoleDescription: string;
332
+ ariaDragDescription: string;
333
+ ariaDragStateDrop: string;
334
+ ariaDragStateGrab: string;
335
+ ariaDragStateSort: string;
311
336
  };
@@ -1,3 +1,8 @@
1
+ /**
2
+ * This locale file was generated using automated translation tools. It may contain inaccuracies or unnatural phrasing.
3
+ *
4
+ * If you're a native speaker, a pull request to improve these translations is very welcome.
5
+ */
1
6
  export declare const core: {
2
7
  abort: string;
3
8
  remove: string;
@@ -8,6 +13,28 @@ export declare const core: {
8
13
  revert: string;
9
14
  busy: string;
10
15
  loading: string;
16
+ unitB: {
17
+ 1: string;
18
+ else: string;
19
+ };
20
+ unitKB: string;
21
+ unitMB: string;
22
+ unitGB: string;
23
+ unitTB: string;
24
+ unitPB: string;
25
+ unitKiB: string;
26
+ unitMiB: string;
27
+ unitGiB: string;
28
+ unitTiB: string;
29
+ unitPiB: string;
30
+ unitPixels: {
31
+ 1: string;
32
+ else: string;
33
+ };
34
+ unitFiles: {
35
+ 1: string;
36
+ else: string;
37
+ };
11
38
  error: string;
12
39
  warning: string;
13
40
  success: string;
@@ -19,7 +46,8 @@ export declare const core: {
19
46
  fileMainTypeApplication: string;
20
47
  assistAbort: string;
21
48
  assistUndo: string;
22
- dropAreaLabel: string;
49
+ browse: string;
50
+ browseAndDrop: string;
23
51
  loadError: string;
24
52
  loadDataTranserProgress: string;
25
53
  loadDataTranserInfo: string;
@@ -28,7 +56,27 @@ export declare const core: {
28
56
  validationInvalidEntries: string;
29
57
  validationInvalidState: string;
30
58
  validationInvalidBusy: string;
31
- validationInvalidEmpty: string;
59
+ validationInvalidEmpty: {
60
+ template: string;
61
+ variables: {
62
+ files: {
63
+ context: string;
64
+ map: {
65
+ false: string;
66
+ true: string;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ ariaRequired: string;
72
+ ariaNoEntries: string;
73
+ ariaSingleEntry: string;
74
+ ariaMultipleEntries: string;
75
+ ariaItemRoleDescription: string;
76
+ ariaDragDescription: string;
77
+ ariaDragStateDrop: string;
78
+ ariaDragStateGrab: string;
79
+ ariaDragStateSort: string;
32
80
  };
33
81
  export declare const media: {
34
82
  mediaEdit: string;
@@ -106,56 +154,12 @@ export declare const validationMediaResolution: {
106
154
  validationMediaResolutionOverflow: string;
107
155
  };
108
156
  export declare const validationListCount: {
109
- validationListEntryCountUnderflow: {
110
- template: string;
111
- variables: {
112
- files: {
113
- context: string;
114
- map: {
115
- 1: string;
116
- else: string;
117
- };
118
- };
119
- };
120
- };
121
- validationListEntryCountOverflow: {
122
- template: string;
123
- variables: {
124
- files: {
125
- context: string;
126
- map: {
127
- 1: string;
128
- else: string;
129
- };
130
- };
131
- };
132
- };
157
+ validationListEntryCountUnderflow: string;
158
+ validationListEntryCountOverflow: string;
133
159
  };
134
160
  export declare const validation: {
135
- validationListEntryCountUnderflow: {
136
- template: string;
137
- variables: {
138
- files: {
139
- context: string;
140
- map: {
141
- 1: string;
142
- else: string;
143
- };
144
- };
145
- };
146
- };
147
- validationListEntryCountOverflow: {
148
- template: string;
149
- variables: {
150
- files: {
151
- context: string;
152
- map: {
153
- 1: string;
154
- else: string;
155
- };
156
- };
157
- };
158
- };
161
+ validationListEntryCountUnderflow: string;
162
+ validationListEntryCountOverflow: string;
159
163
  validationListSizeUnderflow: string;
160
164
  validationListSizeOverflow: string;
161
165
  validationMediaSizeUnavailable: string;
@@ -200,30 +204,8 @@ export declare const validation: {
200
204
  export declare const locale: {
201
205
  transformEditBusy: string;
202
206
  transformError: string;
203
- validationListEntryCountUnderflow: {
204
- template: string;
205
- variables: {
206
- files: {
207
- context: string;
208
- map: {
209
- 1: string;
210
- else: string;
211
- };
212
- };
213
- };
214
- };
215
- validationListEntryCountOverflow: {
216
- template: string;
217
- variables: {
218
- files: {
219
- context: string;
220
- map: {
221
- 1: string;
222
- else: string;
223
- };
224
- };
225
- };
226
- };
207
+ validationListEntryCountUnderflow: string;
208
+ validationListEntryCountOverflow: string;
227
209
  validationListSizeUnderflow: string;
228
210
  validationListSizeOverflow: string;
229
211
  validationMediaSizeUnavailable: string;
@@ -288,6 +270,28 @@ export declare const locale: {
288
270
  revert: string;
289
271
  busy: string;
290
272
  loading: string;
273
+ unitB: {
274
+ 1: string;
275
+ else: string;
276
+ };
277
+ unitKB: string;
278
+ unitMB: string;
279
+ unitGB: string;
280
+ unitTB: string;
281
+ unitPB: string;
282
+ unitKiB: string;
283
+ unitMiB: string;
284
+ unitGiB: string;
285
+ unitTiB: string;
286
+ unitPiB: string;
287
+ unitPixels: {
288
+ 1: string;
289
+ else: string;
290
+ };
291
+ unitFiles: {
292
+ 1: string;
293
+ else: string;
294
+ };
291
295
  error: string;
292
296
  warning: string;
293
297
  success: string;
@@ -299,7 +303,8 @@ export declare const locale: {
299
303
  fileMainTypeApplication: string;
300
304
  assistAbort: string;
301
305
  assistUndo: string;
302
- dropAreaLabel: string;
306
+ browse: string;
307
+ browseAndDrop: string;
303
308
  loadError: string;
304
309
  loadDataTranserProgress: string;
305
310
  loadDataTranserInfo: string;
@@ -307,5 +312,25 @@ export declare const locale: {
307
312
  validationInvalidEntries: string;
308
313
  validationInvalidState: string;
309
314
  validationInvalidBusy: string;
310
- validationInvalidEmpty: string;
315
+ validationInvalidEmpty: {
316
+ template: string;
317
+ variables: {
318
+ files: {
319
+ context: string;
320
+ map: {
321
+ false: string;
322
+ true: string;
323
+ };
324
+ };
325
+ };
326
+ };
327
+ ariaRequired: string;
328
+ ariaNoEntries: string;
329
+ ariaSingleEntry: string;
330
+ ariaMultipleEntries: string;
331
+ ariaItemRoleDescription: string;
332
+ ariaDragDescription: string;
333
+ ariaDragStateDrop: string;
334
+ ariaDragStateGrab: string;
335
+ ariaDragStateSort: string;
311
336
  };
@@ -1,3 +1,8 @@
1
+ /**
2
+ * This locale file was generated using automated translation tools. It may contain inaccuracies or unnatural phrasing.
3
+ *
4
+ * If you're a native speaker, a pull request to improve these translations is very welcome.
5
+ */
1
6
  export declare const core: {
2
7
  abort: string;
3
8
  remove: string;
@@ -8,6 +13,28 @@ export declare const core: {
8
13
  revert: string;
9
14
  busy: string;
10
15
  loading: string;
16
+ unitB: {
17
+ 1: string;
18
+ else: string;
19
+ };
20
+ unitKB: string;
21
+ unitMB: string;
22
+ unitGB: string;
23
+ unitTB: string;
24
+ unitPB: string;
25
+ unitKiB: string;
26
+ unitMiB: string;
27
+ unitGiB: string;
28
+ unitTiB: string;
29
+ unitPiB: string;
30
+ unitPixels: {
31
+ 1: string;
32
+ else: string;
33
+ };
34
+ unitFiles: {
35
+ 1: string;
36
+ else: string;
37
+ };
11
38
  error: string;
12
39
  warning: string;
13
40
  success: string;
@@ -19,7 +46,8 @@ export declare const core: {
19
46
  fileMainTypeApplication: string;
20
47
  assistAbort: string;
21
48
  assistUndo: string;
22
- dropAreaLabel: string;
49
+ browse: string;
50
+ browseAndDrop: string;
23
51
  loadError: string;
24
52
  loadDataTranserProgress: string;
25
53
  loadDataTranserInfo: string;
@@ -28,7 +56,27 @@ export declare const core: {
28
56
  validationInvalidEntries: string;
29
57
  validationInvalidState: string;
30
58
  validationInvalidBusy: string;
31
- validationInvalidEmpty: string;
59
+ validationInvalidEmpty: {
60
+ template: string;
61
+ variables: {
62
+ files: {
63
+ context: string;
64
+ map: {
65
+ false: string;
66
+ true: string;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ ariaRequired: string;
72
+ ariaNoEntries: string;
73
+ ariaSingleEntry: string;
74
+ ariaMultipleEntries: string;
75
+ ariaItemRoleDescription: string;
76
+ ariaDragDescription: string;
77
+ ariaDragStateDrop: string;
78
+ ariaDragStateGrab: string;
79
+ ariaDragStateSort: string;
32
80
  };
33
81
  export declare const media: {
34
82
  mediaEdit: string;
@@ -106,56 +154,12 @@ export declare const validationMediaResolution: {
106
154
  validationMediaResolutionOverflow: string;
107
155
  };
108
156
  export declare const validationListCount: {
109
- validationListEntryCountUnderflow: {
110
- template: string;
111
- variables: {
112
- files: {
113
- context: string;
114
- map: {
115
- 1: string;
116
- else: string;
117
- };
118
- };
119
- };
120
- };
121
- validationListEntryCountOverflow: {
122
- template: string;
123
- variables: {
124
- files: {
125
- context: string;
126
- map: {
127
- 1: string;
128
- else: string;
129
- };
130
- };
131
- };
132
- };
157
+ validationListEntryCountUnderflow: string;
158
+ validationListEntryCountOverflow: string;
133
159
  };
134
160
  export declare const validation: {
135
- validationListEntryCountUnderflow: {
136
- template: string;
137
- variables: {
138
- files: {
139
- context: string;
140
- map: {
141
- 1: string;
142
- else: string;
143
- };
144
- };
145
- };
146
- };
147
- validationListEntryCountOverflow: {
148
- template: string;
149
- variables: {
150
- files: {
151
- context: string;
152
- map: {
153
- 1: string;
154
- else: string;
155
- };
156
- };
157
- };
158
- };
161
+ validationListEntryCountUnderflow: string;
162
+ validationListEntryCountOverflow: string;
159
163
  validationListSizeUnderflow: string;
160
164
  validationListSizeOverflow: string;
161
165
  validationMediaSizeUnavailable: string;
@@ -200,30 +204,8 @@ export declare const validation: {
200
204
  export declare const locale: {
201
205
  transformEditBusy: string;
202
206
  transformError: string;
203
- validationListEntryCountUnderflow: {
204
- template: string;
205
- variables: {
206
- files: {
207
- context: string;
208
- map: {
209
- 1: string;
210
- else: string;
211
- };
212
- };
213
- };
214
- };
215
- validationListEntryCountOverflow: {
216
- template: string;
217
- variables: {
218
- files: {
219
- context: string;
220
- map: {
221
- 1: string;
222
- else: string;
223
- };
224
- };
225
- };
226
- };
207
+ validationListEntryCountUnderflow: string;
208
+ validationListEntryCountOverflow: string;
227
209
  validationListSizeUnderflow: string;
228
210
  validationListSizeOverflow: string;
229
211
  validationMediaSizeUnavailable: string;
@@ -288,6 +270,28 @@ export declare const locale: {
288
270
  revert: string;
289
271
  busy: string;
290
272
  loading: string;
273
+ unitB: {
274
+ 1: string;
275
+ else: string;
276
+ };
277
+ unitKB: string;
278
+ unitMB: string;
279
+ unitGB: string;
280
+ unitTB: string;
281
+ unitPB: string;
282
+ unitKiB: string;
283
+ unitMiB: string;
284
+ unitGiB: string;
285
+ unitTiB: string;
286
+ unitPiB: string;
287
+ unitPixels: {
288
+ 1: string;
289
+ else: string;
290
+ };
291
+ unitFiles: {
292
+ 1: string;
293
+ else: string;
294
+ };
291
295
  error: string;
292
296
  warning: string;
293
297
  success: string;
@@ -299,7 +303,8 @@ export declare const locale: {
299
303
  fileMainTypeApplication: string;
300
304
  assistAbort: string;
301
305
  assistUndo: string;
302
- dropAreaLabel: string;
306
+ browse: string;
307
+ browseAndDrop: string;
303
308
  loadError: string;
304
309
  loadDataTranserProgress: string;
305
310
  loadDataTranserInfo: string;
@@ -307,5 +312,25 @@ export declare const locale: {
307
312
  validationInvalidEntries: string;
308
313
  validationInvalidState: string;
309
314
  validationInvalidBusy: string;
310
- validationInvalidEmpty: string;
315
+ validationInvalidEmpty: {
316
+ template: string;
317
+ variables: {
318
+ files: {
319
+ context: string;
320
+ map: {
321
+ false: string;
322
+ true: string;
323
+ };
324
+ };
325
+ };
326
+ };
327
+ ariaRequired: string;
328
+ ariaNoEntries: string;
329
+ ariaSingleEntry: string;
330
+ ariaMultipleEntries: string;
331
+ ariaItemRoleDescription: string;
332
+ ariaDragDescription: string;
333
+ ariaDragStateDrop: string;
334
+ ariaDragStateGrab: string;
335
+ ariaDragStateSort: string;
311
336
  };