(name: string | null, parent: ControlContainer)
| 68 | export const setDisabledStateDefault: SetDisabledStateOption = 'always'; |
| 69 | |
| 70 | export function controlPath(name: string | null, parent: ControlContainer): string[] { |
| 71 | return [...parent.path!, name!]; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Links a Form control and a Form directive by setting up callbacks (such as `onChange`) on both |