@ledvance/base 1.1.93 → 1.1.94

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/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.1.93",
7
+ "version": "1.1.94",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -185,9 +185,9 @@ const DrawToolView = (props: DrawToolViewProps) => {
185
185
  containerStyle={{ marginHorizontal: cx(16), alignItems: 'center' }}
186
186
  style={{ marginHorizontal: cx(16), marginTop: cx(50) }}>
187
187
  <Spacer />
188
- <Text style={{ color: '#000', fontSize: cx(14) }}>Please set the number of bulbs according to the actual number of bulbs in the lamp string</Text>
188
+ <Text style={{ color: '#000', fontSize: cx(14) }}>{I18n.getLang('string_lights_set_bulbs_title')}</Text>
189
189
  <Spacer height={cx(10)}/>
190
- <Text style={{color: '#999'}}>Supports a maximum of 48 and a minumum of 5</Text>
190
+ <Text style={{color: '#999'}}>{I18n.getLang('string_lights_set_bulbs_description_text')}</Text>
191
191
  <Spacer />
192
192
  <Stepper
193
193
  min={5}
@@ -29,6 +29,7 @@ const LdvPickerView = (props: LdvPickerViewProps) => {
29
29
  <View style={styles.picContainer}>
30
30
  <Picker
31
31
  style={[styles.picker, styles.pickerLeft]}
32
+ loop={true}
32
33
  theme={pickerTheme}
33
34
  itemStyle={styles.pickerItem}
34
35
  textSize={convertX(14)}
@@ -48,6 +49,7 @@ const LdvPickerView = (props: LdvPickerViewProps) => {
48
49
  <View style={styles.picContainer}>
49
50
  <Picker
50
51
  style={[styles.picker, styles.pickerLeft]}
52
+ loop={true}
51
53
  theme={pickerTheme}
52
54
  itemStyle={styles.pickerItem}
53
55
  textSize={convertX(14)}