@vcita/design-system 1.2.2 → 1.2.3
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/CHANGELOG.md +6 -0
- package/config/locales/ds.en.yml +5 -1
- package/dist/@vcita/design-system.esm.js +1333 -916
- package/dist/@vcita/design-system.min.js +2 -2
- package/dist/@vcita/design-system.ssr.js +1154 -810
- package/package.json +1 -1
- package/src/components/VcAvatar/VcAvatar.stories.js +0 -1
- package/src/components/VcGalleryItem/VcGalleryItem.spec.js +120 -0
- package/src/components/VcGalleryItem/VcGalleryItem.stories.js +94 -0
- package/src/components/VcGalleryItem/VcGalleryItem.vue +161 -0
- package/src/components/VcGalleryList/VcGalleryList.spec.js +86 -0
- package/src/components/VcGalleryList/VcGalleryList.stories.js +63 -0
- package/src/components/VcGalleryList/VcGalleryList.vue +102 -0
- package/src/components/VcGalleryList/mockData.js +50 -0
- package/src/components/VcMiniBanner/VcMiniBanner.spec.js +74 -0
- package/src/components/VcMiniBanner/VcMiniBanner.stories.js +75 -0
- package/src/components/VcMiniBanner/VcMiniBanner.vue +129 -0
- package/src/components/VcSearchPicker/VcSearchPicker.vue +12 -5
- package/src/components/index.js +3 -0
- package/src/stories/assets/app-market/fc.svg +31 -0
- package/src/stories/assets/app-market/google.svg +1 -0
- package/src/stories/assets/app-market/qb.svg +9 -0
- package/src/stories/assets/app-market/stripe.svg +1 -0
- package/src/stories/assets/app-market/zapier.svg +1 -0
- package/src/stories/assets/pics/gallery-item-1.jpg +0 -0
- package/src/stories/assets/pics/gallery-item-2.jpg +0 -0
- package/src/stories/assets/pics/gallery-item-3.jpg +0 -0
- package/src/stories/assets/pics/gallery-item-4.jpg +0 -0
- package/src/stories/assets/pics/gallery-item-5.jpg +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/VcMenu/.DS_Store +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
### v1.2.3 (2022-10-03)
|
|
10
|
+
- VcMiniBanner - added new component
|
|
11
|
+
- VcSearchPicker - removed redundant event emission from pointer
|
|
12
|
+
- VcGalleryItem - added new component
|
|
13
|
+
- VcGalleryList - added new component
|
|
14
|
+
|
|
9
15
|
### v1.2.2 (2022-09-19)
|
|
10
16
|
- VcTextField - fix alignment
|
|
11
17
|
- VcSideNav
|
package/config/locales/ds.en.yml
CHANGED
|
@@ -33,4 +33,8 @@ en:
|
|
|
33
33
|
placeholder: Select items
|
|
34
34
|
error_label: Please select an item
|
|
35
35
|
list:
|
|
36
|
-
empty_list_description: We can’t find any item matching your search
|
|
36
|
+
empty_list_description: We can’t find any item matching your search
|
|
37
|
+
gallery_item:
|
|
38
|
+
select: Select
|
|
39
|
+
preview: Preview
|
|
40
|
+
create: Create your own
|