kempo-ui 0.4.3 → 0.4.5

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 (108) 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/dist/components/VoiceSelector.js +49 -0
  11. package/dist/utils/voice.js +1 -0
  12. package/docs/components/accordion.html +15 -0
  13. package/docs/components/aside.html +15 -0
  14. package/docs/components/calendar.html +15 -0
  15. package/docs/components/card.html +15 -0
  16. package/docs/components/code-editor.html +15 -0
  17. package/docs/components/color-picker.html +15 -0
  18. package/docs/components/combobox.html +15 -0
  19. package/docs/components/content-slider.html +15 -0
  20. package/docs/components/context.html +15 -0
  21. package/docs/components/dialog.html +15 -0
  22. package/docs/components/dropdown.html +15 -0
  23. package/docs/components/filter-list.html +15 -0
  24. package/docs/components/focus-capture.html +15 -0
  25. package/docs/components/html-editor.html +15 -0
  26. package/docs/components/hybrid-component.html +15 -0
  27. package/docs/components/icon.html +15 -0
  28. package/docs/components/import.html +15 -0
  29. package/docs/components/light-component.html +15 -0
  30. package/docs/components/nav-spacer.html +15 -0
  31. package/docs/components/nav.html +15 -0
  32. package/docs/components/photo-viewer.html +15 -0
  33. package/docs/components/progress.html +15 -0
  34. package/docs/components/resize.html +15 -0
  35. package/docs/components/shadow-component.html +15 -0
  36. package/docs/components/show-more.html +15 -0
  37. package/docs/components/slider.html +15 -0
  38. package/docs/components/sortable.html +15 -0
  39. package/docs/components/speech-to-text.html +724 -0
  40. package/docs/components/spinner.html +15 -0
  41. package/docs/components/split.html +15 -0
  42. package/docs/components/table.html +15 -0
  43. package/docs/components/tableControls.html +15 -0
  44. package/docs/components/tableCustomFields.html +15 -0
  45. package/docs/components/tableFetchRecords.html +15 -0
  46. package/docs/components/tableFieldSortHide.html +15 -0
  47. package/docs/components/tablePagination.html +15 -0
  48. package/docs/components/tablePlaceholder.html +15 -0
  49. package/docs/components/tableRecordEditing.html +15 -0
  50. package/docs/components/tableRecordFiltering.html +15 -0
  51. package/docs/components/tableRecordHiding.html +15 -0
  52. package/docs/components/tableRecordSearching.html +15 -0
  53. package/docs/components/tableRecordSelection.html +15 -0
  54. package/docs/components/tableRowControls.html +15 -0
  55. package/docs/components/tableServerSync.html +15 -0
  56. package/docs/components/tableSorting.html +15 -0
  57. package/docs/components/tabs.html +15 -0
  58. package/docs/components/tags.html +15 -0
  59. package/docs/components/text-to-speech.html +718 -0
  60. package/docs/components/theme-select.html +15 -0
  61. package/docs/components/theme-switcher.html +15 -0
  62. package/docs/components/time.html +15 -0
  63. package/docs/components/timestamp.html +15 -0
  64. package/docs/components/toast.html +15 -0
  65. package/docs/components/toggle.html +15 -0
  66. package/docs/components/tree.html +15 -0
  67. package/docs/components/voice-selector.html +598 -0
  68. package/docs/icons/mic.svg +1 -0
  69. package/docs/icons/record_voice_over.svg +1 -0
  70. package/docs/icons/stop.svg +1 -0
  71. package/docs/index.html +39 -0
  72. package/docs/src/components/SpeechToText.js +60 -0
  73. package/docs/src/components/TextToSpeech.js +56 -0
  74. package/docs/src/components/VoiceSelector.js +49 -0
  75. package/docs/src/utils/voice.js +1 -0
  76. package/docs/utils/context.html +15 -0
  77. package/docs/utils/cookie.html +15 -0
  78. package/docs/utils/debounce.html +15 -0
  79. package/docs/utils/drag.html +15 -0
  80. package/docs/utils/elevation.html +15 -0
  81. package/docs/utils/formatTimestamp.html +15 -0
  82. package/docs/utils/object.html +15 -0
  83. package/docs/utils/propConverters.html +15 -0
  84. package/docs/utils/string.html +15 -0
  85. package/docs/utils/theme.html +15 -0
  86. package/docs/utils/toTitleCase.html +15 -0
  87. package/docs/utils/type.html +15 -0
  88. package/docs/utils/voice.html +536 -0
  89. package/docs/utils/wait.html +15 -0
  90. package/docs-src/components/speech-to-text.page.html +251 -0
  91. package/docs-src/components/text-to-speech.page.html +245 -0
  92. package/docs-src/components/voice-selector.page.html +125 -0
  93. package/docs-src/index.page.html +24 -0
  94. package/docs-src/nav.fragment.html +15 -0
  95. package/docs-src/utils/voice.page.html +66 -0
  96. package/icons/mic.svg +1 -0
  97. package/icons/record_voice_over.svg +1 -0
  98. package/icons/stop.svg +1 -0
  99. package/llms.txt +4 -0
  100. package/package.json +1 -1
  101. package/src/components/SpeechToText.js +252 -0
  102. package/src/components/TextToSpeech.js +205 -0
  103. package/src/components/VoiceSelector.js +271 -0
  104. package/src/utils/voice.js +103 -0
  105. package/tests/components/SpeechToText.browser-test.js +530 -0
  106. package/tests/components/TextToSpeech.browser-test.js +581 -0
  107. package/tests/components/VoiceSelector.browser-test.js +374 -0
  108. package/tests/utils/voice.browser-test.js +128 -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>
@@ -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>
@@ -192,6 +198,9 @@
192
198
  >Toggle<br><small>Component</small></a></k-filter-item>
193
199
  <k-filter-item filter-keywords="tree treeview components"><a
194
200
  href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
201
+ <k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
202
+ href="../components/voice-selector.html"
203
+ >Voice Selector<br><small>Component</small></a></k-filter-item>
195
204
  <k-filter-item filter-keywords="shadow component base"><a
196
205
  href="../components/shadow-component.html"
197
206
  >Shadow Component<br><small>Base Component</small></a></k-filter-item>
@@ -225,6 +234,8 @@
225
234
  href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
226
235
  <k-filter-item filter-keywords="type utils utility"><a
227
236
  href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
237
+ <k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
238
+ href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
228
239
  <k-filter-item filter-keywords="wait async utils utility"><a
229
240
  href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
230
241
  </k-filter-list>
@@ -297,11 +308,13 @@
297
308
  <a href="../components/show-more.html">Show More</a>
298
309
  <a href="../components/slider.html">Slider</a>
299
310
  <a href="../components/sortable.html">Sortable</a>
311
+ <a href="../components/speech-to-text.html">Speech To Text</a>
300
312
  <a href="../components/spinner.html">Spinner</a>
301
313
  <a href="../components/split.html">Split</a>
302
314
  <a href="../components/table.html">Table</a>
303
315
  <a href="../components/tabs.html">Tabs</a>
304
316
  <a href="../components/tags.html">Tags</a>
317
+ <a href="../components/text-to-speech.html">Text To Speech</a>
305
318
  <a href="../components/theme-select.html">Theme Select</a>
306
319
  <a href="../components/theme-switcher.html">Theme Switcher</a>
307
320
  <a href="../components/time.html">Time</a>
@@ -309,6 +322,7 @@
309
322
  <a href="../components/toast.html">Toast</a>
310
323
  <a href="../components/toggle.html">Toggle</a>
311
324
  <a href="../components/tree.html">Tree</a>
325
+ <a href="../components/voice-selector.html">Voice Selector</a>
312
326
  </div>
313
327
 
314
328
  <h5 class="mb0">Base Components</h5>
@@ -331,6 +345,7 @@
331
345
  <a href="../utils/string.html">string</a>
332
346
  <a href="../utils/theme.html">theme</a>
333
347
  <a href="../utils/type.html">type</a>
348
+ <a href="../utils/voice.html">voice</a>
334
349
  <a href="../utils/wait.html">wait</a>
335
350
  </div>
336
351
  </menu>