@vcita/design-system 1.3.20 → 1.4.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.
- package/CHANGELOG.md +8 -0
- package/dist/@vcita/design-system.esm.js +1858 -1247
- package/dist/@vcita/design-system.min.js +3 -2
- package/dist/@vcita/design-system.ssr.js +1673 -1068
- package/package.json +1 -1
- package/src/components/VcAccordion/VcAccordion.spec.js +9 -8
- package/src/components/VcAccordion/VcAccordion.stories.js +14 -13
- package/src/components/VcAccordion/VcAccordion.vue +83 -45
- package/src/components/VcActionList/VcActionList.stories.js +5 -3
- package/src/components/VcActionList/VcActionList.vue +1 -0
- package/src/components/VcBottomNav/VcBottomNav.spec.js +133 -0
- package/src/components/VcBottomNav/VcBottomNav.stories.js +92 -0
- package/src/components/VcBottomNav/VcBottomNav.vue +117 -0
- package/src/components/VcChip/VcChip.vue +4 -0
- package/src/components/VcGroupedItems/VcGroupedItems.vue +3 -2
- package/src/components/VcImage/VcImage.spec.js +1 -3
- package/src/components/VcMenu/VcDropdown.spec.js +1 -5
- package/src/components/VcMenuItem/VcMenuItem.stories.js +1 -1
- package/src/components/VcMenuItem/VcMenuItem.vue +1 -1
- package/src/components/VcSearchBar/VcSearchBar.vue +1 -2
- package/src/components/index.js +1 -0
- package/src/components/listPage/VcActionBar/VcActionBar.spec.js +0 -2
- package/src/components/listPage/VcEntityList/VcEntityList.spec.js +1 -1
- package/src/components/page/elements/VcPageHeader.spec.js +16 -2
- package/src/components/page/elements/VcPageHeader.stories.js +31 -9
- package/src/components/page/elements/VcPageHeader.vue +27 -13
- package/src/stories/variables.stories.mdx +1 -0
- package/styles/variables.scss +1 -0
- package/styles/vuetify-variables.scss +1 -0
- package/dist/design-system.es.js +0 -55814
- package/dist/design-system.umd.js +0 -72
- package/dist/style.css +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
### Unreleased changes
|
|
9
9
|
|
|
10
|
+
### v1.4.0(2023-02-12)
|
|
11
|
+
- VcPageHeader - the save button will not appear by default, add ability to control the button icon
|
|
12
|
+
- VcChip - avatar margin fix
|
|
13
|
+
- VcAccordion - adjust style and add option to gap and grey background
|
|
14
|
+
- VcActionList - data-qa for items added
|
|
15
|
+
- VcBottomNav - add component
|
|
16
|
+
- VcGroupItems - change spaces between group to gap and not margin
|
|
17
|
+
|
|
10
18
|
### v1.3.20(2023-01-30)
|
|
11
19
|
- VcPageHeader - edit mode
|
|
12
20
|
- VcPageHeader - subtitle appended link added
|