@ctrliq/quantic-components 1.61.0 → 1.61.1
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/checkbox/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/meta/index.js.map +1 -1
- package/dist/quantic-components.js +3 -1
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +1 -1
- package/dist/quantic-components.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -55616,8 +55616,10 @@
|
|
|
55616
55616
|
const input = this.renderRoot.querySelector('input');
|
|
55617
55617
|
if (input) {
|
|
55618
55618
|
input.indeterminate = this.indeterminate;
|
|
55619
|
+
if (args.has('checked')) {
|
|
55620
|
+
input.checked = this.checked;
|
|
55621
|
+
}
|
|
55619
55622
|
}
|
|
55620
|
-
// Sync form value when checked changes
|
|
55621
55623
|
if (args.has('checked')) {
|
|
55622
55624
|
this.internals.setFormValue(this.checked ? 'on' : null);
|
|
55623
55625
|
}
|