@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.
Files changed (44) hide show
  1. package/CHANGELOG.MD +14 -0
  2. package/README.md +1 -0
  3. package/dist/@vcita/design-system.esm.js +736 -435
  4. package/dist/@vcita/design-system.min.js +1 -1
  5. package/dist/@vcita/design-system.ssr.js +665 -379
  6. package/init/DesignSystem.js +18 -2
  7. package/init/SvgIcons.js +4 -0
  8. package/init/vuetify.config.js +3 -3
  9. package/package.json +1 -1
  10. package/src/components/VcActionList/VcActionList.spec.js +1 -1
  11. package/src/components/VcActionList/VcActionList.stories.js +1 -1
  12. package/src/components/VcActionList/VcActionList.vue +1 -0
  13. package/src/components/VcActions/VcActions.spec.js +1 -1
  14. package/src/components/VcActions/VcActions.stories.js +1 -1
  15. package/src/components/VcActions/VcActions.vue +4 -6
  16. package/src/components/VcBanner/VcBanner.stories.js +14 -2
  17. package/src/components/VcBanner/VcBanner.vue +5 -2
  18. package/src/components/VcBottomActions/VcBottomActions.spec.js +1 -1
  19. package/src/components/VcBottomActions/VcBottomActions.stories.js +3 -3
  20. package/src/components/VcCard/VcCard.vue +1 -0
  21. package/src/components/VcEmptyState/VcEmptyState.vue +1 -1
  22. package/src/components/VcExpansionCard/VcExpansionCard.spec.js +146 -0
  23. package/src/components/VcExpansionCard/VcExpansionCard.stories.js +43 -0
  24. package/src/components/VcExpansionCard/VcExpansionCard.vue +117 -0
  25. package/src/components/VcSwitch/VcSwitch.spec.js +40 -0
  26. package/src/components/VcSwitch/VcSwitch.stories.js +14 -3
  27. package/src/components/VcSwitch/VcSwitch.vue +162 -52
  28. package/src/components/index.js +2 -0
  29. package/src/components/list/VcListEntity/VcListEntity.spec.js +95 -0
  30. package/src/components/list/VcListEntity/VcListEntity.stories.js +77 -0
  31. package/src/components/list/VcListEntity/VcListEntity.vue +70 -0
  32. package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +6 -2
  33. package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.stories.js +2 -0
  34. package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.vue +5 -0
  35. package/src/components/modal/VcInputModal/VcInputModal.stories.js +8 -1
  36. package/src/components/modal/VcInputModal/VcInputModal.vue +6 -1
  37. package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +6 -1
  38. package/src/components/modal/VcNoticeModal/VcNoticeModal.vue +5 -1
  39. package/src/components/wizard/VcSteperContent/VcStepperContent.vue +6 -0
  40. package/src/components/wizard/VcWizard/VcWizard.spec.js +7 -0
  41. package/src/components/wizard/VcWizard/VcWizard.stories.js +3 -0
  42. package/src/components/wizard/VcWizard/VcWizard.vue +12 -4
  43. package/src/components/wizard/VcWizard/demoWizardPage.vue +1 -1
  44. 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
@@ -176,3 +176,4 @@ export default DesignSystemInit(config);
176
176
 
177
177
  See [Configuration Reference](https://cli.vuejs.org/config/).
178
178
 
179
+