@vcita/design-system 1.17.10 → 1.17.12
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 +12 -0
- package/dist/@vcita/design-system.esm.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1 -1
- package/dist/entry-ce95a133.js +27718 -0
- package/dist/entry-d97e14f6.js +28333 -0
- package/dist/index-2b5254c7.js +1 -0
- package/dist/index-6f35fe41.js +2 -0
- package/dist/vue2-pdf-embed-4b6c0001.js +29 -0
- package/dist/vue2-pdf-embed-777d0dcf.js +5 -0
- package/package.json +1 -1
- package/src/components/VcAlert/VcAlert.spec.js +19 -0
- package/src/components/VcAlert/VcAlert.stories.js +38 -2
- package/src/components/VcAlert/VcAlert.vue +5 -5
- package/src/components/VcLink/VcLink.spec.js +25 -0
- package/src/components/VcLink/VcLink.stories.js +16 -1
- package/src/components/VcLink/VcLink.vue +19 -7
- package/styles/variables.scss +2 -0
package/README.md
CHANGED
|
@@ -4,6 +4,18 @@ You can find storybook [here](https://vcita.github.io/design-system)
|
|
|
4
4
|
|
|
5
5
|
This project's goal is to create a set of tools that will enable future development to be quicker and more standard, while providing the vcita flavor.
|
|
6
6
|
|
|
7
|
+
## Follow these steps to run the storybook locally
|
|
8
|
+
|
|
9
|
+
It's highly recommended to use the nvm tool to be able to install various versions of node locally
|
|
10
|
+
|
|
11
|
+
1. nvm install 20 or switch to node v20
|
|
12
|
+
2. npm i
|
|
13
|
+
3. nvm install 16 or switch to node v16
|
|
14
|
+
4. npm run storybook
|
|
15
|
+
|
|
16
|
+
Notice that ATM we need to install the dependencies in one node version but then execute it using another
|
|
17
|
+
TODO: standardise node version for both operations https://myvcita.atlassian.net/browse/VCITA2-2439
|
|
18
|
+
|
|
7
19
|
### Getting started
|
|
8
20
|
```
|
|
9
21
|
npm i @vcita/design-system
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { a_ as default } from '../entry-
|
|
1
|
+
export { a_ as default } from '../entry-d97e14f6.js';
|
|
2
2
|
import 'vuetify/lib';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var entry=require('../entry-
|
|
1
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var entry=require('../entry-ce95a133.js');require('vuetify/lib');exports["default"]=entry.a_;
|