@ledvance/group-ui-biz-bundle 1.0.97 → 1.0.99

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
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/group-ui-biz-bundle",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.97",
7
+ "version": "1.0.99",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -31,7 +31,7 @@ export interface MusicPageParams {
31
31
  dreamMusicDp?: string
32
32
  isMixLight?: boolean
33
33
  isCeilingLight?: boolean
34
- colourLedDp?: string
34
+ colourLedDp?: string
35
35
  }
36
36
 
37
37
  const MusicPage = (props: { theme?: ThemeType }) => {
@@ -153,7 +153,7 @@ const MusicPage = (props: { theme?: ThemeType }) => {
153
153
  <View style={{ alignItems: 'center', marginVertical: cx(38) }}>
154
154
  <Image
155
155
  style={{ width: cx(200), height: cx(204) }}
156
- source={(state.musicData.musicSwitch && workMode === WorkMode.Music) ? Img.app_music_center_on : Img.app_music_center_off}
156
+ source={(state.musicData.musicSwitch && workMode === WorkMode.Music) ? (props.theme?.type === 'light' ? Img.app_music_center_on_light : Img.app_music_center_on_dark) : Img.app_music_center_off}
157
157
  resizeMode="contain"
158
158
  />
159
159
  </View>
@@ -5,5 +5,6 @@ export default {
5
5
  app_music_romantic: require('./app_music_romantic.png'),
6
6
  app_music_check: require('./iconsMaterialOutlinedArrowsNavCheck.png'),
7
7
  app_music_center_off: require('./illustrationsFeaturesMusicDisabled.png'),
8
- app_music_center_on: require('./illustrationsFeaturesMusic.png'),
8
+ app_music_center_on_light: require('./illustrationsFeaturesMusic.png'),
9
+ app_music_center_on_dark: require('./illustrationsFeaturesMusic-dark.png'),
9
10
  }