@vcita/design-system 0.2.0 → 0.2.4
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 +19 -0
- package/config/locales/ds.en.yml +2 -0
- package/dist/@vcita/design-system.esm.js +1141 -588
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1046 -526
- package/init/DesignSystem.js +13 -3
- package/init/initI18n.js +5 -1
- package/init/svgImages.js +11 -0
- package/init/vuetify.config.js +6 -6
- package/package.json +1 -1
- package/src/components/VcEmptyState/VcEmptyState.vue +22 -4
- 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/{init → src/components}/VcSvg/VcSvg.stories.js +5 -1
- package/{init → src/components}/VcSvg/VcSvg.vue +0 -0
- package/src/components/VcTextField/VcTextField.spec.js +13 -95
- package/src/components/VcTextField/VcTextField.stories.js +60 -41
- package/src/components/VcTextField/VcTextField.vue +78 -155
- 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/VcSteperContant/VcStepperContent.spec.js +163 -0
- package/src/components/Wizard/VcSteperContant/VcStepperContent.stories.js +118 -0
- package/src/components/Wizard/VcSteperContant/VcStepperContent.vue +153 -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 +5 -1
- package/src/components/list/VcListItem/VcListItem.vue +1 -3
- package/src/.DS_Store +0 -0
package/CHANGELOG.MD
CHANGED
|
@@ -5,6 +5,24 @@ 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
|
+
|
|
9
|
+
### 0.2.4 (2022-01-05)
|
|
10
|
+
- adding svg images to vue object
|
|
11
|
+
- move VcSvg to global components
|
|
12
|
+
-
|
|
13
|
+
### 0.2.3 (2022-01-03)
|
|
14
|
+
- bug fix related to $ds
|
|
15
|
+
|
|
16
|
+
### 0.2.2 (2022-01-03)
|
|
17
|
+
- VcStepsBar
|
|
18
|
+
- VcMobileWizardProgress
|
|
19
|
+
- VcProgressCircular
|
|
20
|
+
- Separate init of i18n for easier unit testing in consuming project
|
|
21
|
+
|
|
22
|
+
### 0.2.1 (2021-12-29)
|
|
23
|
+
- adding mastercard and visa to icon
|
|
24
|
+
|
|
25
|
+
### 0.2.0 (2021-12-29)
|
|
8
26
|
- Adding VcEmptyState
|
|
9
27
|
- Adding VcLink
|
|
10
28
|
- Adding VcFocusArea
|
|
@@ -14,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
32
|
- Migrate VcFilterPanel component from FG
|
|
15
33
|
- Migrate VcInfiniteScroll component from FG
|
|
16
34
|
- Add translation utility
|
|
35
|
+
- update VcToast
|
|
17
36
|
|
|
18
37
|
### 0.1.5 (2021-12-07)
|
|
19
38
|
- update for VcAlert - added inline state
|