@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.
- package/android/build.gradle +2 -0
- package/lib/{Easy-Hud → Hud}/AlertView/AlertView.tsx +0 -0
- package/lib/{Easy-Hud → Hud}/AlertView/index.ts +0 -0
- package/lib/{Easy-Hud/EasyHud.tsx → Hud/Hud.tsx} +3 -3
- package/lib/{Easy-Hud → Hud}/Loading/Loading.tsx +0 -0
- package/lib/{Easy-Hud → Hud}/Loading/index.ts +0 -0
- package/lib/{Easy-Hud → Hud}/Toast/Toast.tsx +0 -0
- package/lib/{Easy-Hud → Hud}/Toast/index.ts +0 -0
- package/lib/{Easy-Hud → Hud}/index.ts +0 -0
- package/package.json +5 -4
- package/src/index.d.ts +2 -2
- package/src/index.ts +2 -2
- package/utils/index.ts +2 -2
package/android/build.gradle
CHANGED
|
@@ -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-
|
|
6
|
-
* @FilePath: /@aks/easyui/lib/
|
|
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
|
|
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.
|
|
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
|
|
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": "
|
|
30
|
+
"homepage": "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easyui",
|
|
30
31
|
"repository": {
|
|
31
32
|
"type": "git",
|
|
32
|
-
"url": "
|
|
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-
|
|
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/
|
|
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-
|
|
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 {
|
|
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-
|
|
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
|
*/
|