@aks-dev/easyui 1.0.145 → 1.0.147

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.
@@ -2,7 +2,7 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-05-05 14:52:53
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-12-30 09:36:45
5
+ * @LastEditTime: 2023-01-03 17:22:12
6
6
  * @FilePath: /@aks-dev/easyui/lib/Echarts/EchartsView.tsx
7
7
  */
8
8
  import * as React from 'react'
@@ -146,7 +146,10 @@ const EchartsView: React.FC<EchartsViewProps> = (props) => {
146
146
  if (props.renderLoading) return props.renderLoading()
147
147
  return <View style={{ backgroundColor: (props.style as ViewStyle)?.backgroundColor || 'transparent' }} />
148
148
  }} // 设置空View,修复ioswebview闪白
149
- style={{ backgroundColor: (props.style as ViewStyle)?.backgroundColor || 'transparent' }} // 设置背景色透明,修复android闪白
149
+ style={{
150
+ backgroundColor: (props.style as ViewStyle)?.backgroundColor || 'transparent',
151
+ opacity: 0.99,//解决删除的办法
152
+ }} // 设置背景色透明,修复android闪白
150
153
  scrollEnabled={false}
151
154
  // onMessage={e=>{
152
155
  // console.log(e)
@@ -2,7 +2,7 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-07-14 18:09:02
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2023-01-03 17:01:36
5
+ * @LastEditTime: 2023-01-03 17:30:04
6
6
  * @FilePath: /@aks-dev/easyui/lib/MenuView/index.ts
7
7
  */
8
8
 
@@ -24,7 +24,7 @@ export type MenuProps = {
24
24
  data?: MenuItem[];
25
25
  onItemClick?: (index: number, extra?: any) => void;
26
26
  onContainerClick?:Function;
27
- activeOpacity:number;
27
+ activeOpacity?:number;
28
28
  } & Readonly<{ children?: React.ReactNode | undefined }> & TouchableOpacityProps
29
29
 
30
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "description": "工具箱",
5
5
  "main": "./src/index.ts",
6
6
  "typings": "./src/index.d.ts",