Skip to content

Commit ff58df1

Browse files
committed
feat: add optional control [name] input
1 parent 4bcbd81 commit ff58df1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

projects/ngfe/src/lib/core/fe-control.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export type VcSource = 'initial' | 'model' | 'input' | 'manual';
3737
})
3838
export class FeControl<MODEL = any, INPUT = any> implements OnChanges, OnDestroy {
3939
@Input() feControl!: MODEL | undefined;
40+
@Input() name?: string;
4041

4142
@Input() set disabled(disabled: boolean | string) {
4243
const normalized = coerceToBoolean(disabled);

0 commit comments

Comments
 (0)