@kengic/vue 0.21.1-beta.2 → 0.21.4-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +18792 -18409
- package/dist/src/components/KgButton/components/KgButton.Copy.d.ts +5 -4
- package/dist/src/components/KgButton/components/KgButton.Create.d.ts +3 -2
- package/dist/src/components/KgButton/components/KgButton.Delete.d.ts +3 -3
- package/dist/src/components/KgButton/components/KgButton.Export.d.ts +5 -4
- package/dist/src/components/KgButton/components/KgButton.Import.d.ts +5 -4
- package/dist/src/components/KgButton/components/KgButton.ImportTemplate.d.ts +5 -4
- package/dist/src/components/KgButton/components/KgButton.Search.d.ts +3 -3
- package/dist/src/components/KgButton/components/KgButton.Update.d.ts +3 -2
- package/dist/src/components/KgButton/index.hooks.d.ts +70 -22
- package/dist/src/components/KgButton/index.store.d.ts +56 -18
- package/dist/src/components/KgForm/KgForm.d.ts +36 -36
- package/dist/src/components/KgForm/index.d.ts +48 -48
- package/dist/src/components/KgModal/KgModal.d.ts +428 -90
- package/dist/src/components/KgModal/KgModal.hooks.d.ts +33 -0
- package/dist/src/components/KgModal/components/KgModal.HeaderButtons.d.ts +74 -0
- package/dist/src/components/KgModal/index.d.ts +1 -2
- package/dist/src/components/KgModal/index.vm.d.ts +8 -194
- package/dist/src/components/KgResizable/KgResizable.d.ts +8 -8
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.Body.d.ts +9 -3
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.d.ts +16 -10
- package/dist/src/components/KgSubmit/KgSubmit.d.ts +7 -7
- package/dist/src/components/KgSubmit/KgSubmit.hooks.d.ts +5 -3
- package/dist/src/components/KgSubmit/components/KgSubmit.VarSubmitConfig.Button.d.ts +7 -0
- package/dist/src/components/KgSubmit/components/{KgSubmit.Header.VarSubmitConfig.d.ts → KgSubmit.VarSubmitConfig.Modal.d.ts} +3 -2
- package/dist/src/components/KgSubmit/index.vm.d.ts +53 -7
- package/dist/src/config/index.hooks.d.ts +6 -29
- package/dist/src/config/index.store.d.ts +6 -4
- package/dist/src/consts/i18n/en.d.ts +1 -1
- package/dist/src/consts/i18n/zh_CN.d.ts +1 -1
- package/dist/src/consts/index.d.ts +7 -3
- package/dist/src/helpers/ant-design-vue.d.ts +13 -13
- package/dist/src/helpers/tsx.helper.d.ts +16 -6
- package/dist/src/utils/kg.util.d.ts +2 -1
- package/package.json +1 -1
- package/dist/src/components/KgModal/components/KgModal.Close.d.ts +0 -41
- package/dist/src/components/KgSubmit/components/KgSubmit.Header.d.ts +0 -82
@@ -13,11 +13,11 @@ declare const _default: {
|
|
13
13
|
layout: import("vue").PropType<"horizontal" | "inline" | "vertical">;
|
14
14
|
labelCol: {
|
15
15
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
16
|
-
span: (
|
17
|
-
order: (
|
18
|
-
offset: (
|
19
|
-
push: (
|
20
|
-
pull: (
|
16
|
+
span: (NumberConstructor | StringConstructor)[];
|
17
|
+
order: (NumberConstructor | StringConstructor)[];
|
18
|
+
offset: (NumberConstructor | StringConstructor)[];
|
19
|
+
push: (NumberConstructor | StringConstructor)[];
|
20
|
+
pull: (NumberConstructor | StringConstructor)[];
|
21
21
|
xs: {
|
22
22
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
23
23
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -47,16 +47,16 @@ declare const _default: {
|
|
47
47
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
48
48
|
};
|
49
49
|
prefixCls: StringConstructor;
|
50
|
-
flex: (
|
50
|
+
flex: (NumberConstructor | StringConstructor)[];
|
51
51
|
}>> & import("vue").HTMLAttributes>;
|
52
52
|
};
|
53
53
|
wrapperCol: {
|
54
54
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
55
|
-
span: (
|
56
|
-
order: (
|
57
|
-
offset: (
|
58
|
-
push: (
|
59
|
-
pull: (
|
55
|
+
span: (NumberConstructor | StringConstructor)[];
|
56
|
+
order: (NumberConstructor | StringConstructor)[];
|
57
|
+
offset: (NumberConstructor | StringConstructor)[];
|
58
|
+
push: (NumberConstructor | StringConstructor)[];
|
59
|
+
pull: (NumberConstructor | StringConstructor)[];
|
60
60
|
xs: {
|
61
61
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
62
62
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -86,7 +86,7 @@ declare const _default: {
|
|
86
86
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
87
87
|
};
|
88
88
|
prefixCls: StringConstructor;
|
89
|
-
flex: (
|
89
|
+
flex: (NumberConstructor | StringConstructor)[];
|
90
90
|
}>> & import("vue").HTMLAttributes>;
|
91
91
|
};
|
92
92
|
colon: {
|
@@ -161,11 +161,11 @@ declare const _default: {
|
|
161
161
|
layout: import("vue").PropType<"horizontal" | "inline" | "vertical">;
|
162
162
|
labelCol: {
|
163
163
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
164
|
-
span: (
|
165
|
-
order: (
|
166
|
-
offset: (
|
167
|
-
push: (
|
168
|
-
pull: (
|
164
|
+
span: (NumberConstructor | StringConstructor)[];
|
165
|
+
order: (NumberConstructor | StringConstructor)[];
|
166
|
+
offset: (NumberConstructor | StringConstructor)[];
|
167
|
+
push: (NumberConstructor | StringConstructor)[];
|
168
|
+
pull: (NumberConstructor | StringConstructor)[];
|
169
169
|
xs: {
|
170
170
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
171
171
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -195,16 +195,16 @@ declare const _default: {
|
|
195
195
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
196
196
|
};
|
197
197
|
prefixCls: StringConstructor;
|
198
|
-
flex: (
|
198
|
+
flex: (NumberConstructor | StringConstructor)[];
|
199
199
|
}>> & import("vue").HTMLAttributes>;
|
200
200
|
};
|
201
201
|
wrapperCol: {
|
202
202
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
203
|
-
span: (
|
204
|
-
order: (
|
205
|
-
offset: (
|
206
|
-
push: (
|
207
|
-
pull: (
|
203
|
+
span: (NumberConstructor | StringConstructor)[];
|
204
|
+
order: (NumberConstructor | StringConstructor)[];
|
205
|
+
offset: (NumberConstructor | StringConstructor)[];
|
206
|
+
push: (NumberConstructor | StringConstructor)[];
|
207
|
+
pull: (NumberConstructor | StringConstructor)[];
|
208
208
|
xs: {
|
209
209
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
210
210
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -234,7 +234,7 @@ declare const _default: {
|
|
234
234
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
235
235
|
};
|
236
236
|
prefixCls: StringConstructor;
|
237
|
-
flex: (
|
237
|
+
flex: (NumberConstructor | StringConstructor)[];
|
238
238
|
}>> & import("vue").HTMLAttributes>;
|
239
239
|
};
|
240
240
|
colon: {
|
@@ -321,11 +321,11 @@ declare const _default: {
|
|
321
321
|
layout: import("vue").PropType<"horizontal" | "inline" | "vertical">;
|
322
322
|
labelCol: {
|
323
323
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
324
|
-
span: (
|
325
|
-
order: (
|
326
|
-
offset: (
|
327
|
-
push: (
|
328
|
-
pull: (
|
324
|
+
span: (NumberConstructor | StringConstructor)[];
|
325
|
+
order: (NumberConstructor | StringConstructor)[];
|
326
|
+
offset: (NumberConstructor | StringConstructor)[];
|
327
|
+
push: (NumberConstructor | StringConstructor)[];
|
328
|
+
pull: (NumberConstructor | StringConstructor)[];
|
329
329
|
xs: {
|
330
330
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
331
331
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -355,16 +355,16 @@ declare const _default: {
|
|
355
355
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
356
356
|
};
|
357
357
|
prefixCls: StringConstructor;
|
358
|
-
flex: (
|
358
|
+
flex: (NumberConstructor | StringConstructor)[];
|
359
359
|
}>> & import("vue").HTMLAttributes>;
|
360
360
|
};
|
361
361
|
wrapperCol: {
|
362
362
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
363
|
-
span: (
|
364
|
-
order: (
|
365
|
-
offset: (
|
366
|
-
push: (
|
367
|
-
pull: (
|
363
|
+
span: (NumberConstructor | StringConstructor)[];
|
364
|
+
order: (NumberConstructor | StringConstructor)[];
|
365
|
+
offset: (NumberConstructor | StringConstructor)[];
|
366
|
+
push: (NumberConstructor | StringConstructor)[];
|
367
|
+
pull: (NumberConstructor | StringConstructor)[];
|
368
368
|
xs: {
|
369
369
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
370
370
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -394,7 +394,7 @@ declare const _default: {
|
|
394
394
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
395
395
|
};
|
396
396
|
prefixCls: StringConstructor;
|
397
|
-
flex: (
|
397
|
+
flex: (NumberConstructor | StringConstructor)[];
|
398
398
|
}>> & import("vue").HTMLAttributes>;
|
399
399
|
};
|
400
400
|
colon: {
|
@@ -459,11 +459,11 @@ declare const _default: {
|
|
459
459
|
layout: import("vue").PropType<"horizontal" | "inline" | "vertical">;
|
460
460
|
labelCol: {
|
461
461
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
462
|
-
span: (
|
463
|
-
order: (
|
464
|
-
offset: (
|
465
|
-
push: (
|
466
|
-
pull: (
|
462
|
+
span: (NumberConstructor | StringConstructor)[];
|
463
|
+
order: (NumberConstructor | StringConstructor)[];
|
464
|
+
offset: (NumberConstructor | StringConstructor)[];
|
465
|
+
push: (NumberConstructor | StringConstructor)[];
|
466
|
+
pull: (NumberConstructor | StringConstructor)[];
|
467
467
|
xs: {
|
468
468
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
469
469
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -493,16 +493,16 @@ declare const _default: {
|
|
493
493
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
494
494
|
};
|
495
495
|
prefixCls: StringConstructor;
|
496
|
-
flex: (
|
496
|
+
flex: (NumberConstructor | StringConstructor)[];
|
497
497
|
}>> & import("vue").HTMLAttributes>;
|
498
498
|
};
|
499
499
|
wrapperCol: {
|
500
500
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
501
|
-
span: (
|
502
|
-
order: (
|
503
|
-
offset: (
|
504
|
-
push: (
|
505
|
-
pull: (
|
501
|
+
span: (NumberConstructor | StringConstructor)[];
|
502
|
+
order: (NumberConstructor | StringConstructor)[];
|
503
|
+
offset: (NumberConstructor | StringConstructor)[];
|
504
|
+
push: (NumberConstructor | StringConstructor)[];
|
505
|
+
pull: (NumberConstructor | StringConstructor)[];
|
506
506
|
xs: {
|
507
507
|
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid").ColSize>;
|
508
508
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
@@ -532,7 +532,7 @@ declare const _default: {
|
|
532
532
|
default: string | number | import("ant-design-vue/lib/grid").ColSize;
|
533
533
|
};
|
534
534
|
prefixCls: StringConstructor;
|
535
|
-
flex: (
|
535
|
+
flex: (NumberConstructor | StringConstructor)[];
|
536
536
|
}>> & import("vue").HTMLAttributes>;
|
537
537
|
};
|
538
538
|
colon: {
|