@ledvance/ui-biz-bundle 1.0.78 → 1.0.80

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/ui-biz-bundle",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.78",
7
+ "version": "1.0.80",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -48,7 +48,7 @@ const LdvScheduleItem = (props: LdvScheduleItemProps) => {
48
48
  <View style={styles.infoContainer}>
49
49
  <Text style={styles.time}>{item.time}</Text>
50
50
  <Text style={styles.loop}>
51
- {loopText(item.loops.split('').map(loop => parseInt(loop)))}
51
+ {loopText(item.loops.split('').map(loop => parseInt(loop)), item.time)}
52
52
  </Text>
53
53
  <Text style={styles.name}>{item.aliasName}</Text>
54
54
  {showTags() && <View style={styles.typeContainer}>
@@ -484,7 +484,7 @@ const TimeScheduleEditPage = () => {
484
484
  value={state.loop}
485
485
  style={styles.zeroMarginHorizontal}
486
486
  onSelect={selectWeekAction}/>
487
- <Text style={styles.loopText}>{loopText(state.loop)}</Text>
487
+ <Text style={styles.loopText}>{loopText(state.loop, `${state.hour}:${state.minute}`)}</Text>
488
488
  {/* Apply for */}
489
489
  <View>
490
490
  <Text style={styles.itemTitle}>{I18n.getLang('timeschedule_add_schedule_subheadline_text')}</Text>
@@ -582,7 +582,7 @@ const TimeScheduleEditPage = () => {
582
582
  </View>
583
583
  </View>
584
584
  <View style={styles.summaryRight}>
585
- <Text style={styles.rightItem}>{loopText(state.loop)}</Text>
585
+ <Text style={styles.rightItem}>{loopText(state.loop, `${state.hour}:${state.minute}`)}</Text>
586
586
  </View>
587
587
  </View>
588
588
  <View style={styles.summaryContainer}>