@aks-dev/easyui 1.0.107 → 1.0.108

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/jsbridge/index.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-04-19 10:23:01
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-10-24 16:14:01
5
+ * @LastEditTime: 2022-10-24 16:38:59
6
6
  * @FilePath: /@aks-dev/easyui/jsbridge/index.ts
7
7
  */
8
8
 
@@ -16,6 +16,8 @@ export declare const getAppVersion: () => Promise<string>;
16
16
 
17
17
  /**
18
18
  * @description: 获取操作系统版本
19
+ *
20
+ react-native-device-info
19
21
  * @return {*}
20
22
  */
21
23
  export declare const getOSVersion: () => Promise<string>;
@@ -13,7 +13,7 @@ import { TableCellProps } from './index'
13
13
  export default (props: Partial<TableCellProps>) => {
14
14
  const { showNav = false, activeOpacity = .8 } = props
15
15
  return (
16
- <TouchableOpacity activeOpacity={activeOpacity}
16
+ <TouchableOpacity activeOpacity={props.onPress == undefined ? activeOpacity : 1}
17
17
  style={[styles.container, props.style]}
18
18
  disabled={props.onPress == undefined}
19
19
  onPress={() => props.onPress && props.onPress()}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
4
4
  "description": "工具箱",
5
5
  "main": "./src/index.ts",
6
6
  "typings": "./src/index.d.ts",