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
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
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>
|
|
240
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
244
|
href="../components/shadow-component.html"
|
|
242
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -270,6 +273,8 @@
|
|
|
270
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
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>
|
|
273
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
280
|
</k-filter-list>
|
|
@@ -356,6 +361,7 @@
|
|
|
356
361
|
<a href="../components/toast.html">Toast</a>
|
|
357
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
365
|
</div>
|
|
360
366
|
|
|
361
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -378,6 +384,7 @@
|
|
|
378
384
|
<a href="../utils/string.html">string</a>
|
|
379
385
|
<a href="../utils/theme.html">theme</a>
|
|
380
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
388
|
<a href="../utils/wait.html">wait</a>
|
|
382
389
|
</div>
|
|
383
390
|
</menu>
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
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>
|
|
240
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
244
|
href="../components/shadow-component.html"
|
|
242
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -270,6 +273,8 @@
|
|
|
270
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
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>
|
|
273
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
280
|
</k-filter-list>
|
|
@@ -356,6 +361,7 @@
|
|
|
356
361
|
<a href="../components/toast.html">Toast</a>
|
|
357
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
365
|
</div>
|
|
360
366
|
|
|
361
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -378,6 +384,7 @@
|
|
|
378
384
|
<a href="../utils/string.html">string</a>
|
|
379
385
|
<a href="../utils/theme.html">theme</a>
|
|
380
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
388
|
<a href="../utils/wait.html">wait</a>
|
|
382
389
|
</div>
|
|
383
390
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -200,6 +200,9 @@
|
|
|
200
200
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
201
201
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
202
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>
|
|
203
206
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
204
207
|
href="../components/shadow-component.html"
|
|
205
208
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -233,6 +236,8 @@
|
|
|
233
236
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
234
237
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
235
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>
|
|
236
241
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
237
242
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
238
243
|
</k-filter-list>
|
|
@@ -319,6 +324,7 @@
|
|
|
319
324
|
<a href="../components/toast.html">Toast</a>
|
|
320
325
|
<a href="../components/toggle.html">Toggle</a>
|
|
321
326
|
<a href="../components/tree.html">Tree</a>
|
|
327
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
322
328
|
</div>
|
|
323
329
|
|
|
324
330
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -341,6 +347,7 @@
|
|
|
341
347
|
<a href="../utils/string.html">string</a>
|
|
342
348
|
<a href="../utils/theme.html">theme</a>
|
|
343
349
|
<a href="../utils/type.html">type</a>
|
|
350
|
+
<a href="../utils/voice.html">voice</a>
|
|
344
351
|
<a href="../utils/wait.html">wait</a>
|
|
345
352
|
</div>
|
|
346
353
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
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>
|
|
240
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
244
|
href="../components/shadow-component.html"
|
|
242
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -270,6 +273,8 @@
|
|
|
270
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
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>
|
|
273
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
280
|
</k-filter-list>
|
|
@@ -356,6 +361,7 @@
|
|
|
356
361
|
<a href="../components/toast.html">Toast</a>
|
|
357
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
365
|
</div>
|
|
360
366
|
|
|
361
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -378,6 +384,7 @@
|
|
|
378
384
|
<a href="../utils/string.html">string</a>
|
|
379
385
|
<a href="../utils/theme.html">theme</a>
|
|
380
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
388
|
<a href="../utils/wait.html">wait</a>
|
|
382
389
|
</div>
|
|
383
390
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
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>
|
|
240
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
244
|
href="../components/shadow-component.html"
|
|
242
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -270,6 +273,8 @@
|
|
|
270
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
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>
|
|
273
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
280
|
</k-filter-list>
|
|
@@ -356,6 +361,7 @@
|
|
|
356
361
|
<a href="../components/toast.html">Toast</a>
|
|
357
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
365
|
</div>
|
|
360
366
|
|
|
361
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -378,6 +384,7 @@
|
|
|
378
384
|
<a href="../utils/string.html">string</a>
|
|
379
385
|
<a href="../utils/theme.html">theme</a>
|
|
380
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
388
|
<a href="../utils/wait.html">wait</a>
|
|
382
389
|
</div>
|
|
383
390
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
237
237
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
238
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>
|
|
239
242
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
240
243
|
href="../components/shadow-component.html"
|
|
241
244
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -269,6 +272,8 @@
|
|
|
269
272
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
270
273
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
271
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>
|
|
272
277
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
273
278
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
274
279
|
</k-filter-list>
|
|
@@ -355,6 +360,7 @@
|
|
|
355
360
|
<a href="../components/toast.html">Toast</a>
|
|
356
361
|
<a href="../components/toggle.html">Toggle</a>
|
|
357
362
|
<a href="../components/tree.html">Tree</a>
|
|
363
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
358
364
|
</div>
|
|
359
365
|
|
|
360
366
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -377,6 +383,7 @@
|
|
|
377
383
|
<a href="../utils/string.html">string</a>
|
|
378
384
|
<a href="../utils/theme.html">theme</a>
|
|
379
385
|
<a href="../utils/type.html">type</a>
|
|
386
|
+
<a href="../utils/voice.html">voice</a>
|
|
380
387
|
<a href="../utils/wait.html">wait</a>
|
|
381
388
|
</div>
|
|
382
389
|
</menu>
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
>Toggle<br><small>Component</small></a></k-filter-item>
|
|
238
238
|
<k-filter-item filter-keywords="tree treeview components"><a
|
|
239
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>
|
|
240
243
|
<k-filter-item filter-keywords="shadow component base"><a
|
|
241
244
|
href="../components/shadow-component.html"
|
|
242
245
|
>Shadow Component<br><small>Base Component</small></a></k-filter-item>
|
|
@@ -270,6 +273,8 @@
|
|
|
270
273
|
href="../utils/theme.html">theme<br><small>Utility</small></a></k-filter-item>
|
|
271
274
|
<k-filter-item filter-keywords="type utils utility"><a
|
|
272
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>
|
|
273
278
|
<k-filter-item filter-keywords="wait async utils utility"><a
|
|
274
279
|
href="../utils/wait.html">wait<br><small>Utility</small></a></k-filter-item>
|
|
275
280
|
</k-filter-list>
|
|
@@ -356,6 +361,7 @@
|
|
|
356
361
|
<a href="../components/toast.html">Toast</a>
|
|
357
362
|
<a href="../components/toggle.html">Toggle</a>
|
|
358
363
|
<a href="../components/tree.html">Tree</a>
|
|
364
|
+
<a href="../components/voice-selector.html">Voice Selector</a>
|
|
359
365
|
</div>
|
|
360
366
|
|
|
361
367
|
<h5 class="mb0">Base Components</h5>
|
|
@@ -378,6 +384,7 @@
|
|
|
378
384
|
<a href="../utils/string.html">string</a>
|
|
379
385
|
<a href="../utils/theme.html">theme</a>
|
|
380
386
|
<a href="../utils/type.html">type</a>
|
|
387
|
+
<a href="../utils/voice.html">voice</a>
|
|
381
388
|
<a href="../utils/wait.html">wait</a>
|
|
382
389
|
</div>
|
|
383
390
|
</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>
|