@vcita/design-system 1.11.11 → 1.11.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 +11 -0
- package/dist/@vcita/design-system.esm.js +9 -4
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +10 -5
- package/package.json +1 -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/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
|
|
|
@@ -20977,6 +20977,10 @@ var script$t = {
|
|
|
20977
20977
|
VcLayout
|
|
20978
20978
|
},
|
|
20979
20979
|
props: {
|
|
20980
|
+
reverse: {
|
|
20981
|
+
type: Boolean,
|
|
20982
|
+
default: false
|
|
20983
|
+
},
|
|
20980
20984
|
poweredByText: {
|
|
20981
20985
|
type: String,
|
|
20982
20986
|
required: true
|
|
@@ -21023,6 +21027,7 @@ var __vue_render__$r = function () {
|
|
|
21023
21027
|
var _c = _vm._self._c || _h;
|
|
21024
21028
|
|
|
21025
21029
|
return _c('VcLayout', {
|
|
21030
|
+
class: _vm.reverse ? 'alignment-direction-reverse' : 'alignment-direction-row',
|
|
21026
21031
|
attrs: {
|
|
21027
21032
|
"justify-center": "",
|
|
21028
21033
|
"align-center": "",
|
|
@@ -21036,7 +21041,7 @@ var __vue_render__$r = function () {
|
|
|
21036
21041
|
"image": _vm.image
|
|
21037
21042
|
}
|
|
21038
21043
|
})], 1), _vm._v(" "), _c('span', {
|
|
21039
|
-
staticClass: "vc-powered-by",
|
|
21044
|
+
staticClass: "vc-powered-by-text mx-2",
|
|
21040
21045
|
class: _vm.computedClasses
|
|
21041
21046
|
}, [_vm._v(_vm._s(_vm.poweredByText))])], 1);
|
|
21042
21047
|
};
|
|
@@ -21046,8 +21051,8 @@ var __vue_staticRenderFns__$r = [];
|
|
|
21046
21051
|
|
|
21047
21052
|
const __vue_inject_styles__$t = function (inject) {
|
|
21048
21053
|
if (!inject) return;
|
|
21049
|
-
inject("data-v-
|
|
21050
|
-
source: ".vc-powered-by[data-v-
|
|
21054
|
+
inject("data-v-52359d14_0", {
|
|
21055
|
+
source: ".vc-powered-by-text[data-v-52359d14]{font-weight:var(--font-weight-medium);color:var(--modal-bg-color)}.alignment-direction-reverse[data-v-52359d14]{flex-direction:row-reverse}.alignment-direction-row[data-v-52359d14]{flex-direction:row}.vcita-logo-image-container[data-v-52359d14]{flex:0 auto}.sm[data-v-52359d14]{height:var(--size-value3)}.sm-text[data-v-52359d14]{font-size:10px}.md[data-v-52359d14]{height:14px}.md-text[data-v-52359d14]{font-size:var(--font-size-small2)}.vc-powered-by-dark-text[data-v-52359d14]{color:var(--gray-darken-5)}",
|
|
21051
21056
|
map: undefined,
|
|
21052
21057
|
media: undefined
|
|
21053
21058
|
});
|
|
@@ -21055,7 +21060,7 @@ const __vue_inject_styles__$t = function (inject) {
|
|
|
21055
21060
|
/* scoped */
|
|
21056
21061
|
|
|
21057
21062
|
|
|
21058
|
-
const __vue_scope_id__$t = "data-v-
|
|
21063
|
+
const __vue_scope_id__$t = "data-v-52359d14";
|
|
21059
21064
|
/* module identifier */
|
|
21060
21065
|
|
|
21061
21066
|
const __vue_module_identifier__$t = undefined;
|