halo-fe 1.0.4 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. package/dist/main.js +3283 -2220
  2. package/dist/style.css +1 -1
  3. package/dist/{vendor-crypto-js-B6Qe-gIg.js → vendor-crypto-js-DWn5nTKL.js} +3 -1
  4. package/dist/vendor-xlsx-js-style-DMPNZPOx.js +11862 -0
  5. package/esm/coms/Code.vue.d.ts +1 -1
  6. package/esm/coms/Fill.vue.d.ts +15 -0
  7. package/esm/coms/RichText.vue.d.ts +24 -0
  8. package/esm/coms/Scroller.vue.d.ts +28 -0
  9. package/esm/coms/index.d.ts +5 -1
  10. package/esm/coms/types/RichTextOptions.d.ts +14 -0
  11. package/esm/coms/types/RichTextProps.d.ts +12 -0
  12. package/esm/coms/types/ScrollerProps.d.ts +15 -0
  13. package/esm/coms/types/index.d.ts +4 -1
  14. package/esm/drivers/bridges/IBridge.d.ts +5 -0
  15. package/esm/drivers/bridges/index.d.ts +1 -0
  16. package/esm/drivers/cdns/index.d.ts +2 -1
  17. package/esm/drivers/driver-helper.d.ts +46 -0
  18. package/esm/drivers/encoders/Encoder.d.ts +6 -1
  19. package/esm/drivers/encoders/EncoderFactory.d.ts +0 -1
  20. package/esm/drivers/encoders/IEncoder.d.ts +7 -3
  21. package/esm/drivers/encoders/implement/Base64Encoder.d.ts +1 -1
  22. package/esm/drivers/encoders/index.d.ts +2 -1
  23. package/esm/drivers/factories/Factory.d.ts +9 -0
  24. package/esm/drivers/factories/IFactory.d.ts +4 -0
  25. package/esm/drivers/factories/index.d.ts +33 -5
  26. package/esm/drivers/hashers/HasherFactory.d.ts +0 -1
  27. package/esm/drivers/https/Http.d.ts +5 -5
  28. package/esm/drivers/https/HttpFactory.d.ts +0 -2
  29. package/esm/drivers/https/IHttp.d.ts +4 -4
  30. package/esm/drivers/https/entities/HttpResponse.d.ts +13 -1
  31. package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -0
  32. package/esm/drivers/https/implements/HaloHttp.d.ts +28 -4
  33. package/esm/drivers/index.d.ts +7 -1
  34. package/esm/drivers/providers/implements/CookieProvider.d.ts +3 -0
  35. package/esm/drivers/providers/implements/StorageHelper.d.ts +34 -0
  36. package/esm/drivers/requesters/IRequester.d.ts +25 -0
  37. package/esm/drivers/requesters/Requester.d.ts +13 -0
  38. package/esm/drivers/requesters/RequesterFactory.d.ts +21 -0
  39. package/esm/drivers/requesters/entities/HttpRequest.d.ts +34 -0
  40. package/esm/drivers/requesters/entities/HttpResponse.d.ts +19 -0
  41. package/esm/drivers/requesters/implements/DefaultRequester.d.ts +12 -0
  42. package/esm/drivers/requesters/implements/LocalRequester.d.ts +43 -0
  43. package/esm/drivers/requesters/implements/MkRequester.d.ts +40 -0
  44. package/esm/drivers/requesters/index.d.ts +5 -0
  45. package/esm/drivers/signers/implements/DefaultSigner.d.ts +0 -2
  46. package/esm/drivers/ssos/ISso.d.ts +1 -1
  47. package/esm/drivers/ssos/implements/BearerSso.d.ts +1 -1
  48. package/esm/drivers/videos/VideoFactory.d.ts +3 -0
  49. package/esm/drivers/videos/index.d.ts +1 -0
  50. package/esm/drivers/voices/IVoice.d.ts +15 -0
  51. package/esm/drivers/voices/Voice.d.ts +8 -0
  52. package/esm/drivers/voices/VoiceFactory.d.ts +6 -0
  53. package/esm/drivers/voices/implement/DefaultVoice.d.ts +8 -0
  54. package/esm/drivers/voices/implement/TencentVoice.d.ts +11 -0
  55. package/esm/drivers/voices/index.d.ts +1 -0
  56. package/esm/helpers/ArrayHelper.d.ts +97 -0
  57. package/esm/helpers/BrowserHelper.d.ts +10 -0
  58. package/esm/helpers/ComponentHelper.d.ts +18 -0
  59. package/esm/helpers/DictionaryHelper.d.ts +18 -0
  60. package/esm/helpers/DomHelper.d.ts +91 -0
  61. package/esm/helpers/EventHelper.d.ts +30 -0
  62. package/esm/helpers/FileHelper.d.ts +22 -0
  63. package/esm/helpers/HtmlHelper.d.ts +10 -0
  64. package/esm/helpers/ImageHelper.d.ts +10 -0
  65. package/esm/helpers/JsonHelper.d.ts +35 -0
  66. package/esm/helpers/MathHelper.d.ts +50 -0
  67. package/esm/helpers/MicroHelper.d.ts +10 -0
  68. package/esm/helpers/MountHelper.d.ts +14 -0
  69. package/esm/helpers/ObjectHelper.d.ts +38 -0
  70. package/esm/helpers/ScriptHelper.d.ts +31 -0
  71. package/esm/helpers/ScrollHelper.d.ts +14 -0
  72. package/esm/helpers/SignHelper.d.ts +14 -0
  73. package/esm/helpers/StringHelper.d.ts +94 -0
  74. package/esm/helpers/TaskHelper.d.ts +26 -0
  75. package/esm/helpers/TimeHelper.d.ts +66 -0
  76. package/esm/helpers/TreeHelper.d.ts +54 -0
  77. package/esm/helpers/TypeHelper.d.ts +26 -0
  78. package/esm/helpers/UrlHelper.d.ts +88 -0
  79. package/esm/helpers/index.d.ts +25 -26
  80. package/esm/helpers/json-helper.d.ts +4 -12
  81. package/esm/helpers/object-helper.d.ts +0 -4
  82. package/esm/helpers/types/TreeNodeProp.d.ts +6 -0
  83. package/esm/helpers/types/index.d.ts +2 -0
  84. package/esm/helpers/url-helper.d.ts +2 -2
  85. package/esm/main.d.ts +7 -6
  86. package/esm/plugins/index.d.ts +3 -2
  87. package/esm/plugins/types/IMessager.d.ts +34 -0
  88. package/esm/plugins/types/IMessenger.d.ts +34 -0
  89. package/esm/plugins/types/index.d.ts +10 -0
  90. package/esm/repos/SettingRepo.d.ts +11 -0
  91. package/esm/repos/index.d.ts +3 -0
  92. package/esm/services/index.d.ts +12 -6
  93. package/esm/servs/IServ.d.ts +6 -0
  94. package/esm/servs/Serv.d.ts +4 -0
  95. package/esm/servs/ServFactory.d.ts +11 -0
  96. package/esm/servs/implement/ConfigServ.d.ts +66 -0
  97. package/esm/servs/implement/DriverServ.d.ts +36 -0
  98. package/esm/servs/implement/EnvServ.d.ts +14 -0
  99. package/esm/servs/implement/LogServ.d.ts +19 -0
  100. package/esm/servs/implement/SettingServ.d.ts +42 -0
  101. package/esm/servs/implement/SocketServ.d.ts +38 -0
  102. package/esm/servs/implement/UserServ.d.ts +47 -0
  103. package/esm/servs/index.d.ts +15 -0
  104. package/esm/stores/config.d.ts +6 -10
  105. package/esm/stores/driver.d.ts +6 -2
  106. package/esm/stores/index.d.ts +2 -3
  107. package/esm/stores/setting.d.ts +4 -0
  108. package/esm/stores/user.d.ts +7 -3
  109. package/esm/svcs/ISvc.d.ts +6 -0
  110. package/esm/svcs/Svc.d.ts +4 -0
  111. package/esm/svcs/SvcFactory.d.ts +11 -0
  112. package/esm/svcs/implement/ConfigSvc.d.ts +75 -0
  113. package/esm/svcs/implement/DriverSvc.d.ts +36 -0
  114. package/esm/svcs/implement/EnvSvc.d.ts +14 -0
  115. package/esm/svcs/implement/LogSvc.d.ts +19 -0
  116. package/esm/svcs/implement/SettingSvc.d.ts +42 -0
  117. package/esm/svcs/implement/SocketSvc.d.ts +38 -0
  118. package/esm/svcs/implement/UserSvc.d.ts +47 -0
  119. package/esm/svcs/index.d.ts +33 -0
  120. package/esm/svcs/proxies/driverSvc.d.ts +18 -0
  121. package/esm/svcs/proxies/index.d.ts +2 -0
  122. package/esm/thirds/index.d.ts +8 -0
  123. package/esm/types/CreateOptions.d.ts +18 -0
  124. package/esm/types/index.d.ts +2 -0
  125. package/esm/utilities/EventUtility.d.ts +39 -8
  126. package/esm/utilities/index.d.ts +1 -0
  127. package/esm/utilities/types/DragEvent.d.ts +11 -0
  128. package/esm/utilities/types/DragOptions.d.ts +28 -0
  129. package/esm/utilities/types/Position.d.ts +15 -0
  130. package/esm/utilities/types/Range.d.ts +10 -0
  131. package/esm/utilities/types/Rect.d.ts +6 -0
  132. package/esm/utilities/types/index.d.ts +5 -0
  133. package/package.json +5 -4
  134. package/dist/vendor-@vue-l0sNRNKZ.js +0 -1
  135. package/dist/vendor-pinia-DVLspbiC.js +0 -310
  136. package/dist/vendor-vue-demi-CIhrFbpB.js +0 -17
  137. package/esm/services/types/IMessage.d.ts +0 -14
  138. package/esm/services/types/IMessager.d.ts +0 -14
  139. package/esm/services/types/index.d.ts +0 -2
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Http请求
3
+ */
4
+ declare class HttpRequest {
5
+ /**
6
+ * 请求路径
7
+ */
8
+ path: string;
9
+ /**
10
+ * 请求方法
11
+ */
12
+ method: string;
13
+ /**
14
+ * 实际请求地址
15
+ */
16
+ url?: string;
17
+ /**
18
+ * 请求头
19
+ */
20
+ headers?: [string, string];
21
+ /**
22
+ * 内容类型
23
+ */
24
+ contentType: string;
25
+ /**
26
+ * 请求数据
27
+ */
28
+ data: any;
29
+ /**
30
+ * 请求体
31
+ */
32
+ body: string;
33
+ }
34
+ export default HttpRequest;
@@ -0,0 +1,19 @@
1
+ import HttpRequest from "./HttpRequest";
2
+ /**
3
+ * Http响应
4
+ */
5
+ declare class HttpResponse {
6
+ /**
7
+ * 请求耗时
8
+ */
9
+ elapsed: number;
10
+ /**
11
+ * 请求体
12
+ */
13
+ body: string;
14
+ /**
15
+ * 对应的请求信息
16
+ */
17
+ request: HttpRequest;
18
+ }
19
+ export default HttpResponse;
@@ -0,0 +1,12 @@
1
+ import Requester from "../Requester";
2
+ import HttpRequest from "../entities/HttpRequest";
3
+ import HttpResponse from "../entities/HttpResponse";
4
+ /**
5
+ * 默认Http请求器
6
+ */
7
+ declare class DefaultRequester extends Requester {
8
+ type: string;
9
+ open(conn: string): void;
10
+ send(request: HttpRequest): Promise<HttpResponse>;
11
+ }
12
+ export default DefaultRequester;
@@ -0,0 +1,43 @@
1
+ import { AxiosError, AxiosInstance, AxiosResponse } from "axios";
2
+ import Requester from "../Requester";
3
+ import HttpRequest from "../entities/HttpRequest";
4
+ import HttpResponse from "../entities/HttpResponse";
5
+ import { IMessageService } from "../../../services";
6
+ /**
7
+ * 本地请求器
8
+ */
9
+ declare class LocalRequester extends Requester {
10
+ type: string;
11
+ request: AxiosInstance;
12
+ /**
13
+ * 消息服务实例
14
+ */
15
+ messageService: IMessageService;
16
+ open(conn: string): void;
17
+ send(request: HttpRequest): Promise<HttpResponse>;
18
+ /**
19
+ * GET请求
20
+ */
21
+ get(url: string, params?: any, headers?: object): Promise<any>;
22
+ /**
23
+ * POST请求
24
+ */
25
+ post(url: string, body?: any, config?: any): Promise<any>;
26
+ /**
27
+ * PATCH请求
28
+ */
29
+ patch(url: string, body?: any, config?: any): Promise<any>;
30
+ /**
31
+ * 处理响应信息 或 响应体信息
32
+ */
33
+ handleResponse(res: AxiosResponse): Promise<any>;
34
+ /**
35
+ * 处理响应体信息,并自动添加响应通知
36
+ */
37
+ handleResponseBody(body: any, tip?: boolean): Promise<any>;
38
+ /**
39
+ * 处理网络错误和响应错误场景
40
+ */
41
+ handleError(error: AxiosError | any): Promise<never>;
42
+ }
43
+ export default LocalRequester;
@@ -0,0 +1,40 @@
1
+ import Requester from "../Requester";
2
+ import HttpRequest from "../entities/HttpRequest";
3
+ import HttpResponse from "../entities/HttpResponse";
4
+ import IRequester from "../IRequester";
5
+ import IHasher from "../../hashers/IHasher";
6
+ /**
7
+ * MK请求器
8
+ */
9
+ declare class MkRequester extends Requester {
10
+ type: string;
11
+ /**
12
+ * 基准地址
13
+ */
14
+ baseUrl: string;
15
+ /**
16
+ * AppId
17
+ */
18
+ appId: string;
19
+ /**
20
+ * AppSecret
21
+ */
22
+ appSecret: string;
23
+ /**
24
+ * 默认请求器
25
+ */
26
+ requester: IRequester;
27
+ /**
28
+ * Hash计算器
29
+ */
30
+ hasher: IHasher;
31
+ /**
32
+ * 危险操作,会暴露敏感信息
33
+ */
34
+ open(conn: string): void;
35
+ /**
36
+ * 危险操作,会暴露敏感信息
37
+ */
38
+ send(request: HttpRequest): Promise<HttpResponse>;
39
+ }
40
+ export default MkRequester;
@@ -0,0 +1,5 @@
1
+ import RequesterFactory from "./RequesterFactory";
2
+ import type IRequester from "./IRequester";
3
+ import type HttpRequest from "./entities/HttpRequest";
4
+ import type HttpResponse from "./entities/HttpResponse";
5
+ export { RequesterFactory, IRequester, HttpRequest, HttpResponse };
@@ -1,11 +1,9 @@
1
- import IHasher from "../../hashers/IHasher";
2
1
  import Signer from "../Signer";
3
2
  /**
4
3
  * 默认签名器
5
4
  */
6
5
  declare class DefaultSigner extends Signer {
7
6
  type: string;
8
- hasher: IHasher;
9
7
  open(auth: {
10
8
  url: string;
11
9
  app_id: string;
@@ -29,7 +29,7 @@ interface ISso extends IDriver {
29
29
  /**
30
30
  * 获取授权头,不能泄露域账号等用户标识
31
31
  */
32
- getAuth(token: string, timestamp: number, sign: string, env: string): string;
32
+ getAuth(token: string, timestamp: number, sign: string, platform: string, env: string): string;
33
33
  /**
34
34
  * 退出
35
35
  */
@@ -16,7 +16,7 @@ declare class BearerSso implements ISso {
16
16
  token: string;
17
17
  secret: string;
18
18
  };
19
- getAuth(token: string, timestamp: number, signature: string, env?: string): string;
19
+ getAuth(token: string, timestamp: number, signature: string, platform?: string, env?: string): string;
20
20
  logout(): void;
21
21
  }
22
22
  export default BearerSso;
@@ -0,0 +1,3 @@
1
+ declare class VideoFactory {
2
+ }
3
+ export default VideoFactory;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,15 @@
1
+ import IDriver from "../IDriver";
2
+ export interface IVoice extends IDriver {
3
+ /**
4
+ * 开始录音
5
+ */
6
+ startRecord(): string;
7
+ /**
8
+ * 结束录音
9
+ */
10
+ endRecord(): string;
11
+ /**
12
+ * 下载录音
13
+ */
14
+ download(): any;
15
+ }
@@ -0,0 +1,8 @@
1
+ import { IVoice } from "./IVoice";
2
+ declare abstract class Voice implements IVoice {
3
+ type: string;
4
+ abstract download(): any;
5
+ abstract endRecord(): any;
6
+ abstract startRecord(): string;
7
+ }
8
+ export default Voice;
@@ -0,0 +1,6 @@
1
+ import { IVoice } from "./IVoice";
2
+ import Factory from "../factories/Factory";
3
+ declare class VoiceFactory extends Factory<IVoice> {
4
+ getInstances(): IVoice[];
5
+ }
6
+ export default VoiceFactory;
@@ -0,0 +1,8 @@
1
+ import Voice from "../Voice";
2
+ export declare class DefaultVoice extends Voice {
3
+ type: string;
4
+ download(): void;
5
+ endRecord(): string;
6
+ startRecord(): string;
7
+ }
8
+ export default DefaultVoice;
@@ -0,0 +1,11 @@
1
+ import Voice from "../Voice";
2
+ /**
3
+ * 文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html#23
4
+ */
5
+ export declare class TencentVoice extends Voice {
6
+ type: string;
7
+ download(): void;
8
+ endRecord(): string;
9
+ startRecord(): string;
10
+ }
11
+ export default TencentVoice;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,97 @@
1
+ /**
2
+ * 数组帮助类
3
+ */
4
+ declare class ArrayHelper {
5
+ /**
6
+ * 获取指定数组分成每片指定长度后的集合
7
+ */
8
+ static getChunks: (arr: any[], chunkSize: number) => any[];
9
+ /**
10
+ * 取两个集合的交集
11
+ */
12
+ static intersect: (arr1: any[], arr2: any[]) => any[];
13
+ /**
14
+ * 排除指定元素(差集)
15
+ */
16
+ static except: (from: any[], target: any[] | any, equals?: (a: any, b: any) => boolean) => any[];
17
+ /**
18
+ * 是否包含
19
+ */
20
+ static contains: (arr: any[], element: any) => boolean;
21
+ /**
22
+ * 判断指定集合中的指定属性的值,是否包含关键词
23
+ */
24
+ static filterContains: (arr: any[], props: string[], keywords: string) => any[];
25
+ /**
26
+ * 判断2个数组是否每个元素都相同
27
+ */
28
+ static same: (arr1: any[], arr2: any[]) => boolean;
29
+ /**
30
+ * 求最大值,数据类型的比较函数要自己转换为数值类型
31
+ */
32
+ static max: (arr: any[], func: Function) => any;
33
+ /**
34
+ * 求最小值,数据类型的比较函数要自己转换为数值类型
35
+ */
36
+ static min: (arr: any[], func: Function) => any;
37
+ /**
38
+ * 求和
39
+ */
40
+ static sum: (arr: any[], func: Function, digits?: number) => number;
41
+ /**
42
+ * 求平均值
43
+ */
44
+ static avg: (arr: any[], func: Function, digits?: number) => number;
45
+ /**
46
+ * 对数组元素根据指定函数进行去重,并返回去重后的值的新数组 n=>n.value
47
+ */
48
+ static distinct: (arr: any[], selector: Function) => any[];
49
+ /**
50
+ * 不存在某元素时才添加某元素
51
+ */
52
+ static pushIfNotExist: (arr: any[], element: any) => void;
53
+ /**
54
+ * 连接值构建成新数组,重复项也会自动构建,不存在的值,会自动创建为一个新项
55
+ */
56
+ static fromValues: (arrValues: any[], arr: any[], propertyValue: string, propertyText: string) => any[];
57
+ /**
58
+ * 删除指定元素,并返回删除后的字符串
59
+ */
60
+ static removeIndex: (str: string, index: number, split: string) => string;
61
+ /**
62
+ * 分割指定字符串为数组,字符串为空,返回空数组
63
+ * @param input
64
+ * @param split
65
+ * @param element 转换后添加的默认元素
66
+ */
67
+ static split: (input: string, split: string, element?: any) => any[];
68
+ /**
69
+ * 合并多个数组中的每一项到新的二维数组中,没值的元素被有值的元素代替
70
+ */
71
+ static combine: (...args: any[]) => any[];
72
+ /**
73
+ * 在指定元素前插入新元素,返回插入元素的索引
74
+ */
75
+ static insert: (array: object[], selectedRow: object, row: object) => number;
76
+ /**
77
+ * 在指定元素后插入新元素,返回插入元素的索引
78
+ */
79
+ static append: (array: object[], selectedRow: object, row: object) => number;
80
+ /**
81
+ * 删除执行数组中的指定对象或者集合
82
+ */
83
+ static remove: (array: any[], elements: any[] | any) => void;
84
+ /**
85
+ * 按照指定函数对数组排序
86
+ */
87
+ static orderBy: (array: any[], funcs: any, asc?: boolean) => any[];
88
+ /**
89
+ * 分组
90
+ */
91
+ static groupByArray: (array: any[], keyFunc: (item: any) => any) => any[];
92
+ /**
93
+ * 分组,封装成字典而不是集合,大数据场景速度提升百倍
94
+ */
95
+ static groupBy: (array: any[], keyFunc: (item: any) => any, valueHandler?: (item: any) => any) => object;
96
+ }
97
+ export default ArrayHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 多语言帮助类
3
+ */
4
+ declare class BrowserHelper {
5
+ /**
6
+ * 获取浏览器默认语言
7
+ */
8
+ static getLanguage(): "zh-cn" | "en";
9
+ }
10
+ export default BrowserHelper;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * 组件帮助类
3
+ */
4
+ declare class ComponentHelper {
5
+ /**
6
+ * 根据动态加载的组件对象,得到组件集合
7
+ */
8
+ static getComponents(components: object, replace: string, prefix?: string): object;
9
+ /**
10
+ * 获取部分自定义组件名称
11
+ */
12
+ static getName: (url: string, prefix: string) => string;
13
+ /**
14
+ * 检测异步控件是否加载完毕
15
+ */
16
+ static detectLoaded(ref: any, cb: Function): void;
17
+ }
18
+ export default ComponentHelper;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * 字典帮助类
3
+ */
4
+ declare class DictionaryHelper {
5
+ /**
6
+ * 从指定字典中提取忽略大小写的key的值
7
+ */
8
+ static getValueIgnoreCase(key: string, value: object): string;
9
+ /**
10
+ * 对字典进行排序,并得到新字典
11
+ */
12
+ static sort(obj: object): any;
13
+ /**
14
+ * 连接字典
15
+ */
16
+ static join(obj: object, valueHandler?: (value: string) => string, delimiter?: string, join?: string): string;
17
+ }
18
+ export default DictionaryHelper;
@@ -0,0 +1,91 @@
1
+ import { Position } from "../utilities";
2
+ /**
3
+ * Dom帮助类
4
+ */
5
+ declare class DomHelper {
6
+ /**
7
+ * 根据字符串Ascii码得到固定颜色字典
8
+ */
9
+ static getColors(values: string[]): object;
10
+ /**
11
+ * 获取样式名
12
+ */
13
+ static getClass(...args: any[]): string;
14
+ /**
15
+ * 添加类
16
+ */
17
+ static addClass: (dom: Element, cls: string, choice?: any) => void;
18
+ /**
19
+ * 删除类
20
+ */
21
+ static removeClass: (selector: string | Element, className: string, except?: Element) => void;
22
+ /**
23
+ * 根据计算后的样式进行DOM过滤
24
+ */
25
+ static filterStyle(doms: any[], fun: (style: CSSStyleDeclaration) => boolean): any[];
26
+ /**
27
+ * 添加样式
28
+ */
29
+ static addStyle(dom: HTMLElement, prop: string, value: string): void;
30
+ /**
31
+ * 查找兄弟节点
32
+ */
33
+ static siblings(dom: HTMLElement): HTMLElement[];
34
+ /**
35
+ * 查找指定父节点
36
+ */
37
+ static parentUntil(dom: any, cls: string): any;
38
+ /**
39
+ * 查找第一个绝对定位的元素或backdrop元素,否则使用html元素
40
+ */
41
+ static parentAbsolute(dom: any): any;
42
+ /**
43
+ * 查找孩子节点
44
+ */
45
+ static find(dom: Element, cls: string): Element;
46
+ /**
47
+ * 获取dom宽度或高度
48
+ */
49
+ private static getWidthOrHeight;
50
+ /**
51
+ * 统计所有控件宽度,含外边距
52
+ */
53
+ static getWidth(value: Element | Element[]): number;
54
+ /**
55
+ * 获取元素可用宽度(移除内填充)
56
+ */
57
+ static getAvailableWidth(value: Element | Element[]): number;
58
+ /**
59
+ * 统计所有非固定定位控件高度,含内填充和外边距
60
+ */
61
+ static getHeight(value: Element | Element[]): number;
62
+ /**
63
+ * 获取元素可用高度(移除内填充)
64
+ */
65
+ static getAvailableHeight(value: Element | Element[]): number;
66
+ /**
67
+ * 获取指定元素在视口内的位置
68
+ */
69
+ static getViewportStyle(target: Element, title: string, subMenu: string, viewport: Element, position: string): any;
70
+ /**
71
+ * 获取指定选择器最大的索引
72
+ */
73
+ static getMaxIndex(selector: string): number;
74
+ /**
75
+ * 判断当前鼠标位置是否在指定范围之内
76
+ */
77
+ static inRange(event: Position, x: number, y: number, width: number, height: number): boolean;
78
+ /**
79
+ * 创建指定标签的dom,并设置内容
80
+ */
81
+ static create(name: string, cls?: string, html?: string): HTMLElement;
82
+ /**
83
+ * 不存在时创建dom,并自动追加到文档
84
+ */
85
+ static createIfAbsent(name: string, cls: string, html?: string): HTMLElement;
86
+ /**
87
+ * 获取文本宽度
88
+ */
89
+ static getTextWidth(value: string): number;
90
+ }
91
+ export default DomHelper;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * 事件帮助类
3
+ */
4
+ declare class EventHelper {
5
+ /**
6
+ * 批量绑定事件,执行指定处理函数
7
+ */
8
+ static bind: (events: any[], dom: any, func: Function) => void;
9
+ /**
10
+ * 批量绑定事件,执行指定处理函数
11
+ */
12
+ static unbind: (events: any[], dom: any, func: Function) => void;
13
+ /**
14
+ * 绑定点击处理函数
15
+ */
16
+ static click: (dom: any, func: Function) => void;
17
+ /**
18
+ * 解除点击监听
19
+ */
20
+ static unclick: (dom: any, func: Function) => void;
21
+ /**
22
+ * 绑定滚动处理函数
23
+ */
24
+ static scroll: (dom: any, func: Function) => void;
25
+ /**
26
+ * 移除滚动处理函数,防止内存泄漏
27
+ */
28
+ static unscroll: (dom: any, func: Function) => void;
29
+ }
30
+ export default EventHelper;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * 文件帮助类
3
+ */
4
+ declare class FileHelper {
5
+ /**
6
+ * 保存文件
7
+ */
8
+ static save: (base64: string, fileName: string) => void;
9
+ /**
10
+ * 获取文件扩展名
11
+ */
12
+ static getExtension: (name: string) => string;
13
+ /**
14
+ * 判断当前文件名是否是excel文件
15
+ */
16
+ static isExcel: (name: string) => boolean;
17
+ /**
18
+ * 判断当前文件是否是图片文件
19
+ */
20
+ static isImage: (url: string) => boolean;
21
+ }
22
+ export default FileHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Html帮助类
3
+ */
4
+ declare class HtmlHelper {
5
+ /**
6
+ * 获取Html内容
7
+ */
8
+ static getHtml: (value: string) => string;
9
+ }
10
+ export default HtmlHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 图片帮助类
3
+ */
4
+ declare class ImageHelper {
5
+ /**
6
+ * 获取base64图片地址
7
+ */
8
+ static base64: (base64: string) => string;
9
+ }
10
+ export default ImageHelper;
@@ -0,0 +1,35 @@
1
+ import { TreeNodeProp } from "./types";
2
+ /**
3
+ * JSON帮助类
4
+ */
5
+ declare class JsonHelper {
6
+ /**
7
+ * 把字符串格式化为Json字符串
8
+ */
9
+ static stringify(value: any): string;
10
+ /**
11
+ * 对非字符串进行序列化
12
+ */
13
+ static stringifyWithString(value: any): string;
14
+ /**
15
+ * 把字符串格式化为Json字符串
16
+ */
17
+ static stringifyString(value: string): string;
18
+ /**
19
+ * 反序列化成json对象
20
+ */
21
+ static parse(value: string): any;
22
+ /**
23
+ * 根据props中的.自动分割得到属性值
24
+ */
25
+ static getValue(value: string, props: string): string;
26
+ /**
27
+ * 把json字符串合并到目标对象上
28
+ */
29
+ static mergeTo(target: any, from: string): void;
30
+ /**
31
+ * 从树集合构建出Json对象
32
+ */
33
+ static buildObject(tree: any[], childProp: string, fun: (node: any) => TreeNodeProp): string;
34
+ }
35
+ export default JsonHelper;
@@ -0,0 +1,50 @@
1
+ /**
2
+ * 数学帮助类
3
+ */
4
+ declare class MathHelper {
5
+ /**
6
+ * 过滤某一页数据
7
+ */
8
+ static filterPage: (rows: any[], page: number, size: number) => any[];
9
+ /**
10
+ * 总页数
11
+ */
12
+ static pageCount: (count: number, size: number) => number;
13
+ /**
14
+ * 四舍五入
15
+ */
16
+ static round: (value: number, digits: number) => string;
17
+ /**
18
+ * 天花板函数
19
+ */
20
+ static ceil: (value: number) => number;
21
+ /**
22
+ * 获取百分比
23
+ */
24
+ static getPercentage: (current: number, total: number) => number;
25
+ /**
26
+ * 获取百分比,保留2位小数
27
+ */
28
+ static getPercentageText: (current: number, total: number) => string;
29
+ /**
30
+ * 获取进度文本
31
+ */
32
+ static getProgressText: (current: number, total: number) => string;
33
+ /**
34
+ * 获取大小
35
+ */
36
+ static size: (bytes: number) => string;
37
+ /**
38
+ * 生成指定范围内的随机数
39
+ */
40
+ static random(start: number, end: number): number;
41
+ /**
42
+ * 获取最大值
43
+ */
44
+ static max(...values: number[]): number;
45
+ /**
46
+ * 获取在指定范围内的值
47
+ */
48
+ static between(value: number, min: number, max: number): number;
49
+ }
50
+ export default MathHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 微前端帮助类
3
+ */
4
+ declare class MicroHelper {
5
+ /**
6
+ * 加载乾坤子应用
7
+ */
8
+ static load: (name: any, entry: any, dom: any, props: any) => void;
9
+ }
10
+ export default MicroHelper;