You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: upgrade/breaking-changes/2-0-0.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,8 @@ Until now, you had to include things like `@using Telerik.Blazor.Components.<Com
31
31
32
32
As of the `2.0.0` version, you only need to add the following to your main **~/_Imports.razor** file, and you have to remove the `@using` statements per component:
33
33
34
-
````RAZOR.skip-repl
34
+
<divclass="skip-repl"></div>
35
+
````RAZOR
35
36
@using Telerik.Blazor
36
37
@using Telerik.Blazor.Components
37
38
````
@@ -42,7 +43,8 @@ You can keep `@using Telerik.Blazor.Components` in the views, it simply is not n
42
43
43
44
Some enums had to move to different namespaces and/or to have more descriptive names:
@@ -124,6 +126,7 @@ This is a list of the components that had their child tags removed or renamed.
124
126
*`Header` is now `HeaderTemplate`
125
127
*`Footer` is now `FooterTemplate`
126
128
129
+
<divclass="skip-repl"></div>
127
130
````RAZOR
128
131
// Old
129
132
<TelerikDropDownList Data="@Data">
@@ -147,7 +150,8 @@ This is a list of the components that had their child tags removed or renamed.
147
150
* The `TelerikGridEvents` and `EventsManager` tags are removed. The CRUD events of the grid are now available at its root-level tag, for example `<TelerikGrid OnRead=@ReadItems>`.
148
151
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
149
152
150
-
````RAZOR.skip-repl
153
+
<divclass="skip-repl"></div>
154
+
````RAZOR
151
155
// Old
152
156
<TelerikGrid Data=@GridData>
153
157
<TelerikGridColumns>
@@ -196,6 +200,7 @@ This is a list of the components that had their child tags removed or renamed.
196
200
197
201
*`TelerikTab` is now `TabStripTab`
198
202
203
+
<divclass="skip-repl"></div>
199
204
````RAZOR
200
205
// Old
201
206
<TelerikTabStrip>
@@ -216,6 +221,7 @@ This is a list of the components that had their child tags removed or renamed.
216
221
217
222
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
218
223
224
+
<divclass="skip-repl"></div>
219
225
````RAZOR
220
226
// Old
221
227
<TelerikTreeView Data="@HierarchicalData">
@@ -244,6 +250,7 @@ This is a list of the components that had their child tags removed or renamed.
244
250
245
251
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
0 commit comments