@ledvance/group-ui-biz-bundle 1.0.120 → 1.0.121

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.120",
7
+ "version": "1.0.121",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -224,7 +224,7 @@ const DiySceneEditorPage = (props: { theme?: ThemeType }) => {
224
224
  maxLength={33}
225
225
  showError={state.sceneInfo.name.length > 32 || nameRepeat}
226
226
  tipColor={nameRepeat ? props.theme?.global.error : undefined}
227
- tipIcon={nameRepeat ? res.ic_text_field_input_error : undefined}
227
+ tipIcon={nameRepeat ? { uri: res.ic_text_field_input_error } : undefined}
228
228
  errorText={I18n.getLang(
229
229
  nameRepeat ? 'string_light_pp_field_sm_add_error1' : 'add_new_dynamic_mood_alert_text'
230
230
  )}
@@ -236,13 +236,13 @@ const DiySceneEditorPage = (props: { theme?: ThemeType }) => {
236
236
  const color = {h: state.h, s: state.s * 10, v: state.v}
237
237
  state.sceneInfo.nodes.push({top: color, bottom: color});
238
238
  }}>
239
- <Image source={{uri: res.ic_plus}} style={{tintColor: props.theme?.icon.primary}} />
239
+ <Image source={{uri: res.ic_plus}} style={{width: cx(25), height: cx(25), tintColor: props.theme?.icon.primary}} />
240
240
  </TouchableOpacity>}
241
241
  { state.sceneInfo.nodes.length > 2 && <TouchableOpacity onPress={() => {
242
242
  state.sceneInfo.nodes.splice(state.currentNode, 1)
243
243
  state.currentNode = state.currentNode === state.sceneInfo.nodes.length ? 0 : state.currentNode
244
244
  }}>
245
- <Image source={{uri: res.ic_mood_del}} style={{marginLeft: cx(5),tintColor: props.theme?.icon.primary}} />
245
+ <Image source={{uri: res.ic_mood_del}} style={{width: cx(25), height: cx(25), marginLeft: cx(5),tintColor: props.theme?.icon.primary}} />
246
246
  </TouchableOpacity>}
247
247
  </View>
248
248
  <View style={styles.nodeList}>
@@ -318,6 +318,7 @@ const DiySceneEditorPage = (props: { theme?: ThemeType }) => {
318
318
  state.sceneInfo.speed = v
319
319
  }}
320
320
  subTitleStr={`${(state.sceneInfo.speed || 1)}/100`}/>
321
+ <Spacer />
321
322
  </Card>
322
323
  }
323
324