@kengic/vue 0.32.5-beta.6 → 0.32.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/CHANGELOG.md +55 -3
- package/bin/postinstall.mjs +2 -0
- package/bin/preinstall.mjs +1 -1
- package/dist/kengic-vue.js +21382 -18711
- package/dist/src/component/KgCanvas/KgCanvas.ContextMenu.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.Fullscreen.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.OverviewScale.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.Tooltip.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.d.ts +1 -1
- package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +2 -2
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Rgv.d.ts +1 -1
- package/dist/src/component/KgForm/KgForm.d.ts +39 -39
- package/dist/src/component/KgForm/index.d.ts +1 -1
- package/dist/src/component/KgForm.Item/KgForm.Item.Addon.DynamicQueryOperator.d.ts +1 -1
- package/dist/src/component/KgForm.Item/KgForm.Item.Select.service.d.ts +2 -2
- package/dist/src/component/KgForm.Item/KgForm.Item.model.d.ts +3 -3
- package/dist/src/component/KgForm.Item/KgForm.Item.service.d.ts +3 -3
- package/dist/src/component/KgForm.Item/index.d.ts +1 -1
- package/dist/src/component/KgImage/KgImage.d.ts +7 -7
- package/dist/src/component/KgImage/index.d.ts +1 -1
- package/dist/src/component/KgLayoutHeader/KgLayoutHeader.Locale.d.ts +1 -1
- package/dist/src/component/KgLayoutHeader/index.d.ts +1 -1
- package/dist/src/component/KgModal/KgModal.d.ts +28 -10
- package/dist/src/component/KgModal/KgModal.service.d.ts +2 -2
- package/dist/src/component/KgModal/index.d.ts +1 -1
- package/dist/src/component/KgModal02/KgModal02.d.ts +10 -10
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.Panel.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Prefab.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Property.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Scene.d.ts +1 -1
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.d.ts +1 -1
- package/dist/src/component/KgSubmit/KgSubmit.d.ts +1 -1
- package/dist/src/component/KgSubmit/KgSubmit.service.d.ts +2 -2
- package/dist/src/component/KgSubmit/index.d.ts +1 -1
- package/dist/src/component/KgTable/KgTable.d.ts +6 -6
- package/dist/src/component/KgTable02/KgTable02.d.ts +1 -1
- package/dist/src/component/KgTable02/KgTable02.event.d.ts +3 -3
- package/dist/src/component/KgVar/KgVar.d.ts +1 -1
- package/dist/src/component/KgVar/KgVar.model.d.ts +6 -6
- package/dist/src/config/config.store.d.ts +19 -4
- package/dist/src/model/index.d.ts +14 -22
- package/dist/src/page/KgPageDda/KgPageDda.Create.d.ts +1 -1
- package/dist/src/page/KgPageSqlClient/components/KgSqlClient.ResultTab.d.ts +1 -1
- package/dist/src/project/src/api/common/api.d.ts +70 -0
- package/dist/src/project/src/api/index.d.ts +1 -0
- package/dist/src/project/src/hooks/index.d.ts +1 -0
- package/dist/src/project/src/hooks/web/useMessage.d.ts +46 -0
- package/dist/src/project/src/store/modules/errorLog.d.ts +31 -0
- package/dist/src/project/src/store/modules/index.d.ts +1 -0
- package/dist/src/project/src/utils/http/axios/Axios.d.ts +45 -0
- package/dist/src/project/src/utils/http/axios/axiosCancel.d.ts +23 -0
- package/dist/src/project/src/utils/http/axios/axiosTransform.d.ts +41 -0
- package/dist/src/project/src/utils/http/axios/checkStatus.d.ts +2 -0
- package/dist/src/project/src/utils/http/axios/helper.d.ts +5 -0
- package/dist/src/project/src/utils/http/axios/index.d.ts +3 -0
- package/dist/src/project/src/utils/index.d.ts +6 -0
- package/dist/src/util/ant-design-vue.d.ts +16 -16
- package/package.json +4 -1
|
@@ -48,7 +48,7 @@ declare const getProps: () => {
|
|
|
48
48
|
kgUi: PropType<Q.BaseUI>;
|
|
49
49
|
'onUpdate:kgIsVisible': PropType<(value: boolean) => void>;
|
|
50
50
|
};
|
|
51
|
-
export declare type
|
|
51
|
+
export declare type IKgCanvasContextMenuProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
52
52
|
export declare const KgCanvasContextMenu: import("vue").DefineComponent<{
|
|
53
53
|
kgElement: PropType<Q.Element<any>>;
|
|
54
54
|
kgElementUi: PropType<Q.ElementUI>;
|
|
@@ -11,7 +11,7 @@ declare const getProps: () => {
|
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
export declare type
|
|
14
|
+
export declare type IKgCanvasToolbarButtonFullscreenProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
15
15
|
/**
|
|
16
16
|
* 画布--工具按钮--全屏.
|
|
17
17
|
*/
|
|
@@ -11,7 +11,7 @@ declare const getProps: () => {
|
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
export declare type
|
|
14
|
+
export declare type IKgCanvasToolbarButtonOverviewScaleProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
15
15
|
/**
|
|
16
16
|
* 画布--工具按钮--纵览比例.
|
|
17
17
|
*/
|
|
@@ -9,7 +9,7 @@ declare const getProps: () => {
|
|
|
9
9
|
*/
|
|
10
10
|
kgMouseEvent: PropType<MouseEvent>;
|
|
11
11
|
};
|
|
12
|
-
export declare type
|
|
12
|
+
export declare type IKgCanvasTooltipProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
13
13
|
/**
|
|
14
14
|
* 画布--提示文本.
|
|
15
15
|
*/
|
|
@@ -74,7 +74,7 @@ declare const getProps: () => {
|
|
|
74
74
|
default: boolean;
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
-
export declare type
|
|
77
|
+
export declare type IKgCanvasProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
78
78
|
declare const _default: import("vue").DefineComponent<{
|
|
79
79
|
/**
|
|
80
80
|
* 该组件实例的唯一标识.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Q } from '@thymine/xunee';
|
|
2
2
|
import { Ref } from 'vue';
|
|
3
|
-
import { IKgCanvasContextMenu,
|
|
3
|
+
import { IKgCanvasContextMenu, IKgCanvasContextMenuProps } from './KgCanvas.ContextMenu';
|
|
4
4
|
export declare type IUseGlobalContextMenuList = {
|
|
5
5
|
globalContextMenuList: Array<IKgCanvasContextMenu>;
|
|
6
6
|
};
|
|
@@ -12,6 +12,6 @@ export declare type IUseResizeObserver = {};
|
|
|
12
12
|
export declare function _useResizeObserver(param: {
|
|
13
13
|
graph: () => Q.Graph | null;
|
|
14
14
|
id: string | undefined;
|
|
15
|
-
kgCanvasContextMenuProps$: Ref<
|
|
15
|
+
kgCanvasContextMenuProps$: Ref<IKgCanvasContextMenuProps>;
|
|
16
16
|
kgCanvasRef$: Ref<HTMLDivElement | null>;
|
|
17
17
|
}): IUseResizeObserver;
|
|
@@ -10,7 +10,7 @@ declare const getProps: () => {
|
|
|
10
10
|
type: PropType<StatusRgvVO>;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare type
|
|
13
|
+
export declare type IKgCircularShuttleMonitorTabRgvProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
14
14
|
/**
|
|
15
15
|
* 环形穿梭车可视化--小车信息.
|
|
16
16
|
*/
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { ExtractPropTypes } from 'vue';
|
|
2
2
|
import './KgForm.less';
|
|
3
3
|
declare const getProps: () => {
|
|
4
|
-
layout: import("vue").PropType<"
|
|
4
|
+
layout: import("vue").PropType<"inline" | "horizontal" | "vertical">;
|
|
5
5
|
labelCol: {
|
|
6
6
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
7
|
-
span: (
|
|
8
|
-
order: (
|
|
9
|
-
offset: (
|
|
10
|
-
push: (
|
|
11
|
-
pull: (
|
|
7
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
9
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
10
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
11
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
12
12
|
xs: {
|
|
13
13
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
14
14
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -38,16 +38,16 @@ declare const getProps: () => {
|
|
|
38
38
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
39
39
|
};
|
|
40
40
|
prefixCls: StringConstructor;
|
|
41
|
-
flex: (
|
|
41
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
42
42
|
}>> & import("vue").HTMLAttributes>;
|
|
43
43
|
};
|
|
44
44
|
wrapperCol: {
|
|
45
45
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
46
|
-
span: (
|
|
47
|
-
order: (
|
|
48
|
-
offset: (
|
|
49
|
-
push: (
|
|
50
|
-
pull: (
|
|
46
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
47
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
48
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
49
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
50
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
51
51
|
xs: {
|
|
52
52
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
53
53
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -77,7 +77,7 @@ declare const getProps: () => {
|
|
|
77
77
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
78
78
|
};
|
|
79
79
|
prefixCls: StringConstructor;
|
|
80
|
-
flex: (
|
|
80
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
81
81
|
}>> & import("vue").HTMLAttributes>;
|
|
82
82
|
};
|
|
83
83
|
colon: {
|
|
@@ -137,14 +137,14 @@ declare const getProps: () => {
|
|
|
137
137
|
};
|
|
138
138
|
export declare type IKgFormProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
139
139
|
export declare const KgForm: import("vue").DefineComponent<{
|
|
140
|
-
layout: import("vue").PropType<"
|
|
140
|
+
layout: import("vue").PropType<"inline" | "horizontal" | "vertical">;
|
|
141
141
|
labelCol: {
|
|
142
142
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
143
|
-
span: (
|
|
144
|
-
order: (
|
|
145
|
-
offset: (
|
|
146
|
-
push: (
|
|
147
|
-
pull: (
|
|
143
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
144
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
145
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
146
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
147
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
148
148
|
xs: {
|
|
149
149
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
150
150
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -174,16 +174,16 @@ export declare const KgForm: import("vue").DefineComponent<{
|
|
|
174
174
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
175
175
|
};
|
|
176
176
|
prefixCls: StringConstructor;
|
|
177
|
-
flex: (
|
|
177
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
178
178
|
}>> & import("vue").HTMLAttributes>;
|
|
179
179
|
};
|
|
180
180
|
wrapperCol: {
|
|
181
181
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
182
|
-
span: (
|
|
183
|
-
order: (
|
|
184
|
-
offset: (
|
|
185
|
-
push: (
|
|
186
|
-
pull: (
|
|
182
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
183
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
184
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
185
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
186
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
187
187
|
xs: {
|
|
188
188
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
189
189
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -213,7 +213,7 @@ export declare const KgForm: import("vue").DefineComponent<{
|
|
|
213
213
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
214
214
|
};
|
|
215
215
|
prefixCls: StringConstructor;
|
|
216
|
-
flex: (
|
|
216
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
217
217
|
}>> & import("vue").HTMLAttributes>;
|
|
218
218
|
};
|
|
219
219
|
colon: {
|
|
@@ -271,14 +271,14 @@ export declare const KgForm: import("vue").DefineComponent<{
|
|
|
271
271
|
type: import("vue").PropType<((name: string | number | string[] | number[], status: boolean, errors: string[] | null) => void) | undefined>;
|
|
272
272
|
};
|
|
273
273
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
274
|
-
layout: import("vue").PropType<"
|
|
274
|
+
layout: import("vue").PropType<"inline" | "horizontal" | "vertical">;
|
|
275
275
|
labelCol: {
|
|
276
276
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
277
|
-
span: (
|
|
278
|
-
order: (
|
|
279
|
-
offset: (
|
|
280
|
-
push: (
|
|
281
|
-
pull: (
|
|
277
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
278
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
279
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
280
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
281
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
282
282
|
xs: {
|
|
283
283
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
284
284
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -308,16 +308,16 @@ export declare const KgForm: import("vue").DefineComponent<{
|
|
|
308
308
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
309
309
|
};
|
|
310
310
|
prefixCls: StringConstructor;
|
|
311
|
-
flex: (
|
|
311
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
312
312
|
}>> & import("vue").HTMLAttributes>;
|
|
313
313
|
};
|
|
314
314
|
wrapperCol: {
|
|
315
315
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
316
|
-
span: (
|
|
317
|
-
order: (
|
|
318
|
-
offset: (
|
|
319
|
-
push: (
|
|
320
|
-
pull: (
|
|
316
|
+
span: (StringConstructor | NumberConstructor)[];
|
|
317
|
+
order: (StringConstructor | NumberConstructor)[];
|
|
318
|
+
offset: (StringConstructor | NumberConstructor)[];
|
|
319
|
+
push: (StringConstructor | NumberConstructor)[];
|
|
320
|
+
pull: (StringConstructor | NumberConstructor)[];
|
|
321
321
|
xs: {
|
|
322
322
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
|
323
323
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
@@ -347,7 +347,7 @@ export declare const KgForm: import("vue").DefineComponent<{
|
|
|
347
347
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
|
348
348
|
};
|
|
349
349
|
prefixCls: StringConstructor;
|
|
350
|
-
flex: (
|
|
350
|
+
flex: (StringConstructor | NumberConstructor)[];
|
|
351
351
|
}>> & import("vue").HTMLAttributes>;
|
|
352
352
|
};
|
|
353
353
|
colon: {
|
|
@@ -14,7 +14,7 @@ declare const getProps: () => {
|
|
|
14
14
|
type: PropType<boolean>;
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
-
export declare type
|
|
17
|
+
export declare type IKgFormItemAddonDynamicQueryOperatorProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
18
18
|
declare const _default: import("vue").DefineComponent<{
|
|
19
19
|
/**
|
|
20
20
|
* 表单控件类型.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComputedRef } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { IKgFormItemProps } from './KgForm.Item.model';
|
|
3
3
|
export declare function useKgFormItemSelect(param: {
|
|
4
|
-
props:
|
|
4
|
+
props: IKgFormItemProps;
|
|
5
5
|
}): {
|
|
6
6
|
/** 列表数据. */
|
|
7
7
|
datas$$: import("vue").Ref<Record<string, any>[]>;
|
|
@@ -78,7 +78,7 @@ export declare const getProps: () => {
|
|
|
78
78
|
default: undefined;
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
-
export declare type
|
|
81
|
+
export declare type IKgFormItemProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
82
82
|
/**
|
|
83
83
|
* 插槽参数: control.
|
|
84
84
|
*/
|
|
@@ -88,7 +88,7 @@ export declare type IKgFormItemSlotControlParameter = {
|
|
|
88
88
|
formID: string;
|
|
89
89
|
/** @deprecated 已废弃, 请直接使用 KgSubmit.formModel 或者 kgSearch.formModel */
|
|
90
90
|
model: ComputedRef<Record<string, any>>;
|
|
91
|
-
props: ComputedRef<
|
|
91
|
+
props: ComputedRef<IKgFormItemProps>;
|
|
92
92
|
varConfigControl: VarConfigControl;
|
|
93
93
|
varName: string;
|
|
94
94
|
varProfileDetail: VarProfileDetail;
|
|
@@ -103,7 +103,7 @@ export declare type IKgFormItemSlotControlRightParameter = {
|
|
|
103
103
|
formID: string;
|
|
104
104
|
/** @deprecated 已废弃, 请直接使用 KgSubmit.formModel 或者 kgSearch.formModel */
|
|
105
105
|
model: ComputedRef<Record<string, any>>;
|
|
106
|
-
props: ComputedRef<
|
|
106
|
+
props: ComputedRef<IKgFormItemProps>;
|
|
107
107
|
varConfigControl: VarConfigControl;
|
|
108
108
|
varName: string;
|
|
109
109
|
varProfileDetail: VarProfileDetail;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RuleObject } from 'ant-design-vue/es/form';
|
|
2
|
-
import {
|
|
3
|
-
export declare function useFormRules(props:
|
|
2
|
+
import { IKgFormItemProps } from './KgForm.Item.model';
|
|
3
|
+
export declare function useFormRules(props: IKgFormItemProps): {
|
|
4
4
|
/** 表单验证规则. */
|
|
5
5
|
formRules: import("vue").ComputedRef<RuleObject[]>;
|
|
6
6
|
isFormRulesChange: import("vue").Ref<boolean>;
|
|
@@ -9,7 +9,7 @@ export declare function useFormRules(props: KgFormItemProps): {
|
|
|
9
9
|
*
|
|
10
10
|
* @param props
|
|
11
11
|
*/
|
|
12
|
-
export declare function useKgFormItem<T = Record<string, any>>(props?:
|
|
12
|
+
export declare function useKgFormItem<T = Record<string, any>>(props?: IKgFormItemProps): {
|
|
13
13
|
/** 控件类型. */
|
|
14
14
|
controlType: import("vue").ComputedRef<string | null | undefined>;
|
|
15
15
|
/** 控件配置参数. */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as KgFormItem } from './KgForm.Item';
|
|
2
|
-
export { type
|
|
2
|
+
export { type IKgFormItemProps } from './KgForm.Item.model';
|
|
@@ -27,11 +27,11 @@ declare const getProps: () => {
|
|
|
27
27
|
type: import("vue").PropType<(event: string | Event, source?: string | undefined, lineno?: number | undefined, colno?: number | undefined, error?: Error | undefined) => any>;
|
|
28
28
|
};
|
|
29
29
|
id: StringConstructor;
|
|
30
|
-
width: (
|
|
31
|
-
height: (
|
|
30
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
31
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
32
32
|
style: StringConstructor;
|
|
33
33
|
};
|
|
34
|
-
export declare type
|
|
34
|
+
export declare type IKgImageProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
35
35
|
declare const _default: import("vue").DefineComponent<{
|
|
36
36
|
src: StringConstructor;
|
|
37
37
|
wrapperClassName: StringConstructor;
|
|
@@ -59,8 +59,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: import("vue").PropType<(event: string | Event, source?: string | undefined, lineno?: number | undefined, colno?: number | undefined, error?: Error | undefined) => any>;
|
|
60
60
|
};
|
|
61
61
|
id: StringConstructor;
|
|
62
|
-
width: (
|
|
63
|
-
height: (
|
|
62
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
63
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
64
64
|
style: StringConstructor;
|
|
65
65
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
66
66
|
src: StringConstructor;
|
|
@@ -89,8 +89,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
89
|
type: import("vue").PropType<(event: string | Event, source?: string | undefined, lineno?: number | undefined, colno?: number | undefined, error?: Error | undefined) => any>;
|
|
90
90
|
};
|
|
91
91
|
id: StringConstructor;
|
|
92
|
-
width: (
|
|
93
|
-
height: (
|
|
92
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
93
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
94
94
|
style: StringConstructor;
|
|
95
95
|
}>>, {
|
|
96
96
|
wrapperStyle: import("vue").CSSProperties;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as KgImage, type
|
|
1
|
+
export { default as KgImage, type IKgImageProps } from './KgImage';
|
|
@@ -11,7 +11,7 @@ declare const getProps: () => {
|
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
export declare type
|
|
14
|
+
export declare type IKgLayoutHeaderLocaleProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
15
15
|
declare const _default: import("vue").DefineComponent<{
|
|
16
16
|
/**
|
|
17
17
|
* 是否显示语言文本.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as KgLayoutHeaderLocale, type
|
|
1
|
+
export { default as KgLayoutHeaderLocale, type IKgLayoutHeaderLocaleProps } from './KgLayoutHeader.Locale';
|
|
2
2
|
export * from './KgLayoutHeader.hooks';
|
|
@@ -112,7 +112,7 @@ declare const getProps: () => {
|
|
|
112
112
|
type: BooleanConstructor;
|
|
113
113
|
default: undefined;
|
|
114
114
|
};
|
|
115
|
-
width: (
|
|
115
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
116
116
|
footer: PropType<any>;
|
|
117
117
|
okText: PropType<any>;
|
|
118
118
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -128,6 +128,9 @@ declare const getProps: () => {
|
|
|
128
128
|
};
|
|
129
129
|
okButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
130
130
|
prefixCls: StringConstructor;
|
|
131
|
+
/**
|
|
132
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
133
|
+
*/
|
|
131
134
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
132
135
|
htmlType: {
|
|
133
136
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -176,6 +179,9 @@ declare const getProps: () => {
|
|
|
176
179
|
}>>>;
|
|
177
180
|
cancelButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
178
181
|
prefixCls: StringConstructor;
|
|
182
|
+
/**
|
|
183
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
184
|
+
*/
|
|
179
185
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
180
186
|
htmlType: {
|
|
181
187
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -259,7 +265,7 @@ declare const getProps: () => {
|
|
|
259
265
|
originVNode: import("ant-design-vue/es/_util/type").VueNode;
|
|
260
266
|
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
|
261
267
|
};
|
|
262
|
-
export declare type
|
|
268
|
+
export declare type IKgModalProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
263
269
|
declare const _default: import("vue").DefineComponent<{
|
|
264
270
|
/**
|
|
265
271
|
* 高度是否撑满屏幕.
|
|
@@ -372,7 +378,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
378
|
type: BooleanConstructor;
|
|
373
379
|
default: undefined;
|
|
374
380
|
};
|
|
375
|
-
width: (
|
|
381
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
376
382
|
footer: PropType<any>;
|
|
377
383
|
okText: PropType<any>;
|
|
378
384
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -388,6 +394,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
388
394
|
};
|
|
389
395
|
okButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
390
396
|
prefixCls: StringConstructor;
|
|
397
|
+
/**
|
|
398
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
399
|
+
*/
|
|
391
400
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
392
401
|
htmlType: {
|
|
393
402
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -436,6 +445,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
436
445
|
}>>>;
|
|
437
446
|
cancelButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
438
447
|
prefixCls: StringConstructor;
|
|
448
|
+
/**
|
|
449
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
450
|
+
*/
|
|
439
451
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
440
452
|
htmlType: {
|
|
441
453
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -630,7 +642,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
630
642
|
type: BooleanConstructor;
|
|
631
643
|
default: undefined;
|
|
632
644
|
};
|
|
633
|
-
width: (
|
|
645
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
634
646
|
footer: PropType<any>;
|
|
635
647
|
okText: PropType<any>;
|
|
636
648
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -646,6 +658,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
646
658
|
};
|
|
647
659
|
okButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
648
660
|
prefixCls: StringConstructor;
|
|
661
|
+
/**
|
|
662
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
663
|
+
*/
|
|
649
664
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
650
665
|
htmlType: {
|
|
651
666
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -694,6 +709,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
694
709
|
}>>>;
|
|
695
710
|
cancelButtonProps: PropType<Partial<ExtractPropTypes<{
|
|
696
711
|
prefixCls: StringConstructor;
|
|
712
|
+
/**
|
|
713
|
+
* 页面上专门添加了一个特殊的元素, 通过它可以获取其他元素对象.
|
|
714
|
+
*/
|
|
697
715
|
type: PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
698
716
|
htmlType: {
|
|
699
717
|
type: PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
|
|
@@ -778,18 +796,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
778
796
|
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
|
779
797
|
}>>, {
|
|
780
798
|
visible: boolean;
|
|
781
|
-
confirmLoading: boolean;
|
|
782
799
|
closable: boolean;
|
|
783
800
|
centered: boolean;
|
|
801
|
+
mask: boolean;
|
|
784
802
|
maskClosable: boolean;
|
|
785
|
-
forceRender: boolean;
|
|
786
|
-
destroyOnClose: boolean;
|
|
787
|
-
getContainer: string | false | HTMLElement | (() => HTMLElement);
|
|
788
|
-
bodyStyle: import("vue").CSSProperties;
|
|
789
803
|
maskStyle: import("vue").CSSProperties;
|
|
790
|
-
mask: boolean;
|
|
791
804
|
keyboard: boolean;
|
|
805
|
+
getContainer: string | false | HTMLElement | (() => HTMLElement);
|
|
806
|
+
bodyStyle: import("vue").CSSProperties;
|
|
792
807
|
focusTriggerAfterClose: boolean;
|
|
808
|
+
confirmLoading: boolean;
|
|
809
|
+
forceRender: boolean;
|
|
810
|
+
destroyOnClose: boolean;
|
|
793
811
|
kgFullHeight: boolean;
|
|
794
812
|
kgIsDefaultFullscreen: boolean;
|
|
795
813
|
kgIsDragToMove: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComputedRef, Ref } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { IKgModalProps } from './KgModal';
|
|
3
3
|
/**
|
|
4
4
|
* 拖拽改变位置.
|
|
5
5
|
*
|
|
@@ -22,7 +22,7 @@ declare type HandleType = 'top-left' | 'top' | 'top-right' | 'right' | 'bottom-r
|
|
|
22
22
|
*/
|
|
23
23
|
export declare function useDragToResize(param: {
|
|
24
24
|
domRef: Ref<HTMLDivElement | null>;
|
|
25
|
-
getProps: Ref<
|
|
25
|
+
getProps: Ref<IKgModalProps>;
|
|
26
26
|
}): {
|
|
27
27
|
/**
|
|
28
28
|
* 鼠标按下事件.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as KgModal, type
|
|
1
|
+
export { default as KgModal, type IKgModalProps } from './KgModal';
|
|
@@ -12,7 +12,7 @@ declare const getProps: () => {
|
|
|
12
12
|
__epPropKey: true;
|
|
13
13
|
};
|
|
14
14
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
15
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
15
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
16
16
|
readonly icon: {
|
|
17
17
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
18
18
|
readonly required: false;
|
|
@@ -50,7 +50,7 @@ declare const getProps: () => {
|
|
|
50
50
|
__epPropKey: true;
|
|
51
51
|
};
|
|
52
52
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
53
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
53
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
54
54
|
readonly icon: {
|
|
55
55
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
56
56
|
readonly required: false;
|
|
@@ -167,7 +167,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
167
167
|
__epPropKey: true;
|
|
168
168
|
};
|
|
169
169
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
170
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
170
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
171
171
|
readonly icon: {
|
|
172
172
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
173
173
|
readonly required: false;
|
|
@@ -205,7 +205,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
205
205
|
__epPropKey: true;
|
|
206
206
|
};
|
|
207
207
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
208
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
208
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
209
209
|
readonly icon: {
|
|
210
210
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
211
211
|
readonly required: false;
|
|
@@ -317,7 +317,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
317
317
|
__epPropKey: true;
|
|
318
318
|
};
|
|
319
319
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
320
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
320
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
321
321
|
readonly icon: {
|
|
322
322
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
323
323
|
readonly required: false;
|
|
@@ -355,7 +355,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
355
355
|
__epPropKey: true;
|
|
356
356
|
};
|
|
357
357
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
358
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
358
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
359
359
|
readonly icon: {
|
|
360
360
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
361
361
|
readonly required: false;
|
|
@@ -460,14 +460,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
460
460
|
title: string;
|
|
461
461
|
modal: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
462
462
|
center: boolean;
|
|
463
|
-
transition: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition) | ((new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition))[], unknown, unknown>;
|
|
464
463
|
destroyOnClose: boolean;
|
|
464
|
+
transition: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition) | ((new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition))[], unknown, unknown>;
|
|
465
|
+
draggable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
465
466
|
overflow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
466
467
|
modelValue: boolean;
|
|
467
468
|
appendTo: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>;
|
|
468
469
|
kgIsDragToMove: boolean;
|
|
469
470
|
kgShowCancelButton: boolean;
|
|
470
|
-
draggable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
471
471
|
kgCancelButtonProps: __ExtractPublicPropTypes<{
|
|
472
472
|
readonly size: {
|
|
473
473
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
@@ -476,7 +476,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
476
476
|
__epPropKey: true;
|
|
477
477
|
};
|
|
478
478
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
479
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
479
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
480
480
|
readonly icon: {
|
|
481
481
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
482
482
|
readonly required: false;
|
|
@@ -511,7 +511,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
511
511
|
__epPropKey: true;
|
|
512
512
|
};
|
|
513
513
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
514
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "
|
|
514
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "warning" | "text" | "danger" | "primary" | "info", unknown, "", boolean>;
|
|
515
515
|
readonly icon: {
|
|
516
516
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
|
|
517
517
|
readonly required: false;
|