edvoyui-component-library-test-flight 0.0.165 → 0.0.166
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/input/EUIInput.vue.d.ts +1 -1
- package/dist/input/EUINumberInput.vue.d.ts +1 -1
- package/dist/library-vue-ts.cjs.js +6 -6
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +767 -767
- package/dist/library-vue-ts.umd.js +11 -11
- package/dist/radio/EUIRadio.vue.d.ts +1 -1
- package/dist/toggle/EUIToggle.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/checkbox/EUICheckbox.vue +1 -1
- package/src/components/datepicker/EUIDatepicker.vue +1 -1
- package/src/components/input/EUIInput.vue +1 -1
- package/src/components/input/EUINumberInput.vue +1 -1
- package/src/components/pillSelect/EUIPillSelect.vue +3 -3
- package/src/components/radio/EUIRadio.vue +3 -1
- package/src/components/select/EUISelect.vue +2 -2
- package/src/components/textArea/EUITextArea.vue +3 -1
- package/src/components/toggle/EUIToggle.vue +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/radio/EUIRadio.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/radio/EUIRadio.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/radio/EUIRadio.vue?vue&type=style&index=0&scoped=2c4d7e6e&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIRadio.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/toggle/EUIToggle.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/toggle/EUIToggle.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/toggle/EUIToggle.vue?vue&type=style&index=0&scoped=8bc6f54e&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIToggle.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<span v-if="label" class="text-sm font-medium tracking-wide text-gray-700 ms-2 first-letter:capitalize">{{ label }}</span>
|
|
20
20
|
</slot>
|
|
21
21
|
</label>
|
|
22
|
-
<template v-if="errors && errors.length">
|
|
22
|
+
<template v-if="errors && Object.keys(errors).length">
|
|
23
23
|
<EUIErrorMessage :errors="errors" :name="name" />
|
|
24
24
|
</template>
|
|
25
25
|
</div>
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
}}
|
|
28
28
|
</EUIButton>
|
|
29
29
|
</div>
|
|
30
|
-
|
|
31
|
-
<EUIErrorMessage :
|
|
32
|
-
</
|
|
30
|
+
<template v-if="errors && Object.keys(errors).length">
|
|
31
|
+
<EUIErrorMessage :errors="errors" :name="name" />
|
|
32
|
+
</template>
|
|
33
33
|
</div>
|
|
34
34
|
</template>
|
|
35
35
|
|
|
@@ -247,8 +247,8 @@
|
|
|
247
247
|
</template>
|
|
248
248
|
</vSelect>
|
|
249
249
|
|
|
250
|
-
|
|
251
|
-
<EUIErrorMessage :errors="errors" :name="name"
|
|
250
|
+
<template v-if="errors && Object.keys(errors).length">
|
|
251
|
+
<EUIErrorMessage :errors="errors" :name="name" />
|
|
252
252
|
</template>
|
|
253
253
|
</div>
|
|
254
254
|
</template>
|
|
@@ -61,7 +61,9 @@
|
|
|
61
61
|
</textarea>
|
|
62
62
|
</div>
|
|
63
63
|
</div>
|
|
64
|
-
|
|
64
|
+
<template v-if="errors && Object.keys(errors).length">
|
|
65
|
+
<EUIErrorMessage :errors="errors" :name="name" />
|
|
66
|
+
</template>
|
|
65
67
|
</template>
|
|
66
68
|
<script setup lang="ts">
|
|
67
69
|
import { PropType, ref, watch, computed } from "vue";
|