Skip to content

Commit c2adea5

Browse files
authored
Merge pull request #21 from NarmathaSSF4450/master
1003276: Need to update the Github repository sample.
2 parents 429c9e9 + 5ad6a06 commit c2adea5

35 files changed

Lines changed: 367535 additions & 218782 deletions

File tree

ASP.NET Core API/Angular/pivot-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@angular/platform-browser": "^15.1.0",
1919
"@angular/platform-browser-dynamic": "^15.1.0",
2020
"@angular/router": "^15.1.0",
21-
"@syncfusion/ej2-angular-pivotview": "^20.4.43-ngcc",
21+
"@syncfusion/ej2-angular-pivotview": "32.1.19-ngcc",
2222
"rxjs": "~7.8.0",
2323
"tslib": "^2.3.0",
2424
"zone.js": "~0.12.0"
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
2-
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
3-
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
4-
@import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
5-
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
6-
@import '../node_modules/@syncfusion/ej2-lists/styles/material.css';
7-
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
8-
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
9-
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css";
10-
@import '../node_modules/@syncfusion/ej2-angular-pivotview/styles/material.css';
1+
@import '../node_modules/@syncfusion/ej2-base/styles/tailwind3.css';
2+
@import '../node_modules/@syncfusion/ej2-buttons/styles/tailwind3.css';
3+
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/tailwind3.css';
4+
@import '../node_modules/@syncfusion/ej2-grids/styles/tailwind3.css';
5+
@import '../node_modules/@syncfusion/ej2-inputs/styles/tailwind3.css';
6+
@import '../node_modules/@syncfusion/ej2-lists/styles/tailwind3.css';
7+
@import '../node_modules/@syncfusion/ej2-navigations/styles/tailwind3.css';
8+
@import '../node_modules/@syncfusion/ej2-popups/styles/tailwind3.css';
9+
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/tailwind3.css";
10+
@import '../node_modules/@syncfusion/ej2-angular-pivotview/styles/tailwind3.css';

ASP.NET Core API/Blazor/MyBlazorServerApp/MyBlazorServerApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<ItemGroup>
1111
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
1212
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
13-
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="20.4.0.44" />
14-
<PackageReference Include="Syncfusion.Blazor.Themes" Version="20.4.0.44" />
13+
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="32.1.19" />
14+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="32.1.19" />
1515
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
1616
</ItemGroup>
1717

ASP.NET Core API/Blazor/MyBlazorServerApp/Pages/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link href="css/site.css" rel="stylesheet" />
1313
<link href="MyBlazorServerApp.styles.css" rel="stylesheet" />
1414
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"> </script>
15-
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
15+
<link href="_content/Syncfusion.Blazor.Themes/tailwind3.css" rel="stylesheet" />
1616
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
1717
</head>
1818
<body>

ASP.NET Core API/Core/PivotTable/PivotTable.csproj

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

99
<ItemGroup>
10-
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="20.4.0.44" />
10+
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="32.1.19" />
1111
</ItemGroup>
1212

1313
</Project>

ASP.NET Core API/Core/PivotTable/Views/Shared/_Layout.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
99
<link rel="stylesheet" href="~/PivotTable.styles.css" asp-append-version="true" />
1010
<!-- Syncfusion ASP.NET Core controls styles -->
11-
<link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/20.4.38/fluent.css" />
11+
<link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/32.1.19/tailwind3.css" />
1212
<!-- Syncfusion ASP.NET Core controls scripts -->
13-
<script src="https://cdn.syncfusion.com/ej2/20.4.38/dist/ej2.min.js"></script>
13+
<script src="https://cdn.syncfusion.com/ej2/32.1.19/dist/ej2.min.js"></script>
1414
</head>
1515
<body>
1616
<header>

ASP.NET Core API/Javascript/pivot-table/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<html xmlns="http://www.w3.org/1999/xhtml">
33
<head>
44
<title>Essential JS 2</title>
5-
<!-- Essential JS 2 pivot table's dependent material theme -->
5+
<!-- Essential JS 2 pivot table's dependent tailwind3 theme -->
66

7-
<!-- Essential JS 2 pivot table's material theme -->
8-
<link href="styles/material.css" rel="stylesheet" type="text/css"/>
7+
<!-- Essential JS 2 pivot table's tailwind3 theme -->
8+
<link href="styles/tailwind3.css" rel="stylesheet" type="text/css"/>
99

1010
<!-- Essential JS 2 pivot table's dependent scripts -->
1111

0 commit comments

Comments
 (0)