@ledvance/ui-biz-bundle 1.1.44 → 1.1.46
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
|
@@ -119,8 +119,9 @@ const FantasyMoodEditPage = () => {
|
|
|
119
119
|
}
|
|
120
120
|
if (list.length > 0) {
|
|
121
121
|
if (isDelete && workMode === SCENE) {
|
|
122
|
-
if(currentMood.id
|
|
123
|
-
|
|
122
|
+
if(currentMood.id === fantasyId) {
|
|
123
|
+
await setFantasyScene(list[0])
|
|
124
|
+
}
|
|
124
125
|
} else {
|
|
125
126
|
await setFantasyScene(currentMood)
|
|
126
127
|
}
|
|
@@ -27,7 +27,6 @@ const SelectPage = () => {
|
|
|
27
27
|
return (
|
|
28
28
|
<View style={styles.root}>
|
|
29
29
|
<View style={styles.topBar}>
|
|
30
|
-
<Spacer height={cx(45)}/>
|
|
31
30
|
<View style={styles.topContent}>
|
|
32
31
|
<Text style={styles.title}>{params.title}</Text>
|
|
33
32
|
<TouchableOpacity
|
|
@@ -81,7 +80,6 @@ const styles = StyleSheet.create({
|
|
|
81
80
|
flex: 1,
|
|
82
81
|
},
|
|
83
82
|
topBar: {
|
|
84
|
-
height: cx(91),
|
|
85
83
|
backgroundColor: '#eaeaea',
|
|
86
84
|
},
|
|
87
85
|
line: {
|
|
@@ -89,7 +87,7 @@ const styles = StyleSheet.create({
|
|
|
89
87
|
backgroundColor: '#d9d9d9',
|
|
90
88
|
},
|
|
91
89
|
topContent: {
|
|
92
|
-
|
|
90
|
+
paddingVertical: cx(30),
|
|
93
91
|
flexDirection: 'row',
|
|
94
92
|
alignItems: 'center',
|
|
95
93
|
},
|
|
@@ -106,6 +104,7 @@ const styles = StyleSheet.create({
|
|
|
106
104
|
textAlign: 'center',
|
|
107
105
|
color: '#000',
|
|
108
106
|
fontSize: cx(17),
|
|
107
|
+
paddingHorizontal: cx(110),
|
|
109
108
|
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
110
109
|
},
|
|
111
110
|
card: {
|