comand-component-library 4.2.36 → 4.2.37
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.
@@ -6356,6 +6356,7 @@ function Ld(e, t, n, s, i, l) {
|
|
6356
6356
|
key: 5,
|
6357
6357
|
element: "input",
|
6358
6358
|
type: "checkbox",
|
6359
|
+
class: "flex-none",
|
6359
6360
|
required: (dt = n.configuration.acceptPrivacy) == null ? void 0 : dt.required,
|
6360
6361
|
name: (ut = n.configuration.acceptPrivacy) == null ? void 0 : ut.name,
|
6361
6362
|
replaceInputType: (ct = n.configuration.acceptPrivacy) == null ? void 0 : ct.replaceInputType,
|
@@ -20483,7 +20484,7 @@ const fx = /* @__PURE__ */ F(mx, [["render", px]]), hx = [
|
|
20483
20484
|
text: "Zimbabwe",
|
20484
20485
|
value: "zw"
|
20485
20486
|
}
|
20486
|
-
], OC = "comand-component-library", LC = "4.2.
|
20487
|
+
], OC = "comand-component-library", LC = "4.2.37", IC = "GPL-3.0-only", BC = "CoManD-UI", DC = "module", MC = {
|
20487
20488
|
prepublishOnly: "npm run build-lib",
|
20488
20489
|
dev: "vite",
|
20489
20490
|
build: "vite build",
|
package/package.json
CHANGED
@@ -238,6 +238,7 @@
|
|
238
238
|
v-if="configuration.acceptPrivacy"
|
239
239
|
element="input"
|
240
240
|
type="checkbox"
|
241
|
+
class="flex-none"
|
241
242
|
:required="configuration.acceptPrivacy?.required"
|
242
243
|
:name="configuration.acceptPrivacy?.name"
|
243
244
|
:replaceInputType="configuration.acceptPrivacy?.replaceInputType"
|
@@ -254,7 +255,6 @@
|
|
254
255
|
<!-- button to test a successful sending
|
255
256
|
<button class="button" type="button" @click="onSuccess">On Success</button>
|
256
257
|
-->
|
257
|
-
|
258
258
|
</CmdForm>
|
259
259
|
<!-- end CmdForm -->
|
260
260
|
</div>
|
@@ -64,8 +64,7 @@
|
|
64
64
|
<span v-if="$attrs.type !== 'checkbox' && $attrs.type !== 'radio' && $attrs.type !== 'search'"
|
65
65
|
class="flex-container inner-input-wrapper"><!-- container required to place inner icons correctly -->
|
66
66
|
<!-- begin CmdIcon (for icon inside field) -->
|
67
|
-
<CmdIcon v-if="fieldIconClass" class="place-inside" :iconClass="fieldIconClass"
|
68
|
-
/>
|
67
|
+
<CmdIcon v-if="fieldIconClass" class="place-inside" :iconClass="fieldIconClass" />
|
69
68
|
<!-- end CmdIcon (for icon inside field) -->
|
70
69
|
|
71
70
|
<!-- begin inputfield -->
|
@@ -128,6 +127,7 @@
|
|
128
127
|
|
129
128
|
<!-- begin checkbox and radiobutton -->
|
130
129
|
<template v-else-if="element === 'input' && ($attrs.type === 'checkbox' || $attrs.type === 'radio')">
|
130
|
+
<!-- begin default checkbox/radiobutton -->
|
131
131
|
<template v-if="!(onLabel && offLabel)">
|
132
132
|
<input
|
133
133
|
v-bind="elementAttributes"
|
@@ -154,7 +154,8 @@
|
|
154
154
|
</span>
|
155
155
|
</span>
|
156
156
|
</template>
|
157
|
-
|
157
|
+
<!-- end default checkbox/radiobutton -->
|
158
|
+
|
158
159
|
<!-- begin labels for toggle-switch with switch-label -->
|
159
160
|
<template v-else-if="onLabel && offLabel">
|
160
161
|
<span class="switch-label-wrapper">
|