@vcita/design-system 1.5.19 → 1.5.20
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/CHANGELOG.md +4 -0
- package/dist/@vcita/design-system.esm.js +10 -3
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +13 -4
- package/package.json +1 -1
- package/src/components/VcBadge/VcBadge.stories.js +7 -3
- package/src/components/VcBadge/VcBadge.vue +14 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
### Unreleased changes
|
|
9
9
|
|
|
10
|
+
### v1.5.20(2023-05-11)
|
|
11
|
+
- VcBadge - Add optional size, fix error in storybook
|
|
12
|
+
- VcBottomNav - css fix
|
|
13
|
+
|
|
10
14
|
### v1.5.19(2023-05-04)
|
|
11
15
|
- VcBottomNav - css fix
|
|
12
16
|
- VcTopMenuBar - move event from icon to actionableText title
|
|
@@ -9069,6 +9069,7 @@ var __vue_component__$S = __vue_component__$R;
|
|
|
9069
9069
|
//
|
|
9070
9070
|
//
|
|
9071
9071
|
//
|
|
9072
|
+
//
|
|
9072
9073
|
var script$u = {
|
|
9073
9074
|
name: 'VcBadge',
|
|
9074
9075
|
components: {
|
|
@@ -9106,6 +9107,11 @@ var script$u = {
|
|
|
9106
9107
|
type: String,
|
|
9107
9108
|
default: 'red',
|
|
9108
9109
|
validator: type => ["neutral", "orange", "red", "blue", "green"].includes(type)
|
|
9110
|
+
},
|
|
9111
|
+
size: {
|
|
9112
|
+
type: String,
|
|
9113
|
+
default: 'md',
|
|
9114
|
+
validator: prop => ['sm', 'md'].includes(prop)
|
|
9109
9115
|
}
|
|
9110
9116
|
}
|
|
9111
9117
|
};
|
|
@@ -9127,6 +9133,7 @@ var __vue_render__$t = function () {
|
|
|
9127
9133
|
"data-qa": _vm.dataQa
|
|
9128
9134
|
}
|
|
9129
9135
|
}, [_c('v-badge', {
|
|
9136
|
+
class: "" + _vm.size,
|
|
9130
9137
|
attrs: {
|
|
9131
9138
|
"color": "var(--" + this.flavor + ")",
|
|
9132
9139
|
"overlap": "",
|
|
@@ -9146,8 +9153,8 @@ var __vue_staticRenderFns__$t = [];
|
|
|
9146
9153
|
|
|
9147
9154
|
const __vue_inject_styles__$u = function (inject) {
|
|
9148
9155
|
if (!inject) return;
|
|
9149
|
-
inject("data-v-
|
|
9150
|
-
source: "[data-v-
|
|
9156
|
+
inject("data-v-7c238f66_0", {
|
|
9157
|
+
source: "[data-v-7c238f66] .v-icon__component{height:12px;width:12px}.sm[data-v-7c238f66] .v-badge__badge{font-size:11px;height:16px;min-width:16px}",
|
|
9151
9158
|
map: undefined,
|
|
9152
9159
|
media: undefined
|
|
9153
9160
|
});
|
|
@@ -9155,7 +9162,7 @@ const __vue_inject_styles__$u = function (inject) {
|
|
|
9155
9162
|
/* scoped */
|
|
9156
9163
|
|
|
9157
9164
|
|
|
9158
|
-
const __vue_scope_id__$u = "data-v-
|
|
9165
|
+
const __vue_scope_id__$u = "data-v-7c238f66";
|
|
9159
9166
|
/* module identifier */
|
|
9160
9167
|
|
|
9161
9168
|
const __vue_module_identifier__$u = undefined;
|