comand-component-library 4.2.85 → 4.2.86
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.
|
@@ -4890,7 +4890,7 @@ const ve = /* @__PURE__ */ B(Tr, [["render", Or]]), Lr = {
|
|
|
4890
4890
|
deep: !0
|
|
4891
4891
|
}
|
|
4892
4892
|
}
|
|
4893
|
-
}, Ir = ["action", "data-use-validation", "novalidate", "method"], Br = { class: "flex-container" }, Dr = {
|
|
4893
|
+
}, Ir = ["action", "data-use-validation", "novalidate", "method"], Br = { class: "flex-container flex-direction-column" }, Dr = {
|
|
4894
4894
|
key: 2,
|
|
4895
4895
|
class: "flex-container"
|
|
4896
4896
|
}, Fr = {
|
|
@@ -20853,7 +20853,7 @@ const Dx = /* @__PURE__ */ B(Ix, [["render", Bx]]), Fx = [
|
|
|
20853
20853
|
text: "Zimbabwe",
|
|
20854
20854
|
value: "zw"
|
|
20855
20855
|
}
|
|
20856
|
-
], JC = "comand-component-library", ZC = "4.2.
|
|
20856
|
+
], JC = "comand-component-library", ZC = "4.2.86", QC = "GPL-3.0-only", XC = "CoManD-UI", $C = "module", e1 = { prepublishOnly: "npm run build-lib", dev: "vite", build: "vite build", "build-lib": "vite build && gulp", preview: "vite preview" }, t1 = ["dist", "src"], n1 = { ".": "./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" }, i1 = { "clickout-event": "^1.1.2", "comand-frontend-framework": "^4.3.23", "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" }, l1 = { "@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" }, o1 = {
|
|
20857
20857
|
name: JC,
|
|
20858
20858
|
version: ZC,
|
|
20859
20859
|
license: QC,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comand-component-library",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.86",
|
|
4
4
|
"license": "GPL-3.0-only",
|
|
5
5
|
"author": "CoManD-UI",
|
|
6
6
|
"private": false,
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"clickout-event": "^1.1.2",
|
|
32
|
-
"comand-frontend-framework": "^4.3.
|
|
32
|
+
"comand-frontend-framework": "^4.3.23",
|
|
33
33
|
"comand-ui-iconfonts": "^1.0.19",
|
|
34
34
|
"core-js": "^3.20.1",
|
|
35
35
|
"prismjs": "^1.27.0",
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!-- begin CmdForm ---------------------------------------------------------------------------------------- -->
|
|
3
|
-
<form
|
|
4
|
-
|
|
3
|
+
<form
|
|
4
|
+
:class="['cmd-form', {error: errorOccurred}]"
|
|
5
|
+
:action="formAction"
|
|
6
|
+
:data-use-validation="useValidation"
|
|
7
|
+
@submit="onSubmit"
|
|
8
|
+
:novalidate="novalidate"
|
|
9
|
+
:method="formMethod"
|
|
10
|
+
>
|
|
5
11
|
<template v-if="useFieldset">
|
|
6
|
-
<fieldset class="flex-container"
|
|
12
|
+
<fieldset class="flex-container flex-direction-column"><!-- do not remove .flex-direction-column to keep specificity -->
|
|
7
13
|
<legend :class="{hidden : !legendOptions.show, 'align-left': legendOptions.align === 'left'}">{{
|
|
8
14
|
legendOptions.text
|
|
9
15
|
}}
|