kempo-ui 0.4.2 → 0.4.4

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.
Files changed (104) hide show
  1. package/.claude/skills/get-icon/SKILL.md +144 -0
  2. package/.claude/skills/highlight-code/SKILL.md +62 -0
  3. package/.claude/skills/new-component/SKILL.md +362 -0
  4. package/.github/skills/get-icon/SKILL.md +4 -4
  5. package/.github/skills/highlight-code/SKILL.md +51 -20
  6. package/.github/skills/new-component/SKILL.md +183 -152
  7. package/AGENTS.md +2 -2
  8. package/dist/components/Calendar.js +170 -0
  9. package/dist/components/SpeechToText.js +60 -0
  10. package/dist/components/TextToSpeech.js +56 -0
  11. package/dist/components/Time.js +37 -0
  12. package/docs/components/accordion.html +16 -0
  13. package/docs/components/aside.html +16 -0
  14. package/docs/components/calendar.html +720 -0
  15. package/docs/components/card.html +16 -0
  16. package/docs/components/code-editor.html +16 -0
  17. package/docs/components/color-picker.html +16 -0
  18. package/docs/components/combobox.html +16 -0
  19. package/docs/components/content-slider.html +16 -0
  20. package/docs/components/context.html +16 -0
  21. package/docs/components/dialog.html +16 -0
  22. package/docs/components/dropdown.html +16 -0
  23. package/docs/components/filter-list.html +16 -0
  24. package/docs/components/focus-capture.html +16 -0
  25. package/docs/components/html-editor.html +16 -0
  26. package/docs/components/hybrid-component.html +16 -0
  27. package/docs/components/icon.html +16 -0
  28. package/docs/components/import.html +16 -0
  29. package/docs/components/light-component.html +16 -0
  30. package/docs/components/nav-spacer.html +16 -0
  31. package/docs/components/nav.html +16 -0
  32. package/docs/components/photo-viewer.html +16 -0
  33. package/docs/components/progress.html +16 -0
  34. package/docs/components/resize.html +16 -0
  35. package/docs/components/shadow-component.html +16 -0
  36. package/docs/components/show-more.html +16 -0
  37. package/docs/components/slider.html +16 -0
  38. package/docs/components/sortable.html +16 -0
  39. package/docs/components/speech-to-text.html +717 -0
  40. package/docs/components/spinner.html +16 -0
  41. package/docs/components/split.html +16 -0
  42. package/docs/components/table.html +16 -0
  43. package/docs/components/tableControls.html +16 -0
  44. package/docs/components/tableCustomFields.html +16 -0
  45. package/docs/components/tableFetchRecords.html +16 -0
  46. package/docs/components/tableFieldSortHide.html +16 -0
  47. package/docs/components/tablePagination.html +16 -0
  48. package/docs/components/tablePlaceholder.html +16 -0
  49. package/docs/components/tableRecordEditing.html +16 -0
  50. package/docs/components/tableRecordFiltering.html +16 -0
  51. package/docs/components/tableRecordHiding.html +16 -0
  52. package/docs/components/tableRecordSearching.html +16 -0
  53. package/docs/components/tableRecordSelection.html +16 -0
  54. package/docs/components/tableRowControls.html +16 -0
  55. package/docs/components/tableServerSync.html +16 -0
  56. package/docs/components/tableSorting.html +16 -0
  57. package/docs/components/tabs.html +16 -0
  58. package/docs/components/tags.html +16 -0
  59. package/docs/components/text-to-speech.html +668 -0
  60. package/docs/components/theme-select.html +16 -0
  61. package/docs/components/theme-switcher.html +16 -0
  62. package/docs/components/time.html +670 -0
  63. package/docs/components/timestamp.html +16 -0
  64. package/docs/components/toast.html +16 -0
  65. package/docs/components/toggle.html +16 -0
  66. package/docs/components/tree.html +16 -0
  67. package/docs/icons/mic.svg +1 -0
  68. package/docs/icons/record_voice_over.svg +1 -0
  69. package/docs/icons/stop.svg +1 -0
  70. package/docs/index.html +40 -0
  71. package/docs/src/components/Calendar.js +170 -0
  72. package/docs/src/components/SpeechToText.js +60 -0
  73. package/docs/src/components/TextToSpeech.js +56 -0
  74. package/docs/src/components/Time.js +37 -0
  75. package/docs/utils/context.html +16 -0
  76. package/docs/utils/cookie.html +16 -0
  77. package/docs/utils/debounce.html +16 -0
  78. package/docs/utils/drag.html +16 -0
  79. package/docs/utils/elevation.html +16 -0
  80. package/docs/utils/formatTimestamp.html +16 -0
  81. package/docs/utils/object.html +16 -0
  82. package/docs/utils/propConverters.html +16 -0
  83. package/docs/utils/string.html +16 -0
  84. package/docs/utils/theme.html +16 -0
  85. package/docs/utils/toTitleCase.html +16 -0
  86. package/docs/utils/type.html +16 -0
  87. package/docs/utils/wait.html +16 -0
  88. package/docs-src/components/calendar.page.html +254 -0
  89. package/docs-src/components/speech-to-text.page.html +251 -0
  90. package/docs-src/components/text-to-speech.page.html +202 -0
  91. package/docs-src/components/time.page.html +204 -0
  92. package/docs-src/index.page.html +24 -0
  93. package/docs-src/nav.fragment.html +16 -0
  94. package/icons/mic.svg +1 -0
  95. package/icons/record_voice_over.svg +1 -0
  96. package/icons/stop.svg +1 -0
  97. package/llms.txt +4 -0
  98. package/package.json +1 -1
  99. package/src/components/Calendar.js +473 -0
  100. package/src/components/SpeechToText.js +252 -0
  101. package/src/components/TextToSpeech.js +194 -0
  102. package/src/components/Time.js +137 -0
  103. package/tests/components/SpeechToText.browser-test.js +530 -0
  104. package/tests/components/TextToSpeech.browser-test.js +432 -0
@@ -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
@@ -117,6 +120,9 @@
117
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
118
121
  href="../components/sortable.html"
119
122
  >Sortable<br><small>Component</small></a></k-filter-item>
123
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
124
+ href="../components/speech-to-text.html"
125
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
120
126
  <k-filter-item filter-keywords="spinner loading components"><a
121
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
122
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -169,12 +175,18 @@
169
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
170
176
  <k-filter-item filter-keywords="tags tag input components"><a
171
177
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
178
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
179
+ href="../components/text-to-speech.html"
180
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
172
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
173
182
  href="../components/theme-select.html"
174
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
175
184
  <k-filter-item filter-keywords="theme switcher dark light components"><a
176
185
  href="../components/theme-switcher.html"
177
186
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
187
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
188
+ href="../components/time.html"
189
+ >Time<br><small>Component</small></a></k-filter-item>
178
190
  <k-filter-item filter-keywords="timestamp date time components"><a
179
191
  href="../components/timestamp.html"
180
192
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -269,6 +281,7 @@
269
281
  <h3>Components</h3>
270
282
  <a href="../components/accordion.html">Accordion</a>
271
283
  <a href="../components/aside.html">Aside</a>
284
+ <a href="../components/calendar.html">Calendar</a>
272
285
  <a href="../components/card.html">Card</a>
273
286
  <a href="../components/code-editor.html">Code Editor</a>
274
287
  <a href="../components/combobox.html">Combobox</a>
@@ -290,13 +303,16 @@
290
303
  <a href="../components/show-more.html">Show More</a>
291
304
  <a href="../components/slider.html">Slider</a>
292
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
293
307
  <a href="../components/spinner.html">Spinner</a>
294
308
  <a href="../components/split.html">Split</a>
295
309
  <a href="../components/table.html">Table</a>
296
310
  <a href="../components/tabs.html">Tabs</a>
297
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
298
313
  <a href="../components/theme-select.html">Theme Select</a>
299
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
315
+ <a href="../components/time.html">Time</a>
300
316
  <a href="../components/timestamp.html">Timestamp</a>
301
317
  <a href="../components/toast.html">Toast</a>
302
318
  <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
@@ -117,6 +120,9 @@
117
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
118
121
  href="../components/sortable.html"
119
122
  >Sortable<br><small>Component</small></a></k-filter-item>
123
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
124
+ href="../components/speech-to-text.html"
125
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
120
126
  <k-filter-item filter-keywords="spinner loading components"><a
121
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
122
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -169,12 +175,18 @@
169
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
170
176
  <k-filter-item filter-keywords="tags tag input components"><a
171
177
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
178
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
179
+ href="../components/text-to-speech.html"
180
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
172
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
173
182
  href="../components/theme-select.html"
174
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
175
184
  <k-filter-item filter-keywords="theme switcher dark light components"><a
176
185
  href="../components/theme-switcher.html"
177
186
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
187
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
188
+ href="../components/time.html"
189
+ >Time<br><small>Component</small></a></k-filter-item>
178
190
  <k-filter-item filter-keywords="timestamp date time components"><a
179
191
  href="../components/timestamp.html"
180
192
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -269,6 +281,7 @@
269
281
  <h3>Components</h3>
270
282
  <a href="../components/accordion.html">Accordion</a>
271
283
  <a href="../components/aside.html">Aside</a>
284
+ <a href="../components/calendar.html">Calendar</a>
272
285
  <a href="../components/card.html">Card</a>
273
286
  <a href="../components/code-editor.html">Code Editor</a>
274
287
  <a href="../components/combobox.html">Combobox</a>
@@ -290,13 +303,16 @@
290
303
  <a href="../components/show-more.html">Show More</a>
291
304
  <a href="../components/slider.html">Slider</a>
292
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
293
307
  <a href="../components/spinner.html">Spinner</a>
294
308
  <a href="../components/split.html">Split</a>
295
309
  <a href="../components/table.html">Table</a>
296
310
  <a href="../components/tabs.html">Tabs</a>
297
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
298
313
  <a href="../components/theme-select.html">Theme Select</a>
299
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
315
+ <a href="../components/time.html">Time</a>
300
316
  <a href="../components/timestamp.html">Timestamp</a>
301
317
  <a href="../components/toast.html">Toast</a>
302
318
  <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
@@ -117,6 +120,9 @@
117
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
118
121
  href="../components/sortable.html"
119
122
  >Sortable<br><small>Component</small></a></k-filter-item>
123
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
124
+ href="../components/speech-to-text.html"
125
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
120
126
  <k-filter-item filter-keywords="spinner loading components"><a
121
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
122
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -169,12 +175,18 @@
169
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
170
176
  <k-filter-item filter-keywords="tags tag input components"><a
171
177
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
178
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
179
+ href="../components/text-to-speech.html"
180
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
172
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
173
182
  href="../components/theme-select.html"
174
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
175
184
  <k-filter-item filter-keywords="theme switcher dark light components"><a
176
185
  href="../components/theme-switcher.html"
177
186
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
187
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
188
+ href="../components/time.html"
189
+ >Time<br><small>Component</small></a></k-filter-item>
178
190
  <k-filter-item filter-keywords="timestamp date time components"><a
179
191
  href="../components/timestamp.html"
180
192
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -269,6 +281,7 @@
269
281
  <h3>Components</h3>
270
282
  <a href="../components/accordion.html">Accordion</a>
271
283
  <a href="../components/aside.html">Aside</a>
284
+ <a href="../components/calendar.html">Calendar</a>
272
285
  <a href="../components/card.html">Card</a>
273
286
  <a href="../components/code-editor.html">Code Editor</a>
274
287
  <a href="../components/combobox.html">Combobox</a>
@@ -290,13 +303,16 @@
290
303
  <a href="../components/show-more.html">Show More</a>
291
304
  <a href="../components/slider.html">Slider</a>
292
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
293
307
  <a href="../components/spinner.html">Spinner</a>
294
308
  <a href="../components/split.html">Split</a>
295
309
  <a href="../components/table.html">Table</a>
296
310
  <a href="../components/tabs.html">Tabs</a>
297
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
298
313
  <a href="../components/theme-select.html">Theme Select</a>
299
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
315
+ <a href="../components/time.html">Time</a>
300
316
  <a href="../components/timestamp.html">Timestamp</a>
301
317
  <a href="../components/toast.html">Toast</a>
302
318
  <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
@@ -155,6 +158,9 @@
155
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
156
159
  href="../components/sortable.html"
157
160
  >Sortable<br><small>Component</small></a></k-filter-item>
161
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
162
+ href="../components/speech-to-text.html"
163
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
158
164
  <k-filter-item filter-keywords="spinner loading components"><a
159
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
160
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -207,12 +213,18 @@
207
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
208
214
  <k-filter-item filter-keywords="tags tag input components"><a
209
215
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
216
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
217
+ href="../components/text-to-speech.html"
218
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
210
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
211
220
  href="../components/theme-select.html"
212
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
213
222
  <k-filter-item filter-keywords="theme switcher dark light components"><a
214
223
  href="../components/theme-switcher.html"
215
224
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
225
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
226
+ href="../components/time.html"
227
+ >Time<br><small>Component</small></a></k-filter-item>
216
228
  <k-filter-item filter-keywords="timestamp date time components"><a
217
229
  href="../components/timestamp.html"
218
230
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -307,6 +319,7 @@
307
319
  <h3>Components</h3>
308
320
  <a href="../components/accordion.html">Accordion</a>
309
321
  <a href="../components/aside.html">Aside</a>
322
+ <a href="../components/calendar.html">Calendar</a>
310
323
  <a href="../components/card.html">Card</a>
311
324
  <a href="../components/code-editor.html">Code Editor</a>
312
325
  <a href="../components/combobox.html">Combobox</a>
@@ -328,13 +341,16 @@
328
341
  <a href="../components/show-more.html">Show More</a>
329
342
  <a href="../components/slider.html">Slider</a>
330
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
331
345
  <a href="../components/spinner.html">Spinner</a>
332
346
  <a href="../components/split.html">Split</a>
333
347
  <a href="../components/table.html">Table</a>
334
348
  <a href="../components/tabs.html">Tabs</a>
335
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
336
351
  <a href="../components/theme-select.html">Theme Select</a>
337
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
353
+ <a href="../components/time.html">Time</a>
338
354
  <a href="../components/timestamp.html">Timestamp</a>
339
355
  <a href="../components/toast.html">Toast</a>
340
356
  <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
@@ -155,6 +158,9 @@
155
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
156
159
  href="../components/sortable.html"
157
160
  >Sortable<br><small>Component</small></a></k-filter-item>
161
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
162
+ href="../components/speech-to-text.html"
163
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
158
164
  <k-filter-item filter-keywords="spinner loading components"><a
159
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
160
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -207,12 +213,18 @@
207
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
208
214
  <k-filter-item filter-keywords="tags tag input components"><a
209
215
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
216
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
217
+ href="../components/text-to-speech.html"
218
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
210
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
211
220
  href="../components/theme-select.html"
212
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
213
222
  <k-filter-item filter-keywords="theme switcher dark light components"><a
214
223
  href="../components/theme-switcher.html"
215
224
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
225
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
226
+ href="../components/time.html"
227
+ >Time<br><small>Component</small></a></k-filter-item>
216
228
  <k-filter-item filter-keywords="timestamp date time components"><a
217
229
  href="../components/timestamp.html"
218
230
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -307,6 +319,7 @@
307
319
  <h3>Components</h3>
308
320
  <a href="../components/accordion.html">Accordion</a>
309
321
  <a href="../components/aside.html">Aside</a>
322
+ <a href="../components/calendar.html">Calendar</a>
310
323
  <a href="../components/card.html">Card</a>
311
324
  <a href="../components/code-editor.html">Code Editor</a>
312
325
  <a href="../components/combobox.html">Combobox</a>
@@ -328,13 +341,16 @@
328
341
  <a href="../components/show-more.html">Show More</a>
329
342
  <a href="../components/slider.html">Slider</a>
330
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
331
345
  <a href="../components/spinner.html">Spinner</a>
332
346
  <a href="../components/split.html">Split</a>
333
347
  <a href="../components/table.html">Table</a>
334
348
  <a href="../components/tabs.html">Tabs</a>
335
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
336
351
  <a href="../components/theme-select.html">Theme Select</a>
337
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
353
+ <a href="../components/time.html">Time</a>
338
354
  <a href="../components/timestamp.html">Timestamp</a>
339
355
  <a href="../components/toast.html">Toast</a>
340
356
  <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
@@ -156,6 +159,9 @@
156
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
157
160
  href="../components/sortable.html"
158
161
  >Sortable<br><small>Component</small></a></k-filter-item>
162
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
163
+ href="../components/speech-to-text.html"
164
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
159
165
  <k-filter-item filter-keywords="spinner loading components"><a
160
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
161
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -208,12 +214,18 @@
208
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
209
215
  <k-filter-item filter-keywords="tags tag input components"><a
210
216
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
217
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
218
+ href="../components/text-to-speech.html"
219
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
211
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
212
221
  href="../components/theme-select.html"
213
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
214
223
  <k-filter-item filter-keywords="theme switcher dark light components"><a
215
224
  href="../components/theme-switcher.html"
216
225
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
226
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
227
+ href="../components/time.html"
228
+ >Time<br><small>Component</small></a></k-filter-item>
217
229
  <k-filter-item filter-keywords="timestamp date time components"><a
218
230
  href="../components/timestamp.html"
219
231
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -308,6 +320,7 @@
308
320
  <h3>Components</h3>
309
321
  <a href="../components/accordion.html">Accordion</a>
310
322
  <a href="../components/aside.html">Aside</a>
323
+ <a href="../components/calendar.html">Calendar</a>
311
324
  <a href="../components/card.html">Card</a>
312
325
  <a href="../components/code-editor.html">Code Editor</a>
313
326
  <a href="../components/combobox.html">Combobox</a>
@@ -329,13 +342,16 @@
329
342
  <a href="../components/show-more.html">Show More</a>
330
343
  <a href="../components/slider.html">Slider</a>
331
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
332
346
  <a href="../components/spinner.html">Spinner</a>
333
347
  <a href="../components/split.html">Split</a>
334
348
  <a href="../components/table.html">Table</a>
335
349
  <a href="../components/tabs.html">Tabs</a>
336
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
337
352
  <a href="../components/theme-select.html">Theme Select</a>
338
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
354
+ <a href="../components/time.html">Time</a>
339
355
  <a href="../components/timestamp.html">Timestamp</a>
340
356
  <a href="../components/toast.html">Toast</a>
341
357
  <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
@@ -156,6 +159,9 @@
156
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
157
160
  href="../components/sortable.html"
158
161
  >Sortable<br><small>Component</small></a></k-filter-item>
162
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
163
+ href="../components/speech-to-text.html"
164
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
159
165
  <k-filter-item filter-keywords="spinner loading components"><a
160
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
161
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -208,12 +214,18 @@
208
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
209
215
  <k-filter-item filter-keywords="tags tag input components"><a
210
216
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
217
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
218
+ href="../components/text-to-speech.html"
219
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
211
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
212
221
  href="../components/theme-select.html"
213
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
214
223
  <k-filter-item filter-keywords="theme switcher dark light components"><a
215
224
  href="../components/theme-switcher.html"
216
225
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
226
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
227
+ href="../components/time.html"
228
+ >Time<br><small>Component</small></a></k-filter-item>
217
229
  <k-filter-item filter-keywords="timestamp date time components"><a
218
230
  href="../components/timestamp.html"
219
231
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -308,6 +320,7 @@
308
320
  <h3>Components</h3>
309
321
  <a href="../components/accordion.html">Accordion</a>
310
322
  <a href="../components/aside.html">Aside</a>
323
+ <a href="../components/calendar.html">Calendar</a>
311
324
  <a href="../components/card.html">Card</a>
312
325
  <a href="../components/code-editor.html">Code Editor</a>
313
326
  <a href="../components/combobox.html">Combobox</a>
@@ -329,13 +342,16 @@
329
342
  <a href="../components/show-more.html">Show More</a>
330
343
  <a href="../components/slider.html">Slider</a>
331
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
332
346
  <a href="../components/spinner.html">Spinner</a>
333
347
  <a href="../components/split.html">Split</a>
334
348
  <a href="../components/table.html">Table</a>
335
349
  <a href="../components/tabs.html">Tabs</a>
336
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
337
352
  <a href="../components/theme-select.html">Theme Select</a>
338
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
354
+ <a href="../components/time.html">Time</a>
339
355
  <a href="../components/timestamp.html">Timestamp</a>
340
356
  <a href="../components/toast.html">Toast</a>
341
357
  <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
@@ -155,6 +158,9 @@
155
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
156
159
  href="../components/sortable.html"
157
160
  >Sortable<br><small>Component</small></a></k-filter-item>
161
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
162
+ href="../components/speech-to-text.html"
163
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
158
164
  <k-filter-item filter-keywords="spinner loading components"><a
159
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
160
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -207,12 +213,18 @@
207
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
208
214
  <k-filter-item filter-keywords="tags tag input components"><a
209
215
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
216
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
217
+ href="../components/text-to-speech.html"
218
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
210
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
211
220
  href="../components/theme-select.html"
212
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
213
222
  <k-filter-item filter-keywords="theme switcher dark light components"><a
214
223
  href="../components/theme-switcher.html"
215
224
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
225
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
226
+ href="../components/time.html"
227
+ >Time<br><small>Component</small></a></k-filter-item>
216
228
  <k-filter-item filter-keywords="timestamp date time components"><a
217
229
  href="../components/timestamp.html"
218
230
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -307,6 +319,7 @@
307
319
  <h3>Components</h3>
308
320
  <a href="../components/accordion.html">Accordion</a>
309
321
  <a href="../components/aside.html">Aside</a>
322
+ <a href="../components/calendar.html">Calendar</a>
310
323
  <a href="../components/card.html">Card</a>
311
324
  <a href="../components/code-editor.html">Code Editor</a>
312
325
  <a href="../components/combobox.html">Combobox</a>
@@ -328,13 +341,16 @@
328
341
  <a href="../components/show-more.html">Show More</a>
329
342
  <a href="../components/slider.html">Slider</a>
330
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
331
345
  <a href="../components/spinner.html">Spinner</a>
332
346
  <a href="../components/split.html">Split</a>
333
347
  <a href="../components/table.html">Table</a>
334
348
  <a href="../components/tabs.html">Tabs</a>
335
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
336
351
  <a href="../components/theme-select.html">Theme Select</a>
337
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
353
+ <a href="../components/time.html">Time</a>
338
354
  <a href="../components/timestamp.html">Timestamp</a>
339
355
  <a href="../components/toast.html">Toast</a>
340
356
  <a href="../components/toggle.html">Toggle</a>
@@ -64,6 +64,9 @@
64
64
  href="../components/accordion.html">Accordion<br><small>Component</small></a></k-filter-item>
65
65
  <k-filter-item filter-keywords="aside sidebar components"><a
66
66
  href="../components/aside.html">Aside<br><small>Component</small></a></k-filter-item>
67
+ <k-filter-item filter-keywords="calendar date picker range month day components"><a
68
+ href="../components/calendar.html"
69
+ >Calendar<br><small>Component</small></a></k-filter-item>
67
70
  <k-filter-item filter-keywords="card components"><a
68
71
  href="../components/card.html">Card<br><small>Component</small></a></k-filter-item>
69
72
  <k-filter-item filter-keywords="code editor codeeditor monaco components"><a
@@ -119,6 +122,9 @@
119
122
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
120
123
  href="../components/sortable.html"
121
124
  >Sortable<br><small>Component</small></a></k-filter-item>
125
+ <k-filter-item filter-keywords="speech to text speechtotext microphone voice recognition transcription components"><a
126
+ href="../components/speech-to-text.html"
127
+ >Speech To Text<br><small>Component</small></a></k-filter-item>
122
128
  <k-filter-item filter-keywords="spinner loading components"><a
123
129
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
124
130
  <k-filter-item filter-keywords="split pane components"><a
@@ -171,12 +177,18 @@
171
177
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
172
178
  <k-filter-item filter-keywords="tags tag input components"><a
173
179
  href="../components/tags.html">Tags<br><small>Component</small></a></k-filter-item>
180
+ <k-filter-item filter-keywords="text to speech texttospeech tts speak voice synthesis components"><a
181
+ href="../components/text-to-speech.html"
182
+ >Text To Speech<br><small>Component</small></a></k-filter-item>
174
183
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
175
184
  href="../components/theme-select.html"
176
185
  >Theme Select<br><small>Component</small></a></k-filter-item>
177
186
  <k-filter-item filter-keywords="theme switcher dark light components"><a
178
187
  href="../components/theme-switcher.html"
179
188
  >Theme Switcher<br><small>Component</small></a></k-filter-item>
189
+ <k-filter-item filter-keywords="time picker clock hour minute form components"><a
190
+ href="../components/time.html"
191
+ >Time<br><small>Component</small></a></k-filter-item>
180
192
  <k-filter-item filter-keywords="timestamp date time components"><a
181
193
  href="../components/timestamp.html"
182
194
  >Timestamp<br><small>Component</small></a></k-filter-item>
@@ -271,6 +283,7 @@
271
283
  <h3>Components</h3>
272
284
  <a href="../components/accordion.html">Accordion</a>
273
285
  <a href="../components/aside.html">Aside</a>
286
+ <a href="../components/calendar.html">Calendar</a>
274
287
  <a href="../components/card.html">Card</a>
275
288
  <a href="../components/code-editor.html">Code Editor</a>
276
289
  <a href="../components/combobox.html">Combobox</a>
@@ -292,13 +305,16 @@
292
305
  <a href="../components/show-more.html">Show More</a>
293
306
  <a href="../components/slider.html">Slider</a>
294
307
  <a href="../components/sortable.html">Sortable</a>
308
+ <a href="../components/speech-to-text.html">Speech To Text</a>
295
309
  <a href="../components/spinner.html">Spinner</a>
296
310
  <a href="../components/split.html">Split</a>
297
311
  <a href="../components/table.html">Table</a>
298
312
  <a href="../components/tabs.html">Tabs</a>
299
313
  <a href="../components/tags.html">Tags</a>
314
+ <a href="../components/text-to-speech.html">Text To Speech</a>
300
315
  <a href="../components/theme-select.html">Theme Select</a>
301
316
  <a href="../components/theme-switcher.html">Theme Switcher</a>
317
+ <a href="../components/time.html">Time</a>
302
318
  <a href="../components/timestamp.html">Timestamp</a>
303
319
  <a href="../components/toast.html">Toast</a>
304
320
  <a href="../components/toggle.html">Toggle</a>