Skip to content

Commit d869395

Browse files
committed
move everything from cdk to MatInputModule
1 parent 45ad22c commit d869395

22 files changed

+91
-152
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
/src/cdk/bidi/** @jelbourn
6060
/src/cdk/coercion/** @jelbourn
6161
/src/cdk/collections/** @jelbourn @crisbeto @andrewseguin
62-
/src/cdk/input/** @mmalerba
6362
/src/cdk/keycodes/** @jelbourn
6463
/src/cdk/layout/** @josephperrott
6564
/src/cdk/observers/** @jelbourn @crisbeto

src/cdk/input/BUILD.bazel

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/cdk/input/_autofill.scss

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/cdk/input/autofill-prebuilt.scss

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/cdk/input/index.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/cdk/input/input-module.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/cdk/input/public-api.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/cdk/input/tsconfig-build.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/demo-app/demo-material-module.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import {A11yModule} from '@angular/cdk/a11y';
1010
import {CdkAccordionModule} from '@angular/cdk/accordion';
1111
import {BidiModule} from '@angular/cdk/bidi';
12-
import {InputModule} from '@angular/cdk/input';
1312
import {ObserversModule} from '@angular/cdk/observers';
1413
import {OverlayModule} from '@angular/cdk/overlay';
1514
import {PlatformModule} from '@angular/cdk/platform';
@@ -94,7 +93,6 @@ import {
9493
A11yModule,
9594
BidiModule,
9695
CdkAccordionModule,
97-
InputModule,
9896
ObserversModule,
9997
OverlayModule,
10098
PlatformModule,

src/demo-app/input/input-demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ <h3>&lt;textarea&gt; with ngModel</h3>
641641
</mat-checkbox>
642642
<mat-form-field>
643643
<mat-label>Autofill monitored</mat-label>
644-
<input matInput (cdkAutofill)="isAutofilled = $event.isAutofilled" name="autofill"
644+
<input matInput (matAutofill)="isAutofilled = $event.isAutofilled" name="autofill"
645645
[class.demo-custom-autofill-style]="customAutofillStyle">
646646
</mat-form-field>
647647
<button color="primary" mat-raised-button>Submit</button>

0 commit comments

Comments
 (0)