@vcita/design-system 0.3.14 → 0.3.16-beta.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 +14 -0
- package/dist/@vcita/design-system.esm.js +850 -730
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +736 -617
- package/init/DesignSystem.js +4 -0
- package/package.json +1 -1
- package/src/components/VcAvatar/VcAvatar.vue +1 -4
- package/src/components/VcBadge/VcBadge.spec.js +63 -0
- package/src/components/VcBadge/VcBadge.stories.js +38 -0
- package/src/components/VcBadge/VcBadge.vue +52 -0
- package/src/components/VcBanner/VcBanner.vue +8 -3
- package/src/components/VcButton/VcButton.vue +6 -2
- package/src/components/VcChip/VcChip.spec.js +121 -0
- package/src/components/VcChip/VcChip.stories.js +53 -0
- package/src/components/VcChip/VcChip.vue +138 -0
- package/src/components/VcEmptyState/VcEmptyState.vue +1 -1
- package/src/components/VcExpansionCard/VcExpansionCard.spec.js +1 -1
- package/src/components/VcExpansionCard/VcExpansionCard.stories.js +48 -2
- package/src/components/VcExpansionCard/VcExpansionCard.vue +65 -29
- package/src/components/VcImage/VcImage.stories.js +4 -2
- package/src/components/VcImage/VcImage.vue +7 -5
- package/src/components/VcTextArea/VcTextArea.vue +7 -2
- package/src/components/index.js +1 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.spec.js +2 -2
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +1 -1
- package/src/components/listBox/VcListbox/VcListbox.spec.js +6 -12
- package/src/components/listBox/VcListbox/VcListbox.stories.js +4 -4
- package/src/components/wizard/VcSteperContent/VcStepperContent.spec.js +22 -1
- package/src/components/wizard/VcSteperContent/VcStepperContent.stories.js +8 -23
- package/src/components/wizard/VcSteperContent/VcStepperContent.vue +2 -1
- package/src/components/wizard/VcSteperContent/demoPage.vue +33 -0
- package/src/components/wizard/VcWizard/VcWizard.spec.js +25 -1
- package/src/components/wizard/VcWizard/VcWizard.stories.js +6 -0
- package/src/components/wizard/VcWizard/VcWizard.vue +17 -6
- package/src/components/wizard/VcWizard/demoWizardPage.vue +20 -3
- package/src/components/wizard/VcWizardCtaContainer/VcWizardCtaContainer.spec.js +2 -2
- package/src/components/wizard/VcWizardCtaContainer/VcWizardCtaContainer.vue +1 -1
- package/src/scss/mixins.scss +0 -6
- package/src/stories/assets/pics/black-widow.jpeg +0 -0
- package/src/stories/assets/pics/hulk.png +0 -0
- package/src/stories/assets/pics/ironman.png +0 -0
- package/src/stories/assets/pics/spider-man.png +0 -0
- package/src/stories/assets/pics/wolverine.png +0 -0
- package/src/stories/welcome.stories.mdx +8 -7
- package/styles/variables.scss +14 -17
package/CHANGELOG.MD
CHANGED
|
@@ -5,6 +5,20 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
|
+
- Added VcBadge component
|
|
9
|
+
|
|
10
|
+
### 0.3.16 (2022-01-31)
|
|
11
|
+
- Center image in VcImage
|
|
12
|
+
- bug fix in VcBanner
|
|
13
|
+
- Bug fix in VcImage
|
|
14
|
+
- VcChip
|
|
15
|
+
- fix expansion card content slot to have padding
|
|
16
|
+
- text-area auto grow
|
|
17
|
+
|
|
18
|
+
### 0.3.15 (2022-01-24)
|
|
19
|
+
- rename wizard event to move forward
|
|
20
|
+
- move breakpoint from mixin to wizard component
|
|
21
|
+
- modify expansion card content slot to have padding
|
|
8
22
|
|
|
9
23
|
### 0.3.14 (2022-01-24)
|
|
10
24
|
- add the ability to use image path or object in all relevant places
|