Skip to content
  •  
  •  
  •  
1 change: 1 addition & 0 deletions integration/harness-e2e-cli/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
standalone: false,
})
export class AppComponent {
title = 'harness-e2e-cli';
Expand Down
1 change: 1 addition & 0 deletions integration/yarn-pnp-compat/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {Component} from '@angular/core';
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent {
title = 'yarn-pnp-compat';
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
},
"version": "19.0.0-next.8",
"dependencies": {
"@angular/animations": "^19.0.0-next.8",
"@angular/common": "^19.0.0-next.8",
"@angular/compiler": "^19.0.0-next.8",
"@angular/core": "^19.0.0-next.8",
"@angular/forms": "^19.0.0-next.8",
"@angular/platform-browser": "^19.0.0-next.8",
"@angular/animations": "^19.0.0-next.10",
"@angular/common": "^19.0.0-next.10",
"@angular/compiler": "^19.0.0-next.10",
"@angular/core": "^19.0.0-next.10",
"@angular/forms": "^19.0.0-next.10",
"@angular/platform-browser": "^19.0.0-next.10",
"@types/google.maps": "^3.54.10",
"@types/youtube": "^0.0.50",
"rxjs": "^6.6.7",
Expand All @@ -70,19 +70,19 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0-next.9",
"@angular-devkit/core": "^19.0.0-next.9",
"@angular-devkit/schematics": "^19.0.0-next.9",
"@angular-devkit/build-angular": "^19.0.0-next.10",
"@angular-devkit/core": "^19.0.0-next.10",
"@angular-devkit/schematics": "^19.0.0-next.10",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#9e6140d1eef8ddf7113d00738f603e9cc3c310f1",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#74e0e7b090c6e16056290836b2d936ca7820b86f",
"@angular/build": "^19.0.0-next.9",
"@angular/cli": "^19.0.0-next.9",
"@angular/compiler-cli": "^19.0.0-next.8",
"@angular/localize": "^19.0.0-next.8",
"@angular/build": "^19.0.0-next.10",
"@angular/cli": "^19.0.0-next.10",
"@angular/compiler-cli": "^19.0.0-next.10",
"@angular/localize": "^19.0.0-next.10",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#36946be4df61f6549ae3829c026022e47674eae2",
"@angular/platform-browser-dynamic": "^19.0.0-next.8",
"@angular/platform-server": "^19.0.0-next.8",
"@angular/router": "^19.0.0-next.8",
"@angular/platform-browser-dynamic": "^19.0.0-next.10",
"@angular/platform-server": "^19.0.0-next.10",
"@angular/router": "^19.0.0-next.10",
"@babel/core": "^7.16.12",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/helper-string-parser": "^7.22.5",
Expand All @@ -102,7 +102,7 @@
"@octokit/rest": "18.3.5",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@schematics/angular": "^19.0.0-next.9",
"@schematics/angular": "^19.0.0-next.10",
"@types/babel__core": "^7.1.18",
"@types/browser-sync": "^2.26.3",
"@types/fs-extra": "^9.0.13",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {FLEX_PROVIDERS} from './constants';
@Directive({
selector: 'cdk-table[columnResize]',
providers: [...FLEX_PROVIDERS, {provide: ColumnResize, useExisting: CdkColumnResizeFlex}],
standalone: true,
})
export class CdkColumnResizeFlex extends ColumnResize {
readonly columnResizeNotifier = inject(ColumnResizeNotifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {TABLE_PROVIDERS} from './constants';
@Directive({
selector: 'table[cdk-table][columnResize]',
providers: [...TABLE_PROVIDERS, {provide: ColumnResize, useExisting: CdkColumnResize}],
standalone: true,
})
export class CdkColumnResize extends ColumnResize {
readonly columnResizeNotifier = inject(ColumnResizeNotifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {FLEX_PROVIDERS} from './constants';
...FLEX_PROVIDERS,
{provide: ColumnResize, useExisting: CdkDefaultEnabledColumnResizeFlex},
],
standalone: true,
})
export class CdkDefaultEnabledColumnResizeFlex extends ColumnResize {
readonly columnResizeNotifier = inject(ColumnResizeNotifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {TABLE_PROVIDERS} from './constants';
...TABLE_PROVIDERS,
{provide: ColumnResize, useExisting: CdkDefaultEnabledColumnResize},
],
standalone: true,
})
export class CdkDefaultEnabledColumnResize extends ColumnResize {
readonly columnResizeNotifier = inject(ColumnResizeNotifier);
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/combobox/combobox-popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ let nextId = 0;
'tabindex': '-1',
'(focus)': 'focusFirstElement()',
},
standalone: true,
})
export class CdkComboboxPopup<T = unknown> implements OnInit {
private readonly _elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/combobox/combobox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export const CDK_COMBOBOX = new InjectionToken<CdkCombobox>('CDK_COMBOBOX');
'[attr.tabindex]': '_getTabIndex()',
},
providers: [{provide: CDK_COMBOBOX, useExisting: CdkCombobox}],
standalone: true,
})
export class CdkCombobox<T = unknown> implements OnDestroy {
private readonly _elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
3 changes: 0 additions & 3 deletions src/cdk-experimental/popover-edit/lens-directives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export type PopoverEditClickOutBehavior = 'close' | 'submit' | 'noop';
'(document:click)': 'handlePossibleClickOut($event)',
'(keydown)': '_handleKeydown($event)',
},
standalone: true,
})
export class CdkEditControl<FormValue> implements OnDestroy, OnInit {
protected readonly elementRef = inject(ElementRef);
Expand Down Expand Up @@ -145,7 +144,6 @@ export class CdkEditControl<FormValue> implements OnDestroy, OnInit {
'type': 'button',
'(click)': 'revertEdit()',
},
standalone: true,
})
export class CdkEditRevert<FormValue> {
protected readonly editRef = inject<EditRef<FormValue>>(EditRef);
Expand All @@ -166,7 +164,6 @@ export class CdkEditRevert<FormValue> {
'(keydown.enter)': 'closeEdit()',
'(keydown.space)': 'closeEdit()',
},
standalone: true,
})
export class CdkEditClose<FormValue> {
protected readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
4 changes: 4 additions & 0 deletions src/cdk-experimental/popover-edit/popover-edit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ abstract class BaseTestComponent {
}
</table>
`,
standalone: false,
})
class VanillaTableOutOfCell extends BaseTestComponent {
elements: ChemicalElement[];
Expand Down Expand Up @@ -256,6 +257,7 @@ class VanillaTableOutOfCell extends BaseTestComponent {
}
</table>
`,
standalone: false,
})
class VanillaTableInCell extends BaseTestComponent {
elements: ChemicalElement[];
Expand Down Expand Up @@ -318,6 +320,7 @@ class ElementDataSource extends DataSource<PeriodicElement> {
</cdk-table>
</div>
`,
standalone: false,
})
class CdkFlexTableInCell extends BaseTestComponent {
displayedColumns = ['before', 'name', 'weight'];
Expand Down Expand Up @@ -369,6 +372,7 @@ class CdkFlexTableInCell extends BaseTestComponent {
</table>
<div>
`,
standalone: false,
})
class CdkTableInCell extends BaseTestComponent {
displayedColumns = ['before', 'name', 'weight'];
Expand Down
5 changes: 0 additions & 5 deletions src/cdk-experimental/popover-edit/table-directives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ const MOUSE_MOVE_THROTTLE_TIME_MS = 10;
@Directive({
selector: 'table[editable], cdk-table[editable], mat-table[editable]',
providers: [EditEventDispatcher, EditServices],
standalone: true,
})
export class CdkEditable implements AfterViewInit, OnDestroy {
protected readonly elementRef = inject(ElementRef);
Expand Down Expand Up @@ -190,7 +189,6 @@ const POPOVER_EDIT_INPUTS = [
selector: '[cdkPopoverEdit]:not([cdkPopoverEditTabOut])',
host: POPOVER_EDIT_HOST_BINDINGS,
inputs: POPOVER_EDIT_INPUTS,
standalone: true,
})
export class CdkPopoverEdit<C> implements AfterViewInit, OnDestroy {
protected readonly services = inject(EditServices);
Expand Down Expand Up @@ -415,7 +413,6 @@ export class CdkPopoverEdit<C> implements AfterViewInit, OnDestroy {
selector: '[cdkPopoverEdit][cdkPopoverEditTabOut]',
host: POPOVER_EDIT_HOST_BINDINGS,
inputs: POPOVER_EDIT_INPUTS,
standalone: true,
})
export class CdkPopoverEditTabOut<C> extends CdkPopoverEdit<C> {
protected readonly focusEscapeNotifierFactory = inject(FocusEscapeNotifierFactory);
Expand Down Expand Up @@ -446,7 +443,6 @@ export class CdkPopoverEditTabOut<C> extends CdkPopoverEdit<C> {
*/
@Directive({
selector: '[cdkRowHoverContent]',
standalone: true,
})
export class CdkRowHoverContent implements AfterViewInit, OnDestroy {
protected readonly services = inject(EditServices);
Expand Down Expand Up @@ -541,7 +537,6 @@ export class CdkRowHoverContent implements AfterViewInit, OnDestroy {
host: {
'(click)': 'openEdit($event)',
},
standalone: true,
})
export class CdkEditOpen {
protected readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ export function _autoSizeVirtualScrollStrategyFactory(autoSizeDir: CdkAutoSizeVi
deps: [forwardRef(() => CdkAutoSizeVirtualScroll)],
},
],
standalone: true,
})
export class CdkAutoSizeVirtualScroll implements OnChanges {
/**
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/selection/row-selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {CdkSelection} from './selection';
'[class.cdk-selected]': '_selection.isSelected(this.value, this.index)',
'[attr.aria-selected]': '_selection.isSelected(this.value, this.index)',
},
standalone: true,
})
export class CdkRowSelection<T> {
readonly _selection = inject<CdkSelection<T>>(CdkSelection);
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/selection/select-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {CdkSelection} from './selection';
@Directive({
selector: '[cdkSelectAll]',
exportAs: 'cdkSelectAll',
standalone: true,
})
export class CdkSelectAll<T> implements OnDestroy, OnInit {
private readonly _selection = inject<CdkSelection<T>>(CdkSelection, {optional: true})!;
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/selection/selection-column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ import {CdkSelectAll} from './select-all';
`,
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
standalone: true,
imports: [
CdkColumnDef,
CdkHeaderCellDef,
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/selection/selection-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import {CdkSelection} from './selection';
@Directive({
selector: '[cdkSelectionToggle]',
exportAs: 'cdkSelectionToggle',
standalone: true,
})
export class CdkSelectionToggle<T> implements OnDestroy, OnInit {
private _selection = inject<CdkSelection<T>>(CdkSelection, {optional: true})!;
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/selection/selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import {SelectableWithIndex, SelectionChange, SelectionSet} from './selection-se
@Directive({
selector: '[cdkSelection]',
exportAs: 'cdkSelection',
standalone: true,
})
export class CdkSelection<T> implements OnInit, AfterContentChecked, CollectionViewer, OnDestroy {
viewChange: Observable<ListRange>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ let nextId = 0;
'class': 'cdk-table-scroll-container',
},
providers: [{provide: STICKY_POSITIONING_LISTENER, useExisting: CdkTableScrollContainer}],
standalone: true,
})
export class CdkTableScrollContainer implements StickyPositioningListener, OnDestroy, OnInit {
private readonly _elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
1 change: 0 additions & 1 deletion src/cdk/a11y/focus-monitor/focus-monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,6 @@ export class FocusMonitor implements OnDestroy {
@Directive({
selector: '[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]',
exportAs: 'cdkMonitorFocus',
standalone: true,
})
export class CdkMonitorFocus implements AfterViewInit, OnDestroy {
private _elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
1 change: 0 additions & 1 deletion src/cdk/a11y/focus-trap/focus-trap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,6 @@ export class FocusTrapFactory {
@Directive({
selector: '[cdkTrapFocus]',
exportAs: 'cdkTrapFocus',
standalone: true,
})
export class CdkTrapFocus implements OnDestroy, AfterContentInit, OnChanges, DoCheck {
private _elementRef = inject<ElementRef<HTMLElement>>(ElementRef);
Expand Down
1 change: 0 additions & 1 deletion src/cdk/a11y/live-announcer/live-announcer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ export class LiveAnnouncer implements OnDestroy {
@Directive({
selector: '[cdkAriaLive]',
exportAs: 'cdkAriaLive',
standalone: true,
})
export class CdkAriaLive implements OnDestroy {
private _elementRef = inject(ElementRef);
Expand Down
1 change: 0 additions & 1 deletion src/cdk/accordion/accordion-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ let nextId = 0;
// registering to the same accordion.
{provide: CDK_ACCORDION, useValue: undefined},
],
standalone: true,
})
export class CdkAccordionItem implements OnInit, OnDestroy {
accordion = inject<CdkAccordion>(CDK_ACCORDION, {optional: true, skipSelf: true})!;
Expand Down
1 change: 0 additions & 1 deletion src/cdk/accordion/accordion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const CDK_ACCORDION = new InjectionToken<CdkAccordion>('CdkAccordion');
selector: 'cdk-accordion, [cdkAccordion]',
exportAs: 'cdkAccordion',
providers: [{provide: CDK_ACCORDION, useExisting: CdkAccordion}],
standalone: true,
})
export class CdkAccordion implements OnDestroy, OnChanges {
/** Emits when the state of the accordion changes */
Expand Down
1 change: 0 additions & 1 deletion src/cdk/bidi/dir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {Direction, Directionality, _resolveDirectionality} from './directionalit
providers: [{provide: Directionality, useExisting: Dir}],
host: {'[attr.dir]': '_rawDir'},
exportAs: 'dir',
standalone: true,
})
export class Dir implements Directionality, AfterContentInit, OnDestroy {
/** Normalized direction that accounts for invalid/unsupported values. */
Expand Down
1 change: 0 additions & 1 deletion src/cdk/clipboard/copy-to-clipboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export const CDK_COPY_TO_CLIPBOARD_CONFIG = new InjectionToken<CdkCopyToClipboar
host: {
'(click)': 'copy()',
},
standalone: true,
})
export class CdkCopyToClipboard implements OnDestroy {
private _clipboard = inject(Clipboard);
Expand Down
1 change: 0 additions & 1 deletion src/cdk/dialog/dialog-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export function throwDialogContentAlreadyAttachedError() {
// Using OnPush for dialogs caused some G3 sync issues. Disabled until we can track them down.
// tslint:disable-next-line:validate-decorators
changeDetection: ChangeDetectionStrategy.Default,
standalone: true,
imports: [CdkPortalOutlet],
host: {
'class': 'cdk-dialog-container',
Expand Down
2 changes: 2 additions & 0 deletions src/cdk/dialog/dialog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1214,6 +1214,7 @@ class DirectiveWithViewContainer {
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
template: 'hello',
standalone: false,
})
class ComponentWithOnPushViewContainer {
viewContainerRef = inject(ViewContainerRef);
Expand Down Expand Up @@ -1305,6 +1306,7 @@ class DialogWithoutFocusableElements {}
@Component({
template: `<button>I'm a button</button>`,
encapsulation: ViewEncapsulation.ShadowDom,
standalone: false,
})
class ShadowDomComponent {}

Expand Down
1 change: 0 additions & 1 deletion src/cdk/drag-drop/directives/drag-handle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const CDK_DRAG_HANDLE = new InjectionToken<CdkDragHandle>('CdkDragHandle'
/** Handle that can be used to drag a CdkDrag instance. */
@Directive({
selector: '[cdkDragHandle]',
standalone: true,
host: {
'class': 'cdk-drag-handle',
},
Expand Down
1 change: 0 additions & 1 deletion src/cdk/drag-drop/directives/drag-placeholder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const CDK_DRAG_PLACEHOLDER = new InjectionToken<CdkDragPlaceholder>('CdkD
*/
@Directive({
selector: 'ng-template[cdkDragPlaceholder]',
standalone: true,
providers: [{provide: CDK_DRAG_PLACEHOLDER, useExisting: CdkDragPlaceholder}],
})
export class CdkDragPlaceholder<T = any> implements OnDestroy {
Expand Down
1 change: 0 additions & 1 deletion src/cdk/drag-drop/directives/drag-preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const CDK_DRAG_PREVIEW = new InjectionToken<CdkDragPreview>('CdkDragPrevi
*/
@Directive({
selector: 'ng-template[cdkDragPreview]',
standalone: true,
providers: [{provide: CDK_DRAG_PREVIEW, useExisting: CdkDragPreview}],
})
export class CdkDragPreview<T = any> implements OnDestroy {
Expand Down
1 change: 0 additions & 1 deletion src/cdk/drag-drop/directives/drag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export const CDK_DROP_LIST = new InjectionToken<CdkDropList>('CdkDropList');
@Directive({
selector: '[cdkDrag]',
exportAs: 'cdkDrag',
standalone: true,
host: {
'class': DRAG_HOST_CLASS,
'[class.cdk-drag-disabled]': 'disabled',
Expand Down
1 change: 0 additions & 1 deletion src/cdk/drag-drop/directives/drop-list-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export const CDK_DROP_LIST_GROUP = new InjectionToken<CdkDropListGroup<unknown>>
@Directive({
selector: '[cdkDropListGroup]',
exportAs: 'cdkDropListGroup',
standalone: true,
providers: [{provide: CDK_DROP_LIST_GROUP, useExisting: CdkDropListGroup}],
})
export class CdkDropListGroup<T> implements OnDestroy {
Expand Down
Loading
Loading