comand-component-library 4.3.7 → 4.3.8
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/dist/comand-component-library.css +1 -1
- package/dist/comand-component-library.js +1684 -1652
- package/package.json +1 -1
- package/src/assets/data/multistep-form-wrapper-page-1.json +30 -1
- package/src/components/CmdFormElement.vue +1 -0
- package/src/components/CmdInputGroup.vue +4 -0
- package/src/components/CmdLoginForm.vue +3 -3
- package/src/components/CmdMultistepFormProgressBar.vue +0 -13
package/package.json
CHANGED
|
@@ -19,5 +19,34 @@
|
|
|
19
19
|
"placeholder": "First Name",
|
|
20
20
|
"required": true,
|
|
21
21
|
"disabled": false
|
|
22
|
-
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"component": "CmdInputGroup",
|
|
25
|
+
"labelText": "Label for input-group (checkboxes):",
|
|
26
|
+
"inputTypes": "checkbox",
|
|
27
|
+
"toggleSwitches": true,
|
|
28
|
+
"required": true,
|
|
29
|
+
"value": ["option1"],
|
|
30
|
+
"name": "input-group-checkboxes",
|
|
31
|
+
"inputElements": [
|
|
32
|
+
{
|
|
33
|
+
"labelText": "Option 1",
|
|
34
|
+
"id": "option1",
|
|
35
|
+
"name": "checkbox-options",
|
|
36
|
+
"value": "option1"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"labelText": "Option 2",
|
|
40
|
+
"id": "option2",
|
|
41
|
+
"name": "checkbox-options",
|
|
42
|
+
"value": "option2"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"labelText": "Option 3",
|
|
46
|
+
"id": "option3",
|
|
47
|
+
"name": "checkbox-options",
|
|
48
|
+
"value": "option3"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
23
52
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!-- begin CmdLoginForm ---------------------------------------------------------------------------------------- -->
|
|
3
|
-
<fieldset v-
|
|
3
|
+
<fieldset v-if="!sendLogin" class="cmd-login-form flex-container">
|
|
4
4
|
<legend :class="{hidden : !legendLoginForm.show, 'align-left': legendLoginForm.align === 'left'}">
|
|
5
5
|
{{ legendLoginForm.text }}
|
|
6
6
|
</legend>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<!-- end default-login-button -->
|
|
67
67
|
|
|
68
68
|
<!-- begin form elements -->
|
|
69
|
-
<div v-
|
|
69
|
+
<div v-if="showLogin" :class="['login-fields flex-container', {'vertical': orientation === 'vertical'}]">
|
|
70
70
|
<!-- begin CmdFormElement -->
|
|
71
71
|
<CmdFormElement
|
|
72
72
|
element="input"
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
<!-- end login-form -->
|
|
154
154
|
|
|
155
155
|
<!-- begin send-login-form -->
|
|
156
|
-
<fieldset v-
|
|
156
|
+
<fieldset v-if="sendLogin" class="cmd-login-form flex-container">
|
|
157
157
|
<legend :class="{hidden : !legendForgotLoginForm.show, 'align-left': legendForgotLoginForm.align === 'left'}">
|
|
158
158
|
{{ legendForgotLoginForm.text }}
|
|
159
159
|
</legend>
|
|
@@ -345,19 +345,6 @@ export default {
|
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
-
&.success {
|
|
349
|
-
.number {
|
|
350
|
-
border-color: var(--success-color);
|
|
351
|
-
color: var(--success-color);
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.active {
|
|
355
|
-
.number {
|
|
356
|
-
background: var(--success-color) !important;
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
|
|
361
348
|
:is(.active, .router-link-exact-active):not(.disabled) {
|
|
362
349
|
a {
|
|
363
350
|
background: var(--button-primary-background-highlighted);
|