@aks-dev/easyui 1.0.13 → 1.0.16

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
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.0.13",
3
+ "version": "1.0.16",
4
4
  "description": "爱科森开发工具包",
5
5
  "main": "./src/index.ts",
6
6
  "typings": "./src/index.d.ts",
@@ -10,7 +10,8 @@
10
10
  "keywords": [
11
11
  "react",
12
12
  "react-native",
13
- "@aks-dev/easyui"
13
+ "@aks-dev",
14
+ "easyui"
14
15
  ],
15
16
  "files": [
16
17
  "/android",
@@ -26,10 +27,10 @@
26
27
  "!/tsconfig.json",
27
28
  "!/tsconfig.md"
28
29
  ],
29
- "homepage": "git+https://gitee.com/the_period_of_the_ten_kingdoms/aks-easy",
30
+ "homepage": "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easyui",
30
31
  "repository": {
31
32
  "type": "git",
32
- "url": "git+https://gitee.com/the_period_of_the_ten_kingdoms/aks-easy.git"
33
+ "url": "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easyui"
33
34
  },
34
35
  "author": "",
35
36
  "license": "MIT",
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-05 17:29:57
6
+ * @LastEditTime: 2022-05-16 09:01:35
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
 
package/utils/index.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * @Author: shiguo
3
3
  * @Date: 2022-04-19 10:25:43
4
4
  * @LastEditors: shiguo
5
- * @LastEditTime: 2022-05-10 18:32:50
5
+ * @LastEditTime: 2022-05-12 12:27:10
6
6
  * @FilePath: /@aks/easyui/utils/index.ts
7
7
  */
8
8
 
@@ -49,7 +49,7 @@ export declare const randomcolor: () => string;
49
49
 
50
50
  export type SyncLoopCallBack = (item: any, index: number) => void;
51
51
  /**
52
- * @description: 同步遍历
52
+ * @description: 同步循环
53
53
  * @param {*} dataList:数据源
54
54
  * @return {*}
55
55
  */