halo-fe 1.0.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. package/dist/main.js +3453 -2365
  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/IDisposable.d.ts +4 -0
  15. package/esm/drivers/bridges/index.d.ts +1 -0
  16. package/esm/drivers/cdns/index.d.ts +2 -2
  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 -2
  23. package/esm/drivers/excels/index.d.ts +2 -3
  24. package/esm/drivers/explainers/index.d.ts +1 -2
  25. package/esm/drivers/factories/Factories.d.ts +55 -0
  26. package/esm/drivers/factories/Factory.d.ts +9 -0
  27. package/esm/drivers/factories/IFactory.d.ts +4 -0
  28. package/esm/drivers/factories/implement/CdnFactory.d.ts +13 -0
  29. package/esm/drivers/factories/implement/EncoderFactory.d.ts +17 -0
  30. package/esm/drivers/factories/implement/ExcelFactory.d.ts +13 -0
  31. package/esm/drivers/factories/implement/ExplainerFactory.d.ts +6 -0
  32. package/esm/drivers/factories/implement/FeatureFactory.d.ts +13 -0
  33. package/esm/drivers/factories/implement/HasherFactory.d.ts +11 -0
  34. package/esm/drivers/factories/implement/HttpFactory.d.ts +18 -0
  35. package/esm/drivers/factories/implement/ProviderFactory.d.ts +18 -0
  36. package/esm/drivers/factories/implement/SignerFactory.d.ts +13 -0
  37. package/esm/drivers/factories/implement/SsoFactory.d.ts +17 -0
  38. package/esm/drivers/factories/implement/TaskFactory.d.ts +9 -0
  39. package/esm/drivers/factories/implement/VideoFactory.d.ts +3 -0
  40. package/esm/drivers/factories/implement/VoiceFactory.d.ts +6 -0
  41. package/esm/drivers/factories/implement/index.d.ts +11 -0
  42. package/esm/drivers/factories/index.d.ts +14 -26
  43. package/esm/drivers/features/index.d.ts +2 -3
  44. package/esm/drivers/hashers/HasherFactory.d.ts +0 -1
  45. package/esm/drivers/hashers/index.d.ts +2 -3
  46. package/esm/drivers/https/Http.d.ts +5 -5
  47. package/esm/drivers/https/HttpFactory.d.ts +0 -2
  48. package/esm/drivers/https/IHttp.d.ts +4 -4
  49. package/esm/drivers/https/entities/HttpResponse.d.ts +13 -1
  50. package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -0
  51. package/esm/drivers/https/implements/HaloHttp.d.ts +28 -4
  52. package/esm/drivers/https/index.d.ts +2 -3
  53. package/esm/drivers/index.d.ts +7 -1
  54. package/esm/drivers/providers/implements/CookieProvider.d.ts +3 -0
  55. package/esm/drivers/providers/implements/StorageHelper.d.ts +34 -0
  56. package/esm/drivers/providers/index.d.ts +2 -3
  57. package/esm/drivers/requesters/IRequester.d.ts +25 -0
  58. package/esm/drivers/requesters/Requester.d.ts +13 -0
  59. package/esm/drivers/requesters/RequesterFactory.d.ts +21 -0
  60. package/esm/drivers/requesters/entities/HttpRequest.d.ts +34 -0
  61. package/esm/drivers/requesters/entities/HttpResponse.d.ts +19 -0
  62. package/esm/drivers/requesters/implements/DefaultRequester.d.ts +12 -0
  63. package/esm/drivers/requesters/implements/LocalRequester.d.ts +43 -0
  64. package/esm/drivers/requesters/implements/MkRequester.d.ts +40 -0
  65. package/esm/drivers/requesters/index.d.ts +5 -0
  66. package/esm/drivers/signers/implements/DefaultSigner.d.ts +0 -2
  67. package/esm/drivers/signers/index.d.ts +2 -3
  68. package/esm/drivers/ssos/index.d.ts +2 -3
  69. package/esm/drivers/tasks/ITask.d.ts +12 -0
  70. package/esm/drivers/tasks/Task.d.ts +10 -0
  71. package/esm/drivers/tasks/implement/MemoryTask.d.ts +11 -0
  72. package/esm/drivers/tasks/index.d.ts +2 -0
  73. package/esm/drivers/videos/VideoFactory.d.ts +3 -0
  74. package/esm/drivers/videos/index.d.ts +1 -0
  75. package/esm/drivers/voices/IVoice.d.ts +2 -1
  76. package/esm/drivers/voices/Voice.d.ts +8 -0
  77. package/esm/drivers/voices/VoiceFactory.d.ts +6 -1
  78. package/esm/drivers/voices/implement/DefaultVoice.d.ts +4 -2
  79. package/esm/drivers/voices/implement/TencentVoice.d.ts +4 -2
  80. package/esm/drivers/voices/index.d.ts +1 -0
  81. package/esm/helpers/ArrayHelper.d.ts +98 -0
  82. package/esm/helpers/BrowserHelper.d.ts +10 -0
  83. package/esm/helpers/ComponentHelper.d.ts +18 -0
  84. package/esm/helpers/DictionaryHelper.d.ts +18 -0
  85. package/esm/helpers/DomHelper.d.ts +95 -0
  86. package/esm/helpers/EventHelper.d.ts +30 -0
  87. package/esm/helpers/FileHelper.d.ts +22 -0
  88. package/esm/helpers/HtmlHelper.d.ts +14 -0
  89. package/esm/helpers/ImageHelper.d.ts +10 -0
  90. package/esm/helpers/JsonHelper.d.ts +35 -0
  91. package/esm/helpers/MathHelper.d.ts +54 -0
  92. package/esm/helpers/MicroHelper.d.ts +10 -0
  93. package/esm/helpers/MountHelper.d.ts +14 -0
  94. package/esm/helpers/ObjectHelper.d.ts +38 -0
  95. package/esm/helpers/ScriptHelper.d.ts +31 -0
  96. package/esm/helpers/ScrollHelper.d.ts +14 -0
  97. package/esm/helpers/SignHelper.d.ts +14 -0
  98. package/esm/helpers/StringHelper.d.ts +94 -0
  99. package/esm/helpers/TaskHelper.d.ts +26 -0
  100. package/esm/helpers/TimeHelper.d.ts +66 -0
  101. package/esm/helpers/TreeHelper.d.ts +54 -0
  102. package/esm/helpers/TypeHelper.d.ts +26 -0
  103. package/esm/helpers/UrlHelper.d.ts +88 -0
  104. package/esm/helpers/index.d.ts +25 -26
  105. package/esm/helpers/json-helper.d.ts +4 -12
  106. package/esm/helpers/object-helper.d.ts +0 -4
  107. package/esm/helpers/time-helper.d.ts +3 -7
  108. package/esm/helpers/types/TreeNodeProp.d.ts +6 -0
  109. package/esm/helpers/types/index.d.ts +2 -0
  110. package/esm/helpers/url-helper.d.ts +2 -2
  111. package/esm/main.d.ts +5 -4
  112. package/esm/plugins/index.d.ts +2 -2
  113. package/esm/plugins/types/IMessager.d.ts +1 -1
  114. package/esm/{services/types/IMessager.d.ts → plugins/types/IMessenger.d.ts} +4 -4
  115. package/esm/plugins/types/index.d.ts +8 -5
  116. package/esm/repos/SettingRepo.d.ts +11 -0
  117. package/esm/repos/index.d.ts +3 -0
  118. package/esm/services/index.d.ts +14 -1
  119. package/esm/servs/IServ.d.ts +6 -0
  120. package/esm/servs/Serv.d.ts +4 -0
  121. package/esm/servs/ServFactory.d.ts +11 -0
  122. package/esm/servs/implement/ConfigServ.d.ts +66 -0
  123. package/esm/servs/implement/DriverServ.d.ts +36 -0
  124. package/esm/servs/implement/EnvServ.d.ts +14 -0
  125. package/esm/servs/implement/LogServ.d.ts +19 -0
  126. package/esm/servs/implement/SettingServ.d.ts +42 -0
  127. package/esm/servs/implement/SocketServ.d.ts +38 -0
  128. package/esm/servs/implement/UserServ.d.ts +47 -0
  129. package/esm/servs/index.d.ts +15 -0
  130. package/esm/stores/config.d.ts +6 -10
  131. package/esm/stores/driver.d.ts +6 -2
  132. package/esm/stores/index.d.ts +2 -3
  133. package/esm/stores/setting.d.ts +4 -0
  134. package/esm/stores/user.d.ts +7 -3
  135. package/esm/svcs/ISvc.d.ts +6 -0
  136. package/esm/svcs/Svc.d.ts +4 -0
  137. package/esm/svcs/SvcFactory.d.ts +11 -0
  138. package/esm/svcs/implement/ConfigSvc.d.ts +75 -0
  139. package/esm/svcs/implement/DriverSvc.d.ts +36 -0
  140. package/esm/svcs/implement/EnvSvc.d.ts +14 -0
  141. package/esm/svcs/implement/LogSvc.d.ts +19 -0
  142. package/esm/svcs/implement/SettingSvc.d.ts +42 -0
  143. package/esm/svcs/implement/SocketSvc.d.ts +38 -0
  144. package/esm/svcs/implement/UserSvc.d.ts +47 -0
  145. package/esm/svcs/index.d.ts +34 -0
  146. package/esm/svcs/proxies/driverSvc.d.ts +18 -0
  147. package/esm/svcs/proxies/index.d.ts +2 -0
  148. package/esm/thirds/index.d.ts +8 -0
  149. package/esm/types/CreateOptions.d.ts +18 -0
  150. package/esm/types/index.d.ts +2 -0
  151. package/esm/utilities/EventUtility.d.ts +39 -8
  152. package/esm/utilities/index.d.ts +1 -0
  153. package/esm/utilities/types/DragEvent.d.ts +11 -0
  154. package/esm/utilities/types/DragOptions.d.ts +28 -0
  155. package/esm/utilities/types/Position.d.ts +15 -0
  156. package/esm/utilities/types/Range.d.ts +10 -0
  157. package/esm/utilities/types/Rect.d.ts +6 -0
  158. package/esm/utilities/types/index.d.ts +5 -0
  159. package/package.json +9 -8
  160. package/dist/vendor-@vue-l0sNRNKZ.js +0 -1
  161. package/dist/vendor-pinia-DVLspbiC.js +0 -310
  162. package/dist/vendor-vue-demi-CIhrFbpB.js +0 -17
  163. package/esm/services/types/IMessage.d.ts +0 -14
  164. package/esm/services/types/index.d.ts +0 -2
@@ -0,0 +1,98 @@
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 avg: (arr: any[], func: Function, digits?: number) => number;
41
+ /**
42
+ * 求和
43
+ */
44
+ static sum: (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
+ * order: asc desc null
87
+ */
88
+ static orderBy: (array: any[], handlers: Function | Function[], order?: string) => any[];
89
+ /**
90
+ * 分组
91
+ */
92
+ static groupByArray: (array: any[], keyFunc: (item: any) => any) => any[];
93
+ /**
94
+ * 分组,封装成字典而不是集合,大数据场景速度提升百倍
95
+ */
96
+ static groupBy: (array: any[], keyFunc: (item: any) => any, valueHandler?: (item: any) => any) => object;
97
+ }
98
+ 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,95 @@
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
+ * 判断选择器内容是否溢出
92
+ */
93
+ static isEllipsis: (selector: string) => boolean;
94
+ }
95
+ 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,14 @@
1
+ /**
2
+ * Html帮助类
3
+ */
4
+ declare class HtmlHelper {
5
+ /**
6
+ * 获取Html内容
7
+ */
8
+ static getHtml: (value: string) => string;
9
+ /**
10
+ * 获取Html中的文字
11
+ */
12
+ static getText: (value: string) => string;
13
+ }
14
+ 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,54 @@
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 max(...values: number[]): number;
25
+ /**
26
+ * 生成指定范围内的随机数
27
+ */
28
+ static random(start: number, end: number): number;
29
+ /**
30
+ * 获取在指定范围内的值
31
+ */
32
+ static between(value: number, min: number, max: number): number;
33
+ /**
34
+ * 尝试把任意类型转成数字,转换不成功返回原值
35
+ */
36
+ static getNumber(value: any): any;
37
+ /**
38
+ * 获取百分比
39
+ */
40
+ static getPercentage: (current: number, total: number) => number;
41
+ /**
42
+ * 获取百分比,保留2位小数
43
+ */
44
+ static getPercentageText: (current: number, total: number) => string;
45
+ /**
46
+ * 获取进度文本
47
+ */
48
+ static getProgressText: (current: number, total: number) => string;
49
+ /**
50
+ * 获取大小
51
+ */
52
+ static size: (bytes: number) => string;
53
+ }
54
+ 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;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 事件挂载帮助类
3
+ */
4
+ declare class MountHelper {
5
+ /**
6
+ * 激发主框架事件
7
+ */
8
+ static emit: (event: string, payload: any) => void;
9
+ /**
10
+ * 批量激发主框架事件
11
+ */
12
+ static emits: (events: any) => void;
13
+ }
14
+ export default MountHelper;
@@ -0,0 +1,38 @@
1
+ /**
2
+ * 对象帮助类
3
+ */
4
+ declare class ObjectHelper {
5
+ /**
6
+ * 净化对象,返回不带默认属性的对象
7
+ */
8
+ static pure(input: object): {};
9
+ /**
10
+ * 过滤key,并输出新对象
11
+ */
12
+ static filter(input: object, filter: (n: any) => boolean, valueHandler: (n: any) => {}): any[];
13
+ /**
14
+ * 把数组转换成对象
15
+ */
16
+ static toObject(array: any[], keySelector: (n: any) => string, valueSelector: (n: any) => string): {};
17
+ /**
18
+ * 手动复制,并对字段执行指定自定义处理
19
+ */
20
+ static copy: (obj: any, handler?: {}) => any[] | any;
21
+ /**
22
+ * 对对象进行深度克隆,同时可以移除Proxy对象
23
+ */
24
+ static clone: (obj: any, handler?: (n: any) => void) => any;
25
+ /**
26
+ * 合并来源对象到目标对象上
27
+ */
28
+ static mergeTo: (target: any, from: any) => any;
29
+ /**
30
+ * 给对象添加属性集合,并赋值
31
+ */
32
+ static addProperties: (obj: object, keys: string[], value: string) => void;
33
+ /**
34
+ * 获取对象不区分大小写的key
35
+ */
36
+ static getKey(value: object, key: string): string;
37
+ }
38
+ export default ObjectHelper;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * 脚本帮助类
3
+ */
4
+ declare class ScriptHelper {
5
+ /**
6
+ * 异步加载脚本/样式内容,把内容处理为行内html
7
+ * 这种方式,依赖的内部资源,会从当前站点加载
8
+ */
9
+ static loadContentAsync: (src: string | string[]) => Promise<void[]>;
10
+ /**
11
+ * 异步加载单个路径下的多个文件
12
+ */
13
+ static loadPathAsync: (path: string, files: string[]) => Promise<void>;
14
+ /**
15
+ * 通过注入DOM标签异步加载脚本或样式表
16
+ */
17
+ static loadAsync: (src: string | string[]) => Promise<void>;
18
+ /**
19
+ * 注意:箭头函数没有参数
20
+ */
21
+ static loadAll: (...args: any[]) => Promise<any[]>;
22
+ /**
23
+ * 根据路径获取标签(无src)
24
+ */
25
+ static getInnerTagByUrl: (url: string) => HTMLStyleElement | HTMLScriptElement;
26
+ /**
27
+ * 根据路径获取待加载的元素,同时包含Url
28
+ */
29
+ static getOuterTagByUrl: (url: string) => HTMLLinkElement | HTMLScriptElement;
30
+ }
31
+ export default ScriptHelper;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 滚动帮助类
3
+ */
4
+ declare class ScrollHelper {
5
+ /**
6
+ * 判断指定元素滚动条位置,是否到了页面底部
7
+ */
8
+ static isBottom: (selector: any) => boolean;
9
+ /**
10
+ * 滚动指定元素的滚动条到页面底部
11
+ */
12
+ static scrollToBottom: (selector: any) => void;
13
+ }
14
+ export default ScrollHelper;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 签名帮助类
3
+ */
4
+ declare class SignHelper {
5
+ /**
6
+ * 清空对象中的空值
7
+ */
8
+ static clean(obj: object): void;
9
+ /**
10
+ * 签名字典
11
+ */
12
+ static signDictionary(dictionary: object, encoding?: boolean): string;
13
+ }
14
+ export default SignHelper;
@@ -0,0 +1,94 @@
1
+ /**
2
+ * 字符串帮助类
3
+ */
4
+ declare class StringHelper {
5
+ /**
6
+ * 生成唯一字符串
7
+ */
8
+ static getUniqueId: () => string;
9
+ /**
10
+ * 填充字符串到指定长度,使用pad填充
11
+ */
12
+ static padLeft: (value: string, length: number, pad: string) => any;
13
+ /**
14
+ * 去掉头部字符串
15
+ */
16
+ static trimStart: (value: string, trim: string) => string;
17
+ /**
18
+ * 去掉尾部字符串
19
+ */
20
+ static trimEnd: (value: string, trim: string) => string;
21
+ /**
22
+ * 去掉头尾字符串
23
+ */
24
+ static trim: (value: string, start: string, end: string) => string;
25
+ /**
26
+ * 获取中划线命名法
27
+ */
28
+ static getDashName: (value: string) => string;
29
+ /**
30
+ * 忽略大小写包含判断,支持从数组中搜索关键词
31
+ */
32
+ static containsIgnoreCase: (keywords: string, value: string | string[]) => boolean;
33
+ /**
34
+ * 判断是否是数字类型,这样支持0
35
+ */
36
+ static isNumber: (value: any) => boolean;
37
+ /**
38
+ * 验证是否是邮箱格式
39
+ */
40
+ static isEmail: (email: string) => boolean;
41
+ /**
42
+ * 判断是否是json
43
+ */
44
+ static isJson: (value: string) => boolean;
45
+ /**
46
+ * 判断是否是isJsonp
47
+ */
48
+ static isJsonp: (value: string) => boolean;
49
+ /**
50
+ * 判断是否是html
51
+ */
52
+ static isHtml: (value: string) => boolean;
53
+ /**
54
+ * 获取内容类型
55
+ */
56
+ static getContentType: (value: string) => "json" | "html" | "text";
57
+ /**
58
+ * 判断字符串是否为空或空串
59
+ */
60
+ static isNullOrEmpty: (value: string) => boolean;
61
+ /**
62
+ * 判断字符串是否为空或空串
63
+ */
64
+ static isEmpty: (value: string) => value is "";
65
+ /**
66
+ * 判断是否符合密码要求
67
+ */
68
+ static isPassword: (value: string) => boolean;
69
+ /**
70
+ * 获取数据值或者空
71
+ */
72
+ static getNumberOrNull: (value: any) => number;
73
+ /**
74
+ * 格式化成留指定位数的小数
75
+ */
76
+ static format: (value: string, digits: number) => any;
77
+ /**
78
+ * 获取两个字符串之间的字符串
79
+ */
80
+ static getBetween: (value: string, start: string, end: string) => string;
81
+ /**
82
+ * 根据字符串或数组,自动返回数组
83
+ */
84
+ static getArray(name: string | string[]): string[];
85
+ /**
86
+ * 忽略大小写比较
87
+ */
88
+ static equalsIgnoreCase(value: any, valueCompare: string): boolean;
89
+ /**
90
+ * 填充字符串到指定长度,使用pad填充
91
+ */
92
+ static padStart: (input: string, length: number, pad: string) => string;
93
+ }
94
+ export default StringHelper;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * 任务执行帮助类
3
+ */
4
+ declare class TaskHelper {
5
+ /**
6
+ * 延时指定ms后执行指定任务
7
+ */
8
+ static delay: (fun: Function, ms: number) => number;
9
+ /**
10
+ * 在执行指定延时后,每隔指定ms执行指定任务
11
+ */
12
+ static execute: (fun: Function, ms: number, delay: number) => Promise<unknown>;
13
+ /**
14
+ * 清空定时器
15
+ */
16
+ static clearInterval: (id: number) => void;
17
+ /**
18
+ * 防抖(指定时间内只触发一次)
19
+ */
20
+ static debounce: (fun: Function, delay: number) => (e: any) => void;
21
+ /**
22
+ * 节流:https://segmentfault.com/a/1190000018428170
23
+ */
24
+ static throttle: (fun: Function, delay: number) => (e: any) => boolean;
25
+ }
26
+ export default TaskHelper;