@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
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.2.0",
7
+ "version": "1.2.1",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -2,5 +2,5 @@ import { DeviceInfo } from '../api/native';
2
2
  export interface ApplyForDeviceItemProps {
3
3
  deviceInfo: DeviceInfo;
4
4
  }
5
- declare const ApplyForCeilingFanDeviceItem: (props: ApplyForDeviceItemProps) => JSX.Element;
6
- export default ApplyForCeilingFanDeviceItem;
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 ApplyForCeilingFanDeviceItem = (props: ApplyForDeviceItemProps) => {
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 ApplyForCeilingFanDeviceItem
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={{ uri: res.ic_info }}/>
20
+ <Image style={{ width: cx(16), height: cx(16), tintColor: '#f60' }} source={res.ic_info}/>
21
21
  </TouchableOpacity>
22
22
  </View>
23
23
  )