@pega/cosmos-react-core 9.0.0-build.13.1 → 9.0.0-build.13.3
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/lib/components/AppShell/NavigationListItemWrapper.d.ts.map +1 -1
- package/lib/components/AppShell/NavigationListItemWrapper.js +0 -1
- package/lib/components/AppShell/NavigationListItemWrapper.js.map +1 -1
- package/lib/components/Location/GoogleMapsAPI.d.ts.map +1 -1
- package/lib/components/Location/GoogleMapsAPI.js +16 -19
- package/lib/components/Location/GoogleMapsAPI.js.map +1 -1
- package/lib/components/Menu/Menu.styles.d.ts.map +1 -1
- package/lib/components/Menu/Menu.styles.js +6 -6
- package/lib/components/Menu/Menu.styles.js.map +1 -1
- package/lib/components/MultiStepForm/MultiStepForm.js +1 -1
- package/lib/components/MultiStepForm/MultiStepForm.js.map +1 -1
- package/lib/components/PageTemplates/PageTemplates.d.ts.map +1 -1
- package/lib/components/PageTemplates/PageTemplates.js +11 -6
- package/lib/components/PageTemplates/PageTemplates.js.map +1 -1
- package/lib/components/SpeechToTextButton/SpeechToTextButton.d.ts +13 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.d.ts.map +1 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.js +29 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.js.map +1 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.test-ids.d.ts +2 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.test-ids.d.ts.map +1 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.test-ids.js +3 -0
- package/lib/components/SpeechToTextButton/SpeechToTextButton.test-ids.js.map +1 -0
- package/lib/components/SpeechToTextButton/index.d.ts +3 -0
- package/lib/components/SpeechToTextButton/index.d.ts.map +1 -0
- package/lib/components/SpeechToTextButton/index.js +2 -0
- package/lib/components/SpeechToTextButton/index.js.map +1 -0
- package/lib/hooks/index.d.ts +1 -0
- package/lib/hooks/index.d.ts.map +1 -1
- package/lib/hooks/index.js +1 -0
- package/lib/hooks/index.js.map +1 -1
- package/lib/hooks/useI18n.d.ts +10 -0
- package/lib/hooks/useI18n.d.ts.map +1 -1
- package/lib/hooks/useSpeechRecognition.d.ts +21 -0
- package/lib/hooks/useSpeechRecognition.d.ts.map +1 -0
- package/lib/hooks/useSpeechRecognition.js +122 -0
- package/lib/hooks/useSpeechRecognition.js.map +1 -0
- package/lib/i18n/default.d.ts +10 -0
- package/lib/i18n/default.d.ts.map +1 -1
- package/lib/i18n/default.js +12 -0
- package/lib/i18n/default.js.map +1 -1
- package/lib/i18n/i18n.d.ts +10 -0
- package/lib/i18n/i18n.d.ts.map +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/styles/utils.d.ts.map +1 -1
- package/lib/styles/utils.js +8 -2
- package/lib/styles/utils.js.map +1 -1
- package/lib/theme/theme.d.ts +24 -0
- package/lib/theme/theme.d.ts.map +1 -1
- package/lib/theme/themeDefinition.json +14 -0
- package/lib/theme/themeOverrides.schema.json +15 -0
- package/lib/theme/themes/virgoTheme.json +5 -0
- package/package.json +2 -1
package/lib/i18n/default.js
CHANGED
|
@@ -107,6 +107,8 @@ export default {
|
|
|
107
107
|
generate: 'Generate',
|
|
108
108
|
reject: 'Reject',
|
|
109
109
|
modify: 'Modify',
|
|
110
|
+
start: 'Start',
|
|
111
|
+
stop: 'Stop',
|
|
110
112
|
/* Static verb noun */
|
|
111
113
|
view_all: 'View all',
|
|
112
114
|
view_less: 'View less',
|
|
@@ -454,6 +456,7 @@ export default {
|
|
|
454
456
|
finalizing_response: 'Finalizing response',
|
|
455
457
|
preparing_content: 'Preparing content',
|
|
456
458
|
response_generated: 'Response generated',
|
|
459
|
+
processing_speech: 'Processing speech',
|
|
457
460
|
good_response: 'Good response',
|
|
458
461
|
bad_response: 'Bad response',
|
|
459
462
|
share_feedback: 'Share feedback',
|
|
@@ -501,6 +504,15 @@ export default {
|
|
|
501
504
|
/* core: PageTemplates */
|
|
502
505
|
configurable_layout_instructions: 'Configurable layout. Use tab key to select an item. Use arrow keys to move it to a new position. Use arrow keys with shift to resize the item in the given direction.',
|
|
503
506
|
page_number: 'Page {0}',
|
|
507
|
+
/* core:SpeechToTextButton */
|
|
508
|
+
dictate: 'Dictate',
|
|
509
|
+
stop_dictation: 'Stop dictation',
|
|
510
|
+
/* core:SpeechRecognition */
|
|
511
|
+
no_speech_detected: 'No speech was detected. Please try speaking again.',
|
|
512
|
+
no_microphone_found: 'No microphone was found. Please check your audio input.',
|
|
513
|
+
microphone_access_denied: 'Microphone access was denied. Please allow access and try again.',
|
|
514
|
+
speech_recognition_error: 'Speech recognition error: {0}',
|
|
515
|
+
speech_recognition_not_supported: 'Speech recognition is not supported in this browser.',
|
|
504
516
|
/* dnd:DragHandle */
|
|
505
517
|
drag_handle_activate_description: 'Press Space to activate dragging.',
|
|
506
518
|
drag_handle_drop_description: 'Press Space again to drop.',
|