@ledvance/base 1.1.57 → 1.1.58
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
|
@@ -84,7 +84,7 @@ export function FanAdjustViewContent(props: FanAdjustViewProps) {
|
|
|
84
84
|
<Text style={{color: '#000'}}>{I18n.getLang('ceiling_fan_direction_info_option_2_text')}</Text>
|
|
85
85
|
</View>,
|
|
86
86
|
})}>
|
|
87
|
-
<Image style={{width: cx(16), height: cx(16), tintColor: '#ff6600'}} source={
|
|
87
|
+
<Image style={{width: cx(16), height: cx(16), tintColor: '#ff6600'}} source={res.ic_info}/>
|
|
88
88
|
</TouchableOpacity>
|
|
89
89
|
</View>
|
|
90
90
|
<Segmented
|
|
@@ -114,7 +114,7 @@ export function FanAdjustViewContent(props: FanAdjustViewProps) {
|
|
|
114
114
|
<Text style={{color: '#000'}}>{I18n.getLang('ceiling_fan_mode_info_option_2_text')}</Text>
|
|
115
115
|
</View>,
|
|
116
116
|
})}>
|
|
117
|
-
<Image style={{width: cx(16), height: cx(16), tintColor: '#ff6600'}} source={
|
|
117
|
+
<Image style={{width: cx(16), height: cx(16), tintColor: '#ff6600'}} source={res.ic_info}/>
|
|
118
118
|
</TouchableOpacity>
|
|
119
119
|
</View>
|
|
120
120
|
<Segmented
|
package/src/components/Popup.tsx
CHANGED
|
@@ -15,7 +15,7 @@ const InformationPopup = (props: InformationPopupProps) => {
|
|
|
15
15
|
|
|
16
16
|
const titleNode = () => {
|
|
17
17
|
return (
|
|
18
|
-
<View style={{flexDirection: 'row', height: cx(
|
|
18
|
+
<View style={{flexDirection: 'row', height: cx(80), justifyContent: 'space-between'}}>
|
|
19
19
|
<View style={{flexDirection: 'column-reverse', flex: 1, alignItems: 'center', paddingLeft: cx(12)}}>
|
|
20
20
|
<Text style={{
|
|
21
21
|
fontSize: cx(16),
|
|
@@ -48,7 +48,7 @@ const InformationPopup = (props: InformationPopupProps) => {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
Popup.custom({
|
|
51
|
-
content: <View style={{height: height - cx(
|
|
51
|
+
content: <View style={{height: height - cx(80), padding: cx(24)}}>
|
|
52
52
|
{props.content}
|
|
53
53
|
</View>,
|
|
54
54
|
title: titleNode(),
|
package/src/res/index.ts
CHANGED
|
@@ -17,7 +17,7 @@ export default {
|
|
|
17
17
|
device_panel_schedule_alert: 'device_panel_schedule_alert',
|
|
18
18
|
device_panel_schedule_add: 'device_panel_schedule_add',
|
|
19
19
|
ic_arrows_nav_clear: require('./materialiconsFilledCancel.png'),
|
|
20
|
-
ic_info: '
|
|
20
|
+
ic_info: require('./iconsMaterialOutlinedCommunicationInfo.png'),
|
|
21
21
|
ic_warning_amber: require('./materialiconsOutlinedArrowsNavWarningAmber.png'),
|
|
22
22
|
ic_check: 'ic_check',
|
|
23
23
|
ic_uncheck: require('./componentsIOsButtonsButtonAdd.png'),
|