@vcita/design-system 1.2.3 → 1.3.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 +10 -1
- package/config/locales/ds.en.yml +4 -1
- package/config/locales/ds.he.yml +3 -0
- package/dist/@vcita/design-system.esm.js +1279 -1002
- package/dist/@vcita/design-system.min.js +2 -2
- package/dist/@vcita/design-system.ssr.js +1158 -888
- package/init/DesignSystem.js +2 -0
- package/init/SvgIcons.js +12 -2
- package/package.json +1 -1
- package/src/components/VcBreadcrumbs/VcBreadcrumbs.spec.js +82 -0
- package/src/components/VcBreadcrumbs/VcBreadcrumbs.stories.js +86 -0
- package/src/components/VcBreadcrumbs/VcBreadcrumbs.vue +59 -0
- package/src/components/VcButton/VcButton.stories.js +13 -2
- package/src/components/VcButton/VcButton.vue +16 -7
- package/src/components/VcLink/VcLink.vue +13 -1
- package/src/components/VcSideNav/VcSideNav.vue +2 -0
- package/src/components/VcTextField/VcTextField.stories.js +2 -1
- package/src/components/VcUpsellBlock/VcUpsellBlock.stories.js +7 -2
- package/src/components/VcUpsellBlock/VcUpsellBlock.vue +3 -0
- package/src/components/index.js +2 -0
- package/src/components/list/VcList/pattern/VcMobilePickerPattern.stories.js +3 -0
- package/src/components/modal/elements/VcModalContainer.stories.js +6 -0
- package/src/components/modal/elements/VcModalContainer.vue +7 -14
- package/src/components/page/elements/VcPageHeader.spec.js +123 -0
- package/src/components/page/elements/VcPageHeader.stories.js +80 -0
- package/src/components/page/elements/VcPageHeader.vue +96 -0
- package/src/components/page/layouts/SideNavPage/SideNavLayout.stories.js +223 -0
- package/src/components/page/layouts/centeredPage/CenteredPageLayout.stories.js +162 -0
- package/src/stories/variables.stories.mdx +9 -2
- package/styles/variables.scss +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
### v1.3.0(2022-10-25)
|
|
10
|
+
- Adding SideNav layout
|
|
11
|
+
- Adding centered layout
|
|
12
|
+
- Adding VcPageHeader
|
|
13
|
+
- Adding VcBreadcrumbs
|
|
14
|
+
- Ability to disable VcLink
|
|
15
|
+
- modal container can show close button on flavor input
|
|
16
|
+
- upsell dialog fix dimension issue
|
|
17
|
+
|
|
9
18
|
### v1.2.3 (2022-10-03)
|
|
10
19
|
- VcMiniBanner - added new component
|
|
11
20
|
- VcSearchPicker - removed redundant event emission from pointer
|
|
@@ -14,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
23
|
|
|
15
24
|
### v1.2.2 (2022-09-19)
|
|
16
25
|
- VcTextField - fix alignment
|
|
17
|
-
- VcSideNav
|
|
26
|
+
- VcSideNav
|
|
18
27
|
- VcIcon - fix color prop
|
|
19
28
|
|
|
20
29
|
### v1.2.1 (2022-09-08)
|
package/config/locales/ds.en.yml
CHANGED