@@ -103,10 +103,10 @@ export class ValueChangeEvent<T> extends ControlEvent<T> {
103103}
104104
105105/**
106- * @deprecated use `PristineChangeEvent` symbol instead .
107- */
108-
109- export class PristineEvent extends ControlEvent {
106+ * Event fired when the control's pristine state changes (pristine <=> dirty) .
107+ *
108+ * @publicApi */
109+ export class PristineChangeEvent extends ControlEvent {
110110 constructor (
111111 public readonly pristine : boolean ,
112112 public readonly source : AbstractControl ,
@@ -116,17 +116,11 @@ export class PristineEvent extends ControlEvent {
116116}
117117
118118/**
119- * Event fired when the control's pristine state changes (pristine <=> dirty ).
119+ * Event fired when the control's touched status changes (touched <=> untouched ).
120120 *
121121 * @publicApi
122122 */
123-
124- export class PristineChangeEvent extends PristineEvent { }
125-
126- /**
127- * @deprecated use `TouchedChangeEvent` symbol instead.
128- */
129- export class TouchedEvent extends ControlEvent {
123+ export class TouchedChangeEvent extends ControlEvent {
130124 constructor (
131125 public readonly touched : boolean ,
132126 public readonly source : AbstractControl ,
@@ -136,16 +130,11 @@ export class TouchedEvent extends ControlEvent {
136130}
137131
138132/**
139- * Event fired when the control's touched status changes (touched <=> untouched) .
133+ * Event fired when the control's status changes.
140134 *
141135 * @publicApi
142136 */
143- export class TouchedChangeEvent extends TouchedEvent { }
144-
145- /**
146- * @deprecated use `StatusChangeEvent` symbol instead.
147- */
148- export class StatusEvent extends ControlEvent {
137+ export class StatusChangeEvent extends ControlEvent {
149138 constructor (
150139 public readonly status : FormControlStatus ,
151140 public readonly source : AbstractControl ,
@@ -154,13 +143,6 @@ export class StatusEvent extends ControlEvent {
154143 }
155144}
156145
157- /**
158- * Event fired when the control's status changes.
159- *
160- * @publicApi
161- */
162- export class StatusChangeEvent extends StatusEvent { }
163-
164146/**
165147 * Event fired when a form is submitted
166148 *
0 commit comments