edvoyui-component-library-test-flight 0.0.219 → 0.0.220
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/components/select/EUISelect.vue +4 -1
- package/dist/edvoy-ui.cjs.js +1 -1
- package/dist/edvoy-ui.css +1 -1
- package/dist/edvoy-ui.es.js +16 -11
- package/dist/edvoy-ui.umd.js +2 -2
- package/package.json +1 -1
|
@@ -748,7 +748,10 @@ const searchMargin = computed(() =>
|
|
|
748
748
|
);
|
|
749
749
|
|
|
750
750
|
const selectRequited = computed(() =>
|
|
751
|
-
|
|
751
|
+
// Only redden the placeholder tail when it actually carries the "*"
|
|
752
|
+
// (no label). With a label the "*" lives on the label, so keep it all gray
|
|
753
|
+
// and don't tint the last real letter of the placeholder text.
|
|
754
|
+
props.required && !props.label
|
|
752
755
|
? "-webkit-linear-gradient(left, #374151 0%, #374151 92%,red 8%,red 100%)"
|
|
753
756
|
: "-webkit-linear-gradient(left, #374151 50%, #374151 50%)",
|
|
754
757
|
);
|