angular/packages/forms/signals/public_api.ts
Miles Malerba 2d85ae5811 feat(forms): add [formField] directive
This will replace the `[field]` directive, since `[field]` is a very
generic name for signal forms to commandeer

refactor(forms): hook up `formField` directive in compiler

Hooks up the `formField` direcive to get the same treatment as the
`field` directive in the compiler.

apply updated formatting
2026-01-06 17:21:06 -05:00

23 lines
696 B
TypeScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
/**
* @module
* @description
* Entry point for all public APIs of this package.
*/
export * from './src/api/control';
export * from './src/api/di';
export * from './src/api/field_directive';
export * from './src/api/form_field_directive';
export * from './src/api/rules';
export * from './src/api/rules/debounce';
export * from './src/api/rules/metadata';
export * from './src/api/rules/validation/validation_errors';
export * from './src/api/structure';
export * from './src/api/types';