@ledvance/base 1.2.0 → 1.2.1
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
|
@@ -2,5 +2,5 @@ import { DeviceInfo } from '../api/native';
|
|
|
2
2
|
export interface ApplyForDeviceItemProps {
|
|
3
3
|
deviceInfo: DeviceInfo;
|
|
4
4
|
}
|
|
5
|
-
declare const
|
|
6
|
-
export default
|
|
5
|
+
declare const ApplyForDeviceItem: (props: ApplyForDeviceItemProps) => JSX.Element;
|
|
6
|
+
export default ApplyForDeviceItem;
|
|
@@ -10,7 +10,7 @@ export interface ApplyForDeviceItemProps {
|
|
|
10
10
|
deviceInfo: DeviceInfo
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
const
|
|
13
|
+
const ApplyForDeviceItem = (props: ApplyForDeviceItemProps) => {
|
|
14
14
|
return (
|
|
15
15
|
<View style={styles.root}>
|
|
16
16
|
<View style={styles.deviceInfo}>
|
|
@@ -69,4 +69,4 @@ const styles = StyleSheet.create({
|
|
|
69
69
|
},
|
|
70
70
|
})
|
|
71
71
|
|
|
72
|
-
export default
|
|
72
|
+
export default ApplyForDeviceItem
|
|
@@ -17,7 +17,7 @@ export default function UATabTitle(props: UATabTitleProps) {
|
|
|
17
17
|
<Text style={styles.tabsTitle}>{props.text}</Text>
|
|
18
18
|
<Spacer height={cx(0)} width={cx(4)}/>
|
|
19
19
|
<TouchableOpacity onPress={props.onIconClick}>
|
|
20
|
-
<Image style={{ width: cx(16), height: cx(16), tintColor: '#f60' }} source={
|
|
20
|
+
<Image style={{ width: cx(16), height: cx(16), tintColor: '#f60' }} source={res.ic_info}/>
|
|
21
21
|
</TouchableOpacity>
|
|
22
22
|
</View>
|
|
23
23
|
)
|