Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
8ae5e00
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 14, 2025
a2bc36f
use ngModule syntax in demos with provideZoneChangeDetection
GoodDayForSurf Nov 18, 2025
1343ac8
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 18, 2025
a194fbc
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 18, 2025
69f1cef
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 19, 2025
282c7e0
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 19, 2025
43c9b0a
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 19, 2025
6f622e2
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 19, 2025
6f98399
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 19, 2025
45611d0
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 19, 2025
1ac195d
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 20, 2025
783bba0
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 20, 2025
ff44788
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 20, 2025
0f51d1e
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 20, 2025
b1ab9bc
Update to Demos to Angular 21 for testing  with DX under Angular 17
GoodDayForSurf Nov 20, 2025
8c7d347
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 20, 2025
af07775
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 21, 2025
fe95b76
Merge branch '25_2' into 25_2_check_angular_21_in_demos_v2
GoodDayForSurf Nov 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NgModule, Component, enableProdMode } from '@angular/core';
import { NgModule, Component, enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

Expand All @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand All @@ -43,6 +44,7 @@ export class AppComponent {
],
declarations: [AppComponent],
bootstrap: [AppComponent],
providers: [provideZoneChangeDetection({ eventCoalescing: true })]
})
export class AppModule { }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, NgModule, enableProdMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { HttpClient, HttpClientModule, HttpParams } from '@angular/common/http';
import { HttpClient, HttpParams, provideHttpClient, withFetch } from '@angular/common/http';
import { lastValueFrom } from 'rxjs';
import { DxAutocompleteModule } from 'devextreme-angular';
import { CustomStore } from 'devextreme-angular/common/data';
Expand All @@ -23,6 +23,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
providers: [Service],
templateUrl: `.${modulePrefix}/app.component.html`,
Expand Down Expand Up @@ -98,8 +99,8 @@ export class AppComponent {
imports: [
BrowserModule,
DxAutocompleteModule,
HttpClientModule,
],
providers: [provideHttpClient(withFetch())],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
providers: [Service],
templateUrl: `.${modulePrefix}/app.component.html`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'license-info',
templateUrl: `.${modulePrefix}/license-info/license-info.component.html`,
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'vehicle-card',
templateUrl: `.${modulePrefix}/vehicle-card/vehicle-card.component.html`,
styleUrls: [`.${modulePrefix}/vehicle-card/vehicle-card.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function getOrderDay(rowData: Order) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HttpClient, HttpClientModule } from '@angular/common/http';
import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http';
import { NgModule, Component, enableProdMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
Expand All @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down Expand Up @@ -70,8 +71,8 @@ export class AppComponent {
BrowserModule,
DxCardViewModule,
DxTextAreaModule,
HttpClientModule,
],
providers: [provideHttpClient(withFetch())],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'card-header',
templateUrl: `.${modulePrefix}/card-header/card-header.component.html`,
styleUrls: [`.${modulePrefix}/card-header/card-header.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'employee',
templateUrl: `.${modulePrefix}/employee/employee.component.html`,
styleUrls: [`.${modulePrefix}/employee/employee.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'priority',
templateUrl: `.${modulePrefix}/priority/priority.component.html`,
styleUrls: [`.${modulePrefix}/priority/priority.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'progress-bar',
templateUrl: `.${modulePrefix}/progress-bar/progress-bar.component.html`,
styleUrls: [`.${modulePrefix}/progress-bar/progress-bar.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function getOrderDay({ OrderDate }: Order): number {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
providers: [Service],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
const url = 'https://js.devexpress.com/Demos/NetCore/api/TreeListTasks';

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
providers: [Service],
templateUrl: `.${modulePrefix}/app.component.html`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
providers: [Service],
templateUrl: `.${modulePrefix}/app.component.html`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
providers: [Service],
templateUrl: `.${modulePrefix}/app.component.html`,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NgModule, Component, enableProdMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { HttpClient, HttpClientModule } from '@angular/common/http';
import { HttpClient, provideHttpClient, withFetch } from '@angular/common/http';
import { lastValueFrom } from 'rxjs';

import { DxSparklineModule, DxSelectBoxModule } from 'devextreme-angular';
Expand All @@ -18,6 +18,7 @@ if (window && window.config?.packageConfigPaths) {
}

@Component({
standalone: false,
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
styleUrls: [`.${modulePrefix}/app.component.css`],
Expand Down Expand Up @@ -52,10 +53,10 @@ export class AppComponent {
@NgModule({
imports: [
BrowserModule,
HttpClientModule,
DxSparklineModule,
DxSelectBoxModule,
],
providers: [provideHttpClient(withFetch())],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
Expand Down
Loading
Loading