fix(forms): rename old forms folder to forms-deprecated
This commit is contained in:
parent
45de65bd45
commit
515a8e0765
@ -1,5 +1,5 @@
|
|||||||
export * from './src/pipes';
|
export * from './src/pipes';
|
||||||
export * from './src/directives';
|
export * from './src/directives';
|
||||||
export * from './src/forms';
|
export * from './src/forms-deprecated';
|
||||||
export * from './src/common_directives';
|
export * from './src/common_directives';
|
||||||
export * from './src/location';
|
export * from './src/location';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import {Type} from '@angular/core';
|
import {Type} from '@angular/core';
|
||||||
import {FORM_DIRECTIVES} from './forms';
|
import {FORM_DIRECTIVES} from './forms-deprecated';
|
||||||
import {CORE_DIRECTIVES} from './directives';
|
import {CORE_DIRECTIVES} from './directives';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
58
modules/@angular/common/src/forms-deprecated.ts
Normal file
58
modules/@angular/common/src/forms-deprecated.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/**
|
||||||
|
* @module
|
||||||
|
* @description
|
||||||
|
* This module is used for handling user input, by defining and building a {@link ControlGroup} that
|
||||||
|
* consists of
|
||||||
|
* {@link Control} objects, and mapping them onto the DOM. {@link Control} objects can then be used
|
||||||
|
* to read information
|
||||||
|
* from the form DOM elements.
|
||||||
|
*
|
||||||
|
* Forms providers are not included in default providers; you must import these providers
|
||||||
|
* explicitly.
|
||||||
|
*/
|
||||||
|
export {AbstractControl, Control, ControlGroup, ControlArray} from './forms-deprecated/model';
|
||||||
|
|
||||||
|
export {AbstractControlDirective} from './forms-deprecated/directives/abstract_control_directive';
|
||||||
|
export {Form} from './forms-deprecated/directives/form_interface';
|
||||||
|
export {ControlContainer} from './forms-deprecated/directives/control_container';
|
||||||
|
export {NgControlName} from './forms-deprecated/directives/ng_control_name';
|
||||||
|
export {NgFormControl} from './forms-deprecated/directives/ng_form_control';
|
||||||
|
export {NgModel} from './forms-deprecated/directives/ng_model';
|
||||||
|
export {NgControl} from './forms-deprecated/directives/ng_control';
|
||||||
|
export {NgControlGroup} from './forms-deprecated/directives/ng_control_group';
|
||||||
|
export {NgFormModel} from './forms-deprecated/directives/ng_form_model';
|
||||||
|
export {NgForm} from './forms-deprecated/directives/ng_form';
|
||||||
|
export {ControlValueAccessor, NG_VALUE_ACCESSOR} from './forms-deprecated/directives/control_value_accessor';
|
||||||
|
export {DefaultValueAccessor} from './forms-deprecated/directives/default_value_accessor';
|
||||||
|
export {NgControlStatus} from './forms-deprecated/directives/ng_control_status';
|
||||||
|
export {CheckboxControlValueAccessor} from './forms-deprecated/directives/checkbox_value_accessor';
|
||||||
|
export {
|
||||||
|
NgSelectOption,
|
||||||
|
SelectControlValueAccessor
|
||||||
|
} from './forms-deprecated/directives/select_control_value_accessor';
|
||||||
|
export {FORM_DIRECTIVES, RadioButtonState} from './forms-deprecated/directives';
|
||||||
|
export {NG_VALIDATORS, NG_ASYNC_VALIDATORS, Validators} from './forms-deprecated/validators';
|
||||||
|
export {
|
||||||
|
RequiredValidator,
|
||||||
|
MinLengthValidator,
|
||||||
|
MaxLengthValidator,
|
||||||
|
PatternValidator,
|
||||||
|
Validator
|
||||||
|
} from './forms-deprecated/directives/validators';
|
||||||
|
export {FormBuilder} from './forms-deprecated/form_builder';
|
||||||
|
import {FormBuilder} from './forms-deprecated/form_builder';
|
||||||
|
import {RadioControlRegistry} from './forms-deprecated/directives/radio_control_value_accessor';
|
||||||
|
import {Type} from '@angular/core';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shorthand set of providers used for building Angular forms.
|
||||||
|
*
|
||||||
|
* ### Example
|
||||||
|
*
|
||||||
|
* ```typescript
|
||||||
|
* bootstrap(MyApp, [FORM_PROVIDERS]);
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* @experimental
|
||||||
|
*/
|
||||||
|
export const FORM_PROVIDERS: Type[] = /*@ts2dart_const*/[FormBuilder, RadioControlRegistry];
|
@ -1,58 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module
|
|
||||||
* @description
|
|
||||||
* This module is used for handling user input, by defining and building a {@link ControlGroup} that
|
|
||||||
* consists of
|
|
||||||
* {@link Control} objects, and mapping them onto the DOM. {@link Control} objects can then be used
|
|
||||||
* to read information
|
|
||||||
* from the form DOM elements.
|
|
||||||
*
|
|
||||||
* Forms providers are not included in default providers; you must import these providers
|
|
||||||
* explicitly.
|
|
||||||
*/
|
|
||||||
export {AbstractControl, Control, ControlGroup, ControlArray} from './forms/model';
|
|
||||||
|
|
||||||
export {AbstractControlDirective} from './forms/directives/abstract_control_directive';
|
|
||||||
export {Form} from './forms/directives/form_interface';
|
|
||||||
export {ControlContainer} from './forms/directives/control_container';
|
|
||||||
export {NgControlName} from './forms/directives/ng_control_name';
|
|
||||||
export {NgFormControl} from './forms/directives/ng_form_control';
|
|
||||||
export {NgModel} from './forms/directives/ng_model';
|
|
||||||
export {NgControl} from './forms/directives/ng_control';
|
|
||||||
export {NgControlGroup} from './forms/directives/ng_control_group';
|
|
||||||
export {NgFormModel} from './forms/directives/ng_form_model';
|
|
||||||
export {NgForm} from './forms/directives/ng_form';
|
|
||||||
export {ControlValueAccessor, NG_VALUE_ACCESSOR} from './forms/directives/control_value_accessor';
|
|
||||||
export {DefaultValueAccessor} from './forms/directives/default_value_accessor';
|
|
||||||
export {NgControlStatus} from './forms/directives/ng_control_status';
|
|
||||||
export {CheckboxControlValueAccessor} from './forms/directives/checkbox_value_accessor';
|
|
||||||
export {
|
|
||||||
NgSelectOption,
|
|
||||||
SelectControlValueAccessor
|
|
||||||
} from './forms/directives/select_control_value_accessor';
|
|
||||||
export {FORM_DIRECTIVES, RadioButtonState} from './forms/directives';
|
|
||||||
export {NG_VALIDATORS, NG_ASYNC_VALIDATORS, Validators} from './forms/validators';
|
|
||||||
export {
|
|
||||||
RequiredValidator,
|
|
||||||
MinLengthValidator,
|
|
||||||
MaxLengthValidator,
|
|
||||||
PatternValidator,
|
|
||||||
Validator
|
|
||||||
} from './forms/directives/validators';
|
|
||||||
export {FormBuilder} from './forms/form_builder';
|
|
||||||
import {FormBuilder} from './forms/form_builder';
|
|
||||||
import {RadioControlRegistry} from './forms/directives/radio_control_value_accessor';
|
|
||||||
import {Type} from '@angular/core';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shorthand set of providers used for building Angular forms.
|
|
||||||
*
|
|
||||||
* ### Example
|
|
||||||
*
|
|
||||||
* ```typescript
|
|
||||||
* bootstrap(MyApp, [FORM_PROVIDERS]);
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* @experimental
|
|
||||||
*/
|
|
||||||
export const FORM_PROVIDERS: Type[] = /*@ts2dart_const*/[FormBuilder, RadioControlRegistry];
|
|
@ -38,7 +38,7 @@ import {
|
|||||||
} from '@angular/common';
|
} from '@angular/common';
|
||||||
|
|
||||||
|
|
||||||
import {selectValueAccessor, composeValidators} from '@angular/common/src/forms/directives/shared';
|
import {selectValueAccessor, composeValidators} from '@angular/common/src/forms-deprecated/directives/shared';
|
||||||
import {TimerWrapper} from '../../src/facade/async';
|
import {TimerWrapper} from '../../src/facade/async';
|
||||||
import {PromiseWrapper} from '../../src/facade/promise';
|
import {PromiseWrapper} from '../../src/facade/promise';
|
||||||
import {SimpleChange} from '@angular/core/src/change_detection';
|
import {SimpleChange} from '@angular/core/src/change_detection';
|
@ -326,7 +326,7 @@ class MockReflectorHost implements StaticReflectorHost {
|
|||||||
|
|
||||||
getMetadataFor(moduleId: string): any {
|
getMetadataFor(moduleId: string): any {
|
||||||
let data: {[key: string]: any} = {
|
let data: {[key: string]: any} = {
|
||||||
'/tmp/angular2/src/common/forms/directives.d.ts': [{
|
'/tmp/angular2/src/common/forms-deprecated/directives.d.ts': [{
|
||||||
"__symbolic": "module",
|
"__symbolic": "module",
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
@ -424,7 +424,7 @@ class MockReflectorHost implements StaticReflectorHost {
|
|||||||
{
|
{
|
||||||
"__symbolic": "reference",
|
"__symbolic": "reference",
|
||||||
"name": "FORM_DIRECTIVES",
|
"name": "FORM_DIRECTIVES",
|
||||||
"module": "angular2/src/common/forms/directives"
|
"module": "angular2/src/common/forms-deprecated/directives"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"animations": [{
|
"animations": [{
|
||||||
|
@ -41,7 +41,7 @@ var specFiles: any =
|
|||||||
'@angular/platform-browser/**',
|
'@angular/platform-browser/**',
|
||||||
'@angular/core/test/zone/**',
|
'@angular/core/test/zone/**',
|
||||||
'@angular/core/test/fake_async_spec.*',
|
'@angular/core/test/fake_async_spec.*',
|
||||||
'@angular/common/test/forms/**',
|
'@angular/common/test/forms-deprecated/**',
|
||||||
'@angular/router/test/route_config/route_config_spec.*',
|
'@angular/router/test/route_config/route_config_spec.*',
|
||||||
'@angular/router/test/integration/bootstrap_spec.*',
|
'@angular/router/test/integration/bootstrap_spec.*',
|
||||||
'@angular/integration_test/symbol_inspector/**',
|
'@angular/integration_test/symbol_inspector/**',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user