@vcita/design-system 0.3.16-beta.2 → 0.5.0

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 (56) hide show
  1. package/CHANGELOG.MD +31 -0
  2. package/config/locales/ds.en.yml +1 -0
  3. package/dist/@vcita/design-system.esm.js +1300 -609
  4. package/dist/@vcita/design-system.min.js +1 -1
  5. package/dist/@vcita/design-system.ssr.js +1214 -556
  6. package/init/DesignSystem.js +2 -0
  7. package/init/SvgIcons.js +5 -2
  8. package/package.json +1 -1
  9. package/src/components/VcActionList/VcActionList.vue +2 -3
  10. package/src/components/VcAlert/VcAlert.vue +1 -1
  11. package/src/components/VcBadge/VcBadge.spec.js +32 -0
  12. package/src/components/VcBadge/VcBadge.stories.js +12 -5
  13. package/src/components/VcBadge/VcBadge.vue +15 -12
  14. package/src/components/VcBanner/VcBanner.vue +1 -1
  15. package/src/components/VcBottomSheet/VcBottomSheet.spec.js +71 -0
  16. package/src/components/VcBottomSheet/VcBottomSheet.stories.js +64 -0
  17. package/src/components/VcBottomSheet/VcBottomSheet.vue +52 -0
  18. package/src/components/VcButton/VcButton.spec.js +21 -1
  19. package/src/components/VcButton/VcButton.stories.js +48 -13
  20. package/src/components/VcButton/VcButton.vue +28 -2
  21. package/src/components/VcEmptyState/VcEmptyState.spec.js +4 -2
  22. package/src/components/VcExpansionCard/VcExpansionCard.vue +3 -4
  23. package/src/components/VcIcon/VcIcon.spec.js +4 -1
  24. package/src/components/VcIcon/VcIcon.vue +7 -1
  25. package/src/components/VcInputBottomSheet/VcInputBottomSheet.spec.js +116 -0
  26. package/src/components/VcInputBottomSheet/VcInputBottomSheet.stories.js +88 -0
  27. package/src/components/VcInputBottomSheet/VcInputBottomSheet.vue +138 -0
  28. package/src/components/VcInputPopover/VcInputPopover.spec.js +101 -0
  29. package/src/components/VcInputPopover/VcInputPopover.stories.js +76 -0
  30. package/src/components/VcInputPopover/VcInputPopover.vue +109 -0
  31. package/src/components/VcLink/VcLink.spec.js +72 -2
  32. package/src/components/VcLink/VcLink.stories.js +27 -3
  33. package/src/components/VcLink/VcLink.vue +58 -3
  34. package/src/components/VcPopover/VcPopover.spec.js +66 -0
  35. package/src/components/VcPopover/VcPopover.stories.js +63 -0
  36. package/src/components/VcPopover/VcPopover.vue +45 -0
  37. package/src/components/VcSwitch/VcSwitch.vue +1 -1
  38. package/src/components/VcTextArea/VcTextArea.stories.js +25 -4
  39. package/src/components/VcTextArea/VcTextArea.vue +8 -4
  40. package/src/components/index.js +4 -0
  41. package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +1 -1
  42. package/src/components/listBox/VcListbox/VcListbox.stories.js +1 -1
  43. package/src/components/modal/VcConfirmModal/VcConfirmModal.stories.js +0 -1
  44. package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +0 -1
  45. package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.vue +0 -1
  46. package/src/components/modal/VcInputModal/VcInputModal.spec.js +1 -1
  47. package/src/components/modal/VcInputModal/VcInputModal.stories.js +7 -2
  48. package/src/components/modal/VcInputModal/VcInputModal.vue +14 -1
  49. package/src/components/modal/elements/VcModalFooter.vue +7 -1
  50. package/src/components/modal/elements/VcModalHeader.spec.js +19 -0
  51. package/src/components/modal/elements/VcModalHeader.stories.js +23 -6
  52. package/src/components/modal/elements/VcModalHeader.vue +71 -23
  53. package/src/components/wizard/VcWizard/VcWizard.vue +1 -1
  54. package/src/stories/assets/pics/mufasa.png +0 -0
  55. package/src/stories/welcome.stories.mdx +9 -0
  56. package/styles/variables.scss +8 -0
package/CHANGELOG.MD CHANGED
@@ -5,7 +5,38 @@ 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
+
9
+ ### 0.5.0 (2022-02-15)
10
+ - VcButton - add outlined and prepend default icon.
11
+ - VcBottomSheet
12
+ - VcInputBottomSheet
13
+ - VcModalHeader - add close button option
14
+ - VcLink - add cursor pointer
15
+ - VcModalHeader - add description
16
+ - VcPopover
17
+ - VcInputPopover
18
+ - VcBadge - update parameters, add test, enrich the story book
19
+ - VcWizard fix content height
20
+ - VcExpansionCard fix color
21
+
22
+
23
+ ### 0.4.0 (2022-02-08)
8
24
  - Added VcBadge component
25
+ - fix icon name in VcActionList
26
+ - add parameters to VcTextArea
27
+ - add button the ability to be link
28
+ - VcLink - add secondary
29
+ - VcLink - add prepend icon
30
+ - VcLink - change text context to label
31
+ - SvgIcons - rename chevron_left to chevron_right
32
+ - SvgIcons - add trash, copy, chevron_left
33
+
34
+ ### 0.3.17 (2022-02-06)
35
+ - VcLink - add secondary
36
+ - VcLink - add prepend icon
37
+ - VcLink - change text context to label
38
+ - SvgIcons - rename chevron_left to chevron_right
39
+ - SvgIcons - add trash, copy, chevron_left
9
40
 
10
41
  ### 0.3.16 (2022-01-31)
11
42
  - Center image in VcImage
@@ -7,6 +7,7 @@ en:
7
7
  modal:
8
8
  cancel: Cancel
9
9
  ok: Ok
10
+ done: Done
10
11
  progress_circular:
11
12
  next: 'Next:'
12
13
  listbox: