| 674 | describe('disabled', () => { |
| 675 | it('should bind to directive input', () => { |
| 676 | @Directive({selector: '[testDir]'}) |
| 677 | class TestDir { |
| 678 | readonly disabled = input.required<boolean>(); |
| 679 | } |
| 680 | |
| 681 | @Component({ |
| 682 | imports: [FormField, TestDir, CustomControl], |