@volverjs/ui-vue 0.0.10-beta.12 → 0.0.10-beta.14

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 (44) hide show
  1. package/README.md +2 -1
  2. package/auto-imports.d.ts +1 -0
  3. package/dist/components/VvInputFile/VvInputFile.es.js +1529 -0
  4. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -0
  5. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +141 -0
  6. package/dist/components/VvInputFile/index.d.ts +52 -0
  7. package/dist/components/index.d.ts +1 -0
  8. package/dist/components/index.es.js +633 -310
  9. package/dist/components/index.umd.js +1 -1
  10. package/dist/composables/index.d.ts +1 -0
  11. package/dist/composables/index.es.js +77 -1
  12. package/dist/composables/index.umd.js +1 -1
  13. package/dist/composables/useBlurhash.d.ts +7 -0
  14. package/dist/icons.es.js +3 -3
  15. package/dist/icons.umd.js +1 -1
  16. package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +1 -1
  17. package/dist/stories/Blurhash/BlurhashComposable.stories.d.ts +4 -0
  18. package/dist/stories/InputFile/InputFile.settings.d.ts +56 -0
  19. package/dist/stories/InputFile/InputFile.stories.d.ts +12 -0
  20. package/dist/stories/InputFile/InputFileModifiers.stories.d.ts +9 -0
  21. package/dist/stories/InputFile/InputFileSlots.stories.d.ts +6 -0
  22. package/dist/types/blurhash.d.ts +12 -0
  23. package/dist/types/index.d.ts +2 -0
  24. package/dist/types/input-file.d.ts +14 -0
  25. package/dist/workers/blurhash.d.ts +1 -0
  26. package/package.json +13 -1
  27. package/src/assets/icons/detailed.json +1 -1
  28. package/src/assets/icons/normal.json +1 -1
  29. package/src/assets/icons/simple.json +1 -1
  30. package/src/components/VvInputFile/VvInputFile.vue +274 -0
  31. package/src/components/VvInputFile/index.ts +36 -0
  32. package/src/components/index.ts +1 -0
  33. package/src/composables/index.ts +1 -0
  34. package/src/composables/useBlurhash.ts +76 -0
  35. package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +2 -2
  36. package/src/stories/Blurhash/BlurhashComposable.stories.ts +195 -0
  37. package/src/stories/InputFile/InputFile.settings.ts +36 -0
  38. package/src/stories/InputFile/InputFile.stories.ts +90 -0
  39. package/src/stories/InputFile/InputFileModifiers.stories.ts +51 -0
  40. package/src/stories/InputFile/InputFileSlots.stories.ts +25 -0
  41. package/src/types/blurhash.ts +21 -0
  42. package/src/types/index.ts +2 -0
  43. package/src/types/input-file.ts +16 -0
  44. package/src/workers/blurhash.ts +9 -0
package/README.md CHANGED
@@ -232,9 +232,10 @@ The following features are planned for the next releases:
232
232
  - [x] (v0.0.6) `VvAvatar` and `VvAvatarGroup` component;
233
233
  - [x] (v0.0.6) Menus, navigation and tabs with `VvNav` and `VvTab`;
234
234
  - [x] (v0.0.6) Alerts, notifications and toasts with `VvAlert` and `VvAlertGroup` component;
235
+ - [x] Multiple uploads with `VvInputFile`;
236
+ - [ ] Image crop and file previews;
235
237
  - [ ] Loaders with `VvLoader` and `VvSkeleton`;
236
238
  - [ ] `VvTable` component with sort, filters, pagination and cell editing;
237
- - [ ] Multiple uploads, image crop and file previews with `VvInputFile`;
238
239
  - [ ] Carousel and galleries with `VvCarousel` component;
239
240
  - [ ] Calendar and date picker with `VvCalendar` component.
240
241
 
package/auto-imports.d.ts CHANGED
@@ -136,6 +136,7 @@ declare global {
136
136
  const useBase64: typeof import('@vueuse/core')['useBase64']
137
137
  const useBattery: typeof import('@vueuse/core')['useBattery']
138
138
  const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
139
+ const useBlurhash: typeof import('./src/composables/useBlurhash')['useBlurhash']
139
140
  const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
140
141
  const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
141
142
  const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']