There was an error while loading. Please reload this page.
1 parent 1c1c3e4 commit 7be2fe5Copy full SHA for 7be2fe5
1 file changed
components/checkbox/checkbox-group.component.ts
@@ -83,7 +83,7 @@ export class NzCheckboxGroupComponent implements ControlValueAccessor {
83
84
readonly nzName = input<string | null>(null);
85
readonly nzDisabled = input(false, { transform: booleanAttribute });
86
- readonly nzOptions = input<NzCheckboxOption[]>([]);
+ readonly nzOptions = input<NzCheckboxOption[] | string[] | number[]>([]);
87
readonly value = signal<Array<NzCheckboxOption['value']> | null>(null);
88
readonly finalDisabled = linkedSignal(() => this.nzDisabled());
89
0 commit comments