kempo-ui 0.4.0 → 0.4.2
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/bin/get_icon.js +0 -0
- package/bin/highlight_code.js +0 -0
- package/bin/icon.js +0 -0
- package/bin/list_icons.js +0 -0
- package/dist/components/Slider.js +188 -0
- package/dist/components/Split.js +31 -13
- package/docs/components/accordion.html +4 -0
- package/docs/components/aside.html +4 -0
- package/docs/components/card.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/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 +781 -0
- package/docs/components/sortable.html +4 -0
- package/docs/components/spinner.html +4 -0
- package/docs/components/split.html +32 -3
- 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/theme-select.html +4 -0
- package/docs/components/theme-switcher.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/index.html +10 -0
- package/docs/src/components/Slider.js +188 -0
- package/docs/src/components/Split.js +31 -13
- 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/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/wait.html +4 -0
- package/docs-src/components/slider.page.html +331 -0
- package/docs-src/components/split.page.html +28 -3
- 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/Slider.js +480 -0
- package/src/components/Split.js +163 -132
- package/tests/components/Slider.browser-test.js +823 -0
package/docs/components/nav.html
CHANGED
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|
|
@@ -111,6 +111,9 @@
|
|
|
111
111
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
112
|
href="../components/show-more.html"
|
|
113
113
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
114
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
115
|
+
href="../components/slider.html"
|
|
116
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
117
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
118
|
href="../components/sortable.html"
|
|
116
119
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -285,6 +288,7 @@
|
|
|
285
288
|
<a href="../components/progress.html">Progress</a>
|
|
286
289
|
<a href="../components/resize.html">Resize</a>
|
|
287
290
|
<a href="../components/show-more.html">Show More</a>
|
|
291
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
292
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
293
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
294
|
<a href="../components/split.html">Split</a>
|