|
3 | 3 | public class BitNavNameSelectors<TItem> |
4 | 4 | { |
5 | 5 | /// <summary> |
6 | | - /// The AriaCurrent field name and selector of the custom input class. |
| 6 | + /// The AriaCurrent field name and selector of the custom input class (see <see cref="BitNavItem.AriaCurrent"/>). |
7 | 7 | /// </summary> |
8 | 8 | public BitNameSelectorPair<TItem, BitNavAriaCurrent?> AriaCurrent { get; set; } = new(nameof(BitNavItem.AriaCurrent)); |
9 | 9 |
|
10 | 10 | /// <summary> |
11 | | - /// The AriaLabel field name and selector of the custom input class. |
| 11 | + /// The AriaLabel field name and selector of the custom input class (see <see cref="BitNavItem.AriaLabel"/>). |
12 | 12 | /// </summary> |
13 | 13 | public BitNameSelectorPair<TItem, string?> AriaLabel { get; set; } = new(nameof(BitNavItem.AriaLabel)); |
14 | 14 |
|
15 | 15 | /// <summary> |
16 | | - /// The Class field name and selector of the custom input class. |
| 16 | + /// The Class field name and selector of the custom input class (see <see cref="BitNavItem.Class"/>). |
17 | 17 | /// </summary> |
18 | 18 | public BitNameSelectorPair<TItem, string?> Class { get; set; } = new(nameof(BitNavItem.Class)); |
19 | 19 |
|
20 | 20 | /// <summary> |
21 | | - /// The ChildItems field name and selector of the custom input class. |
| 21 | + /// The ChildItems field name and selector of the custom input class (see <see cref="BitNavItem.ChildItems"/>). |
22 | 22 | /// </summary> |
23 | 23 | public BitNameSelectorPair<TItem, List<TItem>?> ChildItems { get; set; } = new(nameof(BitNavItem.ChildItems)); |
24 | 24 |
|
25 | 25 | /// <summary> |
26 | | - /// The CollapseAriaLabel field name and selector of the custom input class. |
| 26 | + /// The CollapseAriaLabel field name and selector of the custom input class (see <see cref="BitNavItem.CollapseAriaLabel"/>). |
27 | 27 | /// </summary> |
28 | 28 | public BitNameSelectorPair<TItem, string?> CollapseAriaLabel { get; set; } = new(nameof(BitNavItem.CollapseAriaLabel)); |
29 | 29 |
|
30 | 30 | /// <summary> |
31 | | - /// The Data field name and selector of the custom input class. |
| 31 | + /// The Data field name and selector of the custom input class (see <see cref="BitNavItem.Data"/>). |
32 | 32 | /// </summary> |
33 | 33 | public BitNameSelectorPair<TItem, object?> Data { get; set; } = new(nameof(BitNavItem.Data)); |
34 | 34 |
|
35 | 35 | /// <summary> |
36 | | - /// The Description field name and selector of the custom input class. |
| 36 | + /// The Description field name and selector of the custom input class (see <see cref="BitNavItem.Description"/>). |
37 | 37 | /// </summary> |
38 | 38 | public BitNameSelectorPair<TItem, string?> Description { get; set; } = new(nameof(BitNavItem.Description)); |
39 | 39 |
|
40 | 40 | /// <summary> |
41 | | - /// The ExpandAriaLabel field name and selector of the custom input class. |
| 41 | + /// The ExpandAriaLabel field name and selector of the custom input class (see <see cref="BitNavItem.ExpandAriaLabel"/>). |
42 | 42 | /// </summary> |
43 | 43 | public BitNameSelectorPair<TItem, string?> ExpandAriaLabel { get; set; } = new(nameof(BitNavItem.ExpandAriaLabel)); |
44 | 44 |
|
45 | 45 | /// <summary> |
46 | | - /// The ForceAnchor field name and selector of the custom input class. |
| 46 | + /// The ForceAnchor field name and selector of the custom input class (see <see cref="BitNavItem.ForceAnchor"/>). |
47 | 47 | /// </summary> |
48 | 48 | public BitNameSelectorPair<TItem, bool?> ForceAnchor { get; set; } = new(nameof(BitNavItem.ForceAnchor)); |
49 | 49 |
|
50 | 50 | /// <summary> |
51 | | - /// The IconName field name and selector of the custom input class. |
| 51 | + /// The IconName field name and selector of the custom input class (see <see cref="BitNavItem.IconName"/>). |
52 | 52 | /// </summary> |
53 | 53 | public BitNameSelectorPair<TItem, string?> IconName { get; set; } = new(nameof(BitNavItem.IconName)); |
54 | 54 |
|
55 | 55 | /// <summary> |
56 | | - /// The IsEnabled field name and selector of the custom input class. |
| 56 | + /// The IsEnabled field name and selector of the custom input class (see <see cref="BitNavItem.IsEnabled"/>). |
57 | 57 | /// </summary> |
58 | 58 | public BitNameSelectorPair<TItem, bool?> IsEnabled { get; set; } = new(nameof(BitNavItem.IsEnabled)); |
59 | 59 |
|
60 | 60 | /// <summary> |
61 | | - /// The IsExpanded field name and selector of the custom input class. |
| 61 | + /// The IsExpanded field name and selector of the custom input class (see <see cref="BitNavItem.IsExpanded"/>). |
62 | 62 | /// </summary> |
63 | 63 | public BitNameSelectorPair<TItem, bool?> IsExpanded { get; set; } = new(nameof(BitNavItem.IsExpanded)); |
64 | 64 |
|
65 | 65 | /// <summary> |
66 | | - /// The IsSeparator field name and selector of the custom input class. |
| 66 | + /// The IsSeparator field name and selector of the custom input class (see <see cref="BitNavItem.IsSeparator"/>). |
67 | 67 | /// </summary> |
68 | 68 | public BitNameSelectorPair<TItem, bool?> IsSeparator { get; set; } = new(nameof(BitNavItem.IsSeparator)); |
69 | 69 |
|
70 | 70 | /// <summary> |
71 | | - /// The Key field name and selector of the custom input class. |
| 71 | + /// The Key field name and selector of the custom input class (see <see cref="BitNavItem.Key"/>). |
72 | 72 | /// </summary> |
73 | 73 | public BitNameSelectorPair<TItem, string?> Key { get; set; } = new(nameof(BitNavItem.Key)); |
74 | 74 |
|
75 | 75 | /// <summary> |
76 | | - /// The Style field name and selector of the custom input class. |
| 76 | + /// The Match field name and selector of the custom input class (see <see cref="BitNavItem.Match"/>). |
| 77 | + /// </summary> |
| 78 | + public BitNameSelectorPair<TItem, BitNavMatch?> Match { get; set; } = new(nameof(BitNavItem.Match)); |
| 79 | + |
| 80 | + /// <summary> |
| 81 | + /// The Style field name and selector of the custom input class (see <see cref="BitNavItem.Style"/>). |
77 | 82 | /// </summary> |
78 | 83 | public BitNameSelectorPair<TItem, string?> Style { get; set; } = new(nameof(BitNavItem.Style)); |
79 | 84 |
|
80 | 85 | /// <summary> |
81 | | - /// The Target field name and selector of the custom input class. |
| 86 | + /// The Target field name and selector of the custom input class (see <see cref="BitNavItem.Target"/>). |
82 | 87 | /// </summary> |
83 | 88 | public BitNameSelectorPair<TItem, string?> Target { get; set; } = new(nameof(BitNavItem.Target)); |
84 | 89 |
|
85 | 90 | /// <summary> |
86 | | - /// The Template field name and selector of the custom input class. |
| 91 | + /// The Template field name and selector of the custom input class (see <see cref="BitNavItem.Template"/>). |
87 | 92 | /// </summary> |
88 | 93 | public BitNameSelectorPair<TItem, RenderFragment<TItem>?> Template { get; set; } = new(nameof(BitNavItem.Template)); |
89 | 94 |
|
90 | 95 | /// <summary> |
91 | | - /// The TemplateRenderMode field name and selector of the custom input class. |
| 96 | + /// The TemplateRenderMode field name and selector of the custom input class (see <see cref="BitNavItem.TemplateRenderMode"/>). |
92 | 97 | /// </summary> |
93 | 98 | public BitNameSelectorPair<TItem, BitNavItemTemplateRenderMode?> TemplateRenderMode { get; set; } = new(nameof(BitNavItem.TemplateRenderMode)); |
94 | 99 |
|
95 | 100 | /// <summary> |
96 | | - /// The Text field name and selector of the custom input class. |
| 101 | + /// The Text field name and selector of the custom input class (see <see cref="BitNavItem.Text"/>). |
97 | 102 | /// </summary> |
98 | 103 | public BitNameSelectorPair<TItem, string?> Text { get; set; } = new(nameof(BitNavItem.Text)); |
99 | 104 |
|
100 | 105 | /// <summary> |
101 | | - /// The Title field name and selector of the custom input class. |
| 106 | + /// The Title field name and selector of the custom input class (see <see cref="BitNavItem.Title"/>). |
102 | 107 | /// </summary> |
103 | 108 | public BitNameSelectorPair<TItem, string?> Title { get; set; } = new(nameof(BitNavItem.Title)); |
104 | 109 |
|
105 | 110 | /// <summary> |
106 | | - /// The Url field name and selector of the custom input class. |
| 111 | + /// The Url field name and selector of the custom input class (see <see cref="BitNavItem.Url"/>). |
107 | 112 | /// </summary> |
108 | 113 | public BitNameSelectorPair<TItem, string?> Url { get; set; } = new(nameof(BitNavItem.Url)); |
109 | 114 |
|
110 | 115 | /// <summary> |
111 | | - /// The AdditionalUrls field name and selector of the custom input class. |
| 116 | + /// The AdditionalUrls field name and selector of the custom input class (see <see cref="BitNavItem.AdditionalUrls"/>). |
112 | 117 | /// </summary> |
113 | 118 | public BitNameSelectorPair<TItem, IEnumerable<string>?> AdditionalUrls { get; set; } = new(nameof(BitNavItem.AdditionalUrls)); |
114 | 119 | } |
0 commit comments