@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/native-components",
3
- "version": "2.29.4-beta.2",
3
+ "version": "2.29.4-beta.3",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -68,6 +68,7 @@ const PlayerBase = (props) => {
68
68
  onTogglePlayback();
69
69
  }}
70
70
  FONT_SIZE={FONT_SIZE}
71
+ testID={COMP_GENERAL_CONSTANTS.ttsPlayButton}
71
72
  />
72
73
  );
73
74
  default:
@@ -395,7 +395,7 @@ export const Story = ({
395
395
  setShowPlayer(true)
396
396
  await togglePlayback()
397
397
  }}
398
- testID={COMP_GENERAL_CONSTANTS.ttsPlayButton}
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
- ttsPlayButton: 'COMP_TTS_PLAY_BUTTON',
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
  };