zhytech-ui 1.0.10 → 1.0.12
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/README.md +2 -0
- package/dist/src/components/dynamicForm/index.d.ts +2 -2
- package/dist/src/index.d.ts +2 -2
- package/dist/src/types/enum.d.ts +6 -6
- package/dist/style.css +1 -1
- package/dist/zhytech-ui.es.js +6493 -6524
- package/dist/zhytech-ui.umd.js +16 -16
- package/package.json +1 -1
- package/dist/src/components/dynamicFilter/index.d.ts +0 -4
- package/dist/src/components/dynamicForm/types/baseComponent.d.ts +0 -67
- package/dist/src/utils/message.d.ts +0 -34
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { default as formDesigner } from './formDesigner.vue';
|
|
2
2
|
import { default as formRenderer } from './formRenderer.vue';
|
|
3
|
-
import { batchAddComponentParam, GetFormTemplateMethod } from './types/batchAddComponentParam';
|
|
3
|
+
import { batchAddComponentParam, formListView, GetFormTemplateMethod } from './types/batchAddComponentParam';
|
|
4
4
|
import { documentView } from './types/documentView';
|
|
5
5
|
import { dynamicFormData, formAttribute } from './types/formAttribute';
|
|
6
6
|
import { uploadOption } from './types/uploadOption';
|
|
7
|
-
export type { dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, GetFormTemplateMethod };
|
|
7
|
+
export type { dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, GetFormTemplateMethod, formListView };
|
|
8
8
|
export { formDesigner, formRenderer };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { conditionType, dynamicFilter as ZhyDynamicFilter } from './components/dynamicFilter/index';
|
|
2
|
-
import { batchAddComponentParam, documentView, dynamicFormData, formAttribute, GetFormTemplateMethod, uploadOption, formDesigner as ZhyFormDesigner, formRenderer as ZhyFormRenderer } from './components/dynamicForm/index';
|
|
2
|
+
import { batchAddComponentParam, documentView, dynamicFormData, formAttribute, formListView, GetFormTemplateMethod, uploadOption, formDesigner as ZhyFormDesigner, formRenderer as ZhyFormRenderer } from './components/dynamicForm/index';
|
|
3
3
|
import { icon as ZhyIcon } from './components/icon/index';
|
|
4
|
-
export type { conditionType, dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, GetFormTemplateMethod };
|
|
4
|
+
export type { conditionType, dynamicFormData, formAttribute, uploadOption, documentView, batchAddComponentParam, GetFormTemplateMethod, formListView };
|
|
5
5
|
export { ZhyIcon, ZhyFormDesigner, ZhyFormRenderer, ZhyDynamicFilter };
|
|
6
6
|
declare const _default: {
|
|
7
7
|
install: (app: any, options?: Record<string, any> | undefined) => void;
|
package/dist/src/types/enum.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 消息类型
|
|
3
3
|
*/
|
|
4
|
-
declare enum MessageType {
|
|
4
|
+
export declare enum MessageType {
|
|
5
5
|
/**
|
|
6
6
|
* 成功消息
|
|
7
7
|
*/
|
|
8
|
-
success,
|
|
8
|
+
success = 0,
|
|
9
9
|
/**
|
|
10
10
|
* 警告消息
|
|
11
11
|
*/
|
|
12
|
-
warning,
|
|
12
|
+
warning = 1,
|
|
13
13
|
/**
|
|
14
14
|
* 错误消息
|
|
15
15
|
*/
|
|
16
|
-
error,
|
|
16
|
+
error = 2,
|
|
17
17
|
/**
|
|
18
18
|
* 普通消息
|
|
19
19
|
*/
|
|
20
|
-
info
|
|
20
|
+
info = 3
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* 过滤条件组件类型
|
|
24
24
|
*/
|
|
25
|
-
declare enum filterConditionTypes {
|
|
25
|
+
export declare enum filterConditionTypes {
|
|
26
26
|
/**
|
|
27
27
|
* 等于=
|
|
28
28
|
*/
|