zhytech-ui 1.0.2 → 1.0.5
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.
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
export declare function useUtils(): {
|
|
2
|
+
/**
|
|
3
|
+
* @description: 计算表达式,实现eval函数功能,解决使用eval时编译报错
|
|
4
|
+
* @param expression
|
|
5
|
+
* @return
|
|
6
|
+
*/
|
|
7
|
+
computedExpression: (expression: string) => any;
|
|
8
|
+
/**
|
|
9
|
+
* @description: 生成项目临时ID
|
|
10
|
+
* @param prefix 前缀
|
|
11
|
+
* @return
|
|
12
|
+
*/
|
|
13
|
+
getTempID(prefix?: string): string;
|
|
14
|
+
/**
|
|
15
|
+
* @description: 解决JSON.stringify和JSON.parse不能转换RegExp的问题
|
|
16
|
+
* @param jsonStr
|
|
17
|
+
* @return
|
|
18
|
+
*/
|
|
19
|
+
parseJson: (jsonStr: string) => any;
|
|
20
|
+
/**
|
|
21
|
+
* @description: json对象转json字符串
|
|
22
|
+
* @param json
|
|
23
|
+
* @return
|
|
24
|
+
*/
|
|
25
|
+
stringifyJson: (jsonObject: object) => string;
|
|
26
|
+
/**
|
|
27
|
+
* @description: 克隆对象
|
|
28
|
+
* @param jsonObject
|
|
29
|
+
* @return
|
|
30
|
+
*/
|
|
31
|
+
clone(jsonObject: any): any;
|
|
32
|
+
/**
|
|
33
|
+
* @description: 判断参数是否为空
|
|
34
|
+
* @param T param
|
|
35
|
+
* @return
|
|
36
|
+
*/
|
|
37
|
+
isEmpty: <T>(param: T) => boolean;
|
|
38
|
+
/**
|
|
39
|
+
* @description: 判断参数是否为空
|
|
40
|
+
* @param T obj
|
|
41
|
+
* @return
|
|
42
|
+
*/
|
|
43
|
+
removeEmptyAttribute(obj: Object): Object;
|
|
44
|
+
/**
|
|
45
|
+
* @description: 检查上传的文件是否合法
|
|
46
|
+
* @param file 要上传的文件
|
|
47
|
+
* @param files 已上传的文件
|
|
48
|
+
* @param size 文件限制大小
|
|
49
|
+
* @param unit 文件限制大小的单位
|
|
50
|
+
* @param isImage 是否为图片
|
|
51
|
+
* @return
|
|
52
|
+
*/
|
|
53
|
+
checkFile(file: any, files: [], size: number, unit: string, isImage: boolean): boolean;
|
|
54
|
+
/**
|
|
55
|
+
* @description: 根据传入值获取:①对应节点所在的各级菜单的值所组成的数组(多选为二维数组)②对应节点的对象(多选为对象数组)
|
|
56
|
+
* @param selectVale 级联选择器选择的值
|
|
57
|
+
* @param options 级联选择器的所有数据
|
|
58
|
+
* @param valueName 级联选择器的数据类型value名字
|
|
59
|
+
* @param chilName 级联选择器的数据类型children名字
|
|
60
|
+
* @param multipleFlag 是否是多选
|
|
61
|
+
* @returns
|
|
62
|
+
*/
|
|
63
|
+
getCascaderFullValue<V, L>(selectVale: V | V[], options: L[], valueName: string, chilName: string, multipleFlag?: boolean): (L | V[] | L[] | V[][])[];
|
|
64
|
+
/**
|
|
65
|
+
* 存储/读取localStorage数据
|
|
66
|
+
* name: localStorage的key
|
|
67
|
+
* value: localStorage的value
|
|
68
|
+
*/
|
|
69
|
+
storage(key: string, value?: any): any;
|
|
70
|
+
/**
|
|
71
|
+
* 存储/读取sessionStorage数据
|
|
72
|
+
* name: localStorage的key
|
|
73
|
+
* value: localStorage的value
|
|
74
|
+
*/
|
|
75
|
+
session(key: string, value?: any): any;
|
|
76
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { conditionType, dynamicFilter } from './dynamicFilter/index';
|
|
2
|
-
import { batchAddComponentParam, documentView, dynamicFormData, formAttribute, GetFormTemplateMethod, uploadOption, formDesigner, formRenderer } from './dynamicForm/index';
|
|
1
|
+
import { conditionType, dynamicFilter } from './components/dynamicFilter/index';
|
|
2
|
+
import { batchAddComponentParam, documentView, dynamicFormData, formAttribute, GetFormTemplateMethod, uploadOption, formDesigner, formRenderer } from './components/dynamicForm/index';
|
|
3
3
|
export type { conditionType, dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, GetFormTemplateMethod };
|
|
4
4
|
export { formDesigner, formRenderer, dynamicFilter };
|
|
5
5
|
declare const _default: {
|
|
File without changes
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 消息类型
|
|
3
|
+
*/
|
|
4
|
+
export declare enum MessageType {
|
|
5
|
+
/**
|
|
6
|
+
* 成功消息
|
|
7
|
+
*/
|
|
8
|
+
success = 0,
|
|
9
|
+
/**
|
|
10
|
+
* 警告消息
|
|
11
|
+
*/
|
|
12
|
+
warning = 1,
|
|
13
|
+
/**
|
|
14
|
+
* 错误消息
|
|
15
|
+
*/
|
|
16
|
+
error = 2,
|
|
17
|
+
/**
|
|
18
|
+
* 普通消息
|
|
19
|
+
*/
|
|
20
|
+
info = 3
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* 过滤条件组件类型
|
|
24
|
+
*/
|
|
25
|
+
export declare enum filterConditionTypes {
|
|
26
|
+
/**
|
|
27
|
+
* 等于=
|
|
28
|
+
*/
|
|
29
|
+
EQUALS = "\u7B49\u4E8E",
|
|
30
|
+
/**
|
|
31
|
+
* 不等于!=
|
|
32
|
+
*/
|
|
33
|
+
NOT_EQUALS = "\u4E0D\u7B49\u4E8E",
|
|
34
|
+
/**
|
|
35
|
+
* 大于>
|
|
36
|
+
*/
|
|
37
|
+
GREATER_THAN = "\u5927\u4E8E",
|
|
38
|
+
/**
|
|
39
|
+
* 小于<
|
|
40
|
+
*/
|
|
41
|
+
LESS_THAN = "\u5C0F\u4E8E",
|
|
42
|
+
/**
|
|
43
|
+
* 大于等于>=
|
|
44
|
+
*/
|
|
45
|
+
GREATER_THAN_OR_EQUALS = "\u5927\u4E8E\u7B49\u4E8E",
|
|
46
|
+
/**
|
|
47
|
+
* 小于等于<=
|
|
48
|
+
*/
|
|
49
|
+
LESS_THAN_OR_EQUALS = "\u5C0F\u4E8E\u7B49\u4E8E",
|
|
50
|
+
/**
|
|
51
|
+
* 为空
|
|
52
|
+
*/
|
|
53
|
+
EMPTY = "\u4E3A\u7A7A",
|
|
54
|
+
/**
|
|
55
|
+
* 包含
|
|
56
|
+
*/
|
|
57
|
+
INCLUDES = "\u5305\u542B",
|
|
58
|
+
/**
|
|
59
|
+
* 不包含
|
|
60
|
+
*/
|
|
61
|
+
EXCLUDE = "\u4E0D\u5305\u542B",
|
|
62
|
+
/**
|
|
63
|
+
* 范围
|
|
64
|
+
*/
|
|
65
|
+
RANGE = "\u8303\u56F4"
|
|
66
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zhytech-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"main": "./dist/zhytech-ui.umd.js",
|
|
25
25
|
"module": "./dist/zhytech-ui.es.js",
|
|
26
|
+
"types":"./dist/src/index.d.ts",
|
|
26
27
|
"exports": {
|
|
27
28
|
".": {
|
|
28
29
|
"import": "./dist/zhytech-ui.es.js",
|