@vcita/design-system 0.2.7 → 0.3.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 (36) hide show
  1. package/CHANGELOG.MD +10 -0
  2. package/README.md +1 -0
  3. package/dist/@vcita/design-system.esm.js +715 -424
  4. package/dist/@vcita/design-system.min.js +1 -1
  5. package/dist/@vcita/design-system.ssr.js +645 -369
  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/VcActions/VcActions.spec.js +1 -1
  13. package/src/components/VcActions/VcActions.stories.js +1 -1
  14. package/src/components/VcActions/VcActions.vue +4 -6
  15. package/src/components/VcBanner/VcBanner.stories.js +14 -2
  16. package/src/components/VcBanner/VcBanner.vue +5 -2
  17. package/src/components/VcBottomActions/VcBottomActions.spec.js +1 -1
  18. package/src/components/VcBottomActions/VcBottomActions.stories.js +3 -3
  19. package/src/components/VcEmptyState/VcEmptyState.vue +1 -1
  20. package/src/components/VcExpansionCard/VcExpansionCard.spec.js +146 -0
  21. package/src/components/VcExpansionCard/VcExpansionCard.stories.js +43 -0
  22. package/src/components/VcExpansionCard/VcExpansionCard.vue +117 -0
  23. package/src/components/VcSwitch/VcSwitch.spec.js +40 -0
  24. package/src/components/VcSwitch/VcSwitch.stories.js +14 -3
  25. package/src/components/VcSwitch/VcSwitch.vue +162 -52
  26. package/src/components/index.js +2 -0
  27. package/src/components/list/VcListEntity/VcListEntity.spec.js +95 -0
  28. package/src/components/list/VcListEntity/VcListEntity.stories.js +77 -0
  29. package/src/components/list/VcListEntity/VcListEntity.vue +70 -0
  30. package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +6 -2
  31. package/src/components/wizard/VcSteperContent/VcStepperContent.vue +6 -0
  32. package/src/components/wizard/VcWizard/VcWizard.spec.js +7 -0
  33. package/src/components/wizard/VcWizard/VcWizard.stories.js +3 -0
  34. package/src/components/wizard/VcWizard/VcWizard.vue +12 -4
  35. package/src/components/wizard/VcWizard/demoWizardPage.vue +1 -1
  36. package/src/stories/welcome.stories.mdx +1 -0
package/CHANGELOG.MD CHANGED
@@ -5,7 +5,15 @@ 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
+ ### 0.2.10 (2022-01-13)
9
+ - small fixes on VcActions
10
+ - add icon option for switch component
11
+ - VcExpansionCard
12
+ - VcEntityList
13
+
14
+ ### 0.2.9 (2022-01-12)
8
15
  - update design on list item
16
+ - add loading option for confirm modal
9
17
 
10
18
  ### 0.2.4 (2022-01-05)
11
19
  - adding svg images to vue object
@@ -29,6 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29
37
  - Adding VcFocusArea
30
38
  - Migrate the VcListItem component from FG
31
39
  - Migrate the VcGroupHeader component from FG
40
+ - Adding VcEmptyState
41
+ - Adding VcLink
32
42
  - update for VcButton - added pill (rounded) prop
33
43
  - Migrate VcFilterPanel component from FG
34
44
  - 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
+