mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds a DI configuration option for signal forms that allows the
developer to specify CSS classes that should be automatically added
by the `Field` directive based on the field's status.
(cherry picked from commit c70e246c23)
16 lines
411 B
TypeScript
16 lines
411 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/compat_form';
|
|
export * from './src/api/compat_validation_error';
|
|
export * from './src/api/di';
|