| 728 | describe('disabled', () => { |
| 729 | it('should bind to directive input', () => { |
| 730 | @Directive({selector: '[testDir]'}) |
| 731 | class TestDir { |
| 732 | readonly disabled = input.required<boolean>(); |
| 733 | } |
| 734 | |
| 735 | @Component({ |
| 736 | imports: [FormField, TestDir, CustomControl], |