wave-ui 3.22.0 → 3.23.0
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/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.css +1 -1
- package/dist/wave-ui.es.js +4 -2
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +12 -6
- package/src/wave-ui/components/w-input.vue +5 -2
- package/src/wave-ui/scss/_layout.scss +2 -0
- package/src/wave-ui/scss/variables/_variables.scss +1 -1
package/dist/wave-ui.es.js
CHANGED
|
@@ -3548,7 +3548,7 @@ function Bl(e, t, i, s, n, l) {
|
|
|
3548
3548
|
disabled: e.isDisabled || null,
|
|
3549
3549
|
required: e.required || null,
|
|
3550
3550
|
tabindex: e.tabindex || null
|
|
3551
|
-
}, l.attrs), null, 16, yl)), [
|
|
3551
|
+
}, l.attrs, { class: i.inputClass }), null, 16, yl)), [
|
|
3552
3552
|
[et, n.inputValue]
|
|
3553
3553
|
]) : (o(), u(v, { key: 1 }, [
|
|
3554
3554
|
k("input", $({
|
|
@@ -3703,7 +3703,9 @@ const _l = {
|
|
|
3703
3703
|
// https://stackoverflow.com/questions/16365668/pre-populate-html-form-file-input
|
|
3704
3704
|
files: { type: Array },
|
|
3705
3705
|
dark: { type: Boolean },
|
|
3706
|
-
light: { type: Boolean }
|
|
3706
|
+
light: { type: Boolean },
|
|
3707
|
+
inputClass: { type: String }
|
|
3708
|
+
// Additional classes for the input element.
|
|
3707
3709
|
// Props from mixin: name, disabled, readonly, required, tabindex, validators.
|
|
3708
3710
|
// Computed from mixin: inputName, isDisabled & isReadonly.
|
|
3709
3711
|
},
|