@vcita/design-system 0.3.16-beta.2 → 0.5.0
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 +31 -0
- package/config/locales/ds.en.yml +1 -0
- package/dist/@vcita/design-system.esm.js +1300 -609
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1214 -556
- package/init/DesignSystem.js +2 -0
- package/init/SvgIcons.js +5 -2
- package/package.json +1 -1
- package/src/components/VcActionList/VcActionList.vue +2 -3
- package/src/components/VcAlert/VcAlert.vue +1 -1
- package/src/components/VcBadge/VcBadge.spec.js +32 -0
- package/src/components/VcBadge/VcBadge.stories.js +12 -5
- package/src/components/VcBadge/VcBadge.vue +15 -12
- package/src/components/VcBanner/VcBanner.vue +1 -1
- package/src/components/VcBottomSheet/VcBottomSheet.spec.js +71 -0
- package/src/components/VcBottomSheet/VcBottomSheet.stories.js +64 -0
- package/src/components/VcBottomSheet/VcBottomSheet.vue +52 -0
- package/src/components/VcButton/VcButton.spec.js +21 -1
- package/src/components/VcButton/VcButton.stories.js +48 -13
- package/src/components/VcButton/VcButton.vue +28 -2
- package/src/components/VcEmptyState/VcEmptyState.spec.js +4 -2
- package/src/components/VcExpansionCard/VcExpansionCard.vue +3 -4
- package/src/components/VcIcon/VcIcon.spec.js +4 -1
- package/src/components/VcIcon/VcIcon.vue +7 -1
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.spec.js +116 -0
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.stories.js +88 -0
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.vue +138 -0
- package/src/components/VcInputPopover/VcInputPopover.spec.js +101 -0
- package/src/components/VcInputPopover/VcInputPopover.stories.js +76 -0
- package/src/components/VcInputPopover/VcInputPopover.vue +109 -0
- package/src/components/VcLink/VcLink.spec.js +72 -2
- package/src/components/VcLink/VcLink.stories.js +27 -3
- package/src/components/VcLink/VcLink.vue +58 -3
- package/src/components/VcPopover/VcPopover.spec.js +66 -0
- package/src/components/VcPopover/VcPopover.stories.js +63 -0
- package/src/components/VcPopover/VcPopover.vue +45 -0
- package/src/components/VcSwitch/VcSwitch.vue +1 -1
- package/src/components/VcTextArea/VcTextArea.stories.js +25 -4
- package/src/components/VcTextArea/VcTextArea.vue +8 -4
- package/src/components/index.js +4 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +1 -1
- package/src/components/listBox/VcListbox/VcListbox.stories.js +1 -1
- package/src/components/modal/VcConfirmModal/VcConfirmModal.stories.js +0 -1
- package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +0 -1
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.vue +0 -1
- package/src/components/modal/VcInputModal/VcInputModal.spec.js +1 -1
- package/src/components/modal/VcInputModal/VcInputModal.stories.js +7 -2
- package/src/components/modal/VcInputModal/VcInputModal.vue +14 -1
- package/src/components/modal/elements/VcModalFooter.vue +7 -1
- package/src/components/modal/elements/VcModalHeader.spec.js +19 -0
- package/src/components/modal/elements/VcModalHeader.stories.js +23 -6
- package/src/components/modal/elements/VcModalHeader.vue +71 -23
- package/src/components/wizard/VcWizard/VcWizard.vue +1 -1
- package/src/stories/assets/pics/mufasa.png +0 -0
- package/src/stories/welcome.stories.mdx +9 -0
- package/styles/variables.scss +8 -0
package/CHANGELOG.MD
CHANGED
|
@@ -5,7 +5,38 @@ 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.5.0 (2022-02-15)
|
|
10
|
+
- VcButton - add outlined and prepend default icon.
|
|
11
|
+
- VcBottomSheet
|
|
12
|
+
- VcInputBottomSheet
|
|
13
|
+
- VcModalHeader - add close button option
|
|
14
|
+
- VcLink - add cursor pointer
|
|
15
|
+
- VcModalHeader - add description
|
|
16
|
+
- VcPopover
|
|
17
|
+
- VcInputPopover
|
|
18
|
+
- VcBadge - update parameters, add test, enrich the story book
|
|
19
|
+
- VcWizard fix content height
|
|
20
|
+
- VcExpansionCard fix color
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### 0.4.0 (2022-02-08)
|
|
8
24
|
- Added VcBadge component
|
|
25
|
+
- fix icon name in VcActionList
|
|
26
|
+
- add parameters to VcTextArea
|
|
27
|
+
- add button the ability to be link
|
|
28
|
+
- VcLink - add secondary
|
|
29
|
+
- VcLink - add prepend icon
|
|
30
|
+
- VcLink - change text context to label
|
|
31
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
32
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
33
|
+
|
|
34
|
+
### 0.3.17 (2022-02-06)
|
|
35
|
+
- VcLink - add secondary
|
|
36
|
+
- VcLink - add prepend icon
|
|
37
|
+
- VcLink - change text context to label
|
|
38
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
39
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
9
40
|
|
|
10
41
|
### 0.3.16 (2022-01-31)
|
|
11
42
|
- Center image in VcImage
|