comand-component-library 4.3.1 → 4.3.2
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.
|
@@ -3186,8 +3186,8 @@ function ks(e, t, n, s, i, l) {
|
|
|
3186
3186
|
class: x([
|
|
3187
3187
|
"cmd-form-element",
|
|
3188
3188
|
e.$attrs.class,
|
|
3189
|
+
e.$attrs.required ? e.validationStatus : null,
|
|
3189
3190
|
{
|
|
3190
|
-
validationStatus: e.$attrs.required,
|
|
3191
3191
|
disabled: e.$attrs.disabled,
|
|
3192
3192
|
inline: n.displayLabelInline,
|
|
3193
3193
|
"stretch-field": n.stretchField,
|
|
@@ -4417,9 +4417,9 @@ function wr(e, t, n, s, i, l) {
|
|
|
4417
4417
|
return a(), r("div", {
|
|
4418
4418
|
class: x([
|
|
4419
4419
|
"cmd-input-group label",
|
|
4420
|
+
e.$attrs.required ? e.validationStatus : null,
|
|
4420
4421
|
{
|
|
4421
4422
|
"has-state": e.validationStatus,
|
|
4422
|
-
validationStatus: n.required,
|
|
4423
4423
|
inline: n.labelInline,
|
|
4424
4424
|
"multiple-switch": n.multipleSwitch,
|
|
4425
4425
|
disabled: n.disableGroup,
|
|
@@ -20951,7 +20951,7 @@ const Mx = /* @__PURE__ */ B(Fx, [["render", Px]]), Vx = [
|
|
|
20951
20951
|
text: "Zimbabwe",
|
|
20952
20952
|
value: "zw"
|
|
20953
20953
|
}
|
|
20954
|
-
], XC = "comand-component-library", $C = "4.3.
|
|
20954
|
+
], XC = "comand-component-library", $C = "4.3.2", e1 = "GPL-3.0-only", t1 = "CoManD-UI", n1 = "module", i1 = { prepublishOnly: "npm run build-lib", dev: "vite", build: "vite build", "build-lib": "vite build && gulp", preview: "vite preview" }, l1 = ["dist", "src"], o1 = { ".": "./dist/comand-component-library.js", "./css.js": "./src/css.js", "./comand-component-library.css": "./dist/comand-component-library.css", "./variables.scss": "./src/assets/styles/variables.scss", "./export-example-data.js": "./src/assets/data/export-example-data.js", "./countries.json": "./src/assets/lists-of-data/countries.json", "./currencies.json": "./src/assets/lists-of-data/currencies.json", "./dial-codes.json": "./src/assets/lists-of-data/dial-codes.json", "./us-cities.json": "./src/assets/lists-of-data/us-cities.json" }, a1 = { "clickout-event": "^1.1.2", "comand-frontend-framework": "^4.3.28", "comand-ui-iconfonts": "^1.0.19", "core-js": "^3.20.1", prismjs: "^1.27.0", vue: "^3.5.25", "vue-router": "^4.0.12", vuex: "^4.0.2" }, s1 = { "@iconify/vue": "^4.0.0", "@vitejs/plugin-vue": "^6.0.2", "@vue/test-utils": "^2.0.0-0", axios: "^1.7.2", gulp: "^4.0.2", sass: "^1.54.9", "unplugin-vue-components": "^0.24.0", vite: "^7.2.4", "vue-jest": "^5.0.0-0" }, r1 = {
|
|
20955
20955
|
name: XC,
|
|
20956
20956
|
version: $C,
|
|
20957
20957
|
license: e1,
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<label v-if="(element === 'input' || element === 'select' || element === 'textarea')" :class="[
|
|
4
4
|
'cmd-form-element',
|
|
5
5
|
$attrs.class,
|
|
6
|
+
$attrs.required ? validationStatus : null,
|
|
6
7
|
{
|
|
7
|
-
validationStatus: $attrs.required,
|
|
8
8
|
disabled: $attrs.disabled,
|
|
9
9
|
inline: displayLabelInline,
|
|
10
10
|
'stretch-field': stretchField,
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<!-- begin CmdInputGroup ---------------------------------------------------------------------------------------- -->
|
|
3
3
|
<div :class="[
|
|
4
4
|
'cmd-input-group label',
|
|
5
|
+
$attrs.required ? validationStatus : null,
|
|
5
6
|
{
|
|
6
7
|
'has-state': validationStatus,
|
|
7
|
-
validationStatus: required,
|
|
8
8
|
inline: labelInline,
|
|
9
9
|
'multiple-switch': multipleSwitch,
|
|
10
10
|
disabled: disableGroup,
|