mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 10:41:13 +08:00
feat(value-accessors): move the value accessors into @ionic/angular
This commit is contained in:
@ -1,15 +1,27 @@
|
||||
|
||||
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
|
||||
import { IonBooleanValueAccessor } from './directives/ion-boolean-value-accessor';
|
||||
import { IonNavDelegate } from './directives/ion-nav';
|
||||
import { IonRadioValueAccessor } from './directives/ion-radio-value-accessor';
|
||||
import { IonSelectValueAccessor } from './directives/ion-select-value-accessor';
|
||||
import { IonTextValueAccessor } from './directives/ion-text-value-accessor';
|
||||
|
||||
import { AlertController } from './providers/alert-controller';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
IonNavDelegate
|
||||
IonBooleanValueAccessor,
|
||||
IonNavDelegate,
|
||||
IonRadioValueAccessor,
|
||||
IonSelectValueAccessor,
|
||||
IonTextValueAccessor
|
||||
],
|
||||
exports: [
|
||||
IonNavDelegate
|
||||
IonBooleanValueAccessor,
|
||||
IonNavDelegate,
|
||||
IonRadioValueAccessor,
|
||||
IonSelectValueAccessor,
|
||||
IonTextValueAccessor
|
||||
],
|
||||
schemas: [
|
||||
CUSTOM_ELEMENTS_SCHEMA
|
||||
@ -20,4 +32,4 @@ import { AlertController } from './providers/alert-controller';
|
||||
})
|
||||
export class IonicAngularModule {
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user