@vcita/design-system 0.2.7 → 0.2.11
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 +14 -0
- package/README.md +1 -0
- package/dist/@vcita/design-system.esm.js +736 -435
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +665 -379
- package/init/DesignSystem.js +18 -2
- package/init/SvgIcons.js +4 -0
- package/init/vuetify.config.js +3 -3
- package/package.json +1 -1
- package/src/components/VcActionList/VcActionList.spec.js +1 -1
- package/src/components/VcActionList/VcActionList.stories.js +1 -1
- package/src/components/VcActionList/VcActionList.vue +1 -0
- package/src/components/VcActions/VcActions.spec.js +1 -1
- package/src/components/VcActions/VcActions.stories.js +1 -1
- package/src/components/VcActions/VcActions.vue +4 -6
- package/src/components/VcBanner/VcBanner.stories.js +14 -2
- package/src/components/VcBanner/VcBanner.vue +5 -2
- package/src/components/VcBottomActions/VcBottomActions.spec.js +1 -1
- package/src/components/VcBottomActions/VcBottomActions.stories.js +3 -3
- package/src/components/VcCard/VcCard.vue +1 -0
- package/src/components/VcEmptyState/VcEmptyState.vue +1 -1
- package/src/components/VcExpansionCard/VcExpansionCard.spec.js +146 -0
- package/src/components/VcExpansionCard/VcExpansionCard.stories.js +43 -0
- package/src/components/VcExpansionCard/VcExpansionCard.vue +117 -0
- package/src/components/VcSwitch/VcSwitch.spec.js +40 -0
- package/src/components/VcSwitch/VcSwitch.stories.js +14 -3
- package/src/components/VcSwitch/VcSwitch.vue +162 -52
- package/src/components/index.js +2 -0
- package/src/components/list/VcListEntity/VcListEntity.spec.js +95 -0
- package/src/components/list/VcListEntity/VcListEntity.stories.js +77 -0
- package/src/components/list/VcListEntity/VcListEntity.vue +70 -0
- package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +6 -2
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.stories.js +2 -0
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.vue +5 -0
- package/src/components/modal/VcInputModal/VcInputModal.stories.js +8 -1
- package/src/components/modal/VcInputModal/VcInputModal.vue +6 -1
- package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +6 -1
- package/src/components/modal/VcNoticeModal/VcNoticeModal.vue +5 -1
- package/src/components/wizard/VcSteperContent/VcStepperContent.vue +6 -0
- package/src/components/wizard/VcWizard/VcWizard.spec.js +7 -0
- package/src/components/wizard/VcWizard/VcWizard.stories.js +3 -0
- package/src/components/wizard/VcWizard/VcWizard.vue +12 -4
- package/src/components/wizard/VcWizard/demoWizardPage.vue +1 -1
- package/src/stories/welcome.stories.mdx +1 -0
package/CHANGELOG.MD
CHANGED
|
@@ -5,7 +5,19 @@ 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
|
+
- add animation to shadow for hover on card
|
|
9
|
+
- fix border radius on action list
|
|
10
|
+
- added boolean useOffset prop on VcInputModal, VcNoticeModal, VcConfirmProminentModal
|
|
11
|
+
|
|
12
|
+
### 0.2.10 (2022-01-13)
|
|
13
|
+
- small fixes on VcActions
|
|
14
|
+
- add icon option for switch component
|
|
15
|
+
- VcExpansionCard
|
|
16
|
+
- VcEntityList
|
|
17
|
+
|
|
18
|
+
### 0.2.9 (2022-01-12)
|
|
8
19
|
- update design on list item
|
|
20
|
+
- add loading option for confirm modal
|
|
9
21
|
|
|
10
22
|
### 0.2.4 (2022-01-05)
|
|
11
23
|
- adding svg images to vue object
|
|
@@ -29,6 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
41
|
- Adding VcFocusArea
|
|
30
42
|
- Migrate the VcListItem component from FG
|
|
31
43
|
- Migrate the VcGroupHeader component from FG
|
|
44
|
+
- Adding VcEmptyState
|
|
45
|
+
- Adding VcLink
|
|
32
46
|
- update for VcButton - added pill (rounded) prop
|
|
33
47
|
- Migrate VcFilterPanel component from FG
|
|
34
48
|
- Migrate VcInfiniteScroll component from FG
|
package/README.md
CHANGED