Skip to content

Commit 819a6db

Browse files
svdimitrjivanova
authored andcommitted
docs(icons): icons chunk
1 parent 3000e3e commit 819a6db

20 files changed

+41
-41
lines changed

components/breadcrumb/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To use a Telerik Breadcrumb for Blazor:
4545
{
4646
Items = new List<BreadcrumbItem>
4747
{
48-
new BreadcrumbItem { Text = "Home", Icon = "home" },
48+
new BreadcrumbItem { Text = "Home", Icon = FontIcon.Home },
4949
new BreadcrumbItem { Text = "Products"},
5050
new BreadcrumbItem { Text = "Computer peripherals"},
5151
new BreadcrumbItem { Text = "Keyboards"},

components/breadcrumb/separator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Furthermore, you can take full control over the Separator rendering with the [Se
3434
{
3535
Items = new List<BreadcrumbItem>
3636
{
37-
new BreadcrumbItem { Text = "Home", Icon = "home" },
37+
new BreadcrumbItem { Text = "Home", Icon = FontIcon.Home },
3838
new BreadcrumbItem { Text = "Products"},
3939
new BreadcrumbItem { Text = "Computer peripherals"},
4040
new BreadcrumbItem { Text = "Keyboards"}

components/contextmenu/navigation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To use the Context Menu for navigating between pages:
4747
{
4848
Text = "Contact us",
4949
Url = "/contacts",
50-
Icon = "email"
50+
Icon = FontIcon.Envelop
5151
},
5252
new MenuModel()
5353
{
@@ -66,7 +66,7 @@ To use the Context Menu for navigating between pages:
6666
{
6767
Text = "Language Settings",
6868
Url = "/language",
69-
Icon = "globe"
69+
Icon = FontIcon.Globe
7070
}
7171
}
7272
}

components/contextmenu/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ In addition to built-in [navigation capabilities]({%slug contextmenu-navigation%
5252
new ContextMenuItem
5353
{
5454
Text = "More Info",
55-
Icon = "information",
55+
Icon = FontIcon.InfoCircle,
5656
CommandName = "info"
5757
},
5858
new ContextMenuItem
@@ -67,13 +67,13 @@ In addition to built-in [navigation capabilities]({%slug contextmenu-navigation%
6767
new ContextMenuItem
6868
{
6969
Text = "Delete",
70-
Icon = "delete",
70+
Icon = FontIcon.Trash,
7171
CommandName = "delete"
7272
},
7373
new ContextMenuItem
7474
{
7575
Text = "Report",
76-
Icon = "cancel",
76+
Icon = FontIcon.Cancel,
7777
CommandName = "report"
7878
}
7979
}

components/drawer/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ The `SelectedItemChanged` event fires every time the user clicks on a new item f
5555
public IEnumerable<DrawerItem> Data { get; set; } =
5656
new List<DrawerItem>
5757
{
58-
new DrawerItem { Text = "Counter", Icon = "plus"},
59-
new DrawerItem { Text = "FetchData", Icon = "grid-layout"},
58+
new DrawerItem { Text = "Counter", Icon = FontIcon.Plus},
59+
new DrawerItem { Text = "FetchData", Icon = FontIcon.GridLayout},
6060
};
6161
6262
public class DrawerItem

components/drawer/navigation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ To use the Drawer for navigating between pages:
4242
List<DrawerItem> NavigablePages { get; set; } =
4343
new List<DrawerItem>
4444
{
45-
new DrawerItem { Text = "Home", Url = "/", Icon = "home" },
45+
new DrawerItem { Text = "Home", Url = "/", Icon = FontIcon.Home },
4646
new DrawerItem { Separator = true },
47-
new DrawerItem { Text = "Counter", Url = "counter", Icon = "plus-outline" },
48-
new DrawerItem { Text = "FetchData", Url = "fetchdata", Icon = "grid" }
47+
new DrawerItem { Text = "Counter", Url = "counter", Icon = FontIcon.PlusOutline },
48+
new DrawerItem { Text = "FetchData", Url = "fetchdata", Icon = FontIcon.Grid }
4949
};
5050
5151
public class DrawerItem

components/drawer/templates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ This template receives a `context` argument that is of the data model type and r
5555
public bool Expanded { get; set; } = true;
5656
public IEnumerable<DrawerItem> Data { get; set; } = new List<DrawerItem>
5757
{
58-
new DrawerItem {Text = "Shopping Cart", Icon = "cart", Description = "Items in shopping cart"},
59-
new DrawerItem {Text = "Notifications", Icon = "notification", Description = "My profile notifications"},
60-
new DrawerItem {Text = "Calendar", Icon = "calendar", Description = "My events"},
58+
new DrawerItem {Text = "Shopping Cart", Icon = FontIcon.Cart, Description = "Items in shopping cart"},
59+
new DrawerItem {Text = "Notifications", Icon = FontIcon.Bell, Description = "My profile notifications"},
60+
new DrawerItem {Text = "Calendar", Icon = FontIcon.Calendar, Description = "My events"},
6161
new DrawerItem {Text = "Settings", Icon = FontIcon.Gear, Description = "My profile settings"},
6262
};
6363

components/menu/navigation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To use the Menu for navigating between pages:
4343
{
4444
Text = "Contact us",
4545
Url = "/contacts",
46-
Icon = "email"
46+
Icon = FontIcon.Envelop
4747
},
4848
new MenuModel()
4949
{
@@ -62,7 +62,7 @@ To use the Menu for navigating between pages:
6262
{
6363
Text = "Language Settings",
6464
Url = "/language",
65-
Icon = "globe"
65+
Icon = FontIcon.Globe
6666
}
6767
}
6868
}

components/scheduler/templates/appointment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ You can also style the entire appointments by adding a class to their wrapping e
105105
Description = "Kick off the new project.",
106106
Start = new DateTime(2019, 11, 25, 9, 30, 0),
107107
End = new DateTime(2019, 11, 25, 12, 45, 0),
108-
Icon = "warning"
108+
Icon = FontIcon.ExclamationCircle
109109
},
110110
111111
new SchedulerAppointment

components/treeview/refresh-data.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ In this article:
5656
Text = "Testing",
5757
ParentIdValue = 1,
5858
HasChildren = false,
59-
Icon = "gears"
59+
Icon = FontIcon.Gears
6060
});
6161
6262
TreeViewRef.Rebind();
@@ -184,7 +184,7 @@ In this article:
184184
Text = "Testing",
185185
ParentIdValue = 1,
186186
HasChildren = false,
187-
Icon = "gears"
187+
Icon = FontIcon.Gears
188188
});
189189
}
190190
@@ -303,7 +303,7 @@ In this article:
303303
Text = "Testing",
304304
ParentIdValue = 1,
305305
HasChildren = false,
306-
Icon = "gears"
306+
Icon = FontIcon.Gears
307307
});
308308
309309
Items = new List<TreeItem>(Items);
@@ -352,7 +352,7 @@ In this article:
352352
Text = "Child of item 1",
353353
ParentIdValue = 2,
354354
HasChildren = false,
355-
Icon = "gears"
355+
Icon = FontIcon.Gears
356356
}
357357
};
358358
Items = new List<TreeItem>(Items);

0 commit comments

Comments
 (0)