@vcita/design-system 1.3.12 → 1.3.14
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 +15 -0
- package/dist/@vcita/design-system.esm.js +1761 -1116
- package/dist/@vcita/design-system.min.js +2 -3
- package/dist/@vcita/design-system.ssr.js +1647 -997
- package/dist/design-system.es.js +55814 -0
- package/dist/design-system.umd.js +72 -0
- package/dist/style.css +5 -0
- package/package.json +1 -1
- package/src/components/VcAccordion/VcAccordion.vue +2 -2
- package/src/components/VcChip/VcChip.spec.js +6 -2
- package/src/components/VcChip/VcChip.stories.js +24 -13
- package/src/components/VcChip/VcChip.vue +18 -11
- package/src/components/VcChipList/VcChipList.spec.js +24 -1
- package/src/components/VcChipList/VcChipList.stories.js +42 -7
- package/src/components/VcChipList/VcChipList.vue +37 -15
- package/src/components/VcFilterPanel/VcFilterPanel.spec.js +9 -3
- package/src/components/VcFilterPanel/VcFilterPanel.stories.js +179 -20
- package/src/components/VcFilterPanel/VcFilterPanel.vue +27 -15
- package/src/components/VcLayout/VcLayout.vue +2 -1
- package/src/components/VcMenu/VcDropdown.stories.js +7 -4
- package/src/components/VcMenu/VcDropdown.vue +5 -1
- package/src/components/VcTabs/VcTabs.spec.js +1 -1
- package/src/components/VcTabs/VcTabs.stories.js +3 -3
- package/src/components/VcTabs/VcTabs.vue +44 -33
- package/src/components/index.js +3 -1
- package/src/components/list/VcList/VcList.vue +3 -1
- package/src/components/listPage/VcActionBar/VcActionBar.spec.js +151 -0
- package/src/components/listPage/VcActionBar/VcActionBar.stories.js +116 -0
- package/src/components/listPage/VcActionBar/VcActionBar.vue +195 -0
- package/src/components/listPage/VcEntityList/VcEntityList.spec.js +152 -0
- package/src/components/listPage/VcEntityList/VcEntityList.stories.js +115 -0
- package/src/components/listPage/VcEntityList/VcEntityList.vue +132 -0
- package/src/components/listPage/VcFilterBar/VcFilterBar.vue +15 -0
- package/src/components/listPage/VcGroupHeader/VcGroupHeader.stories.js +1 -1
- package/src/components/listPage/VcGroupHeader/VcGroupHeader.vue +4 -5
- package/src/components/listPage/VcInfiniteScroll/VcInfiniteScroll.stories.js +1 -1
- package/src/components/listPage/VcListItem/VcListItem.stories.js +2 -2
- package/src/components/listPage/VcListItem/VcListItem.vue +3 -13
- package/src/components/page/elements/VcPageHeader.spec.js +17 -0
- package/src/components/page/elements/VcPageHeader.stories.js +18 -1
- package/src/components/page/elements/VcPageHeader.vue +45 -2
- package/src/components/page/layouts/SideNavPage/SideNavLayout.stories.js +13 -12
- package/src/components/page/layouts/centeredPage/CenteredPageLayout.stories.js +4 -4
- package/src/components/page/layouts/collapsingLeftPanelPage/CollapsingLeftPanePage.stories.js +220 -0
- package/src/components/page/layouts/filterPanelPage/FilterPanelPage.stories.js +634 -0
- package/styles/variables.scss +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,22 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
### Unreleased changes
|
|
9
|
+
|
|
10
|
+
### v1.3.14(2023-01-10)
|
|
11
|
+
- VcPageHeader - chip added
|
|
12
|
+
- VcPageHeader - button added
|
|
13
|
+
|
|
14
|
+
### v1.3.13(2023-01-09)
|
|
9
15
|
- VcSelectField - Optionally use icomoon icons
|
|
16
|
+
- VcChipList - variable number of rows, variable item height, optional item 'close'
|
|
17
|
+
- VcChip - optionally displays avatar
|
|
18
|
+
- VcFilterPanel - add header/scrolling content/footer structure
|
|
19
|
+
- VcActionBar - migrate component
|
|
20
|
+
- VcTabs - when in limited height container, header is sticky, and only the content scrolls
|
|
21
|
+
- VcEntityList - add component
|
|
22
|
+
- VcAccordion - add item data to slot
|
|
23
|
+
- VcLayout - add ability to use ref
|
|
24
|
+
- VcDropdown - add white background
|
|
10
25
|
|
|
11
26
|
### v1.3.12(2023-01-01)
|
|
12
27
|
- VcActionList - offset-y
|