File tree Expand file tree Collapse file tree 5 files changed +18
-18
lines changed
src/components/text-editor/examples Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ export class TextEditorAllowResizeExample {
4646 allowResize = { this . allowResize }
4747 /> ,
4848 < limel-example-controls >
49- < limel-checkbox
50- checked = { this . allowResize }
49+ < limel-switch
50+ value = { this . allowResize }
5151 label = "Allow resize"
5252 onChange = { this . setAllowResize }
5353 />
Original file line number Diff line number Diff line change @@ -69,28 +69,28 @@ export class TextEditorCompositeExample {
6969 ui = { this . selectedUi . value }
7070 />
7171 < limel-example-controls >
72- < limel-checkbox
73- checked = { this . readonly }
72+ < limel-switch
73+ value = { this . readonly }
7474 label = "Readonly"
7575 onChange = { this . setReadonly }
7676 />
77- < limel-checkbox
78- checked = { this . invalid }
77+ < limel-switch
78+ value = { this . invalid }
7979 label = "Invalid"
8080 onChange = { this . setInvalid }
8181 />
82- < limel-checkbox
83- checked = { this . required }
82+ < limel-switch
83+ value = { this . required }
8484 label = "Required"
8585 onChange = { this . setRequired }
8686 />
87- < limel-checkbox
88- checked = { this . disabled }
87+ < limel-switch
88+ value = { this . disabled }
8989 label = "Disabled"
9090 onChange = { this . setDisabled }
9191 />
92- < limel-checkbox
93- checked = { this . allowResize }
92+ < limel-switch
93+ value = { this . allowResize }
9494 label = "Allow resize"
9595 onChange = { this . setAllowResize }
9696 />
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ export class TextEditorWithHtmlExample {
2525 contentType = "html"
2626 /> ,
2727 < limel-example-controls >
28- < limel-checkbox
29- checked = { this . readonly }
28+ < limel-switch
29+ value = { this . readonly }
3030 label = "Readonly"
3131 onChange = { this . setReadonly }
3232 />
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ export class TextEditorWithMarkdownExample {
2626 contentType = "markdown"
2727 /> ,
2828 < limel-example-controls >
29- < limel-checkbox
30- checked = { this . readonly }
29+ < limel-switch
30+ value = { this . readonly }
3131 label = "Readonly"
3232 onChange = { this . setReadonly }
3333 />
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ export class TextEditorWithTablesExample {
4242 contentType = "html"
4343 /> ,
4444 < limel-example-controls key = "controls" >
45- < limel-checkbox
46- checked = { this . readonly }
45+ < limel-switch
46+ value = { this . readonly }
4747 label = "Readonly"
4848 onChange = { this . setReadonly }
4949 />
You can’t perform that action at this time.
0 commit comments