kempo-ui 0.4.1 → 0.4.3
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/Calendar.js +170 -0
- package/dist/components/Slider.js +188 -0
- package/dist/components/Time.js +37 -0
- package/docs/components/accordion.html +12 -0
- package/docs/components/aside.html +12 -0
- package/docs/components/calendar.html +712 -0
- package/docs/components/card.html +12 -0
- package/docs/components/code-editor.html +12 -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 +12 -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/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 +12 -0
- package/docs/components/shadow-component.html +12 -0
- package/docs/components/show-more.html +12 -0
- package/docs/components/slider.html +789 -0
- package/docs/components/sortable.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/theme-select.html +12 -0
- package/docs/components/theme-switcher.html +12 -0
- package/docs/components/time.html +662 -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/index.html +30 -0
- package/docs/src/components/Calendar.js +170 -0
- package/docs/src/components/Slider.js +188 -0
- package/docs/src/components/Time.js +37 -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 +12 -0
- package/docs/utils/formatTimestamp.html +12 -0
- package/docs/utils/object.html +12 -0
- package/docs/utils/propConverters.html +12 -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/wait.html +12 -0
- package/docs-src/components/calendar.page.html +254 -0
- package/docs-src/components/slider.page.html +331 -0
- package/docs-src/components/time.page.html +204 -0
- package/docs-src/index.page.html +18 -0
- package/docs-src/nav.fragment.html +12 -0
- package/llms.txt +3 -0
- package/package.json +1 -1
- package/src/components/Calendar.js +473 -0
- package/src/components/Slider.js +480 -0
- package/src/components/Time.js +137 -0
- package/tests/components/Slider.browser-test.js +823 -0
|
@@ -101,6 +101,9 @@
|
|
|
101
101
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
102
102
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
103
103
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
104
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
105
|
+
href="../components/calendar.html"
|
|
106
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
104
107
|
<k-filter-item filter-keywords="card components"><a
|
|
105
108
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
106
109
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -150,6 +153,9 @@
|
|
|
150
153
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
151
154
|
href="../components/show-more.html"
|
|
152
155
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
156
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
157
|
+
href="../components/slider.html"
|
|
158
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
153
159
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
154
160
|
href="../components/sortable.html"
|
|
155
161
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -211,6 +217,9 @@
|
|
|
211
217
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
212
218
|
href="../components/theme-switcher.html"
|
|
213
219
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
220
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
221
|
+
href="../components/time.html"
|
|
222
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
214
223
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
215
224
|
href="../components/timestamp.html"
|
|
216
225
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -305,6 +314,7 @@
|
|
|
305
314
|
<h3>Components</h3>
|
|
306
315
|
<a href="../components/accordion.html">Accordion</a>
|
|
307
316
|
<a href="../components/aside.html">Aside</a>
|
|
317
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
308
318
|
<a href="../components/card.html">Card</a>
|
|
309
319
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
310
320
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -324,6 +334,7 @@
|
|
|
324
334
|
<a href="../components/progress.html">Progress</a>
|
|
325
335
|
<a href="../components/resize.html">Resize</a>
|
|
326
336
|
<a href="../components/show-more.html">Show More</a>
|
|
337
|
+
<a href="../components/slider.html">Slider</a>
|
|
327
338
|
<a href="../components/sortable.html">Sortable</a>
|
|
328
339
|
<a href="../components/spinner.html">Spinner</a>
|
|
329
340
|
<a href="../components/split.html">Split</a>
|
|
@@ -332,6 +343,7 @@
|
|
|
332
343
|
<a href="../components/tags.html">Tags</a>
|
|
333
344
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
334
345
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
346
|
+
<a href="../components/time.html">Time</a>
|
|
335
347
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
336
348
|
<a href="../components/toast.html">Toast</a>
|
|
337
349
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
101
101
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
102
102
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
103
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
104
|
+
href="../components/calendar.html"
|
|
105
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
103
106
|
<k-filter-item filter-keywords="card components"><a
|
|
104
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
105
108
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -149,6 +152,9 @@
|
|
|
149
152
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
150
153
|
href="../components/show-more.html"
|
|
151
154
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
155
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
156
|
+
href="../components/slider.html"
|
|
157
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
152
158
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
153
159
|
href="../components/sortable.html"
|
|
154
160
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -210,6 +216,9 @@
|
|
|
210
216
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
211
217
|
href="../components/theme-switcher.html"
|
|
212
218
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
219
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
220
|
+
href="../components/time.html"
|
|
221
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
213
222
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
214
223
|
href="../components/timestamp.html"
|
|
215
224
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -304,6 +313,7 @@
|
|
|
304
313
|
<h3>Components</h3>
|
|
305
314
|
<a href="../components/accordion.html">Accordion</a>
|
|
306
315
|
<a href="../components/aside.html">Aside</a>
|
|
316
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
307
317
|
<a href="../components/card.html">Card</a>
|
|
308
318
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
309
319
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -323,6 +333,7 @@
|
|
|
323
333
|
<a href="../components/progress.html">Progress</a>
|
|
324
334
|
<a href="../components/resize.html">Resize</a>
|
|
325
335
|
<a href="../components/show-more.html">Show More</a>
|
|
336
|
+
<a href="../components/slider.html">Slider</a>
|
|
326
337
|
<a href="../components/sortable.html">Sortable</a>
|
|
327
338
|
<a href="../components/spinner.html">Spinner</a>
|
|
328
339
|
<a href="../components/split.html">Split</a>
|
|
@@ -331,6 +342,7 @@
|
|
|
331
342
|
<a href="../components/tags.html">Tags</a>
|
|
332
343
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
333
344
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
|
+
<a href="../components/time.html">Time</a>
|
|
334
346
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
335
347
|
<a href="../components/toast.html">Toast</a>
|
|
336
348
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -101,6 +101,9 @@
|
|
|
101
101
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
102
102
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
103
103
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
104
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
105
|
+
href="../components/calendar.html"
|
|
106
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
104
107
|
<k-filter-item filter-keywords="card components"><a
|
|
105
108
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
106
109
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -150,6 +153,9 @@
|
|
|
150
153
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
151
154
|
href="../components/show-more.html"
|
|
152
155
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
156
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
157
|
+
href="../components/slider.html"
|
|
158
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
153
159
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
154
160
|
href="../components/sortable.html"
|
|
155
161
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -211,6 +217,9 @@
|
|
|
211
217
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
212
218
|
href="../components/theme-switcher.html"
|
|
213
219
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
220
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
221
|
+
href="../components/time.html"
|
|
222
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
214
223
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
215
224
|
href="../components/timestamp.html"
|
|
216
225
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -305,6 +314,7 @@
|
|
|
305
314
|
<h3>Components</h3>
|
|
306
315
|
<a href="../components/accordion.html">Accordion</a>
|
|
307
316
|
<a href="../components/aside.html">Aside</a>
|
|
317
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
308
318
|
<a href="../components/card.html">Card</a>
|
|
309
319
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
310
320
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -324,6 +334,7 @@
|
|
|
324
334
|
<a href="../components/progress.html">Progress</a>
|
|
325
335
|
<a href="../components/resize.html">Resize</a>
|
|
326
336
|
<a href="../components/show-more.html">Show More</a>
|
|
337
|
+
<a href="../components/slider.html">Slider</a>
|
|
327
338
|
<a href="../components/sortable.html">Sortable</a>
|
|
328
339
|
<a href="../components/spinner.html">Spinner</a>
|
|
329
340
|
<a href="../components/split.html">Split</a>
|
|
@@ -332,6 +343,7 @@
|
|
|
332
343
|
<a href="../components/tags.html">Tags</a>
|
|
333
344
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
334
345
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
346
|
+
<a href="../components/time.html">Time</a>
|
|
335
347
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
336
348
|
<a href="../components/toast.html">Toast</a>
|
|
337
349
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
101
101
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
102
102
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
103
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
104
|
+
href="../components/calendar.html"
|
|
105
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
103
106
|
<k-filter-item filter-keywords="card components"><a
|
|
104
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
105
108
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -149,6 +152,9 @@
|
|
|
149
152
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
150
153
|
href="../components/show-more.html"
|
|
151
154
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
155
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
156
|
+
href="../components/slider.html"
|
|
157
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
152
158
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
153
159
|
href="../components/sortable.html"
|
|
154
160
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -210,6 +216,9 @@
|
|
|
210
216
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
211
217
|
href="../components/theme-switcher.html"
|
|
212
218
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
219
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
220
|
+
href="../components/time.html"
|
|
221
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
213
222
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
214
223
|
href="../components/timestamp.html"
|
|
215
224
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -304,6 +313,7 @@
|
|
|
304
313
|
<h3>Components</h3>
|
|
305
314
|
<a href="../components/accordion.html">Accordion</a>
|
|
306
315
|
<a href="../components/aside.html">Aside</a>
|
|
316
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
307
317
|
<a href="../components/card.html">Card</a>
|
|
308
318
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
309
319
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -323,6 +333,7 @@
|
|
|
323
333
|
<a href="../components/progress.html">Progress</a>
|
|
324
334
|
<a href="../components/resize.html">Resize</a>
|
|
325
335
|
<a href="../components/show-more.html">Show More</a>
|
|
336
|
+
<a href="../components/slider.html">Slider</a>
|
|
326
337
|
<a href="../components/sortable.html">Sortable</a>
|
|
327
338
|
<a href="../components/spinner.html">Spinner</a>
|
|
328
339
|
<a href="../components/split.html">Split</a>
|
|
@@ -331,6 +342,7 @@
|
|
|
331
342
|
<a href="../components/tags.html">Tags</a>
|
|
332
343
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
333
344
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
|
+
<a href="../components/time.html">Time</a>
|
|
334
346
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
335
347
|
<a href="../components/toast.html">Toast</a>
|
|
336
348
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
101
101
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
102
102
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
103
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
104
|
+
href="../components/calendar.html"
|
|
105
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
103
106
|
<k-filter-item filter-keywords="card components"><a
|
|
104
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
105
108
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -149,6 +152,9 @@
|
|
|
149
152
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
150
153
|
href="../components/show-more.html"
|
|
151
154
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
155
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
156
|
+
href="../components/slider.html"
|
|
157
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
152
158
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
153
159
|
href="../components/sortable.html"
|
|
154
160
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -210,6 +216,9 @@
|
|
|
210
216
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
211
217
|
href="../components/theme-switcher.html"
|
|
212
218
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
219
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
220
|
+
href="../components/time.html"
|
|
221
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
213
222
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
214
223
|
href="../components/timestamp.html"
|
|
215
224
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -304,6 +313,7 @@
|
|
|
304
313
|
<h3>Components</h3>
|
|
305
314
|
<a href="../components/accordion.html">Accordion</a>
|
|
306
315
|
<a href="../components/aside.html">Aside</a>
|
|
316
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
307
317
|
<a href="../components/card.html">Card</a>
|
|
308
318
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
309
319
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -323,6 +333,7 @@
|
|
|
323
333
|
<a href="../components/progress.html">Progress</a>
|
|
324
334
|
<a href="../components/resize.html">Resize</a>
|
|
325
335
|
<a href="../components/show-more.html">Show More</a>
|
|
336
|
+
<a href="../components/slider.html">Slider</a>
|
|
326
337
|
<a href="../components/sortable.html">Sortable</a>
|
|
327
338
|
<a href="../components/spinner.html">Spinner</a>
|
|
328
339
|
<a href="../components/split.html">Split</a>
|
|
@@ -331,6 +342,7 @@
|
|
|
331
342
|
<a href="../components/tags.html">Tags</a>
|
|
332
343
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
333
344
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
|
+
<a href="../components/time.html">Time</a>
|
|
334
346
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
335
347
|
<a href="../components/toast.html">Toast</a>
|
|
336
348
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
101
101
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
102
102
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
103
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
104
|
+
href="../components/calendar.html"
|
|
105
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
103
106
|
<k-filter-item filter-keywords="card components"><a
|
|
104
107
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
105
108
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -149,6 +152,9 @@
|
|
|
149
152
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
150
153
|
href="../components/show-more.html"
|
|
151
154
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
155
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
156
|
+
href="../components/slider.html"
|
|
157
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
152
158
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
153
159
|
href="../components/sortable.html"
|
|
154
160
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -210,6 +216,9 @@
|
|
|
210
216
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
211
217
|
href="../components/theme-switcher.html"
|
|
212
218
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
219
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
220
|
+
href="../components/time.html"
|
|
221
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
213
222
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
214
223
|
href="../components/timestamp.html"
|
|
215
224
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -304,6 +313,7 @@
|
|
|
304
313
|
<h3>Components</h3>
|
|
305
314
|
<a href="../components/accordion.html">Accordion</a>
|
|
306
315
|
<a href="../components/aside.html">Aside</a>
|
|
316
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
307
317
|
<a href="../components/card.html">Card</a>
|
|
308
318
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
309
319
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -323,6 +333,7 @@
|
|
|
323
333
|
<a href="../components/progress.html">Progress</a>
|
|
324
334
|
<a href="../components/resize.html">Resize</a>
|
|
325
335
|
<a href="../components/show-more.html">Show More</a>
|
|
336
|
+
<a href="../components/slider.html">Slider</a>
|
|
326
337
|
<a href="../components/sortable.html">Sortable</a>
|
|
327
338
|
<a href="../components/spinner.html">Spinner</a>
|
|
328
339
|
<a href="../components/split.html">Split</a>
|
|
@@ -331,6 +342,7 @@
|
|
|
331
342
|
<a href="../components/tags.html">Tags</a>
|
|
332
343
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
333
344
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
|
+
<a href="../components/time.html">Time</a>
|
|
334
346
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
335
347
|
<a href="../components/toast.html">Toast</a>
|
|
336
348
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -101,6 +101,9 @@
|
|
|
101
101
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
102
102
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
103
103
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
104
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
105
|
+
href="../components/calendar.html"
|
|
106
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
104
107
|
<k-filter-item filter-keywords="card components"><a
|
|
105
108
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
106
109
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -150,6 +153,9 @@
|
|
|
150
153
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
151
154
|
href="../components/show-more.html"
|
|
152
155
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
156
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
157
|
+
href="../components/slider.html"
|
|
158
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
153
159
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
154
160
|
href="../components/sortable.html"
|
|
155
161
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -211,6 +217,9 @@
|
|
|
211
217
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
212
218
|
href="../components/theme-switcher.html"
|
|
213
219
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
220
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
221
|
+
href="../components/time.html"
|
|
222
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
214
223
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
215
224
|
href="../components/timestamp.html"
|
|
216
225
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -305,6 +314,7 @@
|
|
|
305
314
|
<h3>Components</h3>
|
|
306
315
|
<a href="../components/accordion.html">Accordion</a>
|
|
307
316
|
<a href="../components/aside.html">Aside</a>
|
|
317
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
308
318
|
<a href="../components/card.html">Card</a>
|
|
309
319
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
310
320
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -324,6 +334,7 @@
|
|
|
324
334
|
<a href="../components/progress.html">Progress</a>
|
|
325
335
|
<a href="../components/resize.html">Resize</a>
|
|
326
336
|
<a href="../components/show-more.html">Show More</a>
|
|
337
|
+
<a href="../components/slider.html">Slider</a>
|
|
327
338
|
<a href="../components/sortable.html">Sortable</a>
|
|
328
339
|
<a href="../components/spinner.html">Spinner</a>
|
|
329
340
|
<a href="../components/split.html">Split</a>
|
|
@@ -332,6 +343,7 @@
|
|
|
332
343
|
<a href="../components/tags.html">Tags</a>
|
|
333
344
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
334
345
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
346
|
+
<a href="../components/time.html">Time</a>
|
|
335
347
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
336
348
|
<a href="../components/toast.html">Toast</a>
|
|
337
349
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
63
63
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
64
64
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
65
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
66
|
+
href="../components/calendar.html"
|
|
67
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
65
68
|
<k-filter-item filter-keywords="card components"><a
|
|
66
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
67
70
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -111,6 +114,9 @@
|
|
|
111
114
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
115
|
href="../components/show-more.html"
|
|
113
116
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
117
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
118
|
+
href="../components/slider.html"
|
|
119
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
120
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
121
|
href="../components/sortable.html"
|
|
116
122
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -172,6 +178,9 @@
|
|
|
172
178
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
173
179
|
href="../components/theme-switcher.html"
|
|
174
180
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
181
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
182
|
+
href="../components/time.html"
|
|
183
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
175
184
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
176
185
|
href="../components/timestamp.html"
|
|
177
186
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -266,6 +275,7 @@
|
|
|
266
275
|
<h3>Components</h3>
|
|
267
276
|
<a href="../components/accordion.html">Accordion</a>
|
|
268
277
|
<a href="../components/aside.html">Aside</a>
|
|
278
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
269
279
|
<a href="../components/card.html">Card</a>
|
|
270
280
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
271
281
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -285,6 +295,7 @@
|
|
|
285
295
|
<a href="../components/progress.html">Progress</a>
|
|
286
296
|
<a href="../components/resize.html">Resize</a>
|
|
287
297
|
<a href="../components/show-more.html">Show More</a>
|
|
298
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
299
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
300
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
301
|
<a href="../components/split.html">Split</a>
|
|
@@ -293,6 +304,7 @@
|
|
|
293
304
|
<a href="../components/tags.html">Tags</a>
|
|
294
305
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
295
306
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
307
|
+
<a href="../components/time.html">Time</a>
|
|
296
308
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
297
309
|
<a href="../components/toast.html">Toast</a>
|
|
298
310
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
63
63
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
64
64
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
65
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
66
|
+
href="../components/calendar.html"
|
|
67
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
65
68
|
<k-filter-item filter-keywords="card components"><a
|
|
66
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
67
70
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -111,6 +114,9 @@
|
|
|
111
114
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
115
|
href="../components/show-more.html"
|
|
113
116
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
117
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
118
|
+
href="../components/slider.html"
|
|
119
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
120
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
121
|
href="../components/sortable.html"
|
|
116
122
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -172,6 +178,9 @@
|
|
|
172
178
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
173
179
|
href="../components/theme-switcher.html"
|
|
174
180
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
181
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
182
|
+
href="../components/time.html"
|
|
183
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
175
184
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
176
185
|
href="../components/timestamp.html"
|
|
177
186
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -266,6 +275,7 @@
|
|
|
266
275
|
<h3>Components</h3>
|
|
267
276
|
<a href="../components/accordion.html">Accordion</a>
|
|
268
277
|
<a href="../components/aside.html">Aside</a>
|
|
278
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
269
279
|
<a href="../components/card.html">Card</a>
|
|
270
280
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
271
281
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -285,6 +295,7 @@
|
|
|
285
295
|
<a href="../components/progress.html">Progress</a>
|
|
286
296
|
<a href="../components/resize.html">Resize</a>
|
|
287
297
|
<a href="../components/show-more.html">Show More</a>
|
|
298
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
299
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
300
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
301
|
<a href="../components/split.html">Split</a>
|
|
@@ -293,6 +304,7 @@
|
|
|
293
304
|
<a href="../components/tags.html">Tags</a>
|
|
294
305
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
295
306
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
307
|
+
<a href="../components/time.html">Time</a>
|
|
296
308
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
297
309
|
<a href="../components/toast.html">Toast</a>
|
|
298
310
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
63
63
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
64
64
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
65
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
66
|
+
href="../components/calendar.html"
|
|
67
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
65
68
|
<k-filter-item filter-keywords="card components"><a
|
|
66
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
67
70
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -111,6 +114,9 @@
|
|
|
111
114
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
115
|
href="../components/show-more.html"
|
|
113
116
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
117
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
118
|
+
href="../components/slider.html"
|
|
119
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
120
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
121
|
href="../components/sortable.html"
|
|
116
122
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -172,6 +178,9 @@
|
|
|
172
178
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
173
179
|
href="../components/theme-switcher.html"
|
|
174
180
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
181
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
182
|
+
href="../components/time.html"
|
|
183
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
175
184
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
176
185
|
href="../components/timestamp.html"
|
|
177
186
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -266,6 +275,7 @@
|
|
|
266
275
|
<h3>Components</h3>
|
|
267
276
|
<a href="../components/accordion.html">Accordion</a>
|
|
268
277
|
<a href="../components/aside.html">Aside</a>
|
|
278
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
269
279
|
<a href="../components/card.html">Card</a>
|
|
270
280
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
271
281
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -285,6 +295,7 @@
|
|
|
285
295
|
<a href="../components/progress.html">Progress</a>
|
|
286
296
|
<a href="../components/resize.html">Resize</a>
|
|
287
297
|
<a href="../components/show-more.html">Show More</a>
|
|
298
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
299
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
300
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
301
|
<a href="../components/split.html">Split</a>
|
|
@@ -293,6 +304,7 @@
|
|
|
293
304
|
<a href="../components/tags.html">Tags</a>
|
|
294
305
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
295
306
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
307
|
+
<a href="../components/time.html">Time</a>
|
|
296
308
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
297
309
|
<a href="../components/toast.html">Toast</a>
|
|
298
310
|
<a href="../components/toggle.html">Toggle</a>
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
|
|
63
63
|
<k-filter-item filter-keywords="aside sidebar components"><a
|
|
64
64
|
href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
|
|
65
|
+
<k-filter-item filter-keywords="calendar date picker range month day components"><a
|
|
66
|
+
href="../components/calendar.html"
|
|
67
|
+
>Calendar<br><small>Component</small></a></k-filter-item>
|
|
65
68
|
<k-filter-item filter-keywords="card components"><a
|
|
66
69
|
href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
|
|
67
70
|
<k-filter-item filter-keywords="code editor codeeditor monaco components"><a
|
|
@@ -111,6 +114,9 @@
|
|
|
111
114
|
<k-filter-item filter-keywords="show more showmore components"><a
|
|
112
115
|
href="../components/show-more.html"
|
|
113
116
|
>Show More<br><small>Component</small></a></k-filter-item>
|
|
117
|
+
<k-filter-item filter-keywords="slider range input step components"><a
|
|
118
|
+
href="../components/slider.html"
|
|
119
|
+
>Slider<br><small>Component</small></a></k-filter-item>
|
|
114
120
|
<k-filter-item filter-keywords="sortable drag drop sort components"><a
|
|
115
121
|
href="../components/sortable.html"
|
|
116
122
|
>Sortable<br><small>Component</small></a></k-filter-item>
|
|
@@ -172,6 +178,9 @@
|
|
|
172
178
|
<k-filter-item filter-keywords="theme switcher dark light components"><a
|
|
173
179
|
href="../components/theme-switcher.html"
|
|
174
180
|
>Theme Switcher<br><small>Component</small></a></k-filter-item>
|
|
181
|
+
<k-filter-item filter-keywords="time picker clock hour minute form components"><a
|
|
182
|
+
href="../components/time.html"
|
|
183
|
+
>Time<br><small>Component</small></a></k-filter-item>
|
|
175
184
|
<k-filter-item filter-keywords="timestamp date time components"><a
|
|
176
185
|
href="../components/timestamp.html"
|
|
177
186
|
>Timestamp<br><small>Component</small></a></k-filter-item>
|
|
@@ -266,6 +275,7 @@
|
|
|
266
275
|
<h3>Components</h3>
|
|
267
276
|
<a href="../components/accordion.html">Accordion</a>
|
|
268
277
|
<a href="../components/aside.html">Aside</a>
|
|
278
|
+
<a href="../components/calendar.html">Calendar</a>
|
|
269
279
|
<a href="../components/card.html">Card</a>
|
|
270
280
|
<a href="../components/code-editor.html">Code Editor</a>
|
|
271
281
|
<a href="../components/combobox.html">Combobox</a>
|
|
@@ -285,6 +295,7 @@
|
|
|
285
295
|
<a href="../components/progress.html">Progress</a>
|
|
286
296
|
<a href="../components/resize.html">Resize</a>
|
|
287
297
|
<a href="../components/show-more.html">Show More</a>
|
|
298
|
+
<a href="../components/slider.html">Slider</a>
|
|
288
299
|
<a href="../components/sortable.html">Sortable</a>
|
|
289
300
|
<a href="../components/spinner.html">Spinner</a>
|
|
290
301
|
<a href="../components/split.html">Split</a>
|
|
@@ -293,6 +304,7 @@
|
|
|
293
304
|
<a href="../components/tags.html">Tags</a>
|
|
294
305
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
295
306
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
307
|
+
<a href="../components/time.html">Time</a>
|
|
296
308
|
<a href="../components/timestamp.html">Timestamp</a>
|
|
297
309
|
<a href="../components/toast.html">Toast</a>
|
|
298
310
|
<a href="../components/toggle.html">Toggle</a>
|