kempo-ui 0.4.4 → 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/dist/components/TextToSpeech.js +4 -4
- package/dist/components/VoiceSelector.js +49 -0
- package/dist/utils/voice.js +1 -0
- package/docs/components/accordion.html +7 -0
- package/docs/components/aside.html +7 -0
- package/docs/components/calendar.html +7 -0
- package/docs/components/card.html +7 -0
- package/docs/components/code-editor.html +7 -0
- package/docs/components/color-picker.html +7 -0
- package/docs/components/combobox.html +7 -0
- package/docs/components/content-slider.html +7 -0
- package/docs/components/context.html +7 -0
- package/docs/components/dialog.html +7 -0
- package/docs/components/dropdown.html +7 -0
- package/docs/components/filter-list.html +7 -0
- package/docs/components/focus-capture.html +7 -0
- package/docs/components/html-editor.html +7 -0
- package/docs/components/hybrid-component.html +7 -0
- package/docs/components/icon.html +7 -0
- package/docs/components/import.html +7 -0
- package/docs/components/light-component.html +7 -0
- package/docs/components/nav-spacer.html +7 -0
- package/docs/components/nav.html +7 -0
- package/docs/components/photo-viewer.html +7 -0
- package/docs/components/progress.html +7 -0
- package/docs/components/resize.html +7 -0
- package/docs/components/shadow-component.html +7 -0
- package/docs/components/show-more.html +7 -0
- package/docs/components/slider.html +7 -0
- package/docs/components/sortable.html +7 -0
- package/docs/components/speech-to-text.html +7 -0
- package/docs/components/spinner.html +7 -0
- package/docs/components/split.html +7 -0
- package/docs/components/table.html +7 -0
- package/docs/components/tableControls.html +7 -0
- package/docs/components/tableCustomFields.html +7 -0
- package/docs/components/tableFetchRecords.html +7 -0
- package/docs/components/tableFieldSortHide.html +7 -0
- package/docs/components/tablePagination.html +7 -0
- package/docs/components/tablePlaceholder.html +7 -0
- package/docs/components/tableRecordEditing.html +7 -0
- package/docs/components/tableRecordFiltering.html +7 -0
- package/docs/components/tableRecordHiding.html +7 -0
- package/docs/components/tableRecordSearching.html +7 -0
- package/docs/components/tableRecordSelection.html +7 -0
- package/docs/components/tableRowControls.html +7 -0
- package/docs/components/tableServerSync.html +7 -0
- package/docs/components/tableSorting.html +7 -0
- package/docs/components/tabs.html +7 -0
- package/docs/components/tags.html +7 -0
- package/docs/components/text-to-speech.html +51 -1
- package/docs/components/theme-select.html +7 -0
- package/docs/components/theme-switcher.html +7 -0
- package/docs/components/time.html +7 -0
- package/docs/components/timestamp.html +7 -0
- package/docs/components/toast.html +7 -0
- package/docs/components/toggle.html +7 -0
- package/docs/components/tree.html +7 -0
- package/docs/components/voice-selector.html +598 -0
- package/docs/index.html +19 -0
- package/docs/src/components/TextToSpeech.js +4 -4
- package/docs/src/components/VoiceSelector.js +49 -0
- package/docs/src/utils/voice.js +1 -0
- package/docs/utils/context.html +7 -0
- package/docs/utils/cookie.html +7 -0
- package/docs/utils/debounce.html +7 -0
- package/docs/utils/drag.html +7 -0
- package/docs/utils/elevation.html +7 -0
- package/docs/utils/formatTimestamp.html +7 -0
- package/docs/utils/object.html +7 -0
- package/docs/utils/propConverters.html +7 -0
- package/docs/utils/string.html +7 -0
- package/docs/utils/theme.html +7 -0
- package/docs/utils/toTitleCase.html +7 -0
- package/docs/utils/type.html +7 -0
- package/docs/utils/voice.html +536 -0
- package/docs/utils/wait.html +7 -0
- package/docs-src/components/text-to-speech.page.html +44 -1
- package/docs-src/components/voice-selector.page.html +125 -0
- package/docs-src/index.page.html +12 -0
- package/docs-src/nav.fragment.html +7 -0
- package/docs-src/utils/voice.page.html +66 -0
- package/llms.txt +2 -0
- package/package.json +1 -1
- package/src/components/TextToSpeech.js +13 -2
- package/src/components/VoiceSelector.js +271 -0
- package/src/utils/voice.js +103 -0
- package/tests/components/TextToSpeech.browser-test.js +150 -1
- package/tests/components/VoiceSelector.browser-test.js +374 -0
- package/tests/utils/voice.browser-test.js +128 -0
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
package/docs/components/nav.html
CHANGED
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|
|
@@ -198,6 +198,9 @@
|
|
|
198
198
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
199
199
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
200
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>
|
|
201
204
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
202
205
|
href="../components/shadow-component.html"
|
|
203
206
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -231,6 +234,8 @@
|
|
|
231
234
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
232
235
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
233
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>
|
|
234
239
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
235
240
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
236
241
|
</k-filter-list>
|
|
@@ -317,6 +322,7 @@
|
|
|
317
322
|
<a href="../components/toast.html">Toast</a>
|
|
318
323
|
<a href="../components/toggle.html">Toggle</a>
|
|
319
324
|
<a href="../components/tree.html">Tree</a>
|
|
325
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
320
326
|
</div>
|
|
321
327
|
|
|
322
328
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -339,6 +345,7 @@
|
|
|
339
345
|
<a href="../utils/string.html">string</a>
|
|
340
346
|
<a href="../utils/theme.html">theme</a>
|
|
341
347
|
<a href="../utils/type.html">type</a>
|
|
348
|
+
<a href="../utils/voice.html">voice</a>
|
|
342
349
|
<a href="../utils/wait.html">wait</a>
|
|
343
350
|
</div>
|
|
344
351
|
</menu>
|