Skip to content

Commit ca3b1ac

Browse files
chore: fix build errors
1 parent 3296fab commit ca3b1ac

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

grid/export-to-xlsx-hierarchy/Pages/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
FilterMode="GridFilterMode.FilterMenu"
1515
AutoGenerateColumns="true">
1616
<GridToolBar>
17-
<GridCommandButton Command="ExportToExcel" Icon="@file-excel" OnClick="ExportToExcel">Export To Excel</GridCommandButton>
17+
<GridCommandButton Command="ExportToExcel" Icon="file-excel" OnClick="ExportToExcel">Export To Excel</GridCommandButton>
1818
<TelerikDropDownList Data="formats" TItem="string" TValue="string" @bind-Value="SelectedFormat" />
1919
</GridToolBar>
2020
<GridColumns>

grid/pdf-export-server/Client/Pages/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<GridColumn Field="Summary" />
2020
</GridColumns>
2121
<GridToolBar>
22-
<TelerikButton Icon="@file-pdf" OnClick="@ExportToPdf">Export to PDF</TelerikButton>
22+
<TelerikButton Icon="file-pdf" OnClick="@ExportToPdf">Export to PDF</TelerikButton>
2323
<label><TelerikCheckBox @bind-Value="@ExportAllPages" />Export All Pages</label>
2424
</GridToolBar>
2525
</TelerikGrid>

grid/pdf-export-server/ServerSideSample/Pages/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Sortable="true" Pageable="true" PageSize="20"
1212
Data=@GridData TotalCount=@Total OnRead=@ReadItems>
1313
<GridToolBar>
14-
<TelerikButton Icon="@file-pdf" OnClick="@ExportToPdf">Export to PDF</TelerikButton>
14+
<TelerikButton Icon="file-pdf" OnClick="@ExportToPdf">Export to PDF</TelerikButton>
1515
<label><TelerikCheckBox @bind-Value="@ExportAllPages" />Export All Pages</label>
1616
</GridToolBar>
1717
<GridColumns>

grid/print/Pages/PrintSomeColumns.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FilterMode="Telerik.Blazor.GridFilterMode.FilterRow"
88
Resizable="true" Reorderable="true">
99
<GridToolBar>
10-
<GridCommandButton Command="Print" OnClick="@Print" Icon="@print">Print</GridCommandButton>
10+
<GridCommandButton Command="Print" OnClick="@Print" Icon="print">Print</GridCommandButton>
1111
</GridToolBar>
1212
<GridColumns>
1313
@*Use the Visible parameter of the columns to define which of them will not be visible in print mode.*@

grid/print/Pages/PrintWholeGrid.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
FilterMode="Telerik.Blazor.GridFilterMode.FilterRow"
5050
Resizable="true" Reorderable="true">
5151
<GridToolBar>
52-
<GridCommandButton Command="Print" OnClick="@Print" Icon="@print">Print</GridCommandButton>
52+
<GridCommandButton Command="Print" OnClick="@Print" Icon="print">Print</GridCommandButton>
5353
</GridToolBar>
5454
<GridColumns>
5555
<GridColumn Field="@(nameof(SampleData.Id))" Width="120px" />

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ This sample uses a Notification component to show the error message to supplemen
1919
<GridColumn Field="TemperatureF" Title="Temp. F" DisplayFormat="{0:N1}" />
2020
<GridColumn Field="Summary" />
2121
<GridCommandColumn Width="200px" Resizable="false">
22-
<GridCommandButton Command="Save" Icon="@save" ShowInEdit="true">Update</GridCommandButton>
23-
<GridCommandButton Command="Edit" Icon="@edit" Primary="true">Edit</GridCommandButton>
24-
<GridCommandButton Command="Delete" Icon="@delete">Delete</GridCommandButton>
25-
<GridCommandButton Command="Cancel" Icon="@cancel" ShowInEdit="true">Cancel</GridCommandButton>
22+
<GridCommandButton Command="Save" Icon="save" ShowInEdit="true">Update</GridCommandButton>
23+
<GridCommandButton Command="Edit" Icon="edit" Primary="true">Edit</GridCommandButton>
24+
<GridCommandButton Command="Delete" Icon="delete">Delete</GridCommandButton>
25+
<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" Primary="true">Add Forecast</GridCommandButton>
3030
</GridToolBar>
3131
</TelerikGrid>
3232

listview/ValidationExamples/ValidationExamples/Pages/AsyncMethods.razor

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<br />
2626
<TelerikDropDownList Data="@Teams" @bind-Value="@currEditItem.Team" />
2727

28-
<ListViewCommandButton Command="Save" Icon="@save">Save</ListViewCommandButton>
29-
<ListViewCommandButton Command="Cancel" Icon="@cancel">Cancel</ListViewCommandButton>
28+
<ListViewCommandButton Command="Save" Icon="save">Save</ListViewCommandButton>
29+
<ListViewCommandButton Command="Cancel" Icon="cancel">Cancel</ListViewCommandButton>
3030
</EditForm>
3131
}
3232
}
@@ -36,12 +36,12 @@
3636
<div style="border: 1px solid black; margin: 10px; padding: 10px; display: inline-block;">
3737
Employee: @context.Id <br />
3838
Name: @context.Name in team: @context.Team
39-
<ListViewCommandButton Command="Edit" Icon="@edit">Edit</ListViewCommandButton>
40-
<ListViewCommandButton Command="Delete" Icon="@delete">Delete</ListViewCommandButton>
39+
<ListViewCommandButton Command="Edit" Icon="edit">Edit</ListViewCommandButton>
40+
<ListViewCommandButton Command="Delete" Icon="delete">Delete</ListViewCommandButton>
4141
</div>
4242
</Template>
4343
<HeaderTemplate>
44-
<ListViewCommandButton Command="Add" Icon="@plus">Add Employee</ListViewCommandButton>
44+
<ListViewCommandButton Command="Add" Icon="plus">Add Employee</ListViewCommandButton>
4545
<p>In this sample, the first item will not open for editing because of the code in the OnEdit handler</p>
4646
</HeaderTemplate>
4747
</TelerikListView>

listview/ValidationExamples/ValidationExamples/Pages/BasicFormValidation.razor

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
<br />
2525
<TelerikDropDownList Data="@Teams" @bind-Value="@currEditItem.Team" />
2626

27-
<ListViewCommandButton Command="Save" Icon="@save">Save</ListViewCommandButton>
28-
<ListViewCommandButton Command="Cancel" Icon="@cancel">Cancel</ListViewCommandButton>
27+
<ListViewCommandButton Command="Save" Icon="save">Save</ListViewCommandButton>
28+
<ListViewCommandButton Command="Cancel" Icon="cancel">Cancel</ListViewCommandButton>
2929
</EditForm>
3030
}
3131
</div>
@@ -34,12 +34,12 @@
3434
<div style="border: 1px solid black; margin: 10px; padding: 10px; display: inline-block;">
3535
Employee: @context.Id <br />
3636
Name: @context.Name in team: @context.Team
37-
<ListViewCommandButton Command="Edit" Icon="@edit">Edit</ListViewCommandButton>
38-
<ListViewCommandButton Command="Delete" Icon="@delete">Delete</ListViewCommandButton>
37+
<ListViewCommandButton Command="Edit" Icon="edit">Edit</ListViewCommandButton>
38+
<ListViewCommandButton Command="Delete" Icon="delete">Delete</ListViewCommandButton>
3939
</div>
4040
</Template>
4141
<HeaderTemplate>
42-
<ListViewCommandButton Command="Add" Icon="@plus">Add Employee</ListViewCommandButton>
42+
<ListViewCommandButton Command="Add" Icon="plus">Add Employee</ListViewCommandButton>
4343
<p>In this sample, the first item will not open for editing because of the code in the OnEdit handler</p>
4444
</HeaderTemplate>
4545
</TelerikListView>

listview/ValidationExamples/ValidationExamples/Pages/CustomForm.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<div style="border: 1px solid black; margin: 10px; padding: 10px; display: inline-block;">
1212
Employee: @context.Id <br />
1313
Name: @context.Name in team: @context.Team
14-
<TelerikButton OnClick="@( _ => EditExisting(context) )" Icon="@edit">Edit</TelerikButton>
15-
<ListViewCommandButton Command="Delete" Icon="@delete">Delete</ListViewCommandButton>
14+
<TelerikButton OnClick="@( _ => EditExisting(context) )" Icon="edit">Edit</TelerikButton>
15+
<ListViewCommandButton Command="Delete" Icon="delete">Delete</ListViewCommandButton>
1616
</div>
1717
</Template>
1818
<HeaderTemplate>
19-
<TelerikButton OnClick="@AddNew" Icon="@plus">Add Employee</TelerikButton>
19+
<TelerikButton OnClick="@AddNew" Icon="plus">Add Employee</TelerikButton>
2020
</HeaderTemplate>
2121
</TelerikListView>
2222

0 commit comments

Comments
 (0)