@vcita/design-system 0.1.5 → 0.2.3
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/README.md +2 -11
- package/config/locales/ds.de.yml +6 -0
- package/config/locales/ds.en.yml +8 -0
- package/config/locales/ds.es.yml +6 -0
- package/config/locales/ds.fr.yml +6 -0
- package/config/locales/ds.he.yml +6 -0
- package/config/locales/ds.it.yml +6 -0
- package/config/locales/ds.keys.yml +6 -0
- package/config/locales/ds.nl.yml +6 -0
- package/config/locales/ds.pl.yml +6 -0
- package/config/locales/ds.pseudo.yml +6 -0
- package/config/locales/ds.pt.yml +6 -0
- package/config/locales/ds.ru.yml +6 -0
- package/config/locales/ds.sl.yml +6 -0
- package/config/locales/ds.tr.yml +6 -0
- package/config/locales/ds.zun.yml +6 -0
- package/dist/@vcita/design-system.esm.js +1775 -729
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1649 -674
- package/init/DesignSystem.js +13 -3
- package/init/SvgIcons.js +25 -0
- package/init/VcSvg/VcSvg.stories.js +1 -6
- package/init/initI18n.js +48 -0
- package/init/vuetify.config.js +1 -25
- package/package.json +8 -3
- package/src/components/VcActions/VcActions.vue +7 -5
- package/src/components/VcAvatar/VcAvatar.spec.js +1 -1
- package/src/components/VcButton/VcButton.stories.js +83 -20
- package/src/components/VcButton/VcButton.vue +5 -4
- package/src/components/VcButtonGroup/VcButtonGroup.spec.js +1 -1
- package/src/components/VcCheckbox/VcCheckbox.vue +4 -4
- package/src/components/VcEmptyState/VcEmptyState.spec.js +91 -0
- package/src/components/VcEmptyState/VcEmptyState.stories.js +57 -0
- package/src/components/VcEmptyState/VcEmptyState.vue +116 -0
- package/src/components/VcFilterPanel/VcFilterPanel.spec.js +80 -0
- package/src/components/VcFilterPanel/VcFilterPanel.stories.js +40 -0
- package/src/components/VcFilterPanel/VcFilterPanel.vue +135 -0
- package/src/components/VcForm/VcForm.stories.js +0 -1
- package/src/components/VcIcon/VcIcon.stories.js +11 -4
- package/src/components/VcIcon/VcIcon.vue +2 -1
- package/src/components/VcIconWithTooltip/VcIconWithTooltip.spec.js +5 -4
- package/src/components/VcLayout/VcLayout.vue +1 -0
- package/src/components/VcLink/VcLink.spec.js +49 -0
- package/src/components/VcLink/VcLink.stories.js +30 -0
- package/src/components/VcLink/VcLink.vue +38 -0
- package/src/components/VcProgressCircular/VcProgressCircular.spec.js +109 -0
- package/src/components/VcProgressCircular/VcProgressCircular.stories.js +58 -0
- package/src/components/VcProgressCircular/VcProgressCircular.vue +88 -0
- package/src/components/VcTextField/VcTextField.spec.js +13 -95
- package/src/components/VcTextField/VcTextField.stories.js +60 -41
- package/src/components/VcTextField/VcTextField.vue +78 -155
- package/src/components/VcToast/VcToast.vue +8 -1
- package/src/components/VcTooltip/VcTooltip.spec.js +3 -3
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.spec.js +109 -0
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.stories.js +58 -0
- package/src/components/Wizard/VcMobileWizardProgress/VcMobileWizardProgress.vue +85 -0
- package/src/components/Wizard/VcSteperContant/VcStepperContent.spec.js +163 -0
- package/src/components/Wizard/VcSteperContant/VcStepperContent.stories.js +118 -0
- package/src/components/Wizard/VcSteperContant/VcStepperContent.vue +153 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.spec.js +122 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.stories.js +56 -0
- package/src/components/Wizard/VcStepsBar/VcStepsBar.vue +190 -0
- package/src/components/index.js +10 -1
- package/src/components/list/VcGroupHeader/VcGroupHeader.spec.js +70 -0
- package/src/components/list/VcGroupHeader/VcGroupHeader.stories.js +30 -0
- package/src/components/list/VcGroupHeader/VcGroupHeader.vue +54 -0
- package/src/components/list/VcInfiniteScroll/VcInfiniteScroll.spec.js +68 -0
- package/src/components/list/VcInfiniteScroll/VcInfiniteScroll.stories.js +93 -0
- package/src/components/list/VcInfiniteScroll/VcInfiniteScroll.vue +66 -0
- package/src/components/list/VcListItem/VcListItem.spec.js +113 -0
- package/src/components/list/VcListItem/VcListItem.stories.js +67 -0
- package/src/components/list/VcListItem/VcListItem.vue +100 -0
- package/src/components/modal/VcConfirmModal/VcConfirmModal.spec.js +3 -1
- package/src/components/modal/VcConfirmModal/VcConfirmModal.stories.js +27 -23
- package/src/components/modal/VcConfirmModal/VcConfirmModal.vue +10 -2
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.spec.js +3 -1
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.stories.js +16 -9
- package/src/components/modal/VcConfirmProminentModal/VcConfirmProminentModal.vue +13 -5
- package/src/components/modal/VcInputModal/VcInputModal.spec.js +5 -3
- package/src/components/modal/VcInputModal/VcInputModal.stories.js +25 -18
- package/src/components/modal/VcInputModal/VcInputModal.vue +10 -2
- package/src/components/modal/VcNoticeModal/VcNoticeModal.spec.js +3 -1
- package/src/components/modal/VcNoticeModal/VcNoticeModal.stories.js +16 -9
- package/src/components/modal/VcNoticeModal/VcNoticeModal.vue +10 -2
- package/src/scss/mixins.scss +13 -0
- package/styles/variables.scss +3 -1
package/README.md
CHANGED
|
@@ -100,17 +100,8 @@ npm run storybook
|
|
|
100
100
|
### Ongoing development
|
|
101
101
|
|
|
102
102
|
In many cases, you don't want to publish the package each time you make a change. In those cases it can may life much
|
|
103
|
-
easier to install the package
|
|
104
|
-
|
|
105
|
-
```
|
|
106
|
-
npm install "https://github.com/vcita/design-system.git#branch" --save
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
so to install from integration for example, run
|
|
110
|
-
|
|
111
|
-
```
|
|
112
|
-
npm install "https://github.com/vcita/design-system.git#example" --save
|
|
113
|
-
```
|
|
103
|
+
easier to install the package from your local project directory.
|
|
104
|
+
To learn how to do this, please go [here](https://myvcita.atlassian.net/wiki/spaces/FG/pages/2021851137/Using+the+vcita+design+system+package#Installation-for-development-purposes).
|
|
114
105
|
|
|
115
106
|
Note: before releasing, make sure to publish a version and use that in your project, or tracking version changes will
|
|
116
107
|
become impossible.
|