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