wave-ui 1.67.3 → 1.68.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 +1 -1
- package/src/wave-ui/components/w-checkbox.vue +6 -4
- package/src/wave-ui/components/w-input.vue +2 -8
- package/src/wave-ui/components/w-radio.vue +4 -3
package/dist/wave-ui.es.js
CHANGED
|
@@ -1630,7 +1630,7 @@ var render$J = function() {
|
|
|
1630
1630
|
}, "reset": function($event) {
|
|
1631
1631
|
_vm.$emit("update:modelValue", _vm.isChecked = null);
|
|
1632
1632
|
_vm.$emit("input", null);
|
|
1633
|
-
} } }, "component", _vm.formRegister && { validators: _vm.validators, inputValue: _vm.isChecked, disabled: _vm.isDisabled }, false), [_c("input", { ref: "input", attrs: { "id": "w-checkbox--" + _vm._uid, "type": "checkbox", "name": _vm.inputName, "disabled": _vm.isDisabled || null, "required": _vm.required || null, "tabindex": _vm.tabindex || null, "aria-checked": _vm.isChecked || "false", "role": "checkbox" }, domProps: { "checked": _vm.isChecked || null }, on: { "focus": function($event) {
|
|
1633
|
+
} } }, "component", _vm.formRegister && { validators: _vm.validators, inputValue: _vm.isChecked, disabled: _vm.isDisabled, readonly: _vm.isReadonly }, false), [_c("input", { ref: "input", attrs: { "id": "w-checkbox--" + _vm._uid, "type": "checkbox", "name": _vm.inputName, "disabled": _vm.isDisabled || _vm.isReadonly || null, "required": _vm.required || null, "tabindex": _vm.tabindex || null, "aria-checked": _vm.isChecked || "false", "role": "checkbox" }, domProps: { "checked": _vm.isChecked || null }, on: { "focus": function($event) {
|
|
1634
1634
|
return _vm.$emit("focus", $event);
|
|
1635
1635
|
}, "blur": function($event) {
|
|
1636
1636
|
return _vm.$emit("blur", $event);
|
|
@@ -1686,6 +1686,7 @@ const __vue2_script$J = {
|
|
|
1686
1686
|
return {
|
|
1687
1687
|
[`w-checkbox w-checkbox--${this.isChecked ? "checked" : "unchecked"}`]: true,
|
|
1688
1688
|
"w-checkbox--disabled": this.isDisabled,
|
|
1689
|
+
"w-checkbox--readonly": this.isReadonly,
|
|
1689
1690
|
"w-checkbox--indeterminate": this.indeterminate,
|
|
1690
1691
|
"w-checkbox--ripple": this.ripple.start,
|
|
1691
1692
|
"w-checkbox--rippled": this.ripple.end,
|
|
@@ -4438,7 +4439,7 @@ var render$p = function() {
|
|
|
4438
4439
|
}, "reset": function($event) {
|
|
4439
4440
|
_vm.$emit("update:modelValue", _vm.inputValue = null);
|
|
4440
4441
|
_vm.$emit("input", null);
|
|
4441
|
-
} } }, "component", _vm.formRegister && { validators: _vm.validators, inputValue: _vm.inputValue, disabled: _vm.isDisabled }, false), [_c("input", { ref: "input", attrs: { "id": "w-radio--" + _vm._uid, "type": "radio", "name": _vm.inputName, "disabled": _vm.isDisabled || null, "required": _vm.required || null, "tabindex": _vm.tabindex || null, "aria-checked": _vm.inputValue || "false", "role": "radio" }, domProps: { "checked": _vm.inputValue || null }, on: { "focus": function($event) {
|
|
4442
|
+
} } }, "component", _vm.formRegister && { validators: _vm.validators, inputValue: _vm.inputValue, disabled: _vm.isDisabled, readonly: _vm.isReadonly }, false), [_c("input", { ref: "input", attrs: { "id": "w-radio--" + _vm._uid, "type": "radio", "name": _vm.inputName, "disabled": _vm.isDisabled || _vm.isReadonly || null, "required": _vm.required || null, "tabindex": _vm.tabindex || null, "aria-checked": _vm.inputValue || "false", "role": "radio" }, domProps: { "checked": _vm.inputValue || null }, on: { "focus": function($event) {
|
|
4442
4443
|
return _vm.$emit("focus", $event);
|
|
4443
4444
|
}, "change": function($event) {
|
|
4444
4445
|
_vm.onInput($event);
|
|
@@ -4483,6 +4484,7 @@ const __vue2_script$p = {
|
|
|
4483
4484
|
return {
|
|
4484
4485
|
[`w-radio w-radio--${this.inputValue ? "checked" : "unchecked"}`]: true,
|
|
4485
4486
|
"w-radio--disabled": this.isDisabled,
|
|
4487
|
+
"w-radio--readonly": this.isReadonly,
|
|
4486
4488
|
"w-radio--ripple": this.ripple.start,
|
|
4487
4489
|
"w-radio--rippled": this.ripple.end
|
|
4488
4490
|
};
|