kempo-ui 0.4.25 → 0.4.27
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/Context.js +1 -1
- package/dist/utils/closestAcrossShadow.js +1 -0
- package/docs/components/accordion.html +3 -0
- package/docs/components/aside.html +3 -0
- package/docs/components/button.html +3 -0
- package/docs/components/calendar.html +3 -0
- package/docs/components/card.html +3 -0
- package/docs/components/chat.html +3 -0
- package/docs/components/code-editor.html +3 -0
- package/docs/components/color-picker.html +3 -0
- package/docs/components/combobox.html +3 -0
- package/docs/components/content-slider.html +3 -0
- package/docs/components/context.html +20 -0
- package/docs/components/dialog.html +3 -0
- package/docs/components/dropdown.html +3 -0
- package/docs/components/filter-list.html +3 -0
- package/docs/components/focus-capture.html +3 -0
- package/docs/components/html-editor.html +3 -0
- package/docs/components/hybrid-component.html +3 -0
- package/docs/components/icon.html +3 -0
- package/docs/components/import.html +3 -0
- package/docs/components/light-component.html +3 -0
- package/docs/components/markdown-editor.html +3 -0
- package/docs/components/markdown.html +3 -0
- package/docs/components/nav-spacer.html +3 -0
- package/docs/components/nav.html +3 -0
- package/docs/components/pagination.html +3 -0
- package/docs/components/photo-viewer.html +3 -0
- package/docs/components/progress.html +3 -0
- package/docs/components/resize.html +3 -0
- package/docs/components/segmented-control.html +3 -0
- package/docs/components/shadow-component.html +3 -0
- package/docs/components/show-more.html +3 -0
- package/docs/components/slider.html +3 -0
- package/docs/components/sortable.html +3 -0
- package/docs/components/speech-to-text.html +3 -0
- package/docs/components/spinner.html +3 -0
- package/docs/components/split.html +3 -0
- package/docs/components/table.html +3 -0
- package/docs/components/tableControls.html +3 -0
- package/docs/components/tableCustomFields.html +3 -0
- package/docs/components/tableFetchRecords.html +3 -0
- package/docs/components/tableFieldSortHide.html +3 -0
- package/docs/components/tablePagination.html +3 -0
- package/docs/components/tablePlaceholder.html +3 -0
- package/docs/components/tableRecordEditing.html +3 -0
- package/docs/components/tableRecordFiltering.html +3 -0
- package/docs/components/tableRecordHiding.html +3 -0
- package/docs/components/tableRecordSearching.html +3 -0
- package/docs/components/tableRecordSelection.html +3 -0
- package/docs/components/tableRowControls.html +3 -0
- package/docs/components/tableServerSync.html +3 -0
- package/docs/components/tableSorting.html +3 -0
- package/docs/components/tabs.html +3 -0
- package/docs/components/tags.html +3 -0
- package/docs/components/text-to-speech.html +3 -0
- package/docs/components/theme-select.html +3 -0
- package/docs/components/theme-switcher.html +3 -0
- package/docs/components/time.html +3 -0
- package/docs/components/timestamp.html +3 -0
- package/docs/components/toast.html +3 -0
- package/docs/components/toggle.html +3 -0
- package/docs/components/tree.html +3 -0
- package/docs/components/voice-selector.html +3 -0
- package/docs/index.html +3 -0
- package/docs/src/components/Context.js +1 -1
- package/docs/src/utils/closestAcrossShadow.js +1 -0
- package/docs/utils/closestAcrossShadow.html +549 -0
- package/docs/utils/context.html +3 -0
- package/docs/utils/cookie.html +3 -0
- package/docs/utils/debounce.html +3 -0
- package/docs/utils/drag.html +3 -0
- package/docs/utils/elevation.html +3 -0
- package/docs/utils/formatTimestamp.html +3 -0
- package/docs/utils/object.html +3 -0
- package/docs/utils/propConverters.html +3 -0
- package/docs/utils/sanitizeHtml.html +3 -0
- package/docs/utils/string.html +3 -0
- package/docs/utils/theme.html +3 -0
- package/docs/utils/toTitleCase.html +3 -0
- package/docs/utils/type.html +3 -0
- package/docs/utils/voice.html +3 -0
- package/docs/utils/wait.html +3 -0
- package/docs-src/components/context.page.html +17 -0
- package/docs-src/nav.fragment.html +3 -0
- package/docs-src/utils/closestAcrossShadow.page.html +49 -0
- package/package.json +1 -1
- package/src/components/Context.js +44 -1
- package/src/utils/closestAcrossShadow.js +23 -0
- package/tests/components/Context.browser-test.js +74 -0
- package/tests/utils/closestAcrossShadow.browser-test.js +90 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{html as t}from"../lit-all.min.js";import e from"./LightComponent.js";export default class
|
|
1
|
+
import{html as t}from"../lit-all.min.js";import e from"./LightComponent.js";const s=Symbol("persist");export default class i extends e{static properties={data:{type:String,reflect:!0},persistentId:{type:String,reflect:!0,attribute:"persistent-id"}};constructor(){super(),this[s]=()=>{if(this.persistentId&&window?.localStorage)try{window.localStorage.setItem(`context-persistent-id-${this.persistentId}`,this.data)}catch{}},this.data="{}",this.persistentId=null}connectedCallback(){if(super.connectedCallback(),this.style.display="contents",this.persistentId&&window?.localStorage){const t=window.localStorage.getItem(`context-persistent-id-${this.persistentId}`);t&&(this.data=t)}}set(t,e){const i=JSON.parse(this.data||"{}"),a=!(t in i),n=i[t];i[t]=e,this.data=JSON.stringify(i),this[s](),this.dispatchEvent(new CustomEvent(a?"context:create":"context:set",{detail:a?{key:t,value:e}:{key:t,value:e,oldValue:n},bubbles:!0,composed:!0}))}get(t){return JSON.parse(this.data||"{}")[t]}has(t){return t in JSON.parse(this.data||"{}")}delete(t){const e=JSON.parse(this.data||"{}");if(!(t in e))return;const i=e[t];delete e[t],this.data=JSON.stringify(e),this[s](),this.dispatchEvent(new CustomEvent("context:delete",{detail:{key:t,value:i},bubbles:!0,composed:!0}))}clear(){for(const t of Object.keys(JSON.parse(this.data||"{}")))this.delete(t)}getData(){return JSON.parse(this.data||"{}")}renderLightDom(){return t``}}customElements.define("k-context",i);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const closestAcrossShadow=(o,t)=>{let s=o;for(;s;){const o=s.closest?.(t);if(o)return o;const e=s.getRootNode();s=e instanceof ShadowRoot?e.host:null}return null};export default closestAcrossShadow;
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -505,6 +508,7 @@
|
|
|
505
508
|
<a href="#basicUsage">Basic Usage</a><br />
|
|
506
509
|
<a href="#events">Listening to Events</a><br />
|
|
507
510
|
<a href="#usingInComponents">Using in Components</a><br />
|
|
511
|
+
<a href="#persistence">Persistence</a><br />
|
|
508
512
|
<a href="#interactiveDemo">Interactive Demo</a><br />
|
|
509
513
|
|
|
510
514
|
<h6 class="mt"><a href="#jsRef" class="no-link">JavaScript Reference</a></h6>
|
|
@@ -565,6 +569,17 @@
|
|
|
565
569
|
</div>
|
|
566
570
|
<p>To react to context changes from inside a shadow-DOM component, listen on the context element directly — events bubble and are <code>composed: true</code> so they also cross shadow boundaries.</p>
|
|
567
571
|
|
|
572
|
+
<h3 id="persistence"><a href="#persistence" class="no-link">Persistence</a></h3>
|
|
573
|
+
<p>Set a <code>persistent-id</code> to automatically save the store to <code>localStorage</code> and restore it on the next page load — the same convention used by <code>Split</code>, <code>Accordion</code>, <code>Tabs</code> and <code>Aside</code>. The data is reloaded in <code>connectedCallback</code> (before descendants read it) and re-saved on every <code>set()</code>, <code>delete()</code> and <code>clear()</code>.</p>
|
|
574
|
+
<div class="row -mx">
|
|
575
|
+
<div class="col m-span-12 px">
|
|
576
|
+
<k-card label="HTML">
|
|
577
|
+
<pre><code class="hljs html"><span class="hljs-tag"><<span class="hljs-name">k-context</span> <span class="hljs-attr">persistent-id</span>=<span class="hljs-string">"app-settings"</span>></span><span class="hljs-tag"></<span class="hljs-name">k-context</span>></span></code></pre>
|
|
578
|
+
</k-card>
|
|
579
|
+
</div>
|
|
580
|
+
</div>
|
|
581
|
+
<p>Because the entire store is JSON-serialized into a single value, keep persisted contexts to small, serializable state (settings, selections, ids) — not large or non-JSON data. Scope what you persist by giving config its own <code>persistent-id</code> context and leaving transient state in a separate, non-persistent <code>k-context</code>.</p>
|
|
582
|
+
|
|
568
583
|
<h3 id="interactiveDemo"><a href="#interactiveDemo" class="no-link">Interactive Demo</a></h3>
|
|
569
584
|
<div class="row -mx">
|
|
570
585
|
<div class="col m-span-12 t-span-6 px">
|
|
@@ -630,6 +645,11 @@
|
|
|
630
645
|
<td><code>String</code> (JSON)</td>
|
|
631
646
|
<td>A JSON string representing the initial store state. Reflects back to the attribute as state changes via the component's methods. Defaults to <code>'{}'</code>.</td>
|
|
632
647
|
</tr>
|
|
648
|
+
<tr>
|
|
649
|
+
<td><code>persistent-id</code></td>
|
|
650
|
+
<td><code>String</code></td>
|
|
651
|
+
<td>When set, the store is auto-saved to <code>localStorage</code> (key <code>context-persistent-id-<id></code>) on every change and restored on connect. Defaults to <code>null</code> (no persistence).</td>
|
|
652
|
+
</tr>
|
|
633
653
|
</tbody>
|
|
634
654
|
</table>
|
|
635
655
|
</div>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
package/docs/components/nav.html
CHANGED
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|
|
@@ -228,6 +228,8 @@
|
|
|
228
228
|
<k-filter-item filter-keywords="button base component keyboard disabled accessibility"><a
|
|
229
229
|
href="../components/button.html"
|
|
230
230
|
>Button<br><small>Base Component</small></a></k-filter-item>
|
|
231
|
+
<k-filter-item filter-keywords="closestAcrossShadow closest shadow dom utils utility"><a
|
|
232
|
+
href="../utils/closestAcrossShadow.html">closestAcrossShadow<br><small>Utility</small></a></k-filter-item>
|
|
231
233
|
<k-filter-item filter-keywords="cookie utils utility"><a
|
|
232
234
|
href="../utils/cookie.html">cookie<br><small>Utility</small></a></k-filter-item>
|
|
233
235
|
<k-filter-item filter-keywords="context utils utility"><a
|
|
@@ -360,6 +362,7 @@
|
|
|
360
362
|
|
|
361
363
|
<h5 class="mb0">Utils</h5>
|
|
362
364
|
<div class="pl mb">
|
|
365
|
+
<a href="../utils/closestAcrossShadow.html">closestAcrossShadow</a>
|
|
363
366
|
<a href="../utils/cookie.html">cookie</a>
|
|
364
367
|
<a href="../utils/context.html">context</a>
|
|
365
368
|
<a href="../utils/debounce.html">debounce</a>
|