@vcita/design-system 0.2.1 → 0.2.2
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 +7 -0
- package/config/locales/ds.en.yml +2 -0
- package/dist/@vcita/design-system.esm.js +709 -279
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +637 -235
- package/init/DesignSystem.js +6 -2
- package/init/initI18n.js +5 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/VcFilterPanel/VcFilterPanel.spec.js +1 -1
- package/src/components/VcProgressCircular/VcProgressCircular.spec.js +109 -0
- package/src/components/VcProgressCircular/VcProgressCircular.stories.js +58 -0
- package/src/components/VcProgressCircular/VcProgressCircular.vue +88 -0
- package/src/components/VcTooltip/VcTooltip.spec.js +3 -3
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.spec.js +109 -0
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.stories.js +58 -0
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.vue +85 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.spec.js +122 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.stories.js +56 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.vue +190 -0
- package/src/components/index.js +3 -0
package/CHANGELOG.MD
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
|
|
10
|
+
### 0.2.2 (2022-01-03)
|
|
11
|
+
- VcStepsBar
|
|
12
|
+
- VcMobileWizardProgress
|
|
13
|
+
- VcProgressCircular
|
|
14
|
+
- Separate init of i18n for easier unit testing in consuming project
|
|
15
|
+
|
|
9
16
|
### 0.2.1 (2021-12-29)
|
|
10
17
|
- adding mastercard and visa to icon
|
|
11
18
|
|