Skip to content

Commit c100af8

Browse files
committed
chore(common): skip repls
1 parent 1b7c904 commit c100af8

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

components/map/layers/marker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ The following example uses two Marker layers with different templates. One rende
9090

9191
>caption Using Map marker template
9292
93+
<!-- REPL skipped due to https://github.com/telerik/blazor-repl/issues/323 -->
9394
<div class="skip-repl"></div>
9495

9596
````RAZOR

components/stockchart/labels-template-and-format.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ You can use the `Format` parameter to apply standard [numeric format strings](ht
2424

2525
>caption Format the labels on the Value and Category Axes
2626
27+
<!-- REPL skipped due to https://github.com/telerik/blazor-repl/issues/323 -->
28+
<div class="skip-repl"></div>
2729
````RAZOR
2830
Standard number format strings and rotate the labels of the Category Axis
2931
@@ -144,6 +146,8 @@ In a *value axis* label template, you can use the following fields:
144146
145147
>caption Custom templates in labels
146148
149+
<!-- REPL skipped due to https://github.com/telerik/blazor-repl/issues/323 -->
150+
<div class="skip-repl"></div>
147151
````RAZOR
148152
Label templates
149153

knowledge-base/common-kb-render-fragment-parameter-null.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ The following sample used as a component will cause exceptions:
5151

5252
>caption RenderFragment elements used as properties cause exceptions
5353
54+
<div class="skip-repl"></div>
5455
````RAZOR
5556
typeparam TItem
5657
@typeparam TValue
@@ -78,6 +79,7 @@ typeparam TItem
7879

7980
>caption Simple usage of the problematic component that causes an error
8081
82+
<div class="skip-repl"></div>
8183
````RAZOR
8284
<CustomCombo Data="@myDdlData" TItem="@MyDdlModel" TValue="int"
8385
TextField="MyTextField" ValueField="MyValueField" @bind-Value="@selectedValue">
@@ -155,6 +157,7 @@ The solution is to implement checks in the custom component so that you can rend
155157

156158
>caption How to consume that component - like usual
157159
160+
<div class="skip-repl"></div>
158161
````RAZOR
159162
@selectedValue
160163

upgrade/breaking-changes/2-0-0.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Until now, you had to include things like `@using Telerik.Blazor.Components.<Com
3131

3232
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:
3333

34-
````RAZOR.skip-repl
34+
<div class="skip-repl"></div>
35+
````RAZOR
3536
@using Telerik.Blazor
3637
@using Telerik.Blazor.Components
3738
````
@@ -42,7 +43,8 @@ You can keep `@using Telerik.Blazor.Components` in the views, it simply is not n
4243

4344
Some enums had to move to different namespaces and/or to have more descriptive names:
4445

45-
````Razor.skip-repl
46+
<div class="skip-repl"></div>
47+
````Razor
4648
// Chart
4749
Telerik.Blazor.ChartSeriesStack -> Telerik.Blazor.ChartSeriesStackType
4850
@@ -124,6 +126,7 @@ This is a list of the components that had their child tags removed or renamed.
124126
* `Header` is now `HeaderTemplate`
125127
* `Footer` is now `FooterTemplate`
126128

129+
<div class="skip-repl"></div>
127130
````RAZOR
128131
// Old
129132
<TelerikDropDownList Data="@Data">
@@ -147,7 +150,8 @@ This is a list of the components that had their child tags removed or renamed.
147150
* 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>`.
148151
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
149152

150-
````RAZOR.skip-repl
153+
<div class="skip-repl"></div>
154+
````RAZOR
151155
// Old
152156
<TelerikGrid Data=@GridData>
153157
<TelerikGridColumns>
@@ -196,6 +200,7 @@ This is a list of the components that had their child tags removed or renamed.
196200

197201
* `TelerikTab` is now `TabStripTab`
198202

203+
<div class="skip-repl"></div>
199204
````RAZOR
200205
// Old
201206
<TelerikTabStrip>
@@ -216,6 +221,7 @@ This is a list of the components that had their child tags removed or renamed.
216221

217222
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
218223

224+
<div class="skip-repl"></div>
219225
````RAZOR
220226
// Old
221227
<TelerikTreeView Data="@HierarchicalData">
@@ -244,6 +250,7 @@ This is a list of the components that had their child tags removed or renamed.
244250

245251
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
246252

253+
<div class="skip-repl"></div>
247254
````RAZOR
248255
// Old
249256
<TelerikWindow>

0 commit comments

Comments
 (0)