@vcita/design-system 1.1.1 → 1.1.2-beta.1
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/config/locales/ds.en.yml +2 -0
- package/dist/@vcita/design-system.esm.js +9797 -3064
- package/dist/@vcita/design-system.min.js +8 -1
- package/dist/@vcita/design-system.ssr.js +8617 -1934
- package/init/DesignSystem.js +10 -2
- package/init/SvgIcons.js +12 -10
- package/package.json +3 -2
- package/src/components/VcAvatar/VcAvatar.vue +3 -2
- package/src/components/VcBottomSheet/VcBottomSheet.stories.js +1 -1
- package/src/components/VcDraggableList/VcDraggableList.spec.js +89 -0
- package/src/components/VcDraggableList/VcDraggableList.stories.js +39 -0
- package/src/components/VcDraggableList/VcDraggableList.vue +109 -0
- package/src/components/VcInputBottomSheet/VcInputBottomSheet.stories.js +1 -1
- package/src/components/VcSearchBar/VcSearchBar.stories.js +1 -1
- package/src/components/VcTabs/VcTabs.spec.js +57 -0
- package/src/components/VcTabs/VcTabs.stories.js +182 -0
- package/src/components/VcTabs/VcTabs.vue +125 -0
- package/src/components/VcTextField/VcTextField.spec.js +42 -3
- package/src/components/VcTextField/VcTextField.stories.js +59 -17
- package/src/components/VcTextField/VcTextField.vue +78 -19
- package/src/components/VcTextField/VcTextFieldPreload.spec.js +4 -4
- package/src/components/VcUpsellBlock/VcUpsellBlock.stories.js +24 -0
- package/src/components/index.js +5 -2
- package/src/components/list/VcBaseListItem/VcBaseListItem.spec.js +84 -0
- package/src/components/list/VcBaseListItem/VcBaseListItem.stories.js +99 -0
- package/src/components/list/VcBaseListItem/VcBaseListItem.vue +104 -0
- package/src/components/list/VcList/VcList.spec.js +186 -0
- package/src/components/list/VcList/VcList.stories.js +332 -0
- package/src/components/list/VcList/VcList.vue +81 -0
- package/src/components/list/VcList/pattern/VcMobilePickerPattern.stories.js +255 -0
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.stories.js +1 -1
- package/src/components/listBox/VcChecklistItem/VcChecklistItem.vue +0 -3
- package/src/components/listBox/VcListbox/VcListbox.spec.js +1 -1
- package/src/components/listBox/VcListbox/VcListbox.stories.js +2 -0
- package/src/components/listBox/VcListbox/VcListbox.vue +0 -2
- package/src/components/{list → listPage}/VcGroupHeader/VcGroupHeader.spec.js +0 -0
- package/src/components/{list → listPage}/VcGroupHeader/VcGroupHeader.stories.js +1 -1
- package/src/components/{list → listPage}/VcGroupHeader/VcGroupHeader.vue +0 -0
- package/src/components/{list → listPage}/VcInfiniteScroll/VcInfiniteScroll.spec.js +0 -0
- package/src/components/{list → listPage}/VcInfiniteScroll/VcInfiniteScroll.stories.js +1 -1
- package/src/components/{list → listPage}/VcInfiniteScroll/VcInfiniteScroll.vue +0 -0
- package/src/components/{list → listPage}/VcListItem/VcListItem.spec.js +0 -0
- package/src/components/{list → listPage}/VcListItem/VcListItem.stories.js +1 -5
- package/src/components/{list → listPage}/VcListItem/VcListItem.vue +0 -0
- package/src/components/modal/VcInputModal/VcInputModal.spec.js +13 -0
- package/src/components/modal/VcInputModal/VcInputModal.stories.js +2 -0
- package/src/components/modal/VcInputModal/VcInputModal.vue +5 -1
- package/src/components/modal/elements/VcModalContainer.vue +0 -1
- package/src/components/modal/elements/VcModalHeader.spec.js +5 -2
- package/src/components/modal/elements/VcModalHeader.stories.js +13 -0
- package/src/components/modal/elements/VcModalHeader.vue +26 -0
- package/src/components/wizard/VcSteperContent/VcStepperContent.vue +16 -5
- package/src/components/wizard/VcWizard/VcWizard.spec.js +53 -2
- package/src/components/wizard/VcWizard/VcWizard.stories.js +5 -4
- package/styles/variables.scss +0 -3
- package/CHANGELOG.MD +0 -255