@kengic/vue 0.32.3 → 0.32.4
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/kengic-vue.js +50407 -50562
- package/dist/src/api/api.d.ts +0 -1
- package/dist/src/api/def.d.ts +0 -1
- package/dist/src/component/KgForm/KgForm.d.ts +39 -39
- package/dist/src/component/KgImage/KgImage.d.ts +6 -6
- package/dist/src/component/KgModal/KgModal.d.ts +3 -3
- package/dist/src/component/KgModal02/KgModal02.d.ts +62 -34
- package/dist/src/component/KgResizable/KgResizable.d.ts +4 -4
- package/dist/src/i18n/i18n.setup.d.ts +6 -4
- package/dist/src/model/index.d.ts +36 -44
- package/dist/src/util/ant-design-vue.d.ts +16 -16
- package/dist/src/util/index.d.ts +29 -3
- package/dist/src/util/kg.util.d.ts +39 -2
- package/package.json +3 -3
- package/dist/src/api/WatchTower/Controllers/DashboardsController/Dashboards.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsById.d.ts +0 -18
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsByIdExport.d.ts +0 -18
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsFolders.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsFoldersById.d.ts +0 -18
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsFoldersOrder.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsImport.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsOverview.d.ts +0 -15
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsWidgets.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsWidgetsById.d.ts +0 -18
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsWidgetsByIdMove.d.ts +0 -19
- package/dist/src/api/WatchTower/Controllers/DashboardsController/DashboardsWidgetsOrder.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/DashboardsController/index.d.ts +0 -12
- package/dist/src/api/WatchTower/Controllers/HealthController/Live.d.ts +0 -15
- package/dist/src/api/WatchTower/Controllers/HealthController/Ready.d.ts +0 -15
- package/dist/src/api/WatchTower/Controllers/HealthController/index.d.ts +0 -2
- package/dist/src/api/WatchTower/Controllers/MetricsController/History.d.ts +0 -28
- package/dist/src/api/WatchTower/Controllers/MetricsController/Realtime.d.ts +0 -22
- package/dist/src/api/WatchTower/Controllers/MetricsController/index.d.ts +0 -2
- package/dist/src/api/WatchTower/Controllers/MonitorRulesController/MonitorRules.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/MonitorRulesController/MonitorRulesById.d.ts +0 -18
- package/dist/src/api/WatchTower/Controllers/MonitorRulesController/index.d.ts +0 -2
- package/dist/src/api/WatchTower/Controllers/PrometheusController/Reload.d.ts +0 -15
- package/dist/src/api/WatchTower/Controllers/PrometheusController/Sync.d.ts +0 -15
- package/dist/src/api/WatchTower/Controllers/PrometheusController/index.d.ts +0 -2
- package/dist/src/api/WatchTower/Controllers/SystemSettingsController/SystemSettings.d.ts +0 -16
- package/dist/src/api/WatchTower/Controllers/SystemSettingsController/index.d.ts +0 -1
- package/dist/src/api/WatchTower/Controllers/index.d.ts +0 -6
- package/dist/src/api/WatchTower/index.d.ts +0 -2
- package/dist/src/api/WatchTower/models.d.ts +0 -134
- package/dist/src/util/event.util.d.ts +0 -15
- package/dist/src/util/kg-auth.util.d.ts +0 -12
- package/dist/src/util/kg-route.util.d.ts +0 -18
- package/dist/src/util/tsx.helper.d.ts +0 -23
package/dist/src/api/api.d.ts
CHANGED
package/dist/src/api/def.d.ts
CHANGED
|
@@ -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<"vertical" | "horizontal" | "inline">;
|
|
5
5
|
labelCol: {
|
|
6
6
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
7
|
-
span: (
|
|
8
|
-
order: (
|
|
9
|
-
offset: (
|
|
10
|
-
push: (
|
|
11
|
-
pull: (
|
|
7
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
8
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
9
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
10
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
11
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
47
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
48
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
49
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
50
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
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<"vertical" | "horizontal" | "inline">;
|
|
141
141
|
labelCol: {
|
|
142
142
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
143
|
-
span: (
|
|
144
|
-
order: (
|
|
145
|
-
offset: (
|
|
146
|
-
push: (
|
|
147
|
-
pull: (
|
|
143
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
144
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
145
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
146
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
147
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
183
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
184
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
185
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
186
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
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<"vertical" | "horizontal" | "inline">;
|
|
275
275
|
labelCol: {
|
|
276
276
|
type: import("vue").PropType<Partial<ExtractPropTypes<{
|
|
277
|
-
span: (
|
|
278
|
-
order: (
|
|
279
|
-
offset: (
|
|
280
|
-
push: (
|
|
281
|
-
pull: (
|
|
277
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
278
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
279
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
280
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
281
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
317
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
318
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
319
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
320
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
351
351
|
}>> & import("vue").HTMLAttributes>;
|
|
352
352
|
};
|
|
353
353
|
colon: {
|
|
@@ -27,8 +27,8 @@ 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: (NumberConstructor | StringConstructor)[];
|
|
31
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
32
32
|
style: StringConstructor;
|
|
33
33
|
};
|
|
34
34
|
export declare type KgImageProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
@@ -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: (NumberConstructor | StringConstructor)[];
|
|
63
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
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: (NumberConstructor | StringConstructor)[];
|
|
93
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
94
94
|
style: StringConstructor;
|
|
95
95
|
}>>, {
|
|
96
96
|
wrapperStyle: import("vue").CSSProperties;
|
|
@@ -112,7 +112,7 @@ declare const getProps: () => {
|
|
|
112
112
|
type: BooleanConstructor;
|
|
113
113
|
default: undefined;
|
|
114
114
|
};
|
|
115
|
-
width: (
|
|
115
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
116
116
|
footer: PropType<any>;
|
|
117
117
|
okText: PropType<any>;
|
|
118
118
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -372,7 +372,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
372
|
type: BooleanConstructor;
|
|
373
373
|
default: undefined;
|
|
374
374
|
};
|
|
375
|
-
width: (
|
|
375
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
376
376
|
footer: PropType<any>;
|
|
377
377
|
okText: PropType<any>;
|
|
378
378
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -630,7 +630,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
630
630
|
type: BooleanConstructor;
|
|
631
631
|
default: undefined;
|
|
632
632
|
};
|
|
633
|
-
width: (
|
|
633
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
634
634
|
footer: PropType<any>;
|
|
635
635
|
okText: PropType<any>;
|
|
636
636
|
okType: PropType<import("ant-design-vue/es/button/buttonTypes").LegacyButtonType>;
|
|
@@ -12,14 +12,14 @@ 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" | "primary" | "
|
|
15
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", 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;
|
|
19
19
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
20
20
|
__epPropKey: true;
|
|
21
21
|
};
|
|
22
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
22
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
23
23
|
readonly loading: BooleanConstructor;
|
|
24
24
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
25
25
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -30,6 +30,11 @@ declare const getProps: () => {
|
|
|
30
30
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
31
31
|
readonly circle: BooleanConstructor;
|
|
32
32
|
readonly color: StringConstructor;
|
|
33
|
+
/**
|
|
34
|
+
* @param param.domRef 页面特殊元素对象.
|
|
35
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
36
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
37
|
+
*/
|
|
33
38
|
readonly dark: BooleanConstructor;
|
|
34
39
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
35
40
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -45,14 +50,14 @@ declare const getProps: () => {
|
|
|
45
50
|
__epPropKey: true;
|
|
46
51
|
};
|
|
47
52
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
48
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
53
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
49
54
|
readonly icon: {
|
|
50
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>>;
|
|
51
56
|
readonly required: false;
|
|
52
57
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
53
58
|
__epPropKey: true;
|
|
54
59
|
};
|
|
55
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
60
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
56
61
|
readonly loading: BooleanConstructor;
|
|
57
62
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
58
63
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -63,6 +68,11 @@ declare const getProps: () => {
|
|
|
63
68
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
64
69
|
readonly circle: BooleanConstructor;
|
|
65
70
|
readonly color: StringConstructor;
|
|
71
|
+
/**
|
|
72
|
+
* @param param.domRef 页面特殊元素对象.
|
|
73
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
74
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
75
|
+
*/
|
|
66
76
|
readonly dark: BooleanConstructor;
|
|
67
77
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
68
78
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -115,11 +125,7 @@ declare const getProps: () => {
|
|
|
115
125
|
width: {
|
|
116
126
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
117
127
|
readonly required: false;
|
|
118
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
|
-
* @param param.domRef 页面特殊元素对象.
|
|
120
|
-
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
121
|
-
* @param param.isVisible$$ 弹窗是否打开.
|
|
122
|
-
*/
|
|
128
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
123
129
|
__epPropKey: true;
|
|
124
130
|
};
|
|
125
131
|
zIndex: {
|
|
@@ -161,14 +167,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
161
167
|
__epPropKey: true;
|
|
162
168
|
};
|
|
163
169
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
164
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
170
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
165
171
|
readonly icon: {
|
|
166
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>>;
|
|
167
173
|
readonly required: false;
|
|
168
174
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
169
175
|
__epPropKey: true;
|
|
170
176
|
};
|
|
171
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
177
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
172
178
|
readonly loading: BooleanConstructor;
|
|
173
179
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
174
180
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -179,6 +185,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
179
185
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
180
186
|
readonly circle: BooleanConstructor;
|
|
181
187
|
readonly color: StringConstructor;
|
|
188
|
+
/**
|
|
189
|
+
* @param param.domRef 页面特殊元素对象.
|
|
190
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
191
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
192
|
+
*/
|
|
182
193
|
readonly dark: BooleanConstructor;
|
|
183
194
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
184
195
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -194,14 +205,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
194
205
|
__epPropKey: true;
|
|
195
206
|
};
|
|
196
207
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
197
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
208
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
198
209
|
readonly icon: {
|
|
199
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>>;
|
|
200
211
|
readonly required: false;
|
|
201
212
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
202
213
|
__epPropKey: true;
|
|
203
214
|
};
|
|
204
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
215
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
205
216
|
readonly loading: BooleanConstructor;
|
|
206
217
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
207
218
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -212,6 +223,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
212
223
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
213
224
|
readonly circle: BooleanConstructor;
|
|
214
225
|
readonly color: StringConstructor;
|
|
226
|
+
/**
|
|
227
|
+
* @param param.domRef 页面特殊元素对象.
|
|
228
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
229
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
230
|
+
*/
|
|
215
231
|
readonly dark: BooleanConstructor;
|
|
216
232
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
217
233
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -264,11 +280,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
264
280
|
width: {
|
|
265
281
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
266
282
|
readonly required: false;
|
|
267
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
268
|
-
* @param param.domRef 页面特殊元素对象.
|
|
269
|
-
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
270
|
-
* @param param.isVisible$$ 弹窗是否打开.
|
|
271
|
-
*/
|
|
283
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
272
284
|
__epPropKey: true;
|
|
273
285
|
};
|
|
274
286
|
zIndex: {
|
|
@@ -305,14 +317,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
305
317
|
__epPropKey: true;
|
|
306
318
|
};
|
|
307
319
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
308
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
320
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
309
321
|
readonly icon: {
|
|
310
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>>;
|
|
311
323
|
readonly required: false;
|
|
312
324
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
313
325
|
__epPropKey: true;
|
|
314
326
|
};
|
|
315
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
327
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
316
328
|
readonly loading: BooleanConstructor;
|
|
317
329
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
318
330
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -323,6 +335,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
323
335
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
324
336
|
readonly circle: BooleanConstructor;
|
|
325
337
|
readonly color: StringConstructor;
|
|
338
|
+
/**
|
|
339
|
+
* @param param.domRef 页面特殊元素对象.
|
|
340
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
341
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
342
|
+
*/
|
|
326
343
|
readonly dark: BooleanConstructor;
|
|
327
344
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
328
345
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -338,14 +355,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
338
355
|
__epPropKey: true;
|
|
339
356
|
};
|
|
340
357
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
341
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
358
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
342
359
|
readonly icon: {
|
|
343
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>>;
|
|
344
361
|
readonly required: false;
|
|
345
362
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
346
363
|
__epPropKey: true;
|
|
347
364
|
};
|
|
348
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
365
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
349
366
|
readonly loading: BooleanConstructor;
|
|
350
367
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
351
368
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -356,6 +373,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
356
373
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
357
374
|
readonly circle: BooleanConstructor;
|
|
358
375
|
readonly color: StringConstructor;
|
|
376
|
+
/**
|
|
377
|
+
* @param param.domRef 页面特殊元素对象.
|
|
378
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
379
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
380
|
+
*/
|
|
359
381
|
readonly dark: BooleanConstructor;
|
|
360
382
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
361
383
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -408,11 +430,7 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
408
430
|
width: {
|
|
409
431
|
readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
410
432
|
readonly required: false;
|
|
411
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
412
|
-
* @param param.domRef 页面特殊元素对象.
|
|
413
|
-
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
414
|
-
* @param param.isVisible$$ 弹窗是否打开.
|
|
415
|
-
*/
|
|
433
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
416
434
|
__epPropKey: true;
|
|
417
435
|
};
|
|
418
436
|
zIndex: {
|
|
@@ -440,15 +458,15 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
440
458
|
ariaLevel: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "2", boolean>;
|
|
441
459
|
}>>, {
|
|
442
460
|
title: string;
|
|
443
|
-
|
|
461
|
+
modal: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
444
462
|
center: boolean;
|
|
445
|
-
overflow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
446
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
|
+
destroyOnClose: boolean;
|
|
465
|
+
overflow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
447
466
|
modelValue: boolean;
|
|
448
467
|
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>;
|
|
449
468
|
kgIsDragToMove: boolean;
|
|
450
469
|
kgShowCancelButton: boolean;
|
|
451
|
-
modal: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
452
470
|
draggable: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
453
471
|
kgCancelButtonProps: __ExtractPublicPropTypes<{
|
|
454
472
|
readonly size: {
|
|
@@ -458,14 +476,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
458
476
|
__epPropKey: true;
|
|
459
477
|
};
|
|
460
478
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
461
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
479
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
462
480
|
readonly icon: {
|
|
463
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>>;
|
|
464
482
|
readonly required: false;
|
|
465
483
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
466
484
|
__epPropKey: true;
|
|
467
485
|
};
|
|
468
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
486
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
469
487
|
readonly loading: BooleanConstructor;
|
|
470
488
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
471
489
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -476,6 +494,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
476
494
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
477
495
|
readonly circle: BooleanConstructor;
|
|
478
496
|
readonly color: StringConstructor;
|
|
497
|
+
/**
|
|
498
|
+
* @param param.domRef 页面特殊元素对象.
|
|
499
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
500
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
501
|
+
*/
|
|
479
502
|
readonly dark: BooleanConstructor;
|
|
480
503
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
481
504
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -488,14 +511,14 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
488
511
|
__epPropKey: true;
|
|
489
512
|
};
|
|
490
513
|
readonly disabled: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
491
|
-
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "
|
|
514
|
+
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "" | "success" | "default" | "primary" | "warning" | "info" | "text" | "danger", unknown, "", boolean>;
|
|
492
515
|
readonly icon: {
|
|
493
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>>;
|
|
494
517
|
readonly required: false;
|
|
495
518
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
496
519
|
__epPropKey: true;
|
|
497
520
|
};
|
|
498
|
-
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "
|
|
521
|
+
readonly nativeType: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "reset" | "submit" | "button", unknown, "button", boolean>;
|
|
499
522
|
readonly loading: BooleanConstructor;
|
|
500
523
|
readonly loadingIcon: import("element-plus/es/utils").EpPropFinalized<(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, () => any, boolean>;
|
|
501
524
|
readonly plain: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
@@ -506,6 +529,11 @@ export declare const KgModal02: import("vue").DefineComponent<{
|
|
|
506
529
|
readonly round: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
507
530
|
readonly circle: BooleanConstructor;
|
|
508
531
|
readonly color: StringConstructor;
|
|
532
|
+
/**
|
|
533
|
+
* @param param.domRef 页面特殊元素对象.
|
|
534
|
+
* @param param.isDragToMove$$ 是否可以拖拽改变位置.
|
|
535
|
+
* @param param.isVisible$$ 弹窗是否打开.
|
|
536
|
+
*/
|
|
509
537
|
readonly dark: BooleanConstructor;
|
|
510
538
|
readonly autoInsertSpace: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
511
539
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<(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, "button", boolean>;
|
|
@@ -31,7 +31,7 @@ declare const getProps: () => {
|
|
|
31
31
|
};
|
|
32
32
|
/** 拖拽条的位置. */
|
|
33
33
|
kgType: {
|
|
34
|
-
type: PropType<"left" | "right" | "
|
|
34
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
37
|
'onUpdate:kgHeight': PropType<(value: number) => void>;
|
|
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
};
|
|
69
69
|
/** 拖拽条的位置. */
|
|
70
70
|
kgType: {
|
|
71
|
-
type: PropType<"left" | "right" | "
|
|
71
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
72
72
|
default: string;
|
|
73
73
|
};
|
|
74
74
|
'onUpdate:kgHeight': PropType<(value: number) => void>;
|
|
@@ -103,7 +103,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
103
103
|
};
|
|
104
104
|
/** 拖拽条的位置. */
|
|
105
105
|
kgType: {
|
|
106
|
-
type: PropType<"left" | "right" | "
|
|
106
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
107
107
|
default: string;
|
|
108
108
|
};
|
|
109
109
|
'onUpdate:kgHeight': PropType<(value: number) => void>;
|
|
@@ -114,6 +114,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
114
|
kgMinHeight: number;
|
|
115
115
|
kgResizeHandleVisible: boolean;
|
|
116
116
|
kgHeight: number;
|
|
117
|
-
kgType: "left" | "right" | "
|
|
117
|
+
kgType: "left" | "right" | "top" | "bottom";
|
|
118
118
|
}>;
|
|
119
119
|
export default _default;
|
|
@@ -2,19 +2,21 @@ import { IKgConfigParameter } from '../config';
|
|
|
2
2
|
import { DropMenu } from '../project/src/components/Dropdown/src/typing';
|
|
3
3
|
import { LocaleSetting } from '../project/types/config';
|
|
4
4
|
/** @deprecated 已弃用, 请使用 {@link KG.LOCALE} */
|
|
5
|
-
|
|
5
|
+
declare const LOCALE: {
|
|
6
6
|
CS_CZ: import("@kengic/core.core/src/model").IKgLocale;
|
|
7
7
|
EN: import("@kengic/core.core/src/model").IKgLocale;
|
|
8
8
|
ES_ES: import("@kengic/core.core/src/model").IKgLocale;
|
|
9
9
|
FR_FR: import("@kengic/core.core/src/model").IKgLocale;
|
|
10
10
|
KM_KH: import("@kengic/core.core/src/model").IKgLocale;
|
|
11
11
|
KO_KR: import("@kengic/core.core/src/model").IKgLocale;
|
|
12
|
+
TH_TH: import("@kengic/core.core/src/model").IKgLocale;
|
|
12
13
|
VI_VN: import("@kengic/core.core/src/model").IKgLocale;
|
|
13
14
|
ZH_CN: import("@kengic/core.core/src/model").IKgLocale;
|
|
14
15
|
};
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
declare let localeList: DropMenu[];
|
|
17
|
+
declare const localeSetting: LocaleSetting;
|
|
17
18
|
/**
|
|
18
19
|
* 配置语言.
|
|
19
20
|
*/
|
|
20
|
-
|
|
21
|
+
declare function kgConfigLocale(param?: IKgConfigParameter): void;
|
|
22
|
+
export { LOCALE, localeList, localeSetting, kgConfigLocale };
|