@vcita/design-system 0.3.13 → 0.3.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/CHANGELOG.MD +10 -0
- package/config/locales/ds.en.yml +2 -0
- package/dist/@vcita/design-system.esm.js +1082 -707
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +953 -614
- package/init/SvgIcons.js +1 -0
- package/package.json +1 -1
- package/src/components/VcAvatar/VcAvatar.stories.js +13 -2
- package/src/components/VcAvatar/VcAvatar.vue +56 -20
- package/src/components/VcBanner/VcBanner.stories.js +11 -0
- package/src/components/VcBanner/VcBanner.vue +23 -18
- package/src/components/VcCheckbox/VcCheckbox.stories.js +2 -0
- package/src/components/VcCheckbox/VcCheckbox.vue +19 -14
- package/src/components/VcEmptyState/VcEmptyState.stories.js +18 -9
- package/src/components/VcEmptyState/VcEmptyState.vue +24 -15
- package/src/components/VcExpansionCard/VcExpansionCard.stories.js +35 -2
- package/src/components/VcExpansionCard/VcExpansionCard.vue +63 -53
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +1 -1
- package/src/components/VcImage/VcImage.spec.js +46 -0
- package/src/components/VcImage/VcImage.stories.js +34 -0
- package/src/components/VcImage/VcImage.vue +40 -0
- package/src/components/VcTooltip/VcTooltip.stories.js +3 -1
- package/src/components/VcTooltip/VcTooltip.vue +5 -0
- package/src/components/index.js +3 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.spec.js +93 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +56 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.vue +112 -0
- package/src/components/listBox/VcListbox/VcListbox.spec.js +131 -0
- package/src/components/listBox/VcListbox/VcListbox.stories.js +79 -0
- package/src/components/listBox/VcListbox/VcListbox.vue +141 -0
- package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +20 -19
- package/src/components/modal/VcNoticeModal/VcNoticeModal.vue +17 -6
- package/src/components/wizard/VcStepsBar/VcStepsBar.vue +26 -24
- package/src/components/wizard/VcWizard/VcWizard.spec.js +1 -1
- package/src/components/wizard/VcWizard/VcWizard.stories.js +1 -0
package/CHANGELOG.MD
CHANGED
|
@@ -6,11 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
### 0.3.14 (2022-01-24)
|
|
10
|
+
- add the ability to use image path or object in all relevant places
|
|
11
|
+
- add VcImage to facilitate use of different types of images and SVGs
|
|
12
|
+
- add title to wizard stepsBar
|
|
13
|
+
|
|
9
14
|
### 0.3.12 (2022-01-18)
|
|
10
15
|
- add animation to shadow for hover on card
|
|
11
16
|
- fix border radius on action list
|
|
12
17
|
- fix v-model value in VcListEntity and VcExpansionCard
|
|
13
18
|
- added boolean useOffset prop on VcInputModal, VcNoticeModal, VcConfirmProminentModal
|
|
19
|
+
- VcChecklistItem
|
|
20
|
+
- VcListbox
|
|
21
|
+
- Add option to disable the tooltip on VcTooltip
|
|
22
|
+
- Add option to show the avatar on black & white
|
|
23
|
+
- Add option to remove the avatar border
|
|
14
24
|
|
|
15
25
|
### 0.2.10 (2022-01-13)
|
|
16
26
|
- small fixes on VcActions
|