Files
Miles Malerba 0055f3cc79 fix(forms): Rename signal form [field] to [formField]
This completes the rename started in #66136. `[field]` is too generic of
a selector for the forms system to own, and likely to cause naming
collisions with existing components. Therefore it is being renamed to
`[formField]`

(cherry picked from commit 5671f2cc07)
2026-01-09 22:33:13 +00:00

23 lines
653 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/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';