comand-component-library 4.2.88 → 4.2.90
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 +6500 -6448
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +34 -26
- package/src/assets/data/form-elements.json +87 -52
- package/src/assets/data/multistep-form-wrapper-page-1.json +0 -1
- package/src/components/CmdFakeSelect.vue +11 -0
- package/src/components/CmdForm.vue +42 -60
- package/src/components/CmdInputGroup.vue +5 -2
- package/src/components/CmdMultistepFormProgressBar.vue +16 -12
- package/src/components/CmdMultistepFormWrapper.vue +9 -4
- package/src/components/CmdTag.vue +1 -1
|
@@ -29,14 +29,19 @@
|
|
|
29
29
|
:updateFormDataForPage="(event) => updateFormDataForPage(step, event)"
|
|
30
30
|
/>
|
|
31
31
|
<!-- end slot for page content -->
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
</div>
|
|
33
|
+
<!-- end main content for step -->
|
|
34
|
+
|
|
35
|
+
<div v-show="currentPage === numberOfPages" class="multistep-page-last">
|
|
36
|
+
<!-- begin slot for last step -->
|
|
34
37
|
<slot
|
|
35
|
-
name="last
|
|
38
|
+
name="page-last"
|
|
39
|
+
:setErrorOnPage="(message) => setErrorOnPage(step, message)"
|
|
40
|
+
:removeErrorOnPage="() => removeErrorOnPage(step)"
|
|
41
|
+
:atleastOneStepWithError="atleastOneStepWithError"
|
|
36
42
|
/>
|
|
37
43
|
<!-- end slot for last step -->
|
|
38
44
|
</div>
|
|
39
|
-
<!-- end main cntent for step -->
|
|
40
45
|
|
|
41
46
|
<!-- begin slot for pagination -->
|
|
42
47
|
<slot name="pagination"
|