@quintype/native-components 2.29.4-beta.2 → 2.29.4-beta.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/package.json
CHANGED
|
@@ -395,7 +395,7 @@ export const Story = ({
|
|
|
395
395
|
setShowPlayer(true)
|
|
396
396
|
await togglePlayback()
|
|
397
397
|
}}
|
|
398
|
-
testID={COMP_GENERAL_CONSTANTS.
|
|
398
|
+
testID={COMP_GENERAL_CONSTANTS.openTtsPlayer}
|
|
399
399
|
style={styles.ttsStoryButtonStyle}
|
|
400
400
|
>
|
|
401
401
|
<MaterialIcon name='account-voice' size={FONT_SIZE.h2} color={COLORS.BRAND_BLACK}/>
|
|
@@ -22,11 +22,12 @@ export const COMP_GENERAL_CONSTANTS = {
|
|
|
22
22
|
radioButtonTouch: 'COMP_GENERAL_RADIO',
|
|
23
23
|
shareButtonTouch: 'COMP_GENERAL_SHARE',
|
|
24
24
|
closeButtonTouch : 'COMP_CLOSE_BTN_TOUCH',
|
|
25
|
-
|
|
25
|
+
openTtsPlayer: 'COMP_OPEN_TTS_PLAYER',
|
|
26
26
|
ttsPlayerCloseButton: 'COMP_TTS_PLAYER_CLOSE_BUTTON',
|
|
27
27
|
ttsRewindButton: 'COMP_TTS_REWIND_BUTTON',
|
|
28
28
|
ttsForwardButton: 'COMP_TTS_FORWARD_BUTTON',
|
|
29
29
|
ttsPlayBackSpeed: 'COMP_TTS_PLAYBACK_SPEED',
|
|
30
30
|
ttsModalCloseButton: 'COMP_TTS_MODAL_CLOSE_BUTTON',
|
|
31
|
-
ttsPauseButton: 'COMP_TTS_PAUSE_BUTTON'
|
|
31
|
+
ttsPauseButton: 'COMP_TTS_PAUSE_BUTTON',
|
|
32
|
+
ttsPlayButton: 'COMP_TTS_PLAY_BUTTON'
|
|
32
33
|
};
|