@aks-dev/easyui 1.0.153 → 1.0.156

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.0.153",
3
+ "version": "1.0.156",
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: 2023-03-23 15:18:29
5
+ * @LastEditTime: 2023-03-23 15:24:35
6
6
  * @FilePath: /@aks-dev/easyui/src/index.d.ts
7
7
  */
8
8
 
@@ -32,10 +32,6 @@ export * from '../lib/AnimationModal'
32
32
  export * from '../screen/index.d'
33
33
  /// 工具
34
34
  export * as utils from '../utils/index.d'
35
- // export {
36
- // utils
37
- // }
38
- ///
39
35
  export * as jsbridge from '../jsbridge/index.d'
40
36
 
41
37
  //通用类型
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: 2023-03-23 15:17:22
6
+ * @LastEditTime: 2023-03-23 15:26:14
7
7
  * @FilePath: /@aks-dev/easyui/src/index.ts
8
8
  */
9
9
 
@@ -45,11 +45,10 @@ export { AnimationModal } from '../lib/AnimationModal/AnimationModal'
45
45
  /// 全局适配
46
46
  export * from '../screen'
47
47
  /// 工具
48
- export * as utils from '../utils'
49
-
48
+ import * as utils from '../utils'
50
49
  ///  桥接
51
- export * as jsbridge from '../jsbridge'
52
- // export {
53
- // utils,
54
- // jsbridge
55
- // }
50
+ import * as jsbridge from '../jsbridge'
51
+ export {
52
+ utils,
53
+ jsbridge
54
+ }