Skip to content

Commit 371fb0e

Browse files
authored
chore: Update Primary button and Drawer Content syntax, ticket 1571669 (#184)
1 parent 942979a commit 371fb0e

File tree

38 files changed

+59
-53
lines changed

38 files changed

+59
-53
lines changed

common/confirm-button/Shared/ConfirmWindow.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</div>
99
<div class="k-dialog-buttongroup k-dialog-button-layout-stretched">
1010
<TelerikButton OnClick="@RaiseCancel">Cancel</TelerikButton>
11-
<TelerikButton OnClick="@RaiseConfirm" Primary="true">Confirm</TelerikButton>
11+
<TelerikButton OnClick="@RaiseConfirm" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Confirm</TelerikButton>
1212
</div>
1313
</WindowContent>
1414
</TelerikWindow>

common/confirm-button/confirm_button.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.7.0" />
9+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1010
</ItemGroup>
1111

1212
</Project>

common/grpc-example/datasource-request-result/gRPCsample/Client/Shared/ConfirmWindow.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</div>
99
<div class="k-dialog-buttongroup k-dialog-button-layout-stretched">
1010
<TelerikButton OnClick="@RaiseCancel">Cancel</TelerikButton>
11-
<TelerikButton OnClick="@RaiseConfirm" Primary="true">Confirm</TelerikButton>
11+
<TelerikButton OnClick="@RaiseConfirm" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Confirm</TelerikButton>
1212
</div>
1313
</WindowContent>
1414
</TelerikWindow>

common/popup-causes-scroll/popup-causes-scroll/Client/Pages/WindowExample.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div style="margin: 50px;">
22
<TelerikButton OnClick="@( () => WindowIsVisible = !WindowIsVisible )"
3-
ButtonType="@ButtonType.Button" Primary="true">
3+
ButtonType="@ButtonType.Button" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">
44
Toggle window
55
</TelerikButton>
66
</div>

common/popup-causes-scroll/popup-causes-scroll/Client/popup_causes_scroll.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.0" />
88
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.0" PrivateAssets="all" />
99
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
10-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.24.0" />
10+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1111
</ItemGroup>
1212
<ItemGroup>
1313
<ProjectReference Include="..\Shared\popup_causes_scroll.Shared.csproj" />

drawer/select-on-load/select-on-load/Shared/MainLayout.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
MiniMode="true"
1010
@bind-Expanded="@DrawerExpanded"
1111
@bind-SelectedItem="@SelectedItem">
12-
<Content>
12+
<DrawerContent>
1313
<div class="main">
1414
<div class="top-row px-4">
1515
@SelectedItem?.Text
@@ -21,7 +21,7 @@
2121
@Body
2222
</div>
2323
</div>
24-
</Content>
24+
</DrawerContent>
2525
</TelerikDrawer>
2626

2727

drawer/select-on-load/select-on-load/select-on-load.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<TargetFramework>net5.0</TargetFramework>
55
<RootNamespace>select_on_load</RootNamespace>
66
</PropertyGroup>
7+
<PropertyGroup Condition=" '$(RunConfiguration)' == 'select-on-load' " />
78
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.26.0" />
9+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
910
</ItemGroup>
1011
</Project>

drawer/sidenav/Pages/Index.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to your new app.<br />
66

7-
<TelerikButton OnClick="@SayHelloHandler" Primary="true">Say Hello</TelerikButton>
7+
<TelerikButton OnClick="@SayHelloHandler" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Say Hello</TelerikButton>
88

99
<br />
1010

drawer/sidenav/Shared/MainLayout.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<TelerikRootComponent>
4343

4444
<TelerikDrawer Data="@NavigablePages" @bind-Expanded="@DrawerExpanded" MiniMode="true" Mode="@DrawerMode.Push" @ref="@DrawerRef" @bind-SelectedItem="@SelectedItem">
45-
<Content>
45+
<DrawerContent>
4646
@* This layout is now in the drawer Content, and is very similar to the default template layout *@
4747
<div class="main">
4848
@* This is the button to collapse/expand the drawer, in this sample it is positioned absolutely so it moves with the drawer and stays above the rest of the content *@
@@ -56,7 +56,7 @@
5656
@Body
5757
</div>
5858
</div>
59-
</Content>
59+
</DrawerContent>
6060
</TelerikDrawer>
6161

6262
</TelerikRootComponent>

drawer/sidenav/sidenav.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.14.1" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

drawer/template/template/Pages/Index.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to your new app.<br />
66

7-
<TelerikButton OnClick="@SayHelloHandler" Primary="true">Say Hello</TelerikButton>
7+
<TelerikButton OnClick="@SayHelloHandler" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Say Hello</TelerikButton>
88

99
<br />
1010

drawer/template/template/Shared/MainLayout.razor

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@
102102
@if (DrawerExpanded)
103103
{
104104
<div style="text-align: center; margin-top: 3em; padding-top: 2em; border-top: 2px solid black; white-space:nowrap">
105-
<TelerikButton Icon="logout" Primary="true">Log Out</TelerikButton>
105+
<TelerikButton Icon="logout" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Log Out</TelerikButton>
106106
</div>
107107
}
108108
</Template>
109-
<Content>
109+
<DrawerContent>
110110
@* This layout is now in the drawer Content, and is very similar to the default template layout *@
111111
<div class="main">
112112
@* This is the button to collapse/expand the drawer, in this sample it is positioned absolutely so it moves with the drawer and stays above the rest of the content *@
@@ -119,7 +119,7 @@
119119
@Body
120120
</div>
121121
</div>
122-
</Content>
122+
</DrawerContent>
123123
</TelerikDrawer>
124124

125125
</TelerikRootComponent>

drawer/template/template/template.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.15.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

drawer/two-drawers/TwoDrawers/Pages/Index.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to your new app.<br />
66

7-
<TelerikButton OnClick="@SayHelloHandler" Primary="true">Say Hello</TelerikButton>
7+
<TelerikButton OnClick="@SayHelloHandler" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Say Hello</TelerikButton>
88

99
<br />
1010

drawer/two-drawers/TwoDrawers/Shared/MainLayout.razor

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@* First, the Overlay mode drawer as it positions itself absolutely and so it should be as high in the DOM as possible
1818
in order to not be limited by the rules and positions of its parents *@
1919
<TelerikDrawer Data="@RightItems" Mode="@DrawerMode.Overlay" Position="@DrawerPosition.Right" @ref="@RightDrawerRef">
20-
<Content>
20+
<DrawerContent>
2121

2222
@* The nested drawer is the Push drawer - the CSS rule above reduces its z-index so it does not show up above the overlay of the other *@
2323
<TelerikDrawer Data="@Data"
@@ -26,7 +26,7 @@
2626
@ref="@DrawerRef"
2727
@bind-SelectedItem="@SelectedItem"
2828
Class="nested-drawer">
29-
<Content>
29+
<DrawerContent>
3030

3131
@* Here begins the actual content - for example, we start with buttons to toggle the drawers and the @Body later *@
3232
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="menu">Toggle LEFT drawer</TelerikButton>
@@ -36,9 +36,9 @@
3636
Selected Item: @SelectedItem?.Text
3737
@Body
3838
</div>
39-
</Content>
39+
</DrawerContent>
4040
</TelerikDrawer>
41-
</Content>
41+
</DrawerContent>
4242
</TelerikDrawer>
4343

4444
</TelerikRootComponent>

drawer/two-drawers/TwoDrawers/TwoDrawers.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.16.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

editor/Markdown/Markdown/Markdown.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<ItemGroup>
88
<PackageReference Include="MarkdownSharp" Version="2.0.5" />
99
<PackageReference Include="ReverseMarkdown" Version="3.12.0" />
10-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.16.0" />
10+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1111
</ItemGroup>
1212

1313
</Project>

editor/Markdown/Markdown/Pages/ViewMdTool.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<TelerikButton Icon="paste-markdown" OnClick="@ShowMdEditWindow">View MD</TelerikButton>
22

3-
<TelerikWindow Visible="@wndVisible" Size="@WindowSize.Medium" Modal="true">
3+
<TelerikWindow Visible="@wndVisible" Width="60vw" Modal="true">
44
<WindowTitle>View and Edit the Raw Markdown</WindowTitle>
55
<WindowContent>
66
<textarea @bind="@currMd" class="k-textarea k-editor-textarea" style="min-height: 280px; min-width: 490px;" placeholder="You can write markdown here..."></textarea>
77
<div class="k-actions k-actions-end" style="text-align: right">
88
<div class="k-actions k-actions-end" style="text-align: right">
99
<TelerikButton Class="k-dialog-cancel" OnClick="@( _ => wndVisible = false )">Cancel</TelerikButton>
10-
<TelerikButton Class="k-dialog-insert" Primary="true" OnClick="@UpdateContent">Update</TelerikButton>
10+
<TelerikButton Class="k-dialog-insert" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" OnClick="@UpdateContent">Update</TelerikButton>
1111
</div>
1212
</div>
1313
</WindowContent>

grid/adjust-height-with-browser/AdjustHeightWithBrowser.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="BlazorPro.BlazorSize" Version="2.0.2" />
9-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.11.0" />
9+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1010
</ItemGroup>
1111

1212
</Project>

grid/adjust-height-with-browser/Data/CityService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace AdjustHeightWithBrowser.Data
99
{
1010
public class CityService
1111
{
12-
string _dataPath = "data\\worldcities.csv";
12+
string _dataPath = $"Data{Path.DirectorySeparatorChar}worldcities.csv";
1313
public Task<List<City>> GetCitiesAsync()
1414
{
1515
List<City> cityList = null;

grid/adjust-height-with-browser/Pages/FindAndSelectRow.razor

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ else
1212
{
1313
<div class="text-center m-3">
1414
<div class="d-inline-block">
15-
<TelerikButton Primary="true" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Bucharest"))">Select Bucharest</TelerikButton>
16-
<TelerikButton Primary="true" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Frankfurt"))">Select Frankfurt</TelerikButton>
17-
<TelerikButton Primary="true" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Havana"))">Select Havana</TelerikButton>
18-
<TelerikButton Primary="true" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("New York"))">Select New York</TelerikButton>
15+
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Bucharest"))">Select Bucharest</TelerikButton>
16+
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Frankfurt"))">Select Frankfurt</TelerikButton>
17+
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("Havana"))">Select Havana</TelerikButton>
18+
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="ButtonType.Button" @onclick="@(() => SelectItem("New York"))">Select New York</TelerikButton>
1919
</div>
2020
</div>
2121

grid/adjust-height-with-browser/Pages/_Host.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="_content/BlazorPro.BlazorSize/blazorSize.min.js"></script>
1717
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
1818

19-
<script src="js/utilities.js"></script>
19+
<script src="utilities.js"></script>
2020

2121
</head>
2222
<body>

grid/custom-popup-form/Pages/Index.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<TelerikValidationSummary />
4747
</FormValidation>
4848
<FormButtons>
49-
<TelerikButton Icon="save" Primary="true" ButtonType="@ButtonType.Submit">Save</TelerikButton>
49+
<TelerikButton Icon="save" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="@ButtonType.Submit">Save</TelerikButton>
5050
<TelerikButton Icon="cancel" OnClick="@ClearSelection" ButtonType="@ButtonType.Button">Cancel</TelerikButton>
5151
</FormButtons>
5252
</TelerikForm>

grid/custom-popup-form/Pages/_Host.cshtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<base href="~/" />
1212
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
1313
<link href="css/site.css" rel="stylesheet" />
14-
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@@latest/dist/all.css" />
15-
<script src="_content/telerik.ui.for.blazor/js/telerik-blazor.js" defer></script>
14+
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
1615
</head>
1716
<body>
1817
<app>@(await Html.RenderComponentAsync<App>(RenderMode.ServerPrerendered))</app>
1918

2019
<script src="_framework/blazor.server.js"></script>
20+
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js"></script>
2121
</body>
2222
</html>

grid/custom-popup-form/Shared/CustomEditForm.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</div>
3939
<div class="form-row">
4040
<ValidationSummary />
41-
<TelerikButton Icon="save" Primary="true" ButtonType="@ButtonType.Submit">Save</TelerikButton>
41+
<TelerikButton Icon="save" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="@ButtonType.Submit">Save</TelerikButton>
4242
<TelerikButton Icon="cancel" OnClick="@ClearSelection" ButtonType="@ButtonType.Button">Cancel</TelerikButton>
4343
</div>
4444
</EditForm>

grid/custom-popup-form/custom_popup_form.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.22.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

grid/remote-validation/Client/Pages/Index.razor

+8-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ This sample uses a Notification component to show the error message to supplemen
2020
<GridColumn Field="Summary" />
2121
<GridCommandColumn Width="200px" Resizable="false">
2222
<GridCommandButton Command="Save" Icon="save" ShowInEdit="true">Update</GridCommandButton>
23-
<GridCommandButton Command="Edit" Icon="edit" Primary="true">Edit</GridCommandButton>
23+
<GridCommandButton Command="Edit" Icon="edit" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Edit</GridCommandButton>
2424
<GridCommandButton Command="Delete" Icon="delete">Delete</GridCommandButton>
2525
<GridCommandButton Command="Cancel" Icon="cancel" ShowInEdit="true">Cancel</GridCommandButton>
2626
</GridCommandColumn>
2727
</GridColumns>
2828
<GridToolBar>
29-
<GridCommandButton Command="Add" Icon="plus" Primary="true">Add Forecast</GridCommandButton>
29+
<GridCommandButton Command="Add" Icon="plus" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Add Forecast</GridCommandButton>
3030
</GridToolBar>
3131
</TelerikGrid>
3232

@@ -44,7 +44,12 @@ This sample uses a Notification component to show the error message to supplemen
4444

4545
void ShowErrorNotification(string message)
4646
{
47-
Notification.Show(new NotificationModel { CloseAfter = 0, Text = message, ThemeColor = Telerik.Blazor.ThemeColors.Error });
47+
Notification.Show(new NotificationModel
48+
{
49+
CloseAfter = 0,
50+
Text = message,
51+
ThemeColor = ThemeConstants.Notification.ThemeColor.Error
52+
});
4853
}
4954

5055
protected override async Task OnInitializedAsync()

grid/remote-validation/Client/RemoteValidationWasm.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Build" Version="3.2.1" PrivateAssets="all" />
1111
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="3.2.1" PrivateAssets="all" />
1212
<PackageReference Include="System.Net.Http.Json" Version="3.2.1" />
13-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.20.0" />
13+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1414
</ItemGroup>
1515
<ItemGroup>
1616
<ProjectReference Include="..\Shared\RemoteValidationWasm.Shared.csproj" />

listview/ValidationExamples/ValidationExamples/Pages/CustomForm.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</div>
4848
<div class="form-row">
4949
<ValidationSummary />
50-
<TelerikButton Icon="save" Primary="true" ButtonType="@ButtonType.Submit">Save</TelerikButton>
50+
<TelerikButton Icon="save" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary" ButtonType="@ButtonType.Submit">Save</TelerikButton>
5151
<TelerikButton Icon="cancel" OnClick="@ClearSelection" ButtonType="@ButtonType.Button">Cancel</TelerikButton>
5252
</div>
5353
</EditForm>

listview/ValidationExamples/ValidationExamples/ValidationExamples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.17.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

scheduler/custom-edit-form/Pages/AppointmentEditor.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
<ValidationSummary />
5252

53-
<TelerikButton Primary="true">Save</TelerikButton>
53+
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Save</TelerikButton>
5454

5555
@* These buttons do not invoke validation, you can always delete an appointment or stop editing *@
5656
<TelerikButton OnClick="@CancelEditing" ButtonType="ButtonType.Button">Cancel</TelerikButton>

scheduler/custom-edit-form/custom_edit_form.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.20.0" />
9+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
1010
</ItemGroup>
1111

1212
</Project>

splitter/use-100-percent-viewport/use-100-percent-viewport/Pages/Index.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to your new app.<br />
66

7-
<TelerikButton OnClick="@SayHelloHandler" Primary="true">Say Hello</TelerikButton>
7+
<TelerikButton OnClick="@SayHelloHandler" ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">Say Hello</TelerikButton>
88

99
<br />
1010

splitter/use-100-percent-viewport/use-100-percent-viewport/use_100_percent_viewport.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Telerik.UI.for.Blazor" Version="2.26.0" />
8+
<PackageReference Include="Telerik.UI.for.Blazor" Version="3.4.0" />
99
</ItemGroup>
1010

1111
</Project>

0 commit comments

Comments
 (0)