| 611 | describe('disabled', () => { |
| 612 | it('should bind to directive input', () => { |
| 613 | @Directive({selector: '[testDir]'}) |
| 614 | class TestDir { |
| 615 | readonly disabled = input.required<boolean>(); |
| 616 | } |
| 617 | |
| 618 | @Component({ |
| 619 | imports: [FormField, TestDir, CustomControl], |