Skip to content

Commit 98f0d18

Browse files
committed
fixup! ngAcceptType
1 parent fe59511 commit 98f0d18

File tree

128 files changed

+594
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+594
-163
lines changed

package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@
4141
"requiredAngularVersion": "^9.0.0-0 || ^10.0.0-0",
4242
"requiredMDCVersion": "^4.0.0-canary.062ade5c0.0",
4343
"dependencies": {
44-
"@angular/animations": "^9.0.0-next.13",
45-
"@angular/common": "^9.0.0-next.13",
46-
"@angular/compiler": "^9.0.0-next.13",
47-
"@angular/core": "^9.0.0-next.13",
48-
"@angular/elements": "^9.0.0-next.13",
49-
"@angular/forms": "^9.0.0-next.13",
50-
"@angular/platform-browser": "^9.0.0-next.13",
44+
"@angular/animations": "^9.0.0-next.14",
45+
"@angular/common": "^9.0.0-next.14",
46+
"@angular/compiler": "^9.0.0-next.14",
47+
"@angular/core": "^9.0.0-next.14",
48+
"@angular/elements": "^9.0.0-next.14",
49+
"@angular/forms": "^9.0.0-next.14",
50+
"@angular/language-service": "^9.0.0-next.14",
51+
"@angular/platform-browser": "^9.0.0-next.14",
5152
"@types/googlemaps": "^3.37.0",
5253
"@types/youtube": "^0.0.38",
5354
"@webcomponents/custom-elements": "^1.1.0",
@@ -60,14 +61,14 @@
6061
"zone.js": "~0.10.2"
6162
},
6263
"devDependencies": {
63-
"@angular-devkit/core": "^9.0.0-next.15",
64-
"@angular-devkit/schematics": "^9.0.0-next.15",
65-
"@angular/bazel": "^9.0.0-next.13",
66-
"@angular/compiler-cli": "^9.0.0-next.13",
67-
"@angular/platform-browser-dynamic": "^9.0.0-next.13",
68-
"@angular/platform-server": "^9.0.0-next.13",
69-
"@angular/router": "^9.0.0-next.13",
70-
"@angular/upgrade": "^9.0.0-next.13",
64+
"@angular-devkit/core": "^9.0.0-next.12",
65+
"@angular-devkit/schematics": "^9.0.0-next.12",
66+
"@angular/bazel": "^9.0.0-next.14",
67+
"@angular/compiler-cli": "^9.0.0-next.14",
68+
"@angular/platform-browser-dynamic": "^9.0.0-next.14",
69+
"@angular/platform-server": "^9.0.0-next.14",
70+
"@angular/router": "^9.0.0-next.14",
71+
"@angular/upgrade": "^9.0.0-next.14",
7172
"@bazel/bazel": "^0.29.0",
7273
"@bazel/buildifier": "^0.29.0",
7374
"@bazel/ibazel": "^0.10.3",

src/cdk-experimental/scrolling/auto-size-virtual-scroll.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,4 +463,7 @@ export class CdkAutoSizeVirtualScroll implements OnChanges {
463463
ngOnChanges() {
464464
this._scrollStrategy.updateBufferSize(this.minBufferPx, this.maxBufferPx);
465465
}
466+
467+
static ngAcceptInputType_minBufferPx: number | string;
468+
static ngAcceptInputType_maxBufferPx: number | string;
466469
}

src/cdk/a11y/focus-trap/focus-trap.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ export class CdkTrapFocus implements OnDestroy, AfterContentInit, DoCheck {
418418
this.focusTrap.attachAnchors();
419419
}
420420
}
421-
422-
static ngAcceptInputType_autoCapture: boolean | string;
421+
423422
static ngAcceptInputType_enabled: boolean | string;
423+
static ngAcceptInputType_autoCapture: boolean | string;
424424
}

src/cdk/accordion/accordion-item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ export class CdkAccordionItem implements OnDestroy {
153153
});
154154
}
155155

156-
static ngAcceptInputType_disabled: boolean | string;
157156
static ngAcceptInputType_expanded: boolean | string;
157+
static ngAcceptInputType_disabled: boolean | string;
158158
}

src/cdk/accordion/accordion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ export class CdkAccordion implements OnDestroy, OnChanges {
5959
this._openCloseAllActions.next(expanded);
6060
}
6161
}
62-
62+
6363
static ngAcceptInputType_multi: boolean | string;
6464
}

src/cdk/drag-drop/directives/drag-handle.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,6 @@ export class CdkDragHandle implements OnDestroy {
4646
ngOnDestroy() {
4747
this._stateChanges.complete();
4848
}
49+
50+
static ngAcceptInputType_disabled: boolean | string;
4951
}

src/cdk/drag-drop/directives/drag.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,8 @@ export class CdkDrag<T = any> implements AfterViewInit, OnChanges, OnDestroy {
408408
});
409409
});
410410
}
411+
412+
static ngAcceptInputType_disabled: boolean | string;
411413
}
412414

413415
/** Gets the closest ancestor of an element that matches a selector. */

src/cdk/drag-drop/directives/drop-list-group.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ export class CdkDropListGroup<T> implements OnDestroy {
3434
ngOnDestroy() {
3535
this._items.clear();
3636
}
37+
38+
static ngAcceptInputType_disabled: boolean | string;
3739
}

src/cdk/drag-drop/directives/drop-list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class CdkDropList<T = any> implements AfterContentInit, OnDestroy {
113113
* is allowed to be moved into a drop container.
114114
*/
115115
@Input('cdkDropListEnterPredicate')
116-
enterPredicate: (drag: CdkDrag, drop: CdkDropList) => boolean = () => true;
116+
enterPredicate: (drag: CdkDrag, drop: CdkDropList) => boolean = () => true
117117

118118
/** Whether to auto-scroll the view when the user moves their pointer close to the edges. */
119119
@Input('cdkDropListAutoScrollDisabled')
@@ -328,7 +328,7 @@ export class CdkDropList<T = any> implements AfterContentInit, OnDestroy {
328328
});
329329
}
330330

331-
static ngAcceptInputType_autoScrollDisabled: boolean | string;
332331
static ngAcceptInputType_disabled: boolean | string;
333332
static ngAcceptInputType_sortingDisabled: boolean | string;
333+
static ngAcceptInputType_autoScrollDisabled: boolean | string;
334334
}

src/cdk/drag-drop/drag-ref.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,8 @@ export class DragRef<T = any> {
11731173

11741174
return value ? value.mouse : 0;
11751175
}
1176+
1177+
static ngAcceptInputType_disabled: boolean | string;
11761178
}
11771179

11781180
/** Point on the page or within an element. */

0 commit comments

Comments
 (0)