@aks-dev/easyui 1.0.15 → 1.0.18

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.
@@ -16,6 +16,7 @@ apply plugin: 'com.android.library'
16
16
 
17
17
 
18
18
 
19
+
19
20
  def safeExtGet(prop, fallback) {
20
21
  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
21
22
  }
@@ -39,6 +40,7 @@ repositories {
39
40
  }
40
41
 
41
42
  dependencies {
43
+
42
44
  implementation 'com.facebook.react:react-native:+'
43
45
  }
44
46
 
File without changes
File without changes
@@ -2,8 +2,8 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-04-24 14:10:04
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-05-12 11:34:10
6
- * @FilePath: /@aks/easyui/lib/Easy-Hud/EasyHud.tsx
5
+ * @LastEditTime: 2022-05-16 09:01:26
6
+ * @FilePath: /@aks/easyui/lib/Hud/Hud.tsx
7
7
  */
8
8
  import * as React from 'react'
9
9
  // import { StyleSheet } from 'react-native'
@@ -25,7 +25,7 @@ import {
25
25
 
26
26
 
27
27
 
28
- export const EasyHud: React.FC<{}> = () => React.cloneElement(
28
+ export const Hud: React.FC<{}> = () => React.cloneElement(
29
29
  <></>,
30
30
  {
31
31
  // ...StyleSheet.absoluteFillObject,
File without changes
File without changes
File without changes
File without changes
@@ -2,8 +2,8 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-04-24 14:14:42
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-04-26 14:14:40
6
- * @FilePath: /@aks/easy/lib/Easy-Hud/index.ts
5
+ * @LastEditTime: 2022-05-16 09:05:53
6
+ * @FilePath: /@aks/easyui/lib/Hud/index.ts
7
7
  */
8
8
 
9
9
 
@@ -15,4 +15,4 @@ export * from './Loading'
15
15
  export * from './Toast'
16
16
 
17
17
 
18
- export declare const EasyHud: React.FC<{}>
18
+ export declare const Hud: React.FC<{}>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.0.15",
3
+ "version": "1.0.18",
4
4
  "description": "爱科森开发工具包",
5
5
  "main": "./src/index.ts",
6
6
  "typings": "./src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-04-26 11:44:22
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-05-05 16:25:03
5
+ * @LastEditTime: 2022-05-16 09:01:48
6
6
  * @FilePath: /@aks/easyui/src/index.d.ts
7
7
  */
8
8
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  export * from '../lib/Badge'
14
14
 
15
- export * from '../lib/Easy-Hud'
15
+ export * from '../lib/Hud'
16
16
 
17
17
  export * from '../lib/Modal'
18
18
 
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * @Author: shiguo
4
4
  * @Date: 2022-04-13 12:47:34
5
5
  * @LastEditors: shiguo
6
- * @LastEditTime: 2022-05-12 12:18:13
6
+ * @LastEditTime: 2022-05-16 15:19:39
7
7
  * @FilePath: /@aks/easyui/src/index.ts
8
8
  */
9
9
 
@@ -16,7 +16,7 @@ export * from '../lib/Badge/Badge'
16
16
  export type { BadgeProps } from '../lib/Badge'
17
17
 
18
18
 
19
- export { EasyHud, showLoading, hideLoading, showToast, showAlertModal } from '../lib/Easy-Hud/EasyHud'
19
+ export { Hud, showLoading, hideLoading, showToast, showAlertModal } from '../lib/Hud/Hud'
20
20
 
21
21
  export * from '../lib/Modal/Modal'
22
22
 
@@ -25,7 +25,8 @@ export { default as MutiPictureView } from '../lib/MutiPictureView/MutiPictureVi
25
25
  export { PictureViewer } from '../lib/PictureViewer/PictureViewer'
26
26
 
27
27
  export { default as RefreshList } from '../lib/RefreshList/RefreshList'
28
- export type { RefreshListProps, RefreshState } from '../lib/RefreshList'
28
+ export { RefreshListProps,RefreshState } from '../lib/RefreshList'
29
+
29
30
 
30
31
  export { default as TableCell } from '../lib/TableCell/TableCell'
31
32
  export type { TableCellProps } from '../lib/TableCell'