kempo-ui 0.4.6 → 0.4.8
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/CHANGELOG.md +11 -0
- package/dist/components/Markdown.js +1 -0
- package/dist/components/Timestamp.js +1 -1
- package/dist/utils/formatTimestamp.js +1 -1
- package/docs/components/accordion.html +4 -0
- package/docs/components/aside.html +4 -0
- package/docs/components/calendar.html +4 -0
- package/docs/components/card.html +4 -0
- package/docs/components/chat.html +4 -0
- package/docs/components/code-editor.html +4 -0
- package/docs/components/color-picker.html +4 -0
- package/docs/components/combobox.html +4 -0
- package/docs/components/content-slider.html +4 -0
- package/docs/components/context.html +4 -0
- package/docs/components/dialog.html +4 -0
- package/docs/components/dropdown.html +4 -0
- package/docs/components/filter-list.html +4 -0
- package/docs/components/focus-capture.html +4 -0
- package/docs/components/html-editor.html +4 -0
- package/docs/components/hybrid-component.html +4 -0
- package/docs/components/icon.html +4 -0
- package/docs/components/import.html +4 -0
- package/docs/components/light-component.html +4 -0
- package/docs/components/markdown-editor.html +4 -0
- package/docs/components/markdown.html +650 -0
- package/docs/components/nav-spacer.html +4 -0
- package/docs/components/nav.html +4 -0
- package/docs/components/photo-viewer.html +4 -0
- package/docs/components/progress.html +4 -0
- package/docs/components/resize.html +4 -0
- package/docs/components/shadow-component.html +4 -0
- package/docs/components/show-more.html +4 -0
- package/docs/components/slider.html +4 -0
- package/docs/components/sortable.html +4 -0
- package/docs/components/speech-to-text.html +4 -0
- package/docs/components/spinner.html +4 -0
- package/docs/components/split.html +4 -0
- package/docs/components/table.html +4 -0
- package/docs/components/tableControls.html +4 -0
- package/docs/components/tableCustomFields.html +4 -0
- package/docs/components/tableFetchRecords.html +4 -0
- package/docs/components/tableFieldSortHide.html +4 -0
- package/docs/components/tablePagination.html +4 -0
- package/docs/components/tablePlaceholder.html +4 -0
- package/docs/components/tableRecordEditing.html +4 -0
- package/docs/components/tableRecordFiltering.html +4 -0
- package/docs/components/tableRecordHiding.html +4 -0
- package/docs/components/tableRecordSearching.html +4 -0
- package/docs/components/tableRecordSelection.html +4 -0
- package/docs/components/tableRowControls.html +4 -0
- package/docs/components/tableServerSync.html +4 -0
- package/docs/components/tableSorting.html +4 -0
- package/docs/components/tabs.html +4 -0
- package/docs/components/tags.html +4 -0
- package/docs/components/text-to-speech.html +4 -0
- package/docs/components/theme-select.html +4 -0
- package/docs/components/theme-switcher.html +4 -0
- package/docs/components/time.html +4 -0
- package/docs/components/timestamp.html +4 -0
- package/docs/components/toast.html +4 -0
- package/docs/components/toggle.html +4 -0
- package/docs/components/tree.html +4 -0
- package/docs/components/voice-selector.html +4 -0
- package/docs/index.html +10 -0
- package/docs/src/components/Markdown.js +1 -0
- package/docs/src/components/Timestamp.js +1 -1
- package/docs/src/utils/formatTimestamp.js +1 -1
- package/docs/utils/context.html +4 -0
- package/docs/utils/cookie.html +4 -0
- package/docs/utils/debounce.html +4 -0
- package/docs/utils/drag.html +4 -0
- package/docs/utils/elevation.html +4 -0
- package/docs/utils/formatTimestamp.html +4 -0
- package/docs/utils/object.html +4 -0
- package/docs/utils/propConverters.html +4 -0
- package/docs/utils/sanitizeHtml.html +4 -0
- package/docs/utils/string.html +4 -0
- package/docs/utils/theme.html +4 -0
- package/docs/utils/toTitleCase.html +4 -0
- package/docs/utils/type.html +4 -0
- package/docs/utils/voice.html +4 -0
- package/docs/utils/wait.html +4 -0
- package/docs-src/components/markdown.page.html +161 -0
- package/docs-src/index.page.html +6 -0
- package/docs-src/nav.fragment.html +4 -0
- package/llms.txt +1 -0
- package/package.json +1 -1
- package/src/components/Markdown.js +125 -0
- package/src/components/Timestamp.js +3 -3
- package/src/utils/formatTimestamp.js +2 -1
- package/tests/components/Markdown.browser-test.js +292 -0
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/index.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="./components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="./components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="./components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="./components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="./components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="./components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="./components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="./components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="./components/icon.html">Icon</a>
|
|
313
317
|
<a href="./components/import.html">Import</a>
|
|
@@ -603,6 +607,12 @@
|
|
|
603
607
|
<p class="tc-muted">WYSIWYG editor with formatting tools and dual editing modes.</p>
|
|
604
608
|
</a>
|
|
605
609
|
</div>
|
|
610
|
+
<div class="span-12 t-span-6 d-span-4 px">
|
|
611
|
+
<a href="./components/markdown.html" class="card mb no-link d-b">
|
|
612
|
+
<h3 class="tc-primary">Markdown</h3>
|
|
613
|
+
<p class="tc-muted">Renders the markdown text inside the element as sanitized HTML in place.</p>
|
|
614
|
+
</a>
|
|
615
|
+
</div>
|
|
606
616
|
<div class="span-12 t-span-6 d-span-4 px">
|
|
607
617
|
<a href="./components/markdown-editor.html" class="card mb no-link d-b">
|
|
608
618
|
<h3 class="tc-primary">Markdown Editor</h3>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{html as t,unsafeHTML as e}from"../lit-all.min.js";import s from"./LightComponent.js";import l from"../utils/renderMarkdown.js";import r,{STRIP_COMPLETELY as i}from"../utils/sanitizeHtml.js";export default class a extends s{static properties={value:{type:String},breaks:{type:Boolean,reflect:!0},allowedTags:{type:String,reflect:!0,attribute:"allowed-tags"},disallowedTags:{type:String,reflect:!0,attribute:"disallowed-tags"},scriptsEnabled:{type:Boolean,reflect:!0,attribute:"scripts-enabled"}};#t=!1;constructor(){super(),this.value="",this.breaks=!1,this.allowedTags="",this.disallowedTags="",this.scriptsEnabled=!1}connectedCallback(){if(!this.#t){this.#t=!0;const t=this.textContent||"",e=o(t);for(;this.firstChild;)this.removeChild(this.firstChild);this.hasAttribute("value")||this.value||!e||(this.value=e)}super.connectedCallback()}get renderedHtml(){const t={},e=this.#e;if(e&&(t.allowedTags=e),this.scriptsEnabled){const e=new Set(i);e.delete("SCRIPT"),t.stripCompletely=e}return r(l(this.value||"",{breaks:this.breaks}),t)}get#e(){const t=(this.allowedTags||"").trim(),e=(this.disallowedTags||"").trim();if(t&&e&&console.warn("[k-markdown] `allowed-tags` and `disallowed-tags` are mutually exclusive; using `allowed-tags`."),t)return"*"===t?{has:()=>!0}:new Set(t.split(",").map(t=>t.trim().toUpperCase()).filter(Boolean));if(e){const t=new Set(e.split(",").map(t=>t.trim().toUpperCase()).filter(Boolean));return{has:e=>!t.has(e)}}return null}renderLightDom(){return this.value?t`${e(this.renderedHtml)}`:t``}}const o=t=>{const e=t.split("\n");for(;e.length&&""===e[0].trim();)e.shift();for(;e.length&&""===e[e.length-1].trim();)e.pop();if(!e.length)return"";let s=1/0;for(const t of e){if(0===t.trim().length)continue;const e=t.match(/^(\s*)/),l=e?e[1].length:0;l<s&&(s=l)}return s===1/0&&(s=0),e.map(t=>t.slice(s)).join("\n")};customElements.define("k-markdown",a);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{html as t}from"../lit-all.min.js";import e from"./ShadowComponent.js";import s from"../utils/formatTimestamp.js";export default class
|
|
1
|
+
import{html as t}from"../lit-all.min.js";import e from"./ShadowComponent.js";import s from"../utils/formatTimestamp.js";export default class i extends e{static properties={timestamp:{type:String,reflect:!0},format:{type:String,reflect:!0},locale:{type:String,reflect:!0}};constructor(){super(),this.timestamp="",this.format="",this.locale=""}render(){const e=this.timestamp?s(this.timestamp,this.format,this.locale||navigator.language):"";return t`<span>${e}</span>`}}window.customElements.define("k-timestamp",i);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default(e,i,t)=>{const s=
|
|
1
|
+
export default(e,i,t)=>{const s=isNaN(e)?Date.parse(e):parseInt(e),l=new Date(s);if(i){const e=(e,i)=>("000"+e).slice(-1*i),t={YYYY:l.getFullYear(),YY:String(l.getFullYear()).slice(-2),MM:e(l.getMonth()+1,2),M:l.getMonth()+1,DD:e(l.getDate(),2),D:l.getDate(),hh:e(l.getHours(),2),h:l.getHours(),mm:e(l.getMinutes(),2),m:l.getMinutes(),ss:e(l.getSeconds(),2),s:l.getSeconds(),iiii:e(l.getMilliseconds(),3),iii:e(l.getMilliseconds(),3),ii:e(l.getMilliseconds(),2),i:l.getMilliseconds()};return i.replace(/YYYY|YY|MM|M|DD|D|hh|h|mm|m|ss|s|iiii|iii|ii|i/g,e=>t[e])}return l.toLocaleString(t||Intl.DateTimeFormat().resolvedOptions().locale)};
|
package/docs/utils/context.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/cookie.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/debounce.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/drag.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/object.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/string.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/theme.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/type.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/voice.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|
package/docs/utils/wait.html
CHANGED
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<k-filter-item filter-keywords="html editor components"><a
|
|
99
99
|
href="../components/html-editor.html">HTML
|
|
100
100
|
Editor<br><small>Component</small></a></k-filter-item>
|
|
101
|
+
<k-filter-item filter-keywords="markdown render parser marked gfm components"><a
|
|
102
|
+
href="../components/markdown.html"
|
|
103
|
+
>Markdown<br><small>Component</small></a></k-filter-item>
|
|
101
104
|
<k-filter-item filter-keywords="markdown editor markdowneditor write preview marked gfm tables components"><a
|
|
102
105
|
href="../components/markdown-editor.html"
|
|
103
106
|
>Markdown Editor<br><small>Component</small></a></k-filter-item>
|
|
@@ -308,6 +311,7 @@
|
|
|
308
311
|
<a href="../components/filter-list.html">Filter List</a>
|
|
309
312
|
<a href="../components/focus-capture.html">FocusCapture</a>
|
|
310
313
|
<a href="../components/html-editor.html">HTML Editor</a>
|
|
314
|
+
<a href="../components/markdown.html">Markdown</a>
|
|
311
315
|
<a href="../components/markdown-editor.html">Markdown Editor</a>
|
|
312
316
|
<a href="../components/icon.html">Icon</a>
|
|
313
317
|
<a href="../components/import.html">Import</a>
|