Skip to content

Commit 4eec17f

Browse files
svdimitrjivanova
authored andcommitted
docs(icons): more icons
1 parent b0e276c commit 4eec17f

Some content is hidden

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

41 files changed

+77
-77
lines changed

_contentTemplates/treeview/basic-example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Sample treeview bound to self-referencing flat data. Also uses the built-in icon
1717
public string Text { get; set; }
1818
public int? ParentIdValue { get; set; }
1919
public bool HasChildren { get; set; }
20-
public string Icon { get; set; }
20+
public FontIcon? Icon { get; set; }
2121
}
2222
2323
public IEnumerable<TreeItem> FlatData { get; set; }
@@ -73,7 +73,7 @@ Sample treeview bound to self-referencing flat data. Also uses the built-in icon
7373
Text = "index.js",
7474
ParentIdValue = 3,
7575
HasChildren = false,
76-
Icon = "js"
76+
Icon = FontIcon.Js
7777
});
7878
items.Add(new TreeItem()
7979
{

components/breadcrumb/data-binding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The properties of a Breadcrumb item map directly to fields from the Breadcrumb m
5858
{
5959
public string Text { get; set; }
6060
public string Title { get; set; }
61-
public string Icon { get; set; }
61+
public FontIcon? Icon { get; set; }
6262
public string Url { get; set; }
6363
public string Disabled { get; set; }
6464
public string Class { get; set; }

components/breadcrumb/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To use a Telerik Breadcrumb for Blazor:
5656
public class BreadcrumbItem
5757
{
5858
public string Text { get; set; }
59-
public string Icon { get; set; }
59+
public FontIcon? Icon { get; set; }
6060
public string Url { get; set; }
6161
}
6262
}
@@ -87,7 +87,7 @@ To use a Telerik Breadcrumb for Blazor:
8787
public class BreadcrumbItem
8888
{
8989
public string Text { get; set; }
90-
public string Icon { get; set; }
90+
public FontIcon? Icon { get; set; }
9191
public string Url { get; set; }
9292
}
9393
}

components/breadcrumb/separator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Furthermore, you can take full control over the Separator rendering with the [Se
4444
public class BreadcrumbItem
4545
{
4646
public string Text { get; set; }
47-
public string Icon { get; set; }
47+
public FontIcon? Icon { get; set; }
4848
public string Url { get; set; }
4949
}
5050
}

components/contextmenu/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ You can use the `OnClick` event to react to user choices, for example load new c
4444
public class MenuItem
4545
{
4646
public string Text { get; set; }
47-
public string Icon { get; set; }
47+
public FontIcon? Icon { get; set; }
4848
public List<MenuItem> Items { get; set; }
4949
}
5050

components/contextmenu/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ To use the Context Menu for navigating between pages:
7777
{
7878
public string Text { get; set; }
7979
public string Url { get; set; }
80-
public string Icon { get; set; }
80+
public FontIcon? Icon { get; set; }
8181
public List<MenuModel> Items { get; set; }
8282
}
8383
}

components/contextmenu/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ In addition to built-in [navigation capabilities]({%slug contextmenu-navigation%
8787
{
8888
public string Text { get; set; }
8989
public string CommandName { get; set; }
90-
public string Icon { get; set; }
90+
public FontIcon? Icon { get; set; }
9191
public bool Separator { get; set; }
9292
public List<ContextMenuItem> Items { get; set; }
9393
}

components/drawer/data-bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The properties of a drawer item match directly to a field of the model the drawe
5050
public class DrawerItem
5151
{
5252
public string Text { get; set; }
53-
public string Icon { get; set; }
53+
public FontIcon? Icon { get; set; }
5454
public string Url { get; set; }
5555
public bool Separator { get;set; }
5656
}

components/drawer/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The `SelectedItemChanged` event fires every time the user clicks on a new item f
6262
public class DrawerItem
6363
{
6464
public string Text { get; set; }
65-
public string Icon { get; set; }
65+
public FontIcon? Icon { get; set; }
6666
}
6767
}
6868
````

components/drawer/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To use the Drawer for navigating between pages:
5252
{
5353
public string Text { get; set; }
5454
public string Url { get; set; }
55-
public string Icon { get; set; }
55+
public FontIcon? Icon { get; set; }
5656
public bool Separator { get; set; }
5757
}
5858
}

0 commit comments

Comments
 (0)