@kengic/vue 0.1.1-beta.3 → 0.1.1-beta.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.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +1282 -1121
- package/dist/src/apis/WMS/Controllers/VarCatalogController/ExportXls.d.ts +1 -1
- package/dist/src/apis/WMS/Controllers/VarCatalogController/List.d.ts +1 -1
- package/dist/src/apis/WMS/models.d.ts +31 -1
- package/dist/src/components/KgControl/KgControl.Date.d.ts +105 -0
- package/dist/src/components/KgControl/KgControl.Input.d.ts +49 -14
- package/dist/src/components/KgControl/KgControl.Select.d.ts +53 -15
- package/dist/src/components/KgControl/KgControl.Switch.d.ts +104 -0
- package/dist/src/components/KgControl/KgControl.d.ts +50 -14
- package/dist/src/components/KgControl/addon/KgControl.Addon.Lookup.d.ts +3 -0
- package/dist/src/components/KgControl/index.d.ts +3 -189
- package/dist/src/components/KgControl/index.vm.d.ts +42 -11
- package/dist/src/components/KgVar/hooks/index.d.ts +4 -0
- package/dist/src/components/KgVar/store/index.d.ts +3 -1
- package/dist/src/components/KgVar/store/index.data.d.ts +3 -1
- package/dist/src/components/index.d.ts +1 -1
- package/dist/src/config/index.d.ts +1 -0
- package/dist/src/config/setup.d.ts +43 -0
- package/dist/src/consts/i18n/index.d.ts +0 -1
- package/dist/src/consts/index.d.ts +14 -7
- package/dist/src/consts/injection-keys.const.d.ts +1 -6
- package/dist/src/index.d.ts +1 -0
- package/package.json +2 -1
- package/dist/src/consts/i18n/t.d.ts +0 -20
|
@@ -16,7 +16,7 @@ export declare class IPage<T0> {
|
|
|
16
16
|
*/
|
|
17
17
|
export declare class VarCatalog {
|
|
18
18
|
/** 定制级别. */
|
|
19
|
-
custLvl?:
|
|
19
|
+
custLvl?: number | null;
|
|
20
20
|
/** 界面标识. */
|
|
21
21
|
frmId?: string | null;
|
|
22
22
|
/** 分组. */
|
|
@@ -53,8 +53,38 @@ export declare class VarContext {
|
|
|
53
53
|
export declare class VarDTO {
|
|
54
54
|
/** 变量别名. */
|
|
55
55
|
varCatalogs?: Array<VarCatalog> | null;
|
|
56
|
+
/** 变量查找. */
|
|
57
|
+
varLookups?: Array<VarLookup> | null;
|
|
56
58
|
constructor(obj?: VarDTO);
|
|
57
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* 变量查找.
|
|
62
|
+
*/
|
|
63
|
+
export declare class VarLookup {
|
|
64
|
+
/** 定制级别(CustomLevel). */
|
|
65
|
+
custLvl?: number | null;
|
|
66
|
+
/** 是否启用(EnableFlag). */
|
|
67
|
+
enaFlg?: number | null;
|
|
68
|
+
/** 界面标识(FormID). */
|
|
69
|
+
frmId?: string | null;
|
|
70
|
+
/** 分组(GroupName). */
|
|
71
|
+
grpNam?: string | null;
|
|
72
|
+
/** 主键. */
|
|
73
|
+
id?: string | null;
|
|
74
|
+
/** 查询接口地址(LookupCommand). */
|
|
75
|
+
lkpCmd?: string | null;
|
|
76
|
+
/** 查找编号(LookupID). */
|
|
77
|
+
lkpId?: string | null;
|
|
78
|
+
/** 语言(LocaleID) */
|
|
79
|
+
localeId?: string | null;
|
|
80
|
+
/** 是否支持多选(MultipleFlag). */
|
|
81
|
+
multFlg?: number | null;
|
|
82
|
+
/** 返回字段(ReturnField). */
|
|
83
|
+
retFld?: string | null;
|
|
84
|
+
/** 变量名称(VariableName). */
|
|
85
|
+
varNam?: string | null;
|
|
86
|
+
constructor(obj?: VarLookup);
|
|
87
|
+
}
|
|
58
88
|
/**
|
|
59
89
|
* 获取对象的属性名数组.
|
|
60
90
|
* @param obj 对象.
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import './KgControl.less';
|
|
2
|
+
import { Dayjs } from 'dayjs';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
kgVarName: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
required: boolean;
|
|
7
|
+
};
|
|
8
|
+
kgGutter: {
|
|
9
|
+
type: import("vue").PropType<number>;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
kgSpan: {
|
|
13
|
+
type: import("vue").PropType<number>;
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
17
|
+
kgPlaceholder: {
|
|
18
|
+
type: import("vue").PropType<string>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
kgCodeColumn: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
kgDescriptionColumn: {
|
|
26
|
+
type: import("vue").PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
kgAction: import("vue").PropType<string>;
|
|
30
|
+
kgActionParameter: import("vue").PropType<string>;
|
|
31
|
+
kgValidateInfo: {
|
|
32
|
+
type: import("vue").PropType<import("ant-design-vue/lib/form/useForm").ValidateInfo>;
|
|
33
|
+
default: () => {};
|
|
34
|
+
};
|
|
35
|
+
kgActionType: {
|
|
36
|
+
type: import("vue").PropType<import("axios").Method>;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
kgShowTime: {
|
|
40
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<Dayjs>>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
44
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
45
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
46
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
47
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "kgSubmit" | "kgChange")[], "update:value" | "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
kgVarName: {
|
|
49
|
+
type: import("vue").PropType<string>;
|
|
50
|
+
required: boolean;
|
|
51
|
+
};
|
|
52
|
+
kgGutter: {
|
|
53
|
+
type: import("vue").PropType<number>;
|
|
54
|
+
default: number;
|
|
55
|
+
};
|
|
56
|
+
kgSpan: {
|
|
57
|
+
type: import("vue").PropType<number>;
|
|
58
|
+
default: number;
|
|
59
|
+
};
|
|
60
|
+
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
61
|
+
kgPlaceholder: {
|
|
62
|
+
type: import("vue").PropType<string>;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
kgCodeColumn: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
kgDescriptionColumn: {
|
|
70
|
+
type: import("vue").PropType<string>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
kgAction: import("vue").PropType<string>;
|
|
74
|
+
kgActionParameter: import("vue").PropType<string>;
|
|
75
|
+
kgValidateInfo: {
|
|
76
|
+
type: import("vue").PropType<import("ant-design-vue/lib/form/useForm").ValidateInfo>;
|
|
77
|
+
default: () => {};
|
|
78
|
+
};
|
|
79
|
+
kgActionType: {
|
|
80
|
+
type: import("vue").PropType<import("axios").Method>;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
kgShowTime: {
|
|
84
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<Dayjs>>;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
88
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
89
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
90
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
91
|
+
}>> & {
|
|
92
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
onKgChange?: ((...args: any[]) => any) | undefined;
|
|
95
|
+
}, {
|
|
96
|
+
kgGutter: number;
|
|
97
|
+
kgSpan: number;
|
|
98
|
+
kgPlaceholder: string;
|
|
99
|
+
kgCodeColumn: string;
|
|
100
|
+
kgDescriptionColumn: string;
|
|
101
|
+
kgValidateInfo: import("ant-design-vue/lib/form/useForm").ValidateInfo;
|
|
102
|
+
kgActionType: import("axios").Method;
|
|
103
|
+
kgShowTime: boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<Dayjs>;
|
|
104
|
+
}>;
|
|
105
|
+
export default _default;
|
|
@@ -9,13 +9,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
default: number;
|
|
10
10
|
};
|
|
11
11
|
kgSpan: {
|
|
12
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<number>;
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
15
|
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
16
|
-
kgPlaceholder:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
kgPlaceholder: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
kgCodeColumn: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
kgDescriptionColumn: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
19
28
|
kgAction: import("vue").PropType<string>;
|
|
20
29
|
kgActionParameter: import("vue").PropType<string>;
|
|
21
30
|
kgValidateInfo: {
|
|
@@ -26,9 +35,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
35
|
type: import("vue").PropType<import("axios").Method>;
|
|
27
36
|
default: string;
|
|
28
37
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
38
|
+
kgShowTime: {
|
|
39
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
43
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
44
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
45
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
46
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "kgSubmit" | "kgChange")[], "update:value" | "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
47
|
kgVarName: {
|
|
33
48
|
type: import("vue").PropType<string>;
|
|
34
49
|
required: boolean;
|
|
@@ -38,13 +53,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
53
|
default: number;
|
|
39
54
|
};
|
|
40
55
|
kgSpan: {
|
|
41
|
-
type: import("vue").PropType<
|
|
56
|
+
type: import("vue").PropType<number>;
|
|
42
57
|
default: number;
|
|
43
58
|
};
|
|
44
59
|
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
45
|
-
kgPlaceholder:
|
|
46
|
-
|
|
47
|
-
|
|
60
|
+
kgPlaceholder: {
|
|
61
|
+
type: import("vue").PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
kgCodeColumn: {
|
|
65
|
+
type: import("vue").PropType<string>;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
kgDescriptionColumn: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
48
72
|
kgAction: import("vue").PropType<string>;
|
|
49
73
|
kgActionParameter: import("vue").PropType<string>;
|
|
50
74
|
kgValidateInfo: {
|
|
@@ -55,15 +79,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
79
|
type: import("vue").PropType<import("axios").Method>;
|
|
56
80
|
default: string;
|
|
57
81
|
};
|
|
58
|
-
|
|
59
|
-
|
|
82
|
+
kgShowTime: {
|
|
83
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
87
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
88
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
89
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
60
90
|
}>> & {
|
|
61
91
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
62
92
|
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onKgChange?: ((...args: any[]) => any) | undefined;
|
|
63
94
|
}, {
|
|
64
95
|
kgGutter: number;
|
|
65
|
-
kgSpan:
|
|
96
|
+
kgSpan: number;
|
|
97
|
+
kgPlaceholder: string;
|
|
98
|
+
kgCodeColumn: string;
|
|
99
|
+
kgDescriptionColumn: string;
|
|
66
100
|
kgValidateInfo: import("ant-design-vue/lib/form/useForm").ValidateInfo;
|
|
67
101
|
kgActionType: import("axios").Method;
|
|
102
|
+
kgShowTime: boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>;
|
|
68
103
|
}>;
|
|
69
104
|
export default _default;
|
|
@@ -9,13 +9,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
default: number;
|
|
10
10
|
};
|
|
11
11
|
kgSpan: {
|
|
12
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<number>;
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
15
|
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
16
|
-
kgPlaceholder:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
kgPlaceholder: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
kgCodeColumn: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
kgDescriptionColumn: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
19
28
|
kgAction: import("vue").PropType<string>;
|
|
20
29
|
kgActionParameter: import("vue").PropType<string>;
|
|
21
30
|
kgValidateInfo: {
|
|
@@ -26,9 +35,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
35
|
type: import("vue").PropType<import("axios").Method>;
|
|
27
36
|
default: string;
|
|
28
37
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
38
|
+
kgShowTime: {
|
|
39
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
43
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
44
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
45
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
46
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "kgSubmit" | "kgChange")[], "update:value" | "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
47
|
kgVarName: {
|
|
33
48
|
type: import("vue").PropType<string>;
|
|
34
49
|
required: boolean;
|
|
@@ -38,13 +53,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
53
|
default: number;
|
|
39
54
|
};
|
|
40
55
|
kgSpan: {
|
|
41
|
-
type: import("vue").PropType<
|
|
56
|
+
type: import("vue").PropType<number>;
|
|
42
57
|
default: number;
|
|
43
58
|
};
|
|
44
59
|
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
45
|
-
kgPlaceholder:
|
|
46
|
-
|
|
47
|
-
|
|
60
|
+
kgPlaceholder: {
|
|
61
|
+
type: import("vue").PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
kgCodeColumn: {
|
|
65
|
+
type: import("vue").PropType<string>;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
kgDescriptionColumn: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
48
72
|
kgAction: import("vue").PropType<string>;
|
|
49
73
|
kgActionParameter: import("vue").PropType<string>;
|
|
50
74
|
kgValidateInfo: {
|
|
@@ -55,12 +79,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
79
|
type: import("vue").PropType<import("axios").Method>;
|
|
56
80
|
default: string;
|
|
57
81
|
};
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
82
|
+
kgShowTime: {
|
|
83
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
87
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
88
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
89
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
90
|
+
}>> & {
|
|
91
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onKgChange?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
}, {
|
|
61
95
|
kgGutter: number;
|
|
62
|
-
kgSpan:
|
|
96
|
+
kgSpan: number;
|
|
97
|
+
kgPlaceholder: string;
|
|
98
|
+
kgCodeColumn: string;
|
|
99
|
+
kgDescriptionColumn: string;
|
|
63
100
|
kgValidateInfo: import("ant-design-vue/lib/form/useForm").ValidateInfo;
|
|
64
101
|
kgActionType: import("axios").Method;
|
|
102
|
+
kgShowTime: boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>;
|
|
65
103
|
}>;
|
|
66
104
|
export default _default;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import './KgControl.less';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
kgVarName: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: boolean;
|
|
6
|
+
};
|
|
7
|
+
kgGutter: {
|
|
8
|
+
type: import("vue").PropType<number>;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
kgSpan: {
|
|
12
|
+
type: import("vue").PropType<number>;
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
16
|
+
kgPlaceholder: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
kgCodeColumn: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
kgDescriptionColumn: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
kgAction: import("vue").PropType<string>;
|
|
29
|
+
kgActionParameter: import("vue").PropType<string>;
|
|
30
|
+
kgValidateInfo: {
|
|
31
|
+
type: import("vue").PropType<import("ant-design-vue/lib/form/useForm").ValidateInfo>;
|
|
32
|
+
default: () => {};
|
|
33
|
+
};
|
|
34
|
+
kgActionType: {
|
|
35
|
+
type: import("vue").PropType<import("axios").Method>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
kgShowTime: {
|
|
39
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
43
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
44
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
45
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
46
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "kgSubmit" | "kgChange")[], "update:value" | "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
kgVarName: {
|
|
48
|
+
type: import("vue").PropType<string>;
|
|
49
|
+
required: boolean;
|
|
50
|
+
};
|
|
51
|
+
kgGutter: {
|
|
52
|
+
type: import("vue").PropType<number>;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
kgSpan: {
|
|
56
|
+
type: import("vue").PropType<number>;
|
|
57
|
+
default: number;
|
|
58
|
+
};
|
|
59
|
+
kgType: import("vue").PropType<import("../..").KG_CONTROL_TYPES_ENUM>;
|
|
60
|
+
kgPlaceholder: {
|
|
61
|
+
type: import("vue").PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
kgCodeColumn: {
|
|
65
|
+
type: import("vue").PropType<string>;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
kgDescriptionColumn: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
kgAction: import("vue").PropType<string>;
|
|
73
|
+
kgActionParameter: import("vue").PropType<string>;
|
|
74
|
+
kgValidateInfo: {
|
|
75
|
+
type: import("vue").PropType<import("ant-design-vue/lib/form/useForm").ValidateInfo>;
|
|
76
|
+
default: () => {};
|
|
77
|
+
};
|
|
78
|
+
kgActionType: {
|
|
79
|
+
type: import("vue").PropType<import("axios").Method>;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
kgShowTime: {
|
|
83
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
87
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
88
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
89
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
90
|
+
}>> & {
|
|
91
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
|
93
|
+
onKgChange?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
}, {
|
|
95
|
+
kgGutter: number;
|
|
96
|
+
kgSpan: number;
|
|
97
|
+
kgPlaceholder: string;
|
|
98
|
+
kgCodeColumn: string;
|
|
99
|
+
kgDescriptionColumn: string;
|
|
100
|
+
kgValidateInfo: import("ant-design-vue/lib/form/useForm").ValidateInfo;
|
|
101
|
+
kgActionType: import("axios").Method;
|
|
102
|
+
kgShowTime: boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>;
|
|
103
|
+
}>;
|
|
104
|
+
export default _default;
|
|
@@ -10,13 +10,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
12
|
kgSpan: {
|
|
13
|
-
type: import("vue").PropType<
|
|
13
|
+
type: import("vue").PropType<number>;
|
|
14
14
|
default: number;
|
|
15
15
|
};
|
|
16
16
|
kgType: import("vue").PropType<KG_CONTROL_TYPES_ENUM>;
|
|
17
|
-
kgPlaceholder:
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
kgPlaceholder: {
|
|
18
|
+
type: import("vue").PropType<string>; /** 样式. */
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
kgCodeColumn: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
kgDescriptionColumn: {
|
|
26
|
+
type: import("vue").PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
20
29
|
kgAction: import("vue").PropType<string>;
|
|
21
30
|
kgActionParameter: import("vue").PropType<string>;
|
|
22
31
|
kgValidateInfo: {
|
|
@@ -27,9 +36,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
36
|
type: import("vue").PropType<import("axios").Method>;
|
|
28
37
|
default: string;
|
|
29
38
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
39
|
+
kgShowTime: {
|
|
40
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
44
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
45
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
46
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
47
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "kgSubmit" | "kgChange")[], "update:value" | "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
48
|
kgVarName: {
|
|
34
49
|
type: import("vue").PropType<string>;
|
|
35
50
|
required: boolean;
|
|
@@ -39,13 +54,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
39
54
|
default: number;
|
|
40
55
|
};
|
|
41
56
|
kgSpan: {
|
|
42
|
-
type: import("vue").PropType<
|
|
57
|
+
type: import("vue").PropType<number>;
|
|
43
58
|
default: number;
|
|
44
59
|
};
|
|
45
60
|
kgType: import("vue").PropType<KG_CONTROL_TYPES_ENUM>;
|
|
46
|
-
kgPlaceholder:
|
|
47
|
-
|
|
48
|
-
|
|
61
|
+
kgPlaceholder: {
|
|
62
|
+
type: import("vue").PropType<string>; /** 样式. */
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
kgCodeColumn: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
kgDescriptionColumn: {
|
|
70
|
+
type: import("vue").PropType<string>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
49
73
|
kgAction: import("vue").PropType<string>;
|
|
50
74
|
kgActionParameter: import("vue").PropType<string>;
|
|
51
75
|
kgValidateInfo: {
|
|
@@ -56,14 +80,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
80
|
type: import("vue").PropType<import("axios").Method>;
|
|
57
81
|
default: string;
|
|
58
82
|
};
|
|
59
|
-
|
|
60
|
-
|
|
83
|
+
kgShowTime: {
|
|
84
|
+
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
|
+
value: import("vue").PropType<import("./index.vm").KgControlValue>;
|
|
88
|
+
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").KgControlValue | null) => void>;
|
|
89
|
+
onKgSubmit: import("vue").PropType<() => void>;
|
|
90
|
+
onKgChange: import("vue").PropType<(value: any) => void>;
|
|
61
91
|
}>> & {
|
|
92
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
62
93
|
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
onKgChange?: ((...args: any[]) => any) | undefined;
|
|
63
95
|
}, {
|
|
64
96
|
kgGutter: number;
|
|
65
|
-
kgSpan:
|
|
97
|
+
kgSpan: number;
|
|
98
|
+
kgPlaceholder: string;
|
|
99
|
+
kgCodeColumn: string;
|
|
100
|
+
kgDescriptionColumn: string;
|
|
66
101
|
kgValidateInfo: import("ant-design-vue/lib/form/useForm").ValidateInfo;
|
|
67
102
|
kgActionType: import("axios").Method;
|
|
103
|
+
kgShowTime: boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>;
|
|
68
104
|
}>;
|
|
69
105
|
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import './KgControl.Addon.Lookup.less';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _default;
|