mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
feat(textarea): ionChange will only emit from user committed changes (#25953)
This commit is contained in:
21
angular/test/base/src/app/textarea/textarea.module.ts
Normal file
21
angular/test/base/src/app/textarea/textarea.module.ts
Normal file
@ -0,0 +1,21 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||
import { IonicModule } from "@ionic/angular";
|
||||
|
||||
import { TextareaRoutingModule } from "./textarea-routing.module";
|
||||
import { TextareaComponent } from "./textarea.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
ReactiveFormsModule,
|
||||
IonicModule,
|
||||
TextareaRoutingModule
|
||||
],
|
||||
declarations: [
|
||||
TextareaComponent
|
||||
]
|
||||
})
|
||||
export class TextareaModule { }
|
Reference in New Issue
Block a user