kempo-ui 0.4.4 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Chat.js +201 -0
- package/dist/components/CodeEditor.js +21 -2
- package/dist/components/Dropdown.js +1 -1
- package/dist/components/HtmlEditor.js +42 -3
- package/dist/components/MarkdownEditor.js +173 -0
- package/dist/components/Resize.js +12 -2
- package/dist/components/TextToSpeech.js +4 -4
- package/dist/components/VoiceSelector.js +49 -0
- package/dist/components/markdownEditorControls/Bold.js +11 -0
- package/dist/components/markdownEditorControls/BulletList.js +11 -0
- package/dist/components/markdownEditorControls/Code.js +11 -0
- package/dist/components/markdownEditorControls/FormatBlock.js +30 -0
- package/dist/components/markdownEditorControls/Heading.js +11 -0
- package/dist/components/markdownEditorControls/Image.js +93 -0
- package/dist/components/markdownEditorControls/Italic.js +11 -0
- package/dist/components/markdownEditorControls/Link.js +11 -0
- package/dist/components/markdownEditorControls/MarkdownEditorControl.js +39 -0
- package/dist/components/markdownEditorControls/Menu.js +30 -0
- package/dist/components/markdownEditorControls/NumberedList.js +11 -0
- package/dist/components/markdownEditorControls/Quote.js +11 -0
- package/dist/components/markdownEditorControls/SpeechToText.js +16 -0
- package/dist/components/markdownEditorControls/Strikethrough.js +11 -0
- package/dist/components/markdownEditorControls/Table.js +80 -0
- package/dist/utils/marked.esm.js +1 -0
- package/dist/utils/renderMarkdown.js +1 -0
- package/dist/utils/sanitizeHtml.js +1 -0
- package/dist/utils/voice.js +1 -0
- package/docs/components/accordion.html +19 -0
- package/docs/components/aside.html +19 -0
- package/docs/components/calendar.html +19 -0
- package/docs/components/card.html +19 -0
- package/docs/components/chat.html +715 -0
- package/docs/components/code-editor.html +55 -0
- package/docs/components/color-picker.html +19 -0
- package/docs/components/combobox.html +19 -0
- package/docs/components/content-slider.html +19 -0
- package/docs/components/context.html +19 -0
- package/docs/components/dialog.html +19 -0
- package/docs/components/dropdown.html +19 -0
- package/docs/components/filter-list.html +19 -0
- package/docs/components/focus-capture.html +19 -0
- package/docs/components/html-editor.html +60 -0
- package/docs/components/hybrid-component.html +19 -0
- package/docs/components/icon.html +19 -0
- package/docs/components/import.html +19 -0
- package/docs/components/light-component.html +19 -0
- package/docs/components/markdown-editor.html +924 -0
- package/docs/components/nav-spacer.html +19 -0
- package/docs/components/nav.html +19 -0
- package/docs/components/photo-viewer.html +19 -0
- package/docs/components/progress.html +19 -0
- package/docs/components/resize.html +22 -0
- package/docs/components/rich-textarea.html +650 -0
- package/docs/components/shadow-component.html +19 -0
- package/docs/components/show-more.html +19 -0
- package/docs/components/slider.html +19 -0
- package/docs/components/sortable.html +19 -0
- package/docs/components/speech-to-text.html +19 -0
- package/docs/components/spinner.html +19 -0
- package/docs/components/split.html +19 -0
- package/docs/components/table.html +19 -0
- package/docs/components/tableControls.html +19 -0
- package/docs/components/tableCustomFields.html +19 -0
- package/docs/components/tableFetchRecords.html +19 -0
- package/docs/components/tableFieldSortHide.html +19 -0
- package/docs/components/tablePagination.html +19 -0
- package/docs/components/tablePlaceholder.html +19 -0
- package/docs/components/tableRecordEditing.html +19 -0
- package/docs/components/tableRecordFiltering.html +19 -0
- package/docs/components/tableRecordHiding.html +19 -0
- package/docs/components/tableRecordSearching.html +19 -0
- package/docs/components/tableRecordSelection.html +19 -0
- package/docs/components/tableRowControls.html +19 -0
- package/docs/components/tableServerSync.html +19 -0
- package/docs/components/tableSorting.html +19 -0
- package/docs/components/tabs.html +19 -0
- package/docs/components/tags.html +19 -0
- package/docs/components/text-to-speech.html +63 -1
- package/docs/components/theme-select.html +19 -0
- package/docs/components/theme-switcher.html +19 -0
- package/docs/components/time.html +19 -0
- package/docs/components/timestamp.html +19 -0
- package/docs/components/toast.html +19 -0
- package/docs/components/toggle.html +19 -0
- package/docs/components/tree.html +19 -0
- package/docs/components/voice-selector.html +610 -0
- package/docs/icons/done_all.svg +1 -0
- package/docs/icons/format_quote.svg +1 -0
- package/docs/icons/format_strikethrough.svg +1 -0
- package/docs/icons/send.svg +1 -0
- package/docs/icons/text_fields.svg +1 -0
- package/docs/index.html +49 -0
- package/docs/src/components/Chat.js +201 -0
- package/docs/src/components/CodeEditor.js +21 -2
- package/docs/src/components/Dropdown.js +1 -1
- package/docs/src/components/HtmlEditor.js +42 -3
- package/docs/src/components/MarkdownEditor.js +173 -0
- package/docs/src/components/Resize.js +12 -2
- package/docs/src/components/TextToSpeech.js +4 -4
- package/docs/src/components/VoiceSelector.js +49 -0
- package/docs/src/components/markdownEditorControls/Bold.js +11 -0
- package/docs/src/components/markdownEditorControls/BulletList.js +11 -0
- package/docs/src/components/markdownEditorControls/Code.js +11 -0
- package/docs/src/components/markdownEditorControls/FormatBlock.js +30 -0
- package/docs/src/components/markdownEditorControls/Heading.js +11 -0
- package/docs/src/components/markdownEditorControls/Image.js +93 -0
- package/docs/src/components/markdownEditorControls/Italic.js +11 -0
- package/docs/src/components/markdownEditorControls/Link.js +11 -0
- package/docs/src/components/markdownEditorControls/MarkdownEditorControl.js +39 -0
- package/docs/src/components/markdownEditorControls/Menu.js +30 -0
- package/docs/src/components/markdownEditorControls/NumberedList.js +11 -0
- package/docs/src/components/markdownEditorControls/Quote.js +11 -0
- package/docs/src/components/markdownEditorControls/SpeechToText.js +16 -0
- package/docs/src/components/markdownEditorControls/Strikethrough.js +11 -0
- package/docs/src/components/markdownEditorControls/Table.js +80 -0
- package/docs/src/utils/marked.esm.js +1 -0
- package/docs/src/utils/renderMarkdown.js +1 -0
- package/docs/src/utils/sanitizeHtml.js +1 -0
- package/docs/src/utils/voice.js +1 -0
- package/docs/utils/context.html +19 -0
- package/docs/utils/cookie.html +19 -0
- package/docs/utils/debounce.html +19 -0
- package/docs/utils/drag.html +19 -0
- package/docs/utils/elevation.html +23 -10
- package/docs/utils/formatTimestamp.html +19 -0
- package/docs/utils/object.html +19 -0
- package/docs/utils/propConverters.html +19 -0
- package/docs/utils/sanitizeHtml.html +555 -0
- package/docs/utils/string.html +19 -0
- package/docs/utils/theme.html +19 -0
- package/docs/utils/toTitleCase.html +19 -0
- package/docs/utils/type.html +19 -0
- package/docs/utils/voice.html +548 -0
- package/docs/utils/wait.html +19 -0
- package/docs-src/components/chat.page.html +230 -0
- package/docs-src/components/code-editor.page.html +36 -0
- package/docs-src/components/html-editor.page.html +41 -0
- package/docs-src/components/markdown-editor.page.html +439 -0
- package/docs-src/components/resize.page.html +3 -0
- package/docs-src/components/text-to-speech.page.html +44 -1
- package/docs-src/components/voice-selector.page.html +125 -0
- package/docs-src/index.page.html +30 -0
- package/docs-src/nav.fragment.html +19 -0
- package/docs-src/utils/elevation.page.html +4 -10
- package/docs-src/utils/sanitizeHtml.page.html +73 -0
- package/docs-src/utils/voice.page.html +66 -0
- package/icons/done_all.svg +1 -0
- package/icons/format_quote.svg +1 -0
- package/icons/format_strikethrough.svg +1 -0
- package/icons/send.svg +1 -0
- package/icons/text_fields.svg +1 -0
- package/llms.txt +7 -2
- package/package.json +3 -2
- package/src/components/Chat.js +435 -0
- package/src/components/CodeEditor.js +58 -2
- package/src/components/Dropdown.js +1 -1
- package/src/components/HtmlEditor.js +84 -4
- package/src/components/MarkdownEditor.js +654 -0
- package/src/components/Resize.js +17 -1
- package/src/components/TextToSpeech.js +13 -2
- package/src/components/VoiceSelector.js +271 -0
- package/src/components/markdownEditorControls/Bold.js +30 -0
- package/src/components/markdownEditorControls/BulletList.js +30 -0
- package/src/components/markdownEditorControls/Code.js +39 -0
- package/src/components/markdownEditorControls/FormatBlock.js +102 -0
- package/src/components/markdownEditorControls/Heading.js +45 -0
- package/src/components/markdownEditorControls/Image.js +250 -0
- package/src/components/markdownEditorControls/Italic.js +30 -0
- package/src/components/markdownEditorControls/Link.js +74 -0
- package/src/components/markdownEditorControls/MarkdownEditorControl.js +158 -0
- package/src/components/markdownEditorControls/Menu.js +86 -0
- package/src/components/markdownEditorControls/NumberedList.js +69 -0
- package/src/components/markdownEditorControls/Quote.js +30 -0
- package/src/components/markdownEditorControls/SpeechToText.js +65 -0
- package/src/components/markdownEditorControls/Strikethrough.js +35 -0
- package/src/components/markdownEditorControls/Table.js +164 -0
- package/src/utils/marked.esm.js +77 -0
- package/src/utils/renderMarkdown.js +29 -0
- package/src/utils/sanitizeHtml.js +137 -0
- package/src/utils/voice.js +103 -0
- package/tests/components/Chat.browser-test.js +540 -0
- package/tests/components/TextToSpeech.browser-test.js +150 -1
- package/tests/components/VoiceSelector.browser-test.js +374 -0
- package/tests/utils/sanitizeHtml.browser-test.js +179 -0
- package/tests/utils/voice.browser-test.js +128 -0
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
106
106
|
<k-filter-item filter-keywords="card components"><a
|
|
107
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
108
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
109
|
+
href="../components/chat.html"
|
|
110
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
108
111
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
109
112
|
href="../components/code-editor.html"
|
|
110
113
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -133,6 +136,9 @@
|
|
|
133
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
134
137
|
href="../components/html-editor.html">HTML
|
|
135
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
|
+
href="../components/markdown-editor.html"
|
|
141
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
136
142
|
<k-filter-item filter-keywords="icon components"><a
|
|
137
143
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
138
144
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -236,6 +242,9 @@
|
|
|
236
242
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
243
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
244
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
245
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
246
|
+
href="../components/voice-selector.html"
|
|
247
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
239
248
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
249
|
href="../components/shadow-component.html"
|
|
241
250
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,12 +272,17 @@
|
|
|
263
272
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
264
273
|
href="../utils/propConverters.html"
|
|
265
274
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
276
|
+
href="../utils/sanitizeHtml.html"
|
|
277
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
266
278
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
267
279
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
268
280
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
269
281
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
282
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
283
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
284
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
285
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
272
286
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
287
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
288
|
</k-filter-list>
|
|
@@ -321,6 +335,7 @@
|
|
|
321
335
|
<a href="../components/aside.html">Aside</a>
|
|
322
336
|
<a href="../components/calendar.html">Calendar</a>
|
|
323
337
|
<a href="../components/card.html">Card</a>
|
|
338
|
+
<a href="../components/chat.html">Chat</a>
|
|
324
339
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
325
340
|
<a href="../components/combobox.html">Combobox</a>
|
|
326
341
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -331,6 +346,7 @@
|
|
|
331
346
|
<a href="../components/filter-list.html">Filter List</a>
|
|
332
347
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
333
348
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
349
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
334
350
|
<a href="../components/icon.html">Icon</a>
|
|
335
351
|
<a href="../components/import.html">Import</a>
|
|
336
352
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -355,6 +371,7 @@
|
|
|
355
371
|
<a href="../components/toast.html">Toast</a>
|
|
356
372
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
373
|
<a href="../components/tree.html">Tree</a>
|
|
374
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
375
|
</div>
|
|
359
376
|
|
|
360
377
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -374,9 +391,11 @@
|
|
|
374
391
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
375
392
|
<a href="../utils/object.html">object</a>
|
|
376
393
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
394
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
377
395
|
<a href="../utils/string.html">string</a>
|
|
378
396
|
<a href="../utils/theme.html">theme</a>
|
|
379
397
|
<a href="../utils/type.html">type</a>
|
|
398
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
399
|
<a href="../utils/wait.html">wait</a>
|
|
381
400
|
</div>
|
|
382
401
|
</menu>
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
107
107
|
<k-filter-item filter-keywords="card components"><a
|
|
108
108
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
109
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
110
|
+
href="../components/chat.html"
|
|
111
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
109
112
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
110
113
|
href="../components/code-editor.html"
|
|
111
114
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -134,6 +137,9 @@
|
|
|
134
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
135
138
|
href="../components/html-editor.html">HTML
|
|
136
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
|
+
href="../components/markdown-editor.html"
|
|
142
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
137
143
|
<k-filter-item filter-keywords="icon components"><a
|
|
138
144
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
139
145
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -237,6 +243,9 @@
|
|
|
237
243
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
244
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
245
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
246
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
247
|
+
href="../components/voice-selector.html"
|
|
248
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
240
249
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
250
|
href="../components/shadow-component.html"
|
|
242
251
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -264,12 +273,17 @@
|
|
|
264
273
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
265
274
|
href="../utils/propConverters.html"
|
|
266
275
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
276
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
277
|
+
href="../utils/sanitizeHtml.html"
|
|
278
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
267
279
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
268
280
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
269
281
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
270
282
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
283
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
284
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
285
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
286
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
273
287
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
288
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
289
|
</k-filter-list>
|
|
@@ -322,6 +336,7 @@
|
|
|
322
336
|
<a href="../components/aside.html">Aside</a>
|
|
323
337
|
<a href="../components/calendar.html">Calendar</a>
|
|
324
338
|
<a href="../components/card.html">Card</a>
|
|
339
|
+
<a href="../components/chat.html">Chat</a>
|
|
325
340
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
326
341
|
<a href="../components/combobox.html">Combobox</a>
|
|
327
342
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -332,6 +347,7 @@
|
|
|
332
347
|
<a href="../components/filter-list.html">Filter List</a>
|
|
333
348
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
334
349
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
350
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
335
351
|
<a href="../components/icon.html">Icon</a>
|
|
336
352
|
<a href="../components/import.html">Import</a>
|
|
337
353
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -356,6 +372,7 @@
|
|
|
356
372
|
<a href="../components/toast.html">Toast</a>
|
|
357
373
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
374
|
<a href="../components/tree.html">Tree</a>
|
|
375
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
376
|
</div>
|
|
360
377
|
|
|
361
378
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -375,9 +392,11 @@
|
|
|
375
392
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
376
393
|
<a href="../utils/object.html">object</a>
|
|
377
394
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
395
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
378
396
|
<a href="../utils/string.html">string</a>
|
|
379
397
|
<a href="../utils/theme.html">theme</a>
|
|
380
398
|
<a href="../utils/type.html">type</a>
|
|
399
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
400
|
<a href="../utils/wait.html">wait</a>
|
|
382
401
|
</div>
|
|
383
402
|
</menu>
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
106
106
|
<k-filter-item filter-keywords="card components"><a
|
|
107
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
108
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
109
|
+
href="../components/chat.html"
|
|
110
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
108
111
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
109
112
|
href="../components/code-editor.html"
|
|
110
113
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -133,6 +136,9 @@
|
|
|
133
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
134
137
|
href="../components/html-editor.html">HTML
|
|
135
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
|
+
href="../components/markdown-editor.html"
|
|
141
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
136
142
|
<k-filter-item filter-keywords="icon components"><a
|
|
137
143
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
138
144
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -236,6 +242,9 @@
|
|
|
236
242
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
243
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
244
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
245
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
246
|
+
href="../components/voice-selector.html"
|
|
247
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
239
248
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
249
|
href="../components/shadow-component.html"
|
|
241
250
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,12 +272,17 @@
|
|
|
263
272
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
264
273
|
href="../utils/propConverters.html"
|
|
265
274
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
276
|
+
href="../utils/sanitizeHtml.html"
|
|
277
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
266
278
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
267
279
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
268
280
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
269
281
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
282
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
283
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
284
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
285
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
272
286
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
287
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
288
|
</k-filter-list>
|
|
@@ -321,6 +335,7 @@
|
|
|
321
335
|
<a href="../components/aside.html">Aside</a>
|
|
322
336
|
<a href="../components/calendar.html">Calendar</a>
|
|
323
337
|
<a href="../components/card.html">Card</a>
|
|
338
|
+
<a href="../components/chat.html">Chat</a>
|
|
324
339
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
325
340
|
<a href="../components/combobox.html">Combobox</a>
|
|
326
341
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -331,6 +346,7 @@
|
|
|
331
346
|
<a href="../components/filter-list.html">Filter List</a>
|
|
332
347
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
333
348
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
349
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
334
350
|
<a href="../components/icon.html">Icon</a>
|
|
335
351
|
<a href="../components/import.html">Import</a>
|
|
336
352
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -355,6 +371,7 @@
|
|
|
355
371
|
<a href="../components/toast.html">Toast</a>
|
|
356
372
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
373
|
<a href="../components/tree.html">Tree</a>
|
|
374
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
375
|
</div>
|
|
359
376
|
|
|
360
377
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -374,9 +391,11 @@
|
|
|
374
391
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
375
392
|
<a href="../utils/object.html">object</a>
|
|
376
393
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
394
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
377
395
|
<a href="../utils/string.html">string</a>
|
|
378
396
|
<a href="../utils/theme.html">theme</a>
|
|
379
397
|
<a href="../utils/type.html">type</a>
|
|
398
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
399
|
<a href="../utils/wait.html">wait</a>
|
|
381
400
|
</div>
|
|
382
401
|
</menu>
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
107
107
|
<k-filter-item filter-keywords="card components"><a
|
|
108
108
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
109
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
110
|
+
href="../components/chat.html"
|
|
111
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
109
112
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
110
113
|
href="../components/code-editor.html"
|
|
111
114
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -134,6 +137,9 @@
|
|
|
134
137
|
<k-filter-item filter-keywords="html editor components"><a
|
|
135
138
|
href="../components/html-editor.html">HTML
|
|
136
139
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
140
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
141
|
+
href="../components/markdown-editor.html"
|
|
142
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
137
143
|
<k-filter-item filter-keywords="icon components"><a
|
|
138
144
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
139
145
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -237,6 +243,9 @@
|
|
|
237
243
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
244
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
245
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
246
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
247
|
+
href="../components/voice-selector.html"
|
|
248
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
240
249
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
250
|
href="../components/shadow-component.html"
|
|
242
251
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -264,12 +273,17 @@
|
|
|
264
273
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
265
274
|
href="../utils/propConverters.html"
|
|
266
275
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
276
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
277
|
+
href="../utils/sanitizeHtml.html"
|
|
278
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
267
279
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
268
280
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
269
281
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
270
282
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
283
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
284
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
285
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
286
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
273
287
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
288
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
289
|
</k-filter-list>
|
|
@@ -322,6 +336,7 @@
|
|
|
322
336
|
<a href="../components/aside.html">Aside</a>
|
|
323
337
|
<a href="../components/calendar.html">Calendar</a>
|
|
324
338
|
<a href="../components/card.html">Card</a>
|
|
339
|
+
<a href="../components/chat.html">Chat</a>
|
|
325
340
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
326
341
|
<a href="../components/combobox.html">Combobox</a>
|
|
327
342
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -332,6 +347,7 @@
|
|
|
332
347
|
<a href="../components/filter-list.html">Filter List</a>
|
|
333
348
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
334
349
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
350
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
335
351
|
<a href="../components/icon.html">Icon</a>
|
|
336
352
|
<a href="../components/import.html">Import</a>
|
|
337
353
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -356,6 +372,7 @@
|
|
|
356
372
|
<a href="../components/toast.html">Toast</a>
|
|
357
373
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
374
|
<a href="../components/tree.html">Tree</a>
|
|
375
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
376
|
</div>
|
|
360
377
|
|
|
361
378
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -375,9 +392,11 @@
|
|
|
375
392
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
376
393
|
<a href="../utils/object.html">object</a>
|
|
377
394
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
395
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
378
396
|
<a href="../utils/string.html">string</a>
|
|
379
397
|
<a href="../utils/theme.html">theme</a>
|
|
380
398
|
<a href="../utils/type.html">type</a>
|
|
399
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
400
|
<a href="../utils/wait.html">wait</a>
|
|
382
401
|
</div>
|
|
383
402
|
</menu>
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
106
106
|
<k-filter-item filter-keywords="card components"><a
|
|
107
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
108
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
109
|
+
href="../components/chat.html"
|
|
110
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
108
111
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
109
112
|
href="../components/code-editor.html"
|
|
110
113
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -133,6 +136,9 @@
|
|
|
133
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
134
137
|
href="../components/html-editor.html">HTML
|
|
135
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
|
+
href="../components/markdown-editor.html"
|
|
141
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
136
142
|
<k-filter-item filter-keywords="icon components"><a
|
|
137
143
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
138
144
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -236,6 +242,9 @@
|
|
|
236
242
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
243
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
244
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
245
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
246
|
+
href="../components/voice-selector.html"
|
|
247
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
239
248
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
249
|
href="../components/shadow-component.html"
|
|
241
250
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,12 +272,17 @@
|
|
|
263
272
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
264
273
|
href="../utils/propConverters.html"
|
|
265
274
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
276
|
+
href="../utils/sanitizeHtml.html"
|
|
277
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
266
278
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
267
279
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
268
280
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
269
281
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
282
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
283
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
284
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
285
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
272
286
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
287
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
288
|
</k-filter-list>
|
|
@@ -321,6 +335,7 @@
|
|
|
321
335
|
<a href="../components/aside.html">Aside</a>
|
|
322
336
|
<a href="../components/calendar.html">Calendar</a>
|
|
323
337
|
<a href="../components/card.html">Card</a>
|
|
338
|
+
<a href="../components/chat.html">Chat</a>
|
|
324
339
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
325
340
|
<a href="../components/combobox.html">Combobox</a>
|
|
326
341
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -331,6 +346,7 @@
|
|
|
331
346
|
<a href="../components/filter-list.html">Filter List</a>
|
|
332
347
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
333
348
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
349
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
334
350
|
<a href="../components/icon.html">Icon</a>
|
|
335
351
|
<a href="../components/import.html">Import</a>
|
|
336
352
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -355,6 +371,7 @@
|
|
|
355
371
|
<a href="../components/toast.html">Toast</a>
|
|
356
372
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
373
|
<a href="../components/tree.html">Tree</a>
|
|
374
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
375
|
</div>
|
|
359
376
|
|
|
360
377
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -374,9 +391,11 @@
|
|
|
374
391
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
375
392
|
<a href="../utils/object.html">object</a>
|
|
376
393
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
394
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
377
395
|
<a href="../utils/string.html">string</a>
|
|
378
396
|
<a href="../utils/theme.html">theme</a>
|
|
379
397
|
<a href="../utils/type.html">type</a>
|
|
398
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
399
|
<a href="../utils/wait.html">wait</a>
|
|
381
400
|
</div>
|
|
382
401
|
</menu>
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
106
106
|
<k-filter-item filter-keywords="card components"><a
|
|
107
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
108
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
109
|
+
href="../components/chat.html"
|
|
110
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
108
111
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
109
112
|
href="../components/code-editor.html"
|
|
110
113
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -133,6 +136,9 @@
|
|
|
133
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
134
137
|
href="../components/html-editor.html">HTML
|
|
135
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
|
+
href="../components/markdown-editor.html"
|
|
141
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
136
142
|
<k-filter-item filter-keywords="icon components"><a
|
|
137
143
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
138
144
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -236,6 +242,9 @@
|
|
|
236
242
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
243
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
244
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
245
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
246
|
+
href="../components/voice-selector.html"
|
|
247
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
239
248
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
249
|
href="../components/shadow-component.html"
|
|
241
250
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,12 +272,17 @@
|
|
|
263
272
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
264
273
|
href="../utils/propConverters.html"
|
|
265
274
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
276
|
+
href="../utils/sanitizeHtml.html"
|
|
277
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
266
278
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
267
279
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
268
280
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
269
281
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
282
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
283
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
284
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
285
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
272
286
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
287
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
288
|
</k-filter-list>
|
|
@@ -321,6 +335,7 @@
|
|
|
321
335
|
<a href="../components/aside.html">Aside</a>
|
|
322
336
|
<a href="../components/calendar.html">Calendar</a>
|
|
323
337
|
<a href="../components/card.html">Card</a>
|
|
338
|
+
<a href="../components/chat.html">Chat</a>
|
|
324
339
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
325
340
|
<a href="../components/combobox.html">Combobox</a>
|
|
326
341
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -331,6 +346,7 @@
|
|
|
331
346
|
<a href="../components/filter-list.html">Filter List</a>
|
|
332
347
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
333
348
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
349
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
334
350
|
<a href="../components/icon.html">Icon</a>
|
|
335
351
|
<a href="../components/import.html">Import</a>
|
|
336
352
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -355,6 +371,7 @@
|
|
|
355
371
|
<a href="../components/toast.html">Toast</a>
|
|
356
372
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
373
|
<a href="../components/tree.html">Tree</a>
|
|
374
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
375
|
</div>
|
|
359
376
|
|
|
360
377
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -374,9 +391,11 @@
|
|
|
374
391
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
375
392
|
<a href="../utils/object.html">object</a>
|
|
376
393
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
394
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
377
395
|
<a href="../utils/string.html">string</a>
|
|
378
396
|
<a href="../utils/theme.html">theme</a>
|
|
379
397
|
<a href="../utils/type.html">type</a>
|
|
398
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
399
|
<a href="../utils/wait.html">wait</a>
|
|
381
400
|
</div>
|
|
382
401
|
</menu>
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
106
106
|
<k-filter-item filter-keywords="card components"><a
|
|
107
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
108
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
109
|
+
href="../components/chat.html"
|
|
110
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
108
111
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
109
112
|
href="../components/code-editor.html"
|
|
110
113
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -133,6 +136,9 @@
|
|
|
133
136
|
<k-filter-item filter-keywords="html editor components"><a
|
|
134
137
|
href="../components/html-editor.html">HTML
|
|
135
138
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
139
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
140
|
+
href="../components/markdown-editor.html"
|
|
141
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
136
142
|
<k-filter-item filter-keywords="icon components"><a
|
|
137
143
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
138
144
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -236,6 +242,9 @@
|
|
|
236
242
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
243
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
244
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
245
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
246
|
+
href="../components/voice-selector.html"
|
|
247
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
239
248
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
249
|
href="../components/shadow-component.html"
|
|
241
250
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,12 +272,17 @@
|
|
|
263
272
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
264
273
|
href="../utils/propConverters.html"
|
|
265
274
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
276
|
+
href="../utils/sanitizeHtml.html"
|
|
277
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
266
278
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
267
279
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
268
280
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
269
281
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
282
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
283
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
284
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
285
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
272
286
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
287
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
288
|
</k-filter-list>
|
|
@@ -321,6 +335,7 @@
|
|
|
321
335
|
<a href="../components/aside.html">Aside</a>
|
|
322
336
|
<a href="../components/calendar.html">Calendar</a>
|
|
323
337
|
<a href="../components/card.html">Card</a>
|
|
338
|
+
<a href="../components/chat.html">Chat</a>
|
|
324
339
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
325
340
|
<a href="../components/combobox.html">Combobox</a>
|
|
326
341
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -331,6 +346,7 @@
|
|
|
331
346
|
<a href="../components/filter-list.html">Filter List</a>
|
|
332
347
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
333
348
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
349
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
334
350
|
<a href="../components/icon.html">Icon</a>
|
|
335
351
|
<a href="../components/import.html">Import</a>
|
|
336
352
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -355,6 +371,7 @@
|
|
|
355
371
|
<a href="../components/toast.html">Toast</a>
|
|
356
372
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
373
|
<a href="../components/tree.html">Tree</a>
|
|
374
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
375
|
</div>
|
|
359
376
|
|
|
360
377
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -374,9 +391,11 @@
|
|
|
374
391
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
375
392
|
<a href="../utils/object.html">object</a>
|
|
376
393
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
394
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
377
395
|
<a href="../utils/string.html">string</a>
|
|
378
396
|
<a href="../utils/theme.html">theme</a>
|
|
379
397
|
<a href="../utils/type.html">type</a>
|
|
398
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
399
|
<a href="../utils/wait.html">wait</a>
|
|
381
400
|
</div>
|
|
382
401
|
</menu>
|