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>
|
|
@@ -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>
|
package/docs/components/nav.html
CHANGED
|
@@ -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>
|