Skip to content

Commit 4358ea7

Browse files
committed
merge 26_1
1 parent 6f27257 commit 4358ea7

File tree

71 files changed

+513
-532
lines changed

Some content is hidden

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

71 files changed

+513
-532
lines changed

.github/actions/run-qunit-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
# - name: Setup Chrome
4343
# uses: ./.github/actions/setup-chrome-headless-shell
4444
# with:
45-
# chrome-version: '141.0.7390.122'
45+
# chrome-version: '145.0.7632.67'
4646

4747
# - name: Use Node.js
4848
# uses: actions/setup-node@v4

.github/workflows/playgrounds_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Setup Chrome
8989
uses: ./.github/actions/setup-chrome
9090
with:
91-
chrome-version: '141.0.7390.122'
91+
chrome-version: '145.0.7632.67'
9292

9393
- name: Use Node.js
9494
uses: actions/setup-node@v4

.github/workflows/run-testcafe-on-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Chrome
5555
uses: ./devextreme/.github/actions/setup-chrome
5656
with:
57-
chrome-version: '141.0.7390.122'
57+
chrome-version: '145.0.7632.67'
5858

5959
- uses: pnpm/action-setup@v4
6060
with:

.github/workflows/testcafe_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
# - name: Setup Chrome
156156
# uses: ./.github/actions/setup-chrome
157157
# with:
158-
# chrome-version: '141.0.7390.122'
158+
# chrome-version: '145.0.7632.67'
159159

160160
# - name: Use Node.js
161161
# uses: actions/setup-node@v4

.github/workflows/visual-tests-demos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ jobs:
631631
- name: Setup Chrome
632632
uses: ./.github/actions/setup-chrome
633633
with:
634-
chrome-version: '141.0.7390.122'
634+
chrome-version: '145.0.7632.67'
635635
runner-type: 'github-hosted'
636636

637637
- name: Use Node.js
@@ -786,7 +786,7 @@ jobs:
786786
- name: Setup Chrome
787787
uses: ./.github/actions/setup-chrome
788788
with:
789-
chrome-version: '141.0.7390.122'
789+
chrome-version: '145.0.7632.67'
790790
runner-type: 'github-hosted'
791791

792792
- name: Use Node.js
@@ -915,7 +915,7 @@ jobs:
915915
- name: Setup Chrome
916916
uses: ./.github/actions/setup-chrome
917917
with:
918-
chrome-version: '141.0.7390.122'
918+
chrome-version: '145.0.7632.67'
919919
runner-type: 'github-hosted'
920920

921921
- name: Use Node.js

.github/workflows/wrapper_tests_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Setup Chrome
9797
uses: ./.github/actions/setup-chrome
9898
with:
99-
chrome-version: '141.0.7390.122'
99+
chrome-version: '145.0.7632.67'
100100

101101
- name: Use Node.js
102102
uses: actions/setup-node@v4

apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class AppComponent {
7373
.then(({ data }: { data: Record<string, unknown>[] }) => ({
7474
data,
7575
}))
76-
.catch(() => { throw 'Data Loading Error'; });
76+
.catch(() => { throw new Error('Data Loading Error'); });
7777
},
7878
});
7979
this.states = AspNetData.createStore({

apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class AppComponent {
3636
this.source = new DataSource({
3737
store: new CustomStore({
3838
load: () => lastValueFrom(http.get('../../../../data/resourceData.json'))
39-
.catch(() => { throw 'Data Loading Error'; }),
39+
.catch(() => { throw new Error('Data Loading Error'); }),
4040
loadMode: 'raw',
4141
}),
4242
filter: ['month', '<=', '12'],

apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class AppComponent implements AfterViewInit {
4343
this.monthWeather = new DataSource({
4444
store: new CustomStore({
4545
load: () => lastValueFrom(this.http.get('../../../../data/monthWeather.json'))
46-
.catch(() => { throw 'Data Loading Error'; }),
46+
.catch(() => { throw new Error('Data Loading Error'); }),
4747
loadMode: 'raw',
4848
}),
4949
filter: ['t', '>', '2'],

apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if (window && window.config?.packageConfigPaths) {
3939
export class AppComponent {
4040
salesAmount: SalesAmount[];
4141

42-
options: ColorizationOption[ 'options' ];
42+
options: ColorizationOption['options'];
4343

4444
colorizationOptions: ColorizationOption[] = [{
4545
name: 'Discrete',

0 commit comments

Comments
 (0)