Angular 19 migration (#10795)

This commit is contained in:
dominikiwanekhyland
2025-07-03 12:09:53 +02:00
committed by GitHub
parent c7f28d54d6
commit 951b22e098
561 changed files with 9574 additions and 17354 deletions

View File

@@ -20,7 +20,6 @@ import { CommonModule } from '@angular/common';
@Component({
selector: 'adf-info-drawer-layout',
standalone: true,
imports: [CommonModule],
templateUrl: './info-drawer-layout.component.html',
styleUrls: ['./info-drawer-layout.component.scss'],
@@ -37,19 +36,16 @@ export class InfoDrawerLayoutComponent {
* Directive selectors without adf- prefix will be deprecated on 3.0.0
*/
@Directive({
selector: '[adf-info-drawer-title], [info-drawer-title]',
standalone: true
selector: '[adf-info-drawer-title], [info-drawer-title]'
})
export class InfoDrawerTitleDirective {}
@Directive({
selector: '[adf-info-drawer-buttons], [info-drawer-buttons]',
standalone: true
selector: '[adf-info-drawer-buttons], [info-drawer-buttons]'
})
export class InfoDrawerButtonsDirective {}
@Directive({
selector: '[adf-info-drawer-content], [info-drawer-content]',
standalone: true
selector: '[adf-info-drawer-content], [info-drawer-content]'
})
export class InfoDrawerContentDirective {}