@vcita/design-system 0.5.0 → 0.5.1-beta.12
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 +6 -0
- package/dist/@vcita/design-system.esm.js +654 -466
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +582 -398
- package/init/DesignSystem.js +2 -0
- package/package.json +1 -1
- package/src/components/VcActionList/VcActionList.stories.js +3 -3
- package/src/components/VcActionList/VcActionList.vue +1 -0
- package/src/components/VcAvatar/VcAvatar.vue +6 -1
- package/src/components/VcChip/VcChip.vue +1 -1
- package/src/components/VcInputPopover/VcInputPopover.stories.js +36 -22
- package/src/components/VcInputPopover/VcInputPopover.vue +17 -2
- package/src/components/VcPopover/VcPopover.spec.js +15 -1
- package/src/components/VcPopover/VcPopover.stories.js +9 -1
- package/src/components/VcPopover/VcPopover.vue +17 -1
- package/src/components/index.js +1 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.vue +8 -2
- package/src/components/listBox/VcListbox/VcListbox.spec.js +1 -1
- package/src/components/listBox/VcListbox/VcListbox.stories.js +3 -2
- package/src/components/listBox/VcListbox/VcListbox.vue +43 -11
- package/src/components/modal/elements/VcModalHeader.vue +13 -1
package/CHANGELOG.MD
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
- VcModalHeader - add no close button new style
|
|
9
|
+
- VcPopover - add white background color
|
|
10
|
+
- VcActionList - fix icon size
|
|
11
|
+
- VcListbox - fix clicking not responding on the edges of the labels
|
|
12
|
+
- VcListbox - use v-list-item-group to get the full "checked" array
|
|
13
|
+
- VcListbox - tooltip option for a disabled item
|
|
8
14
|
|
|
9
15
|
### 0.5.0 (2022-02-15)
|
|
10
16
|
- VcButton - add outlined and prepend default icon.
|