@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.
- package/README.md +2 -1
- package/auto-imports.d.ts +1 -0
- package/dist/components/VvInputFile/VvInputFile.es.js +1529 -0
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -0
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +141 -0
- package/dist/components/VvInputFile/index.d.ts +52 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.es.js +633 -310
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/index.es.js +77 -1
- package/dist/composables/index.umd.js +1 -1
- package/dist/composables/useBlurhash.d.ts +7 -0
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +1 -1
- package/dist/stories/Blurhash/BlurhashComposable.stories.d.ts +4 -0
- package/dist/stories/InputFile/InputFile.settings.d.ts +56 -0
- package/dist/stories/InputFile/InputFile.stories.d.ts +12 -0
- package/dist/stories/InputFile/InputFileModifiers.stories.d.ts +9 -0
- package/dist/stories/InputFile/InputFileSlots.stories.d.ts +6 -0
- package/dist/types/blurhash.d.ts +12 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/input-file.d.ts +14 -0
- package/dist/workers/blurhash.d.ts +1 -0
- package/package.json +13 -1
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvInputFile/VvInputFile.vue +274 -0
- package/src/components/VvInputFile/index.ts +36 -0
- package/src/components/index.ts +1 -0
- package/src/composables/index.ts +1 -0
- package/src/composables/useBlurhash.ts +76 -0
- package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +2 -2
- package/src/stories/Blurhash/BlurhashComposable.stories.ts +195 -0
- package/src/stories/InputFile/InputFile.settings.ts +36 -0
- package/src/stories/InputFile/InputFile.stories.ts +90 -0
- package/src/stories/InputFile/InputFileModifiers.stories.ts +51 -0
- package/src/stories/InputFile/InputFileSlots.stories.ts +25 -0
- package/src/types/blurhash.ts +21 -0
- package/src/types/index.ts +2 -0
- package/src/types/input-file.ts +16 -0
- 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']
|