@vcita/design-system 1.11.11 → 1.11.13
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 +11 -0
- package/dist/@vcita/design-system.esm.js +19894 -21
- package/dist/@vcita/design-system.min.js +2 -2
- package/dist/@vcita/design-system.ssr.js +19900 -27
- package/package.json +1 -1
- package/src/components/VcChip/VcChip.spec.js +16 -0
- package/src/components/VcChip/VcChip.stories.js +4 -0
- package/src/components/VcChip/VcChip.vue +13 -2
- package/src/components/VcChipList/VcChipList.vue +9 -1
- package/src/components/VcPoweredBy/VcPoweredBy.spec.js +47 -0
- package/src/components/VcPoweredBy/VcPoweredBy.stories.js +13 -2
- package/src/components/VcPoweredBy/VcPoweredBy.vue +18 -7
- package/src/components/table/elements/VcColumnHeader/VcColumnHeader.vue +2 -2
- package/src/components/table/elements/VcDataTable/VcDataTable.vue +1 -0
- package/src/components/table/elements/VcTableItem/VcTableItem.vue +2 -0
package/README.md
CHANGED
|
@@ -68,6 +68,17 @@ In order to load the variables.scss file, add this to src/main.js
|
|
|
68
68
|
```
|
|
69
69
|
import "@/../styles/variables.scss";
|
|
70
70
|
```
|
|
71
|
+
|
|
72
|
+
Please note: to receive the theme in your components, make sure to initialize your app using the v-app tag.
|
|
73
|
+
Your App.vue will look something like this:
|
|
74
|
+
```
|
|
75
|
+
<template>
|
|
76
|
+
<v-app id="app">
|
|
77
|
+
... your components here ...
|
|
78
|
+
</v-app>
|
|
79
|
+
</template>
|
|
80
|
+
```
|
|
81
|
+
|
|
71
82
|
The src/styles/variables.scss file can be used to override some styling variables.
|
|
72
83
|
You can do this by specifying a different value to one or more of the css variables that have been provided.
|
|
73
84
|
|