@vcita/design-system 0.2.3 → 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 +57 -0
- package/dist/@vcita/design-system.esm.js +721 -574
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +610 -469
- package/init/DesignSystem.js +2 -0
- package/init/SvgIcons.js +0 -2
- 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/{init → src/components}/VcSvg/VcSvg.stories.js +5 -1
- package/{init → src/components}/VcSvg/VcSvg.vue +0 -0
- package/src/components/index.js +2 -1
- package/src/components/list/VcListItem/VcListItem.vue +1 -3
- package/src/assets/logo.png +0 -0
- package/src/assets/logo.svg +0 -1
- package/src/components/VcButton/VcButton.stories.mdx.old +0 -40
- package/src/components/VcExpansionPanels/VcExpansionPanels.stories.js +0 -36
- package/src/components/VcExpansionPanels/VcExpansionPanels.vue +0 -26
- package/src/components/VcHourInput/VcHourInput.stories.js +0 -36
- package/src/components/VcHourInput/VcHourInput.vue +0 -134
- package/src/stories/assets/colors.svg +0 -1
- package/src/stories/assets/comments.svg +0 -1
- package/src/stories/assets/direction.svg +0 -1
- package/src/stories/assets/plugin.svg +0 -1
- package/src/stories/assets/repo.svg +0 -1
- package/src/stories/assets/stackalt.svg +0 -1
- package/src/stories/colors.stories.mdx +0 -78
package/CHANGELOG.MD
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
|
|
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)
|
|
26
|
+
- Adding VcEmptyState
|
|
27
|
+
- Adding VcLink
|
|
28
|
+
- Adding VcFocusArea
|
|
29
|
+
- Migrate the VcListItem component from FG
|
|
30
|
+
- Migrate the VcGroupHeader component from FG
|
|
31
|
+
- update for VcButton - added pill (rounded) prop
|
|
32
|
+
- Migrate VcFilterPanel component from FG
|
|
33
|
+
- Migrate VcInfiniteScroll component from FG
|
|
34
|
+
- Add translation utility
|
|
35
|
+
- update VcToast
|
|
36
|
+
|
|
37
|
+
### 0.1.5 (2021-12-07)
|
|
38
|
+
- update for VcAlert - added inline state
|
|
39
|
+
- update for VcCard - update all design and add test and story
|
|
40
|
+
- simplify the process of adding svg icons
|
|
41
|
+
- Migrate the VcCheckbox component from FG
|
|
42
|
+
- add disabled css for VcButton
|
|
43
|
+
|
|
44
|
+
## 0.1.4 (2021-11-28)
|
|
45
|
+
- VcConfirmModal - added support for loader in modal buttons
|
|
46
|
+
- VcConfirmModal, VcModalContainer, VcModalWrapper - added support to add or remove the offset class
|
|
47
|
+
|
|
48
|
+
## 0.1.2 (2021-11-21)
|
|
49
|
+
### Added components
|
|
50
|
+
- VcActionsList
|
|
51
|
+
- VcBottomActions
|
|
52
|
+
- VcActions - A wrapper for VcActionsList and VcBottomActions that chooses which one to display, depending if it is used in desktop or mobile
|
|
53
|
+
- VcTooltip
|
|
54
|
+
- VcIconWithTooltip
|
|
55
|
+
|
|
56
|
+
### Added utilities
|
|
57
|
+
- util/colorUtil.js - utility functions commonly used for setting the theme
|