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.
- package/.claude/skills/get-icon/SKILL.md +144 -0
- package/.claude/skills/highlight-code/SKILL.md +62 -0
- package/.claude/skills/new-component/SKILL.md +362 -0
- package/.github/skills/get-icon/SKILL.md +4 -4
- package/.github/skills/highlight-code/SKILL.md +51 -20
- package/.github/skills/new-component/SKILL.md +183 -152
- package/AGENTS.md +2 -2
- package/dist/components/SpeechToText.js +60 -0
- package/dist/components/TextToSpeech.js +56 -0
- package/dist/components/VoiceSelector.js +49 -0
- package/dist/utils/voice.js +1 -0
- package/docs/components/accordion.html +15 -0
- package/docs/components/aside.html +15 -0
- package/docs/components/calendar.html +15 -0
- package/docs/components/card.html +15 -0
- package/docs/components/code-editor.html +15 -0
- package/docs/components/color-picker.html +15 -0
- package/docs/components/combobox.html +15 -0
- package/docs/components/content-slider.html +15 -0
- package/docs/components/context.html +15 -0
- package/docs/components/dialog.html +15 -0
- package/docs/components/dropdown.html +15 -0
- package/docs/components/filter-list.html +15 -0
- package/docs/components/focus-capture.html +15 -0
- package/docs/components/html-editor.html +15 -0
- package/docs/components/hybrid-component.html +15 -0
- package/docs/components/icon.html +15 -0
- package/docs/components/import.html +15 -0
- package/docs/components/light-component.html +15 -0
- package/docs/components/nav-spacer.html +15 -0
- package/docs/components/nav.html +15 -0
- package/docs/components/photo-viewer.html +15 -0
- package/docs/components/progress.html +15 -0
- package/docs/components/resize.html +15 -0
- package/docs/components/shadow-component.html +15 -0
- package/docs/components/show-more.html +15 -0
- package/docs/components/slider.html +15 -0
- package/docs/components/sortable.html +15 -0
- package/docs/components/speech-to-text.html +724 -0
- package/docs/components/spinner.html +15 -0
- package/docs/components/split.html +15 -0
- package/docs/components/table.html +15 -0
- package/docs/components/tableControls.html +15 -0
- package/docs/components/tableCustomFields.html +15 -0
- package/docs/components/tableFetchRecords.html +15 -0
- package/docs/components/tableFieldSortHide.html +15 -0
- package/docs/components/tablePagination.html +15 -0
- package/docs/components/tablePlaceholder.html +15 -0
- package/docs/components/tableRecordEditing.html +15 -0
- package/docs/components/tableRecordFiltering.html +15 -0
- package/docs/components/tableRecordHiding.html +15 -0
- package/docs/components/tableRecordSearching.html +15 -0
- package/docs/components/tableRecordSelection.html +15 -0
- package/docs/components/tableRowControls.html +15 -0
- package/docs/components/tableServerSync.html +15 -0
- package/docs/components/tableSorting.html +15 -0
- package/docs/components/tabs.html +15 -0
- package/docs/components/tags.html +15 -0
- package/docs/components/text-to-speech.html +718 -0
- package/docs/components/theme-select.html +15 -0
- package/docs/components/theme-switcher.html +15 -0
- package/docs/components/time.html +15 -0
- package/docs/components/timestamp.html +15 -0
- package/docs/components/toast.html +15 -0
- package/docs/components/toggle.html +15 -0
- package/docs/components/tree.html +15 -0
- package/docs/components/voice-selector.html +598 -0
- package/docs/icons/mic.svg +1 -0
- package/docs/icons/record_voice_over.svg +1 -0
- package/docs/icons/stop.svg +1 -0
- package/docs/index.html +39 -0
- package/docs/src/components/SpeechToText.js +60 -0
- package/docs/src/components/TextToSpeech.js +56 -0
- package/docs/src/components/VoiceSelector.js +49 -0
- package/docs/src/utils/voice.js +1 -0
- package/docs/utils/context.html +15 -0
- package/docs/utils/cookie.html +15 -0
- package/docs/utils/debounce.html +15 -0
- package/docs/utils/drag.html +15 -0
- package/docs/utils/elevation.html +15 -0
- package/docs/utils/formatTimestamp.html +15 -0
- package/docs/utils/object.html +15 -0
- package/docs/utils/propConverters.html +15 -0
- package/docs/utils/string.html +15 -0
- package/docs/utils/theme.html +15 -0
- package/docs/utils/toTitleCase.html +15 -0
- package/docs/utils/type.html +15 -0
- package/docs/utils/voice.html +536 -0
- package/docs/utils/wait.html +15 -0
- package/docs-src/components/speech-to-text.page.html +251 -0
- package/docs-src/components/text-to-speech.page.html +245 -0
- package/docs-src/components/voice-selector.page.html +125 -0
- package/docs-src/index.page.html +24 -0
- package/docs-src/nav.fragment.html +15 -0
- package/docs-src/utils/voice.page.html +66 -0
- package/icons/mic.svg +1 -0
- package/icons/record_voice_over.svg +1 -0
- package/icons/stop.svg +1 -0
- package/llms.txt +4 -0
- package/package.json +1 -1
- package/src/components/SpeechToText.js +252 -0
- package/src/components/TextToSpeech.js +205 -0
- package/src/components/VoiceSelector.js +271 -0
- package/src/utils/voice.js +103 -0
- package/tests/components/SpeechToText.browser-test.js +530 -0
- package/tests/components/TextToSpeech.browser-test.js +581 -0
- package/tests/components/VoiceSelector.browser-test.js +374 -0
- 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>
|
|
@@ -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>
|
|
@@ -230,6 +236,9 @@
|
|
|
230
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
231
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
232
238
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
239
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
240
|
+
href="../components/voice-selector.html"
|
|
241
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
234
243
|
href="../components/shadow-component.html"
|
|
235
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,6 +272,8 @@
|
|
|
263
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
264
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
265
274
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
276
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
266
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
267
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
268
279
|
</k-filter-list>
|
|
@@ -335,11 +346,13 @@
|
|
|
335
346
|
<a href="../components/show-more.html">Show More</a>
|
|
336
347
|
<a href="../components/slider.html">Slider</a>
|
|
337
348
|
<a href="../components/sortable.html">Sortable</a>
|
|
349
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
338
350
|
<a href="../components/spinner.html">Spinner</a>
|
|
339
351
|
<a href="../components/split.html">Split</a>
|
|
340
352
|
<a href="../components/table.html">Table</a>
|
|
341
353
|
<a href="../components/tabs.html">Tabs</a>
|
|
342
354
|
<a href="../components/tags.html">Tags</a>
|
|
355
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
343
356
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
344
357
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
358
|
<a href="../components/time.html">Time</a>
|
|
@@ -347,6 +360,7 @@
|
|
|
347
360
|
<a href="../components/toast.html">Toast</a>
|
|
348
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
349
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
350
364
|
</div>
|
|
351
365
|
|
|
352
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -369,6 +383,7 @@
|
|
|
369
383
|
<a href="../utils/string.html">string</a>
|
|
370
384
|
<a href="../utils/theme.html">theme</a>
|
|
371
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
372
387
|
<a href="../utils/wait.html">wait</a>
|
|
373
388
|
</div>
|
|
374
389
|
</menu>
|
|
@@ -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>
|
|
@@ -230,6 +236,9 @@
|
|
|
230
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
231
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
232
238
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
239
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
240
|
+
href="../components/voice-selector.html"
|
|
241
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
234
243
|
href="../components/shadow-component.html"
|
|
235
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,6 +272,8 @@
|
|
|
263
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
264
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
265
274
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
276
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
266
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
267
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
268
279
|
</k-filter-list>
|
|
@@ -335,11 +346,13 @@
|
|
|
335
346
|
<a href="../components/show-more.html">Show More</a>
|
|
336
347
|
<a href="../components/slider.html">Slider</a>
|
|
337
348
|
<a href="../components/sortable.html">Sortable</a>
|
|
349
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
338
350
|
<a href="../components/spinner.html">Spinner</a>
|
|
339
351
|
<a href="../components/split.html">Split</a>
|
|
340
352
|
<a href="../components/table.html">Table</a>
|
|
341
353
|
<a href="../components/tabs.html">Tabs</a>
|
|
342
354
|
<a href="../components/tags.html">Tags</a>
|
|
355
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
343
356
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
344
357
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
358
|
<a href="../components/time.html">Time</a>
|
|
@@ -347,6 +360,7 @@
|
|
|
347
360
|
<a href="../components/toast.html">Toast</a>
|
|
348
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
349
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
350
364
|
</div>
|
|
351
365
|
|
|
352
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -369,6 +383,7 @@
|
|
|
369
383
|
<a href="../utils/string.html">string</a>
|
|
370
384
|
<a href="../utils/theme.html">theme</a>
|
|
371
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
372
387
|
<a href="../utils/wait.html">wait</a>
|
|
373
388
|
</div>
|
|
374
389
|
</menu>
|
|
@@ -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>
|
|
@@ -231,6 +237,9 @@
|
|
|
231
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
232
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
233
239
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
240
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
241
|
+
href="../components/voice-selector.html"
|
|
242
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
234
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
235
244
|
href="../components/shadow-component.html"
|
|
236
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -264,6 +273,8 @@
|
|
|
264
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
265
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
266
275
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
276
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
277
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
267
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
268
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
269
280
|
</k-filter-list>
|
|
@@ -336,11 +347,13 @@
|
|
|
336
347
|
<a href="../components/show-more.html">Show More</a>
|
|
337
348
|
<a href="../components/slider.html">Slider</a>
|
|
338
349
|
<a href="../components/sortable.html">Sortable</a>
|
|
350
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
339
351
|
<a href="../components/spinner.html">Spinner</a>
|
|
340
352
|
<a href="../components/split.html">Split</a>
|
|
341
353
|
<a href="../components/table.html">Table</a>
|
|
342
354
|
<a href="../components/tabs.html">Tabs</a>
|
|
343
355
|
<a href="../components/tags.html">Tags</a>
|
|
356
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
344
357
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
345
358
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
346
359
|
<a href="../components/time.html">Time</a>
|
|
@@ -348,6 +361,7 @@
|
|
|
348
361
|
<a href="../components/toast.html">Toast</a>
|
|
349
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
350
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
351
365
|
</div>
|
|
352
366
|
|
|
353
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -370,6 +384,7 @@
|
|
|
370
384
|
<a href="../utils/string.html">string</a>
|
|
371
385
|
<a href="../utils/theme.html">theme</a>
|
|
372
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
373
388
|
<a href="../utils/wait.html">wait</a>
|
|
374
389
|
</div>
|
|
375
390
|
</menu>
|
|
@@ -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>
|
|
@@ -231,6 +237,9 @@
|
|
|
231
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
232
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
233
239
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
240
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
241
|
+
href="../components/voice-selector.html"
|
|
242
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
234
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
235
244
|
href="../components/shadow-component.html"
|
|
236
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -264,6 +273,8 @@
|
|
|
264
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
265
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
266
275
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
276
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
277
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
267
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
268
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
269
280
|
</k-filter-list>
|
|
@@ -336,11 +347,13 @@
|
|
|
336
347
|
<a href="../components/show-more.html">Show More</a>
|
|
337
348
|
<a href="../components/slider.html">Slider</a>
|
|
338
349
|
<a href="../components/sortable.html">Sortable</a>
|
|
350
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
339
351
|
<a href="../components/spinner.html">Spinner</a>
|
|
340
352
|
<a href="../components/split.html">Split</a>
|
|
341
353
|
<a href="../components/table.html">Table</a>
|
|
342
354
|
<a href="../components/tabs.html">Tabs</a>
|
|
343
355
|
<a href="../components/tags.html">Tags</a>
|
|
356
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
344
357
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
345
358
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
346
359
|
<a href="../components/time.html">Time</a>
|
|
@@ -348,6 +361,7 @@
|
|
|
348
361
|
<a href="../components/toast.html">Toast</a>
|
|
349
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
350
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
351
365
|
</div>
|
|
352
366
|
|
|
353
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -370,6 +384,7 @@
|
|
|
370
384
|
<a href="../utils/string.html">string</a>
|
|
371
385
|
<a href="../utils/theme.html">theme</a>
|
|
372
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
373
388
|
<a href="../utils/wait.html">wait</a>
|
|
374
389
|
</div>
|
|
375
390
|
</menu>
|
|
@@ -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>
|
|
@@ -230,6 +236,9 @@
|
|
|
230
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
231
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
232
238
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
239
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
240
|
+
href="../components/voice-selector.html"
|
|
241
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
233
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
234
243
|
href="../components/shadow-component.html"
|
|
235
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -263,6 +272,8 @@
|
|
|
263
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
264
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
265
274
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
275
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
276
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
266
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
267
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
268
279
|
</k-filter-list>
|
|
@@ -335,11 +346,13 @@
|
|
|
335
346
|
<a href="../components/show-more.html">Show More</a>
|
|
336
347
|
<a href="../components/slider.html">Slider</a>
|
|
337
348
|
<a href="../components/sortable.html">Sortable</a>
|
|
349
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
338
350
|
<a href="../components/spinner.html">Spinner</a>
|
|
339
351
|
<a href="../components/split.html">Split</a>
|
|
340
352
|
<a href="../components/table.html">Table</a>
|
|
341
353
|
<a href="../components/tabs.html">Tabs</a>
|
|
342
354
|
<a href="../components/tags.html">Tags</a>
|
|
355
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
343
356
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
344
357
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
345
358
|
<a href="../components/time.html">Time</a>
|
|
@@ -347,6 +360,7 @@
|
|
|
347
360
|
<a href="../components/toast.html">Toast</a>
|
|
348
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
349
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
350
364
|
</div>
|
|
351
365
|
|
|
352
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -369,6 +383,7 @@
|
|
|
369
383
|
<a href="../utils/string.html">string</a>
|
|
370
384
|
<a href="../utils/theme.html">theme</a>
|
|
371
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
372
387
|
<a href="../utils/wait.html">wait</a>
|
|
373
388
|
</div>
|
|
374
389
|
</menu>
|
|
@@ -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>
|
|
@@ -194,6 +200,9 @@
|
|
|
194
200
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
195
201
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
196
202
|
href="../components/tree.html">Tree<br><small>Component</small></a></k-filter-item>
|
|
203
|
+
<k-filter-item filter-keywords="voice selector dropdown speech synthesis preference components"><a
|
|
204
|
+
href="../components/voice-selector.html"
|
|
205
|
+
>Voice Selector<br><small>Component</small></a></k-filter-item>
|
|
197
206
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
198
207
|
href="../components/shadow-component.html"
|
|
199
208
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -227,6 +236,8 @@
|
|
|
227
236
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
228
237
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
229
238
|
href="../utils/type.html">type<br><small>Utility</small></a></k-filter-item>
|
|
239
|
+
<k-filter-item filter-keywords="voice speech synthesis preference utils utility"><a
|
|
240
|
+
href="../utils/voice.html">voice<br><small>Utility</small></a></k-filter-item>
|
|
230
241
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
231
242
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
232
243
|
</k-filter-list>
|
|
@@ -299,11 +310,13 @@
|
|
|
299
310
|
<a href="../components/show-more.html">Show More</a>
|
|
300
311
|
<a href="../components/slider.html">Slider</a>
|
|
301
312
|
<a href="../components/sortable.html">Sortable</a>
|
|
313
|
+
<a href="../components/speech-to-text.html">Speech To Text</a>
|
|
302
314
|
<a href="../components/spinner.html">Spinner</a>
|
|
303
315
|
<a href="../components/split.html">Split</a>
|
|
304
316
|
<a href="../components/table.html">Table</a>
|
|
305
317
|
<a href="../components/tabs.html">Tabs</a>
|
|
306
318
|
<a href="../components/tags.html">Tags</a>
|
|
319
|
+
<a href="../components/text-to-speech.html">Text To Speech</a>
|
|
307
320
|
<a href="../components/theme-select.html">Theme Select</a>
|
|
308
321
|
<a href="../components/theme-switcher.html">Theme Switcher</a>
|
|
309
322
|
<a href="../components/time.html">Time</a>
|
|
@@ -311,6 +324,7 @@
|
|
|
311
324
|
<a href="../components/toast.html">Toast</a>
|
|
312
325
|
<a href="../components/toggle.html">Toggle</a>
|
|
313
326
|
<a href="../components/tree.html">Tree</a>
|
|
327
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
314
328
|
</div>
|
|
315
329
|
|
|
316
330
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -333,6 +347,7 @@
|
|
|
333
347
|
<a href="../utils/string.html">string</a>
|
|
334
348
|
<a href="../utils/theme.html">theme</a>
|
|
335
349
|
<a href="../utils/type.html">type</a>
|
|
350
|
+
<a href="../utils/voice.html">voice</a>
|
|
336
351
|
<a href="../utils/wait.html">wait</a>
|
|
337
352
|
</div>
|
|
338
353
|
</menu>
|