We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bcbd81 commit ff58df1Copy full SHA for ff58df1
projects/ngfe/src/lib/core/fe-control.ts
@@ -37,6 +37,7 @@ export type VcSource = 'initial' | 'model' | 'input' | 'manual';
37
})
38
export class FeControl<MODEL = any, INPUT = any> implements OnChanges, OnDestroy {
39
@Input() feControl!: MODEL | undefined;
40
+ @Input() name?: string;
41
42
@Input() set disabled(disabled: boolean | string) {
43
const normalized = coerceToBoolean(disabled);
0 commit comments