kempo-ui 0.4.5 → 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/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/docs/components/accordion.html +12 -0
- package/docs/components/aside.html +12 -0
- package/docs/components/calendar.html +12 -0
- package/docs/components/card.html +12 -0
- package/docs/components/chat.html +715 -0
- package/docs/components/code-editor.html +48 -0
- package/docs/components/color-picker.html +12 -0
- package/docs/components/combobox.html +12 -0
- package/docs/components/content-slider.html +12 -0
- package/docs/components/context.html +12 -0
- package/docs/components/dialog.html +12 -0
- package/docs/components/dropdown.html +12 -0
- package/docs/components/filter-list.html +12 -0
- package/docs/components/focus-capture.html +12 -0
- package/docs/components/html-editor.html +53 -0
- package/docs/components/hybrid-component.html +12 -0
- package/docs/components/icon.html +12 -0
- package/docs/components/import.html +12 -0
- package/docs/components/light-component.html +12 -0
- package/docs/components/markdown-editor.html +924 -0
- package/docs/components/nav-spacer.html +12 -0
- package/docs/components/nav.html +12 -0
- package/docs/components/photo-viewer.html +12 -0
- package/docs/components/progress.html +12 -0
- package/docs/components/resize.html +15 -0
- package/docs/components/rich-textarea.html +650 -0
- package/docs/components/shadow-component.html +12 -0
- package/docs/components/show-more.html +12 -0
- package/docs/components/slider.html +12 -0
- package/docs/components/sortable.html +12 -0
- package/docs/components/speech-to-text.html +12 -0
- package/docs/components/spinner.html +12 -0
- package/docs/components/split.html +12 -0
- package/docs/components/table.html +12 -0
- package/docs/components/tableControls.html +12 -0
- package/docs/components/tableCustomFields.html +12 -0
- package/docs/components/tableFetchRecords.html +12 -0
- package/docs/components/tableFieldSortHide.html +12 -0
- package/docs/components/tablePagination.html +12 -0
- package/docs/components/tablePlaceholder.html +12 -0
- package/docs/components/tableRecordEditing.html +12 -0
- package/docs/components/tableRecordFiltering.html +12 -0
- package/docs/components/tableRecordHiding.html +12 -0
- package/docs/components/tableRecordSearching.html +12 -0
- package/docs/components/tableRecordSelection.html +12 -0
- package/docs/components/tableRowControls.html +12 -0
- package/docs/components/tableServerSync.html +12 -0
- package/docs/components/tableSorting.html +12 -0
- package/docs/components/tabs.html +12 -0
- package/docs/components/tags.html +12 -0
- package/docs/components/text-to-speech.html +12 -0
- package/docs/components/theme-select.html +12 -0
- package/docs/components/theme-switcher.html +12 -0
- package/docs/components/time.html +12 -0
- package/docs/components/timestamp.html +12 -0
- package/docs/components/toast.html +12 -0
- package/docs/components/toggle.html +12 -0
- package/docs/components/tree.html +12 -0
- package/docs/components/voice-selector.html +12 -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 +30 -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/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/utils/context.html +12 -0
- package/docs/utils/cookie.html +12 -0
- package/docs/utils/debounce.html +12 -0
- package/docs/utils/drag.html +12 -0
- package/docs/utils/elevation.html +16 -10
- package/docs/utils/formatTimestamp.html +12 -0
- package/docs/utils/object.html +12 -0
- package/docs/utils/propConverters.html +12 -0
- package/docs/utils/sanitizeHtml.html +555 -0
- package/docs/utils/string.html +12 -0
- package/docs/utils/theme.html +12 -0
- package/docs/utils/toTitleCase.html +12 -0
- package/docs/utils/type.html +12 -0
- package/docs/utils/voice.html +12 -0
- package/docs/utils/wait.html +12 -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/index.page.html +18 -0
- package/docs-src/nav.fragment.html +12 -0
- package/docs-src/utils/elevation.page.html +4 -10
- package/docs-src/utils/sanitizeHtml.page.html +73 -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 +5 -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/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/tests/components/Chat.browser-test.js +540 -0
- package/tests/utils/sanitizeHtml.browser-test.js +179 -0
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -478,6 +490,7 @@
|
|
|
478
490
|
<a href="#controlsExample">Built-in Controls</a><br />
|
|
479
491
|
<a href="#customControls">Custom Controls</a><br />
|
|
480
492
|
<a href="#height">Setting Height</a><br />
|
|
493
|
+
<a href="#disabled">Disabled / Read-only</a><br />
|
|
481
494
|
<a href="#jsApi">JavaScript API</a><br />
|
|
482
495
|
|
|
483
496
|
<h6 class="mt"><a href="#jsRef" class="no-link">JavaScript Reference</a></h6>
|
|
@@ -569,6 +582,38 @@ console.log(x);"></k-code-editor>
|
|
|
569
582
|
</div>
|
|
570
583
|
</div>
|
|
571
584
|
|
|
585
|
+
<h3 id="disabled"><a href="#disabled" class="no-link">Disabled / Read-only</a></h3>
|
|
586
|
+
<p>The <code>disabled</code> attribute makes the editor non-interactive (Monaco is set to <code>readOnly</code>), mutes the toolbar, fades the host, and excludes the field from form submission. The <code>readonly</code> attribute lets the user select and copy text but not edit; the value is still submitted with the form.</p>
|
|
587
|
+
<div class="row -mx">
|
|
588
|
+
<div class="col m-span-12 px">
|
|
589
|
+
<k-card label="HTML">
|
|
590
|
+
<pre><code class="hljs xml"><span class="hljs-tag"><<span class="hljs-name">k-code-editor</span> <span class="hljs-attr">disabled</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"..."</span>></span><span class="hljs-tag"></<span class="hljs-name">k-code-editor</span>></span><br><span class="hljs-tag"><<span class="hljs-name">k-code-editor</span> <span class="hljs-attr">readonly</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"..."</span>></span><span class="hljs-tag"></<span class="hljs-name">k-code-editor</span>></span></code></pre>
|
|
591
|
+
</k-card>
|
|
592
|
+
</div>
|
|
593
|
+
<div class="col m-span-12 px">
|
|
594
|
+
<k-card label="Output">
|
|
595
|
+
<k-code-editor
|
|
596
|
+
disabled
|
|
597
|
+
language="javascript"
|
|
598
|
+
class="b r mb"
|
|
599
|
+
style="height: 160px"
|
|
600
|
+
value="// This editor is disabled — toolbar is muted, content is locked.
|
|
601
|
+
const x = 42;
|
|
602
|
+
console.log(x);"
|
|
603
|
+
></k-code-editor>
|
|
604
|
+
<k-code-editor
|
|
605
|
+
readonly
|
|
606
|
+
language="javascript"
|
|
607
|
+
class="b r"
|
|
608
|
+
style="height: 160px"
|
|
609
|
+
value="// This editor is read-only — select and copy, just not edit.
|
|
610
|
+
const x = 42;
|
|
611
|
+
console.log(x);"
|
|
612
|
+
></k-code-editor>
|
|
613
|
+
</k-card>
|
|
614
|
+
</div>
|
|
615
|
+
</div>
|
|
616
|
+
|
|
572
617
|
<h3 id="jsApi"><a href="#jsApi" class="no-link">JavaScript API</a></h3>
|
|
573
618
|
<p>Interact with the editor programmatically:</p>
|
|
574
619
|
<div class="row -mx">
|
|
@@ -596,6 +641,9 @@ console.log(x);"></k-code-editor>
|
|
|
596
641
|
<tr><td><code>controls</code></td><td><code>controls</code></td><td>String</td><td><code>''</code></td><td>Set to <code>'full'</code> for built-in toolbar; <code>'none'</code> or empty for no built-in controls</td></tr>
|
|
597
642
|
<tr><td><code>monacoSrc</code></td><td><code>monaco-src</code></td><td>String</td><td><code>''</code></td><td>Custom Monaco CDN base URL</td></tr>
|
|
598
643
|
<tr><td><code>editorTheme</code></td><td><code>editor-theme</code></td><td>String</td><td><code>'auto'</code></td><td>Theme override: <code>'auto'</code> (matches site theme), <code>'light'</code>, or <code>'dark'</code></td></tr>
|
|
644
|
+
<tr><td><code>disabled</code></td><td><code>disabled</code></td><td>Boolean</td><td><code>false</code></td><td>Editor is non-interactive (Monaco set to <code>readOnly</code>), toolbar is muted, host fades, and the field is excluded from form submission</td></tr>
|
|
645
|
+
<tr><td><code>readonly</code></td><td><code>readonly</code></td><td>Boolean</td><td><code>false</code></td><td>User can select and copy text but not edit (Monaco set to <code>readOnly</code>); value still submitted with the form</td></tr>
|
|
646
|
+
<tr><td><code>required</code></td><td><code>required</code></td><td>Boolean</td><td><code>false</code></td><td>When <code>true</code> and the editor is empty, the element reports a <code>valueMissing</code> validity error</td></tr>
|
|
599
647
|
</tbody>
|
|
600
648
|
</table>
|
|
601
649
|
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
68
68
|
<k-filter-item filter-keywords="card components"><a
|
|
69
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
70
|
+
<k-filter-item filter-keywords="chat message conversation messaging components"><a
|
|
71
|
+
href="../components/chat.html"
|
|
72
|
+
>Chat<br><small>Component</small></a></k-filter-item>
|
|
70
73
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
71
74
|
href="../components/code-editor.html"
|
|
72
75
|
>Code Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -95,6 +98,9 @@
|
|
|
95
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
96
99
|
href="../components/html-editor.html">HTML
|
|
97
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
|
+
href="../components/markdown-editor.html"
|
|
103
|
+
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
98
104
|
<k-filter-item filter-keywords="icon components"><a
|
|
99
105
|
href="../components/icon.html">Icon<br><small>Component</small></a></k-filter-item>
|
|
100
106
|
<k-filter-item filter-keywords="import components"><a
|
|
@@ -228,6 +234,9 @@
|
|
|
228
234
|
<k-filter-item filter-keywords="propconverters prop converters utils utility"><a
|
|
229
235
|
href="../utils/propConverters.html"
|
|
230
236
|
>propConverters<br><small>Utility</small></a></k-filter-item>
|
|
237
|
+
<k-filter-item filter-keywords="sanitizehtml sanitize html xss security utils utility"><a
|
|
238
|
+
href="../utils/sanitizeHtml.html"
|
|
239
|
+
>sanitizeHtml<br><small>Utility</small></a></k-filter-item>
|
|
231
240
|
<k-filter-item filter-keywords="string utils utility"><a
|
|
232
241
|
href="../utils/string.html">string<br><small>Utility</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="theme utils utility"><a
|
|
@@ -288,6 +297,7 @@
|
|
|
288
297
|
<a href="../components/aside.html">Aside</a>
|
|
289
298
|
<a href="../components/calendar.html">Calendar</a>
|
|
290
299
|
<a href="../components/card.html">Card</a>
|
|
300
|
+
<a href="../components/chat.html">Chat</a>
|
|
291
301
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
292
302
|
<a href="../components/combobox.html">Combobox</a>
|
|
293
303
|
<a href="../components/color-picker.html">ColorPicker</a>
|
|
@@ -298,6 +308,7 @@
|
|
|
298
308
|
<a href="../components/filter-list.html">Filter List</a>
|
|
299
309
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
300
310
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
311
|
+
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
301
312
|
<a href="../components/icon.html">Icon</a>
|
|
302
313
|
<a href="../components/import.html">Import</a>
|
|
303
314
|
<a href="../components/nav.html">Nav</a>
|
|
@@ -342,6 +353,7 @@
|
|
|
342
353
|
<a href="../utils/formatTimestamp.html">formatTimestamp</a>
|
|
343
354
|
<a href="../utils/object.html">object</a>
|
|
344
355
|
<a href="../utils/propConverters.html">propConverters</a>
|
|
356
|
+
<a href="../utils/sanitizeHtml.html">sanitizeHtml</a>
|
|
345
357
|
<a href="../utils/string.html">string</a>
|
|
346
358
|
<a href="../utils/theme.html">theme</a>
|
|
347
359
|
<a href="../utils/type.html">type</a>
|