Skip to content

Commit 0a14dbd

Browse files
Merge pull request #1043 from IgniteUI/vnext
volume release - oct 2025
2 parents 97c78c0 + e4993f7 commit 0a14dbd

File tree

2,275 files changed

+151748
-1232007
lines changed

Some content is hidden

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

2,275 files changed

+151748
-1232007
lines changed

azure-pipelines/build-pipeline-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ stages:
3838

3939
- template: templates/build-steps-template.yml
4040
parameters:
41-
igVersion: '25.1.19'
41+
igVersion: '25.1.82'
4242
igNuGetFeedUrl: $(IG_Nuget_Feed_URL)
4343
projectToBuild: Client
4444
isVerbose: ${{ parameters.isVerbose }}

azure-pipelines/build-pipeline-server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ stages:
3737

3838
- template: templates/build-steps-template.yml
3939
parameters:
40-
igVersion: '25.1.19'
40+
igVersion: '25.1.82'
4141
igNuGetFeedUrl: $(IG_Nuget_Feed_URL)
4242
projectToBuild: Server
4343
isVerbose: ${{ parameters.isVerbose }}

browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
<!-- End NPM Updates -->
4949

5050
<ItemGroup>
51-
<PackageReference Include="IgniteUI.Blazor" Version="25.1.19" />
52-
<PackageReference Include="IgniteUI.Blazor.Documents.Core" Version="25.1.19" />
53-
<PackageReference Include="IgniteUI.Blazor.Documents.Excel" Version="25.1.19" />
51+
<PackageReference Include="IgniteUI.Blazor" Version="25.1.82" />
52+
<PackageReference Include="IgniteUI.Blazor.Documents.Core" Version="25.1.82" />
53+
<PackageReference Include="IgniteUI.Blazor.Documents.Excel" Version="25.1.82" />
5454
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
5555
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
5656
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" />

browser/IgBlazorSamples.Client/wwwroot/index.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
<script src="sb/data-chart-tooltip-template.js"></script>
7979
<script src="sb/data-chart-type-scatter-polygon-series.js"></script>
8080
<script src="sb/data-chart-type-scatter-polyline-series.js"></script>
81+
<script src="sb/doughnut-chart-explosion.js"></script>
8182
<script src="sb/financial-chart-indicator-customization.js"></script>
8283
<script src="sb/financial-chart-performance.js"></script>
8384
<script src="sb/toolbar-download-data-chart-as-image.js"></script>
@@ -115,11 +116,12 @@
115116
<script src="sb/grid-data-paste-options.js"></script>
116117
<script src="sb/grid-data-performance-virtualization.js"></script>
117118
<script src="sb/grid-data-summary-formatter.js"></script>
118-
<script src="sb/grid-data-summary-options.js"></script>
119+
<script type="module" src="sb/grid-data-summary-options.js"></script>
119120
<script src="sb/grid-data-summary-template.js"></script>
120121
<script src="sb/grid-data-validator-service.js"></script>
121122
<script src="sb/grid-data-validator-service-extended.js"></script>
122-
<script src="sb/grid-disabled-summaries.js"></script>
123+
<script type="module" src="sb/grid-disabled-summaries.js"></script>
124+
<script src="sb/grid-editing-columns.js"></script>
123125
<script src="sb/grid-editing-events.js"></script>
124126
<script src="sb/grid-editing-excel-style.js"></script>
125127
<script src="sb/grid-editing-excel-style-custom.js"></script>
@@ -170,7 +172,7 @@
170172
<script src="sb/hierarchical-grid-data-performance-virtualization.js"></script>
171173
<script src="sb/hierarchical-grid-data-summary-formatter.js"></script>
172174
<script src="sb/hierarchical-grid-data-summary-template.js"></script>
173-
<script src="sb/hierarchical-grid-disabled-summaries.js"></script>
175+
<script type="module" src="sb/hierarchical-grid-disabled-summaries.js"></script>
174176
<script src="sb/hierarchical-grid-editing-events.js"></script>
175177
<script src="sb/hierarchical-grid-editing-lifecycle.js"></script>
176178
<script src="sb/hierarchical-grid-excel-style-filtering-sample-3.js"></script>
@@ -204,7 +206,7 @@
204206
<script src="sb/tree-grid-data-summary-options.js"></script>
205207
<script src="sb/tree-grid-data-summary-options-styling.js"></script>
206208
<script src="sb/tree-grid-data-summary-template.js"></script>
207-
<script src="sb/tree-grid-disabled-summaries.js"></script>
209+
<script type="module" src="sb/tree-grid-disabled-summaries.js"></script>
208210
<script src="sb/tree-grid-editing-events.js"></script>
209211
<script src="sb/tree-grid-editing-lifecycle.js"></script>
210212
<script src="sb/tree-grid-excel-style-filtering-sample-1.js"></script>
@@ -235,6 +237,7 @@
235237
<script src="sb/combo-templates.js"></script>
236238
<script src="sb/dock-manager-styling.js"></script>
237239
<script src="sb/geo-map-marker-template.js"></script>
240+
<script src="sb/geo-map-shape-styling.js"></script>
238241
<script src="sb/geo-map-type-shape-polygon-series.js"></script>
239242
<!--AutoInsertJavaScriptsForSamples End-->
240243
</body>

browser/IgBlazorSamples.Gulp/tasks/gulp-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let config = {
3939
SandboxUrlShort: "https://codesandbox.io/embed/{RepositoryPath}",
4040

4141
PackageReferences: [
42-
{ Name: "Infragistics.Blazor", Version: "22.1.46"},
42+
{ Name: "Infragistics.Blazor", Version: "25.1.82"},
4343
],
4444
}
4545

browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js

Lines changed: 42 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -408,19 +408,49 @@ function copySampleScripts(cb, outputPath, indexName, isLocalBuild) {
408408
// console.log("copySampleScripts " + scriptName);
409409
saveFile(scriptPath, file.Content);
410410

411-
if (file.Name.indexOf("DockManager") >= 0) {
411+
// ----- robust detection for module files -----
412+
// prefer any real name-ish property, fallback to generated fileName
413+
var rawName = (file.Name || file.FileName || file.name || file.filename || "").toString();
414+
var normalizedRawName = rawName.toLowerCase();
415+
var normalizedGenerated = fileName.toLowerCase();
416+
417+
var shouldBeModule = false;
418+
419+
// explicit name match (covers "grid-disabled-summaries", "grid-disabled-summaries.js", etc.)
420+
if (normalizedRawName.indexOf('grid-disabled-summaries') >= 0 || normalizedGenerated.indexOf('grid-disabled-summaries') >= 0) {
421+
shouldBeModule = true;
422+
}
423+
// fallback: scan the file content for the problematic identifier
424+
else if (file.Content && file.Content.indexOf('WebGridDiscontinuedSummary') >= 0) {
425+
shouldBeModule = true;
426+
}
427+
// .mjs -> module
428+
else if (normalizedGenerated.endsWith('.mjs')) {
429+
shouldBeModule = true;
430+
}
431+
432+
if (shouldBeModule) {
433+
log('-> marking as module: ' + fileName + ' (rawName=' + rawName + ')');
434+
}
435+
436+
// DockManager special handling (keep original behaviour)
437+
if ((rawName.indexOf("DockManager") >= 0) || (file.Name && file.Name.indexOf("DockManager") >= 0)) {
412438
var fileRequiresLoading = true;
413-
if (file.Name.indexOf("bundle") >= 0) {
414-
// skipping non-entry point bundle files for DockManager
415-
if (file.Name.indexOf("1") >= 0) fileRequiresLoading = false;
416-
if (file.Name.indexOf("2") >= 0) fileRequiresLoading = false;
417-
if (file.Name.indexOf("3") >= 0) fileRequiresLoading = false;
439+
if (rawName.indexOf("bundle") >= 0 || (file.Name && file.Name.indexOf("bundle") >= 0)) {
440+
if (rawName.indexOf("1") >= 0) fileRequiresLoading = false;
441+
if (rawName.indexOf("2") >= 0) fileRequiresLoading = false;
442+
if (rawName.indexOf("3") >= 0) fileRequiresLoading = false;
418443
}
419444
if (fileRequiresLoading) {
420-
insertScriptFiles.push('<script src="sb/' + fileName + '"></script>');
445+
insertScriptFiles.push(shouldBeModule
446+
? '<script type="module" src="sb/' + fileName + '"></script>'
447+
: '<script src="sb/' + fileName + '"></script>');
421448
}
422-
} else {
423-
insertScriptFiles.push('<script src="sb/' + fileName + '"></script>');
449+
}
450+
else {
451+
insertScriptFiles.push(shouldBeModule
452+
? '<script type="module" src="sb/' + fileName + '"></script>'
453+
: '<script src="sb/' + fileName + '"></script>');
424454
}
425455
}
426456
}
@@ -605,9 +635,9 @@ function updateIG(cb) {
605635

606636
let packageUpgrades = [
607637
// update version of IG packages and change to Trial or non-trial
608-
{ version: "25.1.19", name: "IgniteUI.Blazor" },
609-
{ version: "25.1.19", name: "IgniteUI.Blazor.Documents.Core" },
610-
{ version: "25.1.19", name: "IgniteUI.Blazor.Documents.Excel" },
638+
{ version: "25.1.82", name: "IgniteUI.Blazor" },
639+
{ version: "25.1.82", name: "IgniteUI.Blazor.Documents.Core" },
640+
{ version: "25.1.82", name: "IgniteUI.Blazor.Documents.Excel" },
611641
// these IG packages are sometimes updated:
612642
{ version: "9.0.0", name: "Microsoft.AspNetCore.Components" },
613643
{ version: "9.0.0", name: "Microsoft.AspNetCore.Components.Web" },

browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="IgniteUI.Blazor" Version="25.1.19" />
34-
<PackageReference Include="IgniteUI.Blazor.Documents.Core" Version="25.1.19" />
35-
<PackageReference Include="IgniteUI.Blazor.Documents.Excel" Version="25.1.19" />
33+
<PackageReference Include="IgniteUI.Blazor" Version="25.1.82" />
34+
<PackageReference Include="IgniteUI.Blazor.Documents.Core" Version="25.1.82" />
35+
<PackageReference Include="IgniteUI.Blazor.Documents.Excel" Version="25.1.82" />
3636
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
3737
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
3838
<PackageReference Include="System.Net.Http.Json" Version="9.0.0" />

browser/IgBlazorSamples.Server/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
- instal **.NET SDK** from this website:
44
https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install
55

6-
## Running App in Visual Studio 2019
6+
## Running App in Visual Studio 2022
77

8-
- open **Visual Studio 2019** as an Administrator
8+
- open **Visual Studio 2022** as an Administrator
99

1010
- open the **IgBlazorSamplesBrowser.sln** solution
1111

samples/charts/category-chart/annotations-all/BlazorClientApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="IgniteUI.Blazor" Version="25.1.19" />
15+
<PackageReference Include="IgniteUI.Blazor" Version="25.1.82" />
1616
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
1717
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" />
1818
<PackageReference Include="System.Net.Http.Json" Version="9.0.0" />

samples/charts/category-chart/annotations-all/ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ This folder contains implementation of Blazor application with example of Annota
3030

3131
- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install)
3232

33-
## Running App in Visual Studio 2019
33+
## Running App in Visual Studio 2022
3434

35-
NOTE: VS 2019 has better code highlighting and error detection than VS Code does.
35+
NOTE: VS 2022 has better code highlighting and error detection than VS Code does.
3636

37-
- open **Visual Studio 2019** as an administrator
37+
- open **Visual Studio 2022** as an administrator
3838

3939
- open the **BlazorClientApp.sln** solution
4040

0 commit comments

Comments
 (0)