@vcita/design-system 0.6.20 → 0.6.22
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 +9 -0
- package/dist/@vcita/design-system.esm.js +1107 -916
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +943 -770
- package/init/DesignSystem.js +8 -2
- package/package.json +1 -1
- package/src/components/VcRadio/VcRadio.spec.js +67 -0
- package/src/components/VcRadio/VcRadio.stories.js +72 -0
- package/src/components/VcRadio/VcRadio.vue +129 -0
- package/src/components/VcRadioGroup/VcRadioGroup.spec.js +141 -0
- package/src/components/VcRadioGroup/VcRadioGroup.stories.js +91 -0
- package/src/components/VcRadioGroup/VcRadioGroup.vue +82 -0
- package/src/components/VcTooltip/VcTooltip.vue +14 -5
- package/src/components/index.js +2 -0
package/CHANGELOG.MD
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
### 0.6.22 (2022-05-31)
|
|
10
|
+
- VcRadioGroup - fix tooltip slots
|
|
11
|
+
|
|
12
|
+
### 0.6.21 (2022-05-16)
|
|
13
|
+
- VcRadioGroup - create
|
|
14
|
+
- VcRadio - create
|
|
15
|
+
- VcTooltip - add slots and fallback icon as an activator
|
|
16
|
+
|
|
17
|
+
|
|
9
18
|
### 0.6.20 (2022-05-16)
|
|
10
19
|
- VcStepperContent fix height
|
|
11
20
|
- VcInputPopover - add toggle to header
|