kempo-ui 0.4.3 → 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 (96) 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/SpeechToText.js +60 -0
  9. package/dist/components/TextToSpeech.js +56 -0
  10. package/docs/components/accordion.html +8 -0
  11. package/docs/components/aside.html +8 -0
  12. package/docs/components/calendar.html +8 -0
  13. package/docs/components/card.html +8 -0
  14. package/docs/components/code-editor.html +8 -0
  15. package/docs/components/color-picker.html +8 -0
  16. package/docs/components/combobox.html +8 -0
  17. package/docs/components/content-slider.html +8 -0
  18. package/docs/components/context.html +8 -0
  19. package/docs/components/dialog.html +8 -0
  20. package/docs/components/dropdown.html +8 -0
  21. package/docs/components/filter-list.html +8 -0
  22. package/docs/components/focus-capture.html +8 -0
  23. package/docs/components/html-editor.html +8 -0
  24. package/docs/components/hybrid-component.html +8 -0
  25. package/docs/components/icon.html +8 -0
  26. package/docs/components/import.html +8 -0
  27. package/docs/components/light-component.html +8 -0
  28. package/docs/components/nav-spacer.html +8 -0
  29. package/docs/components/nav.html +8 -0
  30. package/docs/components/photo-viewer.html +8 -0
  31. package/docs/components/progress.html +8 -0
  32. package/docs/components/resize.html +8 -0
  33. package/docs/components/shadow-component.html +8 -0
  34. package/docs/components/show-more.html +8 -0
  35. package/docs/components/slider.html +8 -0
  36. package/docs/components/sortable.html +8 -0
  37. package/docs/components/speech-to-text.html +717 -0
  38. package/docs/components/spinner.html +8 -0
  39. package/docs/components/split.html +8 -0
  40. package/docs/components/table.html +8 -0
  41. package/docs/components/tableControls.html +8 -0
  42. package/docs/components/tableCustomFields.html +8 -0
  43. package/docs/components/tableFetchRecords.html +8 -0
  44. package/docs/components/tableFieldSortHide.html +8 -0
  45. package/docs/components/tablePagination.html +8 -0
  46. package/docs/components/tablePlaceholder.html +8 -0
  47. package/docs/components/tableRecordEditing.html +8 -0
  48. package/docs/components/tableRecordFiltering.html +8 -0
  49. package/docs/components/tableRecordHiding.html +8 -0
  50. package/docs/components/tableRecordSearching.html +8 -0
  51. package/docs/components/tableRecordSelection.html +8 -0
  52. package/docs/components/tableRowControls.html +8 -0
  53. package/docs/components/tableServerSync.html +8 -0
  54. package/docs/components/tableSorting.html +8 -0
  55. package/docs/components/tabs.html +8 -0
  56. package/docs/components/tags.html +8 -0
  57. package/docs/components/text-to-speech.html +668 -0
  58. package/docs/components/theme-select.html +8 -0
  59. package/docs/components/theme-switcher.html +8 -0
  60. package/docs/components/time.html +8 -0
  61. package/docs/components/timestamp.html +8 -0
  62. package/docs/components/toast.html +8 -0
  63. package/docs/components/toggle.html +8 -0
  64. package/docs/components/tree.html +8 -0
  65. package/docs/icons/mic.svg +1 -0
  66. package/docs/icons/record_voice_over.svg +1 -0
  67. package/docs/icons/stop.svg +1 -0
  68. package/docs/index.html +20 -0
  69. package/docs/src/components/SpeechToText.js +60 -0
  70. package/docs/src/components/TextToSpeech.js +56 -0
  71. package/docs/utils/context.html +8 -0
  72. package/docs/utils/cookie.html +8 -0
  73. package/docs/utils/debounce.html +8 -0
  74. package/docs/utils/drag.html +8 -0
  75. package/docs/utils/elevation.html +8 -0
  76. package/docs/utils/formatTimestamp.html +8 -0
  77. package/docs/utils/object.html +8 -0
  78. package/docs/utils/propConverters.html +8 -0
  79. package/docs/utils/string.html +8 -0
  80. package/docs/utils/theme.html +8 -0
  81. package/docs/utils/toTitleCase.html +8 -0
  82. package/docs/utils/type.html +8 -0
  83. package/docs/utils/wait.html +8 -0
  84. package/docs-src/components/speech-to-text.page.html +251 -0
  85. package/docs-src/components/text-to-speech.page.html +202 -0
  86. package/docs-src/index.page.html +12 -0
  87. package/docs-src/nav.fragment.html +8 -0
  88. package/icons/mic.svg +1 -0
  89. package/icons/record_voice_over.svg +1 -0
  90. package/icons/stop.svg +1 -0
  91. package/llms.txt +2 -0
  92. package/package.json +1 -1
  93. package/src/components/SpeechToText.js +252 -0
  94. package/src/components/TextToSpeech.js +194 -0
  95. package/tests/components/SpeechToText.browser-test.js +530 -0
  96. package/tests/components/TextToSpeech.browser-test.js +432 -0
@@ -120,6 +120,9 @@
120
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
121
121
  href="../components/sortable.html"
122
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>
123
126
  <k-filter-item filter-keywords="spinner loading components"><a
124
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
125
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -172,6 +175,9 @@
172
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
173
176
  <k-filter-item filter-keywords="tags tag input components"><a
174
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>
175
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
176
182
  href="../components/theme-select.html"
177
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -297,11 +303,13 @@
297
303
  <a href="../components/show-more.html">Show More</a>
298
304
  <a href="../components/slider.html">Slider</a>
299
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
307
  <a href="../components/spinner.html">Spinner</a>
301
308
  <a href="../components/split.html">Split</a>
302
309
  <a href="../components/table.html">Table</a>
303
310
  <a href="../components/tabs.html">Tabs</a>
304
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
313
  <a href="../components/theme-select.html">Theme Select</a>
306
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
315
  <a href="../components/time.html">Time</a>
@@ -120,6 +120,9 @@
120
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
121
121
  href="../components/sortable.html"
122
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>
123
126
  <k-filter-item filter-keywords="spinner loading components"><a
124
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
125
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -172,6 +175,9 @@
172
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
173
176
  <k-filter-item filter-keywords="tags tag input components"><a
174
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>
175
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
176
182
  href="../components/theme-select.html"
177
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -297,11 +303,13 @@
297
303
  <a href="../components/show-more.html">Show More</a>
298
304
  <a href="../components/slider.html">Slider</a>
299
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
307
  <a href="../components/spinner.html">Spinner</a>
301
308
  <a href="../components/split.html">Split</a>
302
309
  <a href="../components/table.html">Table</a>
303
310
  <a href="../components/tabs.html">Tabs</a>
304
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
313
  <a href="../components/theme-select.html">Theme Select</a>
306
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
315
  <a href="../components/time.html">Time</a>
@@ -120,6 +120,9 @@
120
120
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
121
121
  href="../components/sortable.html"
122
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>
123
126
  <k-filter-item filter-keywords="spinner loading components"><a
124
127
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
125
128
  <k-filter-item filter-keywords="split pane components"><a
@@ -172,6 +175,9 @@
172
175
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
173
176
  <k-filter-item filter-keywords="tags tag input components"><a
174
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>
175
181
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
176
182
  href="../components/theme-select.html"
177
183
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -297,11 +303,13 @@
297
303
  <a href="../components/show-more.html">Show More</a>
298
304
  <a href="../components/slider.html">Slider</a>
299
305
  <a href="../components/sortable.html">Sortable</a>
306
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
307
  <a href="../components/spinner.html">Spinner</a>
301
308
  <a href="../components/split.html">Split</a>
302
309
  <a href="../components/table.html">Table</a>
303
310
  <a href="../components/tabs.html">Tabs</a>
304
311
  <a href="../components/tags.html">Tags</a>
312
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
313
  <a href="../components/theme-select.html">Theme Select</a>
306
314
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
315
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -159,6 +159,9 @@
159
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
160
160
  href="../components/sortable.html"
161
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>
162
165
  <k-filter-item filter-keywords="spinner loading components"><a
163
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
164
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -211,6 +214,9 @@
211
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
212
215
  <k-filter-item filter-keywords="tags tag input components"><a
213
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>
214
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
215
221
  href="../components/theme-select.html"
216
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -336,11 +342,13 @@
336
342
  <a href="../components/show-more.html">Show More</a>
337
343
  <a href="../components/slider.html">Slider</a>
338
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
339
346
  <a href="../components/spinner.html">Spinner</a>
340
347
  <a href="../components/split.html">Split</a>
341
348
  <a href="../components/table.html">Table</a>
342
349
  <a href="../components/tabs.html">Tabs</a>
343
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
344
352
  <a href="../components/theme-select.html">Theme Select</a>
345
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
346
354
  <a href="../components/time.html">Time</a>
@@ -159,6 +159,9 @@
159
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
160
160
  href="../components/sortable.html"
161
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>
162
165
  <k-filter-item filter-keywords="spinner loading components"><a
163
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
164
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -211,6 +214,9 @@
211
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
212
215
  <k-filter-item filter-keywords="tags tag input components"><a
213
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>
214
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
215
221
  href="../components/theme-select.html"
216
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -336,11 +342,13 @@
336
342
  <a href="../components/show-more.html">Show More</a>
337
343
  <a href="../components/slider.html">Slider</a>
338
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
339
346
  <a href="../components/spinner.html">Spinner</a>
340
347
  <a href="../components/split.html">Split</a>
341
348
  <a href="../components/table.html">Table</a>
342
349
  <a href="../components/tabs.html">Tabs</a>
343
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
344
352
  <a href="../components/theme-select.html">Theme Select</a>
345
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
346
354
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -122,6 +122,9 @@
122
122
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
123
123
  href="../components/sortable.html"
124
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>
125
128
  <k-filter-item filter-keywords="spinner loading components"><a
126
129
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
127
130
  <k-filter-item filter-keywords="split pane components"><a
@@ -174,6 +177,9 @@
174
177
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
175
178
  <k-filter-item filter-keywords="tags tag input components"><a
176
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>
177
183
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
178
184
  href="../components/theme-select.html"
179
185
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -299,11 +305,13 @@
299
305
  <a href="../components/show-more.html">Show More</a>
300
306
  <a href="../components/slider.html">Slider</a>
301
307
  <a href="../components/sortable.html">Sortable</a>
308
+ <a href="../components/speech-to-text.html">Speech To Text</a>
302
309
  <a href="../components/spinner.html">Spinner</a>
303
310
  <a href="../components/split.html">Split</a>
304
311
  <a href="../components/table.html">Table</a>
305
312
  <a href="../components/tabs.html">Tabs</a>
306
313
  <a href="../components/tags.html">Tags</a>
314
+ <a href="../components/text-to-speech.html">Text To Speech</a>
307
315
  <a href="../components/theme-select.html">Theme Select</a>
308
316
  <a href="../components/theme-switcher.html">Theme Switcher</a>
309
317
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -159,6 +159,9 @@
159
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
160
160
  href="../components/sortable.html"
161
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>
162
165
  <k-filter-item filter-keywords="spinner loading components"><a
163
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
164
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -211,6 +214,9 @@
211
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
212
215
  <k-filter-item filter-keywords="tags tag input components"><a
213
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>
214
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
215
221
  href="../components/theme-select.html"
216
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -336,11 +342,13 @@
336
342
  <a href="../components/show-more.html">Show More</a>
337
343
  <a href="../components/slider.html">Slider</a>
338
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
339
346
  <a href="../components/spinner.html">Spinner</a>
340
347
  <a href="../components/split.html">Split</a>
341
348
  <a href="../components/table.html">Table</a>
342
349
  <a href="../components/tabs.html">Tabs</a>
343
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
344
352
  <a href="../components/theme-select.html">Theme Select</a>
345
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
346
354
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -159,6 +159,9 @@
159
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
160
160
  href="../components/sortable.html"
161
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>
162
165
  <k-filter-item filter-keywords="spinner loading components"><a
163
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
164
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -211,6 +214,9 @@
211
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
212
215
  <k-filter-item filter-keywords="tags tag input components"><a
213
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>
214
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
215
221
  href="../components/theme-select.html"
216
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -336,11 +342,13 @@
336
342
  <a href="../components/show-more.html">Show More</a>
337
343
  <a href="../components/slider.html">Slider</a>
338
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
339
346
  <a href="../components/spinner.html">Spinner</a>
340
347
  <a href="../components/split.html">Split</a>
341
348
  <a href="../components/table.html">Table</a>
342
349
  <a href="../components/tabs.html">Tabs</a>
343
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
344
352
  <a href="../components/theme-select.html">Theme Select</a>
345
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
346
354
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -158,6 +158,9 @@
158
158
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
159
159
  href="../components/sortable.html"
160
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>
161
164
  <k-filter-item filter-keywords="spinner loading components"><a
162
165
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
163
166
  <k-filter-item filter-keywords="split pane components"><a
@@ -210,6 +213,9 @@
210
213
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
211
214
  <k-filter-item filter-keywords="tags tag input components"><a
212
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>
213
219
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
214
220
  href="../components/theme-select.html"
215
221
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -335,11 +341,13 @@
335
341
  <a href="../components/show-more.html">Show More</a>
336
342
  <a href="../components/slider.html">Slider</a>
337
343
  <a href="../components/sortable.html">Sortable</a>
344
+ <a href="../components/speech-to-text.html">Speech To Text</a>
338
345
  <a href="../components/spinner.html">Spinner</a>
339
346
  <a href="../components/split.html">Split</a>
340
347
  <a href="../components/table.html">Table</a>
341
348
  <a href="../components/tabs.html">Tabs</a>
342
349
  <a href="../components/tags.html">Tags</a>
350
+ <a href="../components/text-to-speech.html">Text To Speech</a>
343
351
  <a href="../components/theme-select.html">Theme Select</a>
344
352
  <a href="../components/theme-switcher.html">Theme Switcher</a>
345
353
  <a href="../components/time.html">Time</a>
@@ -159,6 +159,9 @@
159
159
  <k-filter-item filter-keywords="sortable drag drop sort components"><a
160
160
  href="../components/sortable.html"
161
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>
162
165
  <k-filter-item filter-keywords="spinner loading components"><a
163
166
  href="../components/spinner.html">Spinner<br><small>Component</small></a></k-filter-item>
164
167
  <k-filter-item filter-keywords="split pane components"><a
@@ -211,6 +214,9 @@
211
214
  href="../components/tabs.html">Tabs<br><small>Component</small></a></k-filter-item>
212
215
  <k-filter-item filter-keywords="tags tag input components"><a
213
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>
214
220
  <k-filter-item filter-keywords="theme select dropdown dark light components"><a
215
221
  href="../components/theme-select.html"
216
222
  >Theme Select<br><small>Component</small></a></k-filter-item>
@@ -336,11 +342,13 @@
336
342
  <a href="../components/show-more.html">Show More</a>
337
343
  <a href="../components/slider.html">Slider</a>
338
344
  <a href="../components/sortable.html">Sortable</a>
345
+ <a href="../components/speech-to-text.html">Speech To Text</a>
339
346
  <a href="../components/spinner.html">Spinner</a>
340
347
  <a href="../components/split.html">Split</a>
341
348
  <a href="../components/table.html">Table</a>
342
349
  <a href="../components/tabs.html">Tabs</a>
343
350
  <a href="../components/tags.html">Tags</a>
351
+ <a href="../components/text-to-speech.html">Text To Speech</a>
344
352
  <a href="../components/theme-select.html">Theme Select</a>
345
353
  <a href="../components/theme-switcher.html">Theme Switcher</a>
346
354
  <a href="../components/time.html">Time</a>