@kengic/vue 0.1.1-beta.2 → 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 +1289 -1128
- package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/Add.d.ts +1 -1
- package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/Edit.d.ts +1 -1
- package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/ExportXls.d.ts +7 -7
- package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/List.d.ts +8 -8
- package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/QueryById.d.ts +1 -1
- package/dist/src/apis/WMS/Controllers/VarContextController/ExportXls.d.ts +4 -4
- package/dist/src/apis/WMS/Controllers/VarContextController/List.d.ts +4 -4
- package/dist/src/apis/WMS/Controllers/index.d.ts +1 -1
- package/dist/src/apis/WMS/models.d.ts +47 -17
- 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 +6 -2
- package/dist/src/components/KgVar/store/index.d.ts +4 -2
- package/dist/src/components/KgVar/store/index.data.d.ts +4 -2
- 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
- /package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/Delete.d.ts +0 -0
- /package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/DeleteBatch.d.ts +0 -0
- /package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/ImportExcel.d.ts +0 -0
- /package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/index.d.ts +0 -0
|
@@ -9,7 +9,7 @@ export declare class AddQuery {
|
|
|
9
9
|
* @param config 请求配置.
|
|
10
10
|
* @param option 请求选项.
|
|
11
11
|
*/
|
|
12
|
-
export declare function Add(config?: IRequestConfig<AddQuery, DEF.WMS.
|
|
12
|
+
export declare function Add(config?: IRequestConfig<AddQuery, DEF.WMS.VarCatalog>, option?: IRequestOptions): Promise<string>;
|
|
13
13
|
export declare namespace Add {
|
|
14
14
|
var method: "POST";
|
|
15
15
|
var url: string;
|
|
@@ -9,7 +9,7 @@ export declare class EditQuery {
|
|
|
9
9
|
* @param config 请求配置.
|
|
10
10
|
* @param option 请求选项.
|
|
11
11
|
*/
|
|
12
|
-
export declare function Edit(config?: IRequestConfig<EditQuery, DEF.WMS.
|
|
12
|
+
export declare function Edit(config?: IRequestConfig<EditQuery, DEF.WMS.VarCatalog>, option?: IRequestOptions): Promise<string>;
|
|
13
13
|
export declare namespace Edit {
|
|
14
14
|
var method: "POST";
|
|
15
15
|
var url: string;
|
package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/ExportXls.d.ts
RENAMED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { IRequestConfig, IRequestOptions } from '../../../../services';
|
|
2
2
|
/** 请求参数. */
|
|
3
3
|
export declare class ExportXlsQuery {
|
|
4
|
-
/**
|
|
5
|
-
custLvl?:
|
|
6
|
-
/**
|
|
4
|
+
/** 定制级别. */
|
|
5
|
+
custLvl?: number | null;
|
|
6
|
+
/** 界面标识. */
|
|
7
7
|
frmId?: string | null;
|
|
8
|
-
/**
|
|
8
|
+
/** 分组. */
|
|
9
9
|
grpNam?: string | null;
|
|
10
10
|
/** 主键. */
|
|
11
11
|
id?: string | null;
|
|
12
|
-
/**
|
|
12
|
+
/** 语言. */
|
|
13
13
|
localeId?: string | null;
|
|
14
|
-
/**
|
|
14
|
+
/** 变量名称. */
|
|
15
15
|
varNam?: string | null;
|
|
16
|
-
/**
|
|
16
|
+
/** 显示文本. */
|
|
17
17
|
varText?: string | null;
|
|
18
18
|
constructor(obj?: ExportXlsQuery);
|
|
19
19
|
}
|
|
@@ -4,15 +4,15 @@ import * as DEF from '../../../def';
|
|
|
4
4
|
export declare class ListQuery {
|
|
5
5
|
/** 排序字段. */
|
|
6
6
|
column?: string | null;
|
|
7
|
-
/**
|
|
8
|
-
custLvl?:
|
|
9
|
-
/**
|
|
7
|
+
/** 定制级别. */
|
|
8
|
+
custLvl?: number | null;
|
|
9
|
+
/** 界面标识. */
|
|
10
10
|
frmId?: string | null;
|
|
11
|
-
/**
|
|
11
|
+
/** 分组. */
|
|
12
12
|
grpNam?: string | null;
|
|
13
13
|
/** 主键. */
|
|
14
14
|
id?: string | null;
|
|
15
|
-
/**
|
|
15
|
+
/** 语言. */
|
|
16
16
|
localeId?: string | null;
|
|
17
17
|
/** 排序方式. */
|
|
18
18
|
order?: 'asc' | 'desc' | null;
|
|
@@ -20,9 +20,9 @@ export declare class ListQuery {
|
|
|
20
20
|
pageNo?: number | null;
|
|
21
21
|
/** 每页条数. */
|
|
22
22
|
pageSize?: number | null;
|
|
23
|
-
/**
|
|
23
|
+
/** 变量名称. */
|
|
24
24
|
varNam?: string | null;
|
|
25
|
-
/**
|
|
25
|
+
/** 显示文本. */
|
|
26
26
|
varText?: string | null;
|
|
27
27
|
constructor(obj?: ListQuery);
|
|
28
28
|
}
|
|
@@ -32,7 +32,7 @@ export declare class ListQuery {
|
|
|
32
32
|
* @param config 请求配置.
|
|
33
33
|
* @param option 请求选项.
|
|
34
34
|
*/
|
|
35
|
-
export declare function List(config?: IRequestConfig<ListQuery, {}>, option?: IRequestOptions): Promise<DEF.WMS.IPage<DEF.WMS.
|
|
35
|
+
export declare function List(config?: IRequestConfig<ListQuery, {}>, option?: IRequestOptions): Promise<DEF.WMS.IPage<DEF.WMS.VarCatalog>>;
|
|
36
36
|
export declare namespace List {
|
|
37
37
|
var method: "GET";
|
|
38
38
|
var url: string;
|
package/dist/src/apis/WMS/Controllers/{VarCatController → VarCatalogController}/QueryById.d.ts
RENAMED
|
@@ -12,7 +12,7 @@ export declare class QueryByIdQuery {
|
|
|
12
12
|
* @param config 请求配置.
|
|
13
13
|
* @param option 请求选项.
|
|
14
14
|
*/
|
|
15
|
-
export declare function QueryById(config?: IRequestConfig<QueryByIdQuery, {}>, option?: IRequestOptions): Promise<DEF.WMS.
|
|
15
|
+
export declare function QueryById(config?: IRequestConfig<QueryByIdQuery, {}>, option?: IRequestOptions): Promise<DEF.WMS.VarCatalog>;
|
|
16
16
|
export declare namespace QueryById {
|
|
17
17
|
var method: "GET";
|
|
18
18
|
var url: string;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { IRequestConfig, IRequestOptions } from '../../../../services';
|
|
2
2
|
/** 请求参数. */
|
|
3
3
|
export declare class ExportXlsQuery {
|
|
4
|
-
/**
|
|
4
|
+
/** 界面标识. */
|
|
5
5
|
frmId?: string | null;
|
|
6
|
-
/**
|
|
6
|
+
/** 界面名称. */
|
|
7
7
|
frmNam?: string | null;
|
|
8
|
-
/**
|
|
8
|
+
/** 分组. */
|
|
9
9
|
grpNam?: string | null;
|
|
10
10
|
/** 主键. */
|
|
11
11
|
id?: string | null;
|
|
12
|
-
/**
|
|
12
|
+
/** 变量名称. */
|
|
13
13
|
varNam?: string | null;
|
|
14
14
|
constructor(obj?: ExportXlsQuery);
|
|
15
15
|
}
|
|
@@ -4,11 +4,11 @@ import * as DEF from '../../../def';
|
|
|
4
4
|
export declare class ListQuery {
|
|
5
5
|
/** 排序字段. */
|
|
6
6
|
column?: string | null;
|
|
7
|
-
/**
|
|
7
|
+
/** 界面标识. */
|
|
8
8
|
frmId?: string | null;
|
|
9
|
-
/**
|
|
9
|
+
/** 界面名称. */
|
|
10
10
|
frmNam?: string | null;
|
|
11
|
-
/**
|
|
11
|
+
/** 分组. */
|
|
12
12
|
grpNam?: string | null;
|
|
13
13
|
/** 主键. */
|
|
14
14
|
id?: string | null;
|
|
@@ -18,7 +18,7 @@ export declare class ListQuery {
|
|
|
18
18
|
pageNo?: number | null;
|
|
19
19
|
/** 每页条数. */
|
|
20
20
|
pageSize?: number | null;
|
|
21
|
-
/**
|
|
21
|
+
/** 变量名称. */
|
|
22
22
|
varNam?: string | null;
|
|
23
23
|
constructor(obj?: ListQuery);
|
|
24
24
|
}
|
|
@@ -12,38 +12,38 @@ export declare class IPage<T0> {
|
|
|
12
12
|
constructor(obj?: IPage<T0>);
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
* 变量别名
|
|
15
|
+
* 变量别名
|
|
16
16
|
*/
|
|
17
|
-
export declare class
|
|
18
|
-
/**
|
|
19
|
-
custLvl?:
|
|
20
|
-
/**
|
|
17
|
+
export declare class VarCatalog {
|
|
18
|
+
/** 定制级别. */
|
|
19
|
+
custLvl?: number | null;
|
|
20
|
+
/** 界面标识. */
|
|
21
21
|
frmId?: string | null;
|
|
22
|
-
/**
|
|
22
|
+
/** 分组. */
|
|
23
23
|
grpNam?: string | null;
|
|
24
24
|
/** 主键. */
|
|
25
25
|
id?: string | null;
|
|
26
|
-
/**
|
|
26
|
+
/** 语言. */
|
|
27
27
|
localeId?: string | null;
|
|
28
|
-
/**
|
|
28
|
+
/** 变量名称. */
|
|
29
29
|
varNam?: string | null;
|
|
30
|
-
/**
|
|
30
|
+
/** 显示文本. */
|
|
31
31
|
varText?: string | null;
|
|
32
|
-
constructor(obj?:
|
|
32
|
+
constructor(obj?: VarCatalog);
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* 变量
|
|
36
36
|
*/
|
|
37
37
|
export declare class VarContext {
|
|
38
|
-
/**
|
|
38
|
+
/** 界面标识. */
|
|
39
39
|
frmId?: string | null;
|
|
40
|
-
/**
|
|
40
|
+
/** 界面名称. */
|
|
41
41
|
frmNam?: string | null;
|
|
42
|
-
/**
|
|
42
|
+
/** 分组. */
|
|
43
43
|
grpNam?: string | null;
|
|
44
44
|
/** 主键. */
|
|
45
45
|
id?: string | null;
|
|
46
|
-
/**
|
|
46
|
+
/** 变量名称. */
|
|
47
47
|
varNam?: string | null;
|
|
48
48
|
constructor(obj?: VarContext);
|
|
49
49
|
}
|
|
@@ -51,10 +51,40 @@ export declare class VarContext {
|
|
|
51
51
|
* 变量配置.
|
|
52
52
|
*/
|
|
53
53
|
export declare class VarDTO {
|
|
54
|
-
/**
|
|
55
|
-
|
|
54
|
+
/** 变量别名. */
|
|
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;
|