We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a44d0 commit 89e02faCopy full SHA for 89e02fa
projects/swimlane/ngx-ui/CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## HEAD (unreleased)
4
5
+- Fix: Removing the `indeterminate state value validation` in the 'checked' input of the checkbox component
6
+
7
## 49.0.0 (2025-02-11)
8
9
- Enhancement (`ngx-checkbox`): a new look is available that displays `indeterminate` state.
projects/swimlane/ngx-ui/src/lib/components/checkbox/checkbox.component.ts
@@ -57,7 +57,7 @@ export class CheckboxComponent implements ControlValueAccessor {
57
// eslint-disable-next-line @angular-eslint/no-input-rename
58
@Input('checked')
59
set value(value: boolean) {
60
- if (this._value !== value && !this.indeterminate) {
+ if (this._value !== value) {
61
this._value = value;
62
this.cdr.markForCheck();
63
this.onChangeCallback(this._value);
0 commit comments