@vcita/design-system 0.3.16 → 0.5.1-beta.10
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 +136 -0
- package/config/locales/ds.en.yml +1 -0
- package/dist/@vcita/design-system.esm.js +1814 -826
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1665 -722
- package/init/DesignSystem.js +6 -0
- package/init/SvgIcons.js +5 -2
- package/package.json +1 -1
- package/src/components/VcActionList/VcActionList.stories.js +3 -3
- package/src/components/VcActionList/VcActionList.vue +3 -3
- package/src/components/VcAlert/VcAlert.vue +1 -1
- package/src/components/VcAvatar/VcAvatar.vue +6 -1
- package/src/components/VcBadge/VcBadge.spec.js +95 -0
- package/src/components/VcBadge/VcBadge.stories.js +45 -0
- package/src/components/VcBadge/VcBadge.vue +55 -0
- 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 +34 -4
- package/src/components/VcChip/VcChip.vue +1 -1
- 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 +90 -0
- package/src/components/VcInputPopover/VcInputPopover.vue +124 -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 +80 -0
- package/src/components/VcPopover/VcPopover.stories.js +71 -0
- package/src/components/VcPopover/VcPopover.vue +61 -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 +6 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +1 -1
- 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 +4 -3
- package/src/components/listBox/VcListbox/VcListbox.vue +46 -11
- 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 +83 -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
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
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
|
|
14
|
+
|
|
15
|
+
### 0.5.0 (2022-02-15)
|
|
16
|
+
- VcButton - add outlined and prepend default icon.
|
|
17
|
+
- VcBottomSheet
|
|
18
|
+
- VcInputBottomSheet
|
|
19
|
+
- VcModalHeader - add close button option
|
|
20
|
+
- VcLink - add cursor pointer
|
|
21
|
+
- VcModalHeader - add description
|
|
22
|
+
- VcPopover
|
|
23
|
+
- VcInputPopover
|
|
24
|
+
- VcBadge - update parameters, add test, enrich the story book
|
|
25
|
+
- VcWizard fix content height
|
|
26
|
+
- VcExpansionCard fix color
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### 0.4.0 (2022-02-08)
|
|
30
|
+
- Added VcBadge component
|
|
31
|
+
- fix icon name in VcActionList
|
|
32
|
+
- add parameters to VcTextArea
|
|
33
|
+
- add button the ability to be link
|
|
34
|
+
- VcLink - add secondary
|
|
35
|
+
- VcLink - add prepend icon
|
|
36
|
+
- VcLink - change text context to label
|
|
37
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
38
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
39
|
+
|
|
40
|
+
### 0.3.17 (2022-02-06)
|
|
41
|
+
- VcLink - add secondary
|
|
42
|
+
- VcLink - add prepend icon
|
|
43
|
+
- VcLink - change text context to label
|
|
44
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
45
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
46
|
+
|
|
47
|
+
### 0.3.16 (2022-01-31)
|
|
48
|
+
- Center image in VcImage
|
|
49
|
+
- bug fix in VcBanner
|
|
50
|
+
- Bug fix in VcImage
|
|
51
|
+
- VcChip
|
|
52
|
+
- fix expansion card content slot to have padding
|
|
53
|
+
- text-area auto grow
|
|
54
|
+
|
|
55
|
+
### 0.3.15 (2022-01-24)
|
|
56
|
+
- rename wizard event to move forward
|
|
57
|
+
- move breakpoint from mixin to wizard component
|
|
58
|
+
- modify expansion card content slot to have padding
|
|
59
|
+
|
|
60
|
+
### 0.3.14 (2022-01-24)
|
|
61
|
+
- add the ability to use image path or object in all relevant places
|
|
62
|
+
- add VcImage to facilitate use of different types of images and SVGs
|
|
63
|
+
- add title to wizard stepsBar
|
|
64
|
+
|
|
65
|
+
### 0.3.12 (2022-01-18)
|
|
66
|
+
- add animation to shadow for hover on card
|
|
67
|
+
- fix border radius on action list
|
|
68
|
+
- fix v-model value in VcListEntity and VcExpansionCard
|
|
69
|
+
- added boolean useOffset prop on VcInputModal, VcNoticeModal, VcConfirmProminentModal
|
|
70
|
+
- VcChecklistItem
|
|
71
|
+
- VcListbox
|
|
72
|
+
- Add option to disable the tooltip on VcTooltip
|
|
73
|
+
- Add option to show the avatar on black & white
|
|
74
|
+
- Add option to remove the avatar border
|
|
75
|
+
|
|
76
|
+
### 0.2.10 (2022-01-13)
|
|
77
|
+
- small fixes on VcActions
|
|
78
|
+
- add icon option for switch component
|
|
79
|
+
- VcExpansionCard
|
|
80
|
+
- VcListEntity
|
|
81
|
+
|
|
82
|
+
### 0.2.9 (2022-01-12)
|
|
83
|
+
- update design on list item
|
|
84
|
+
- add loading option for confirm modal
|
|
85
|
+
|
|
86
|
+
### 0.2.4 (2022-01-05)
|
|
87
|
+
- adding svg images to vue object
|
|
88
|
+
- move VcSvg to global components
|
|
89
|
+
|
|
90
|
+
### 0.2.3 (2022-01-03)
|
|
91
|
+
- bug fix related to $ds
|
|
92
|
+
|
|
93
|
+
### 0.2.2 (2022-01-03)
|
|
94
|
+
- VcStepsBar
|
|
95
|
+
- VcMobileWizardProgress
|
|
96
|
+
- VcProgressCircular
|
|
97
|
+
- Separate init of i18n for easier unit testing in consuming project
|
|
98
|
+
|
|
99
|
+
### 0.2.1 (2021-12-29)
|
|
100
|
+
- adding mastercard and visa to icon
|
|
101
|
+
|
|
102
|
+
### 0.2.0 (2021-12-29)
|
|
103
|
+
- Adding VcEmptyState
|
|
104
|
+
- Adding VcLink
|
|
105
|
+
- Adding VcFocusArea
|
|
106
|
+
- Migrate the VcListItem component from FG
|
|
107
|
+
- Migrate the VcGroupHeader component from FG
|
|
108
|
+
- Adding VcEmptyState
|
|
109
|
+
- Adding VcLink
|
|
110
|
+
- update for VcButton - added pill (rounded) prop
|
|
111
|
+
- Migrate VcFilterPanel component from FG
|
|
112
|
+
- Migrate VcInfiniteScroll component from FG
|
|
113
|
+
- Add translation utility
|
|
114
|
+
- update VcToast
|
|
115
|
+
|
|
116
|
+
### 0.1.5 (2021-12-07)
|
|
117
|
+
- update for VcAlert - added inline state
|
|
118
|
+
- update for VcCard - update all design and add test and story
|
|
119
|
+
- simplify the process of adding svg icons
|
|
120
|
+
- Migrate the VcCheckbox component from FG
|
|
121
|
+
- add disabled css for VcButton
|
|
122
|
+
|
|
123
|
+
## 0.1.4 (2021-11-28)
|
|
124
|
+
- VcConfirmModal - added support for loader in modal buttons
|
|
125
|
+
- VcConfirmModal, VcModalContainer, VcModalWrapper - added support to add or remove the offset class
|
|
126
|
+
|
|
127
|
+
## 0.1.2 (2021-11-21)
|
|
128
|
+
### Added components
|
|
129
|
+
- VcActionsList
|
|
130
|
+
- VcBottomActions
|
|
131
|
+
- VcActions - A wrapper for VcActionsList and VcBottomActions that chooses which one to display, depending if it is used in desktop or mobile
|
|
132
|
+
- VcTooltip
|
|
133
|
+
- VcIconWithTooltip
|
|
134
|
+
|
|
135
|
+
### Added utilities
|
|
136
|
+
- util/colorUtil.js - utility functions commonly used for setting the theme
|