Skip to content

Commit 18096b3

Browse files
Merge pull request #1194 from IgniteUI/vnext
SR Release - 2025 December
2 parents 1f02644 + 0f83069 commit 18096b3

File tree

3,901 files changed

+79393
-106673
lines changed

Some content is hidden

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

3,901 files changed

+79393
-106673
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div style="display: flex; flex-flow: row; font-family: 'Titillium Web'">
2-
<img style="border-radius: 0.25rem" alt="ignite-ui" src="https://raw.githubusercontent.com/IgniteUI/igniteui-xplat-docs/vnext/doc/en/images/readme/ig-banner.png"/>
2+
<img style="border-radius: 0.25rem" alt="ignite-ui" src="https://dl.infragistics.com/x/img/browsers/ig-banner.png"/>
33
</div>
44

55
# Examples of Ignite UI for Blazor Components

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.2.32'
41+
igVersion: '25.2.38'
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.2.32'
40+
igVersion: '25.2.38'
4141
igNuGetFeedUrl: $(IG_Nuget_Feed_URL)
4242
projectToBuild: Server
4343
isVerbose: ${{ parameters.isVerbose }}

azure-pipelines/build-steps-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ steps:
3434
displayName: 'Install dotnet if not already present'
3535
inputs:
3636
packageType: 'sdk'
37-
version: '9.0.101' # we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future
37+
version: '10.0.100' # 9.0.101 - we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future
3838
performMultiLevelLookup: false
3939

4040

azure-pipelines/templates/build-steps-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ steps:
3434
displayName: 'Install dotnet if not already present'
3535
inputs:
3636
packageType: 'sdk'
37-
version: '9.0.101' # we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future
37+
version: '10.0.100' # '9.0.101' - we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future
3838
performMultiLevelLookup: false
3939

4040
- task: PowerShell@2
@@ -131,7 +131,7 @@ steps:
131131
displayName: 'dotnet publish'
132132
inputs:
133133
# Skip the restore process as it is already done. Got an error when I tried skipping the build process (which is already done as well)
134-
script: 'dotnet publish --no-restore -c release -o $(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\publish'
134+
script: 'dotnet publish --interactive --no-restore -c release -o $(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\publish'
135135
workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}'
136136

137137
- task: ArchiveFiles@2

browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55

66
<!-- note copied Nullable/ImplicitUsings from a new Blazor project that targets .NET 6 -->
77
<Nullable>enable</Nullable>
@@ -48,17 +48,17 @@
4848
<!-- End NPM Updates -->
4949

5050
<ItemGroup>
51-
<PackageReference Include="IgniteUI.Blazor.Trial" Version="25.2.32" />
52-
<PackageReference Include="IgniteUI.Blazor.Documents.Core.Trial" Version="25.2.32" />
53-
<PackageReference Include="IgniteUI.Blazor.Documents.Excel.Trial" Version="25.2.32" />
54-
<PackageReference Include="IgniteUI.Blazor.GridLite" Version="1.0.7" />
55-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
56-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
57-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" />
51+
<PackageReference Include="IgniteUI.Blazor.Trial" Version="25.2.38" />
52+
<PackageReference Include="IgniteUI.Blazor.Documents.Core.Trial" Version="25.2.38" />
53+
<PackageReference Include="IgniteUI.Blazor.Documents.Excel.Trial" Version="25.2.38" />
54+
<PackageReference Include="IgniteUI.Blazor.GridLite" Version="0.0.1" />
55+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="10.0.1" />
56+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
57+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.1" />
5858
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.2.0" />
5959
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
60-
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="9.0.0" />
61-
<PackageReference Include="System.Net.Http.Json" Version="9.0.0" />
60+
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="10.0.1" />
61+
<PackageReference Include="System.Net.Http.Json" Version="10.0.1" />
6262
</ItemGroup>
6363

6464
<ItemGroup>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.0",
3+
"version": "10.0.0",
44
"rollForward": "latestMinor"
55
}
6-
}
6+
}

browser/IgBlazorSamples.Client/wwwroot/index.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
<!-- <link href="_content/Infragistics.Samples.Core/css/index.css" rel="stylesheet" /> -->
4444
<link href="_content/Infragistics.Samples.Shared/css/switch.css" rel="stylesheet" />
4545
<link href="_content/Infragistics.Samples.Shared/css/toggle.css" rel="stylesheet" />
46-
<link href="https://static.infragistics.com/xplatform/css/samples/custom-legend.css" rel="stylesheet" type="text/css" />
47-
<link href="https://static.infragistics.com/xplatform/css/samples/shared.v6.css" rel="stylesheet" />
48-
<link href="https://static.infragistics.com/xplatform/css/samples/blazor.css" rel="stylesheet" />
49-
<link href="https://static.infragistics.com/xplatform/images/browsers/blazor.ico" rel="icon" type="image/x-icon">
46+
<link href="https://dl.infragistics.com/x/css/samples/custom-legend.css" rel="stylesheet" type="text/css" />
47+
<link href="https://dl.infragistics.com/x/css/samples/shared.v6.css" rel="stylesheet" />
48+
<link href="https://dl.infragistics.com/x/css/samples/blazor.css" rel="stylesheet" />
49+
<link href="https://dl.infragistics.com/x/img/browsers/blazor.ico" rel="icon" type="image/x-icon">
5050
<link href="_content/IgniteUI.Blazor/themes/light/bootstrap.css" rel="stylesheet" />
5151
<link href="_content/IgniteUI.Blazor/themes/grid/light/bootstrap.css" rel="stylesheet" />
5252
</head>
5353
<body>
54-
<app class="sb-app"><img class="sb-loading" src="https://static.infragistics.com/xplatform/images/browsers/loading.gif" /></app>
54+
<app class="sb-app"><img class="sb-loading" src="https://dl.infragistics.com/x/img/browsers/loading.gif" /></app>
5555
<div class="sb-error-ui">
5656
An unhandled error has occurred.
5757
<a href="" class="reload">Reload</a>
@@ -238,6 +238,10 @@
238238
<script src="sb/tree-grid-toolbar-sample-3.js"></script>
239239
<script src="sb/tree-grid-toolbar-sample-4.js"></script>
240240
<script src="sb/tree-grid-toolbar-style.js"></script>
241+
<script src="sb/chip-multiple.js"></script>
242+
<script src="sb/chip-overview.js"></script>
243+
<script src="sb/chip-styling.js"></script>
244+
<script src="sb/chip-variants.js"></script>
241245
<script src="sb/combo-templates.js"></script>
242246
<script src="sb/dock-manager-styling.js"></script>
243247
<script src="sb/tile-manager-actions.js"></script>

browser/IgBlazorSamples.Core/IgBlazorSamples.Core.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<RazorLangVersion>3.0</RazorLangVersion>
66
<AssemblyName>Infragistics.Samples.Core</AssemblyName>
77
<RootNamespace>Infragistics.Samples.Core</RootNamespace>
@@ -29,9 +29,9 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
33-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
34-
<PackageReference Include="System.Net.Http.Json" Version="9.0.0" />
32+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="10.0.1" />
33+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.1" />
34+
<PackageReference Include="System.Net.Http.Json" Version="10.0.1" />
3535
</ItemGroup>
3636

3737
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
CSS styles are loaded from the shared CSS file located at:
3-
https://static.infragistics.com/xplatform/css/samples/
3+
https://dl.infragistics.com/x/css//samples/
44
*/

0 commit comments

Comments
 (0)