@dt-frames/ui 1.0.27 → 1.0.29
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/es/components/curd/src/components/dialog.d.ts +4 -7
- package/es/components/curd/src/types/curd.type.d.ts +2 -2
- package/es/components/forms/src/components/formIcon.d.ts +23 -23
- package/es/components/forms/src/components/formInputUseDialog.d.ts +18 -18
- package/es/components/forms/src/types/form.type.d.ts +1 -0
- package/es/components/icons/src/pick-icon.d.ts +5 -5
- package/es/components/source/src/hooks/useDownload.d.ts +2 -1
- package/es/components/source/src/types/source.type.d.ts +2 -1
- package/es/components/table/index.d.ts +2 -1
- package/es/components/table/index.less +4 -0
- package/es/components/table/src/components/TableActions.d.ts +1 -0
- package/es/components/table/src/components/editable/EditTableCell.d.ts +0 -6
- package/es/components/table/src/components/editable/index.d.ts +1 -1
- package/es/components/table/src/components/setting/Column.d.ts +1 -0
- package/es/components/table/src/components/setting/Download.d.ts +1 -0
- package/es/components/table/src/components/setting/Fullscreen.d.ts +1 -0
- package/es/components/table/src/components/setting/Size.d.ts +1 -0
- package/es/components/table/src/hooks/useColumns.d.ts +4 -2
- package/es/components/table/src/hooks/useLoading.d.ts +12 -1
- package/es/components/table/src/hooks/useTableInstance.d.ts +1 -0
- package/es/components/table/src/hooks/useTableScroll.d.ts +2 -2
- package/es/components/table/src/index.d.ts +106 -7
- package/es/components/table/src/props.d.ts +4 -0
- package/es/components/table/src/types/table.type.d.ts +2 -1
- package/es/components/upload/src/props.d.ts +4 -0
- package/es/components/upload/src/upload.d.ts +119 -7
- package/es/index.js +481 -429
- package/es/theme/theme.less +2 -0
- package/es/theme/transition.less +6 -0
- package/package.json +2 -2
|
@@ -13,8 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
type: PropType<Ref<Recordable<any>>>;
|
|
14
14
|
};
|
|
15
15
|
title: {
|
|
16
|
-
type:
|
|
17
|
-
default: string;
|
|
16
|
+
type: PropType<Object | String>;
|
|
18
17
|
};
|
|
19
18
|
width: {
|
|
20
19
|
type: PropType<string | number>;
|
|
@@ -54,8 +53,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
53
|
type: PropType<Ref<Recordable<any>>>;
|
|
55
54
|
};
|
|
56
55
|
title: {
|
|
57
|
-
type:
|
|
58
|
-
default: string;
|
|
56
|
+
type: PropType<Object | String>;
|
|
59
57
|
};
|
|
60
58
|
width: {
|
|
61
59
|
type: PropType<string | number>;
|
|
@@ -87,6 +85,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
87
85
|
}>>;
|
|
88
86
|
registerDialog: import("../../../modal/src/types/modal.type").RegisterFn;
|
|
89
87
|
closeModal: (rsp?: Recordable<any>) => void;
|
|
88
|
+
setModalProps: (props: Partial<import("@dt-frames/core").ModalProps>) => void;
|
|
90
89
|
registerForm: (formInstance: import("../../../forms").FormActionType) => void;
|
|
91
90
|
getFormValues: () => Recordable<any>;
|
|
92
91
|
setFormValues: (values: Recordable<any>) => Promise<void>;
|
|
@@ -1429,8 +1428,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1429
1428
|
type: PropType<Ref<Recordable<any>>>;
|
|
1430
1429
|
};
|
|
1431
1430
|
title: {
|
|
1432
|
-
type:
|
|
1433
|
-
default: string;
|
|
1431
|
+
type: PropType<Object | String>;
|
|
1434
1432
|
};
|
|
1435
1433
|
width: {
|
|
1436
1434
|
type: PropType<string | number>;
|
|
@@ -1458,7 +1456,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1458
1456
|
}>;
|
|
1459
1457
|
};
|
|
1460
1458
|
}>>, {
|
|
1461
|
-
title: string;
|
|
1462
1459
|
canFullscreen: boolean;
|
|
1463
1460
|
closable: boolean;
|
|
1464
1461
|
width: string | number;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Recordable, ButtonProps } from "@dt-frames/core";
|
|
2
|
-
import { VNodeChild } from "vue";
|
|
2
|
+
import { ComputedRef, VNodeChild } from "vue";
|
|
3
3
|
import { FormSchema, FormProps } from "../../../forms/src/types/form.type";
|
|
4
4
|
export declare type CrudOptType = {
|
|
5
|
-
title?: string;
|
|
5
|
+
title?: string | ComputedRef;
|
|
6
6
|
width?: string | number;
|
|
7
7
|
schemas: FormSchema[];
|
|
8
8
|
footer?: VNodeChild | JSX.Element | ButtonProps[];
|
|
@@ -68,7 +68,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
68
68
|
hidden: boolean;
|
|
69
69
|
disabled: boolean;
|
|
70
70
|
value: string | number;
|
|
71
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
71
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
72
72
|
readonly: boolean;
|
|
73
73
|
autofocus: boolean;
|
|
74
74
|
loading: boolean;
|
|
@@ -89,7 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
89
89
|
};
|
|
90
90
|
autocomplete: StringConstructor;
|
|
91
91
|
type: {
|
|
92
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
92
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
93
93
|
default: string;
|
|
94
94
|
};
|
|
95
95
|
name: StringConstructor;
|
|
@@ -171,7 +171,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
171
171
|
};
|
|
172
172
|
autocomplete: StringConstructor;
|
|
173
173
|
type: {
|
|
174
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
174
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
175
175
|
default: string;
|
|
176
176
|
};
|
|
177
177
|
name: StringConstructor;
|
|
@@ -229,7 +229,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
229
229
|
hidden: boolean;
|
|
230
230
|
disabled: boolean;
|
|
231
231
|
value: string | number;
|
|
232
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
232
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
233
233
|
readonly: boolean;
|
|
234
234
|
autofocus: boolean;
|
|
235
235
|
loading: boolean;
|
|
@@ -270,7 +270,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
270
270
|
};
|
|
271
271
|
autocomplete: StringConstructor;
|
|
272
272
|
type: {
|
|
273
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
273
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
274
274
|
default: string;
|
|
275
275
|
};
|
|
276
276
|
name: StringConstructor;
|
|
@@ -342,7 +342,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
342
342
|
};
|
|
343
343
|
autocomplete: StringConstructor;
|
|
344
344
|
type: {
|
|
345
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
345
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
346
346
|
default: string;
|
|
347
347
|
};
|
|
348
348
|
name: StringConstructor;
|
|
@@ -400,7 +400,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
400
400
|
hidden: boolean;
|
|
401
401
|
disabled: boolean;
|
|
402
402
|
value: string | number;
|
|
403
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
403
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
404
404
|
readonly: boolean;
|
|
405
405
|
autofocus: boolean;
|
|
406
406
|
loading: boolean;
|
|
@@ -457,7 +457,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
457
457
|
inputPrefixCls: StringConstructor;
|
|
458
458
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
459
459
|
onSearch: {
|
|
460
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
460
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
461
461
|
};
|
|
462
462
|
id: StringConstructor;
|
|
463
463
|
prefixCls: StringConstructor;
|
|
@@ -471,7 +471,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
471
471
|
};
|
|
472
472
|
autocomplete: StringConstructor;
|
|
473
473
|
type: {
|
|
474
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
474
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
475
475
|
default: string;
|
|
476
476
|
};
|
|
477
477
|
name: StringConstructor;
|
|
@@ -529,7 +529,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
529
529
|
inputPrefixCls: StringConstructor;
|
|
530
530
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
531
531
|
onSearch: {
|
|
532
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
532
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
533
533
|
};
|
|
534
534
|
id: StringConstructor;
|
|
535
535
|
prefixCls: StringConstructor;
|
|
@@ -543,7 +543,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
543
543
|
};
|
|
544
544
|
autocomplete: StringConstructor;
|
|
545
545
|
type: {
|
|
546
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
546
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
547
547
|
default: string;
|
|
548
548
|
};
|
|
549
549
|
name: StringConstructor;
|
|
@@ -601,7 +601,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
601
601
|
hidden: boolean;
|
|
602
602
|
disabled: boolean;
|
|
603
603
|
value: string | number;
|
|
604
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
604
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
605
605
|
readonly: boolean;
|
|
606
606
|
autofocus: boolean;
|
|
607
607
|
loading: boolean;
|
|
@@ -649,7 +649,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
649
649
|
};
|
|
650
650
|
name: StringConstructor;
|
|
651
651
|
type: {
|
|
652
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
652
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
653
653
|
default: string;
|
|
654
654
|
};
|
|
655
655
|
id: StringConstructor;
|
|
@@ -730,7 +730,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
730
730
|
};
|
|
731
731
|
name: StringConstructor;
|
|
732
732
|
type: {
|
|
733
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
733
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
734
734
|
default: string;
|
|
735
735
|
};
|
|
736
736
|
id: StringConstructor;
|
|
@@ -775,7 +775,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
775
775
|
hidden: boolean;
|
|
776
776
|
disabled: boolean;
|
|
777
777
|
value: string | number;
|
|
778
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
778
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
779
779
|
readonly: boolean;
|
|
780
780
|
autofocus: boolean;
|
|
781
781
|
loading: boolean;
|
|
@@ -808,7 +808,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
808
808
|
};
|
|
809
809
|
autocomplete: StringConstructor;
|
|
810
810
|
type: {
|
|
811
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
811
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
812
812
|
default: string;
|
|
813
813
|
};
|
|
814
814
|
name: StringConstructor;
|
|
@@ -885,7 +885,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
885
885
|
};
|
|
886
886
|
autocomplete: StringConstructor;
|
|
887
887
|
type: {
|
|
888
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
888
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
889
889
|
default: string;
|
|
890
890
|
};
|
|
891
891
|
name: StringConstructor;
|
|
@@ -943,7 +943,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
943
943
|
hidden: boolean;
|
|
944
944
|
disabled: boolean;
|
|
945
945
|
value: string | number;
|
|
946
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
946
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
947
947
|
action: string;
|
|
948
948
|
readonly: boolean;
|
|
949
949
|
autofocus: boolean;
|
|
@@ -1500,7 +1500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1500
1500
|
inputPrefixCls: StringConstructor;
|
|
1501
1501
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
1502
1502
|
onSearch: {
|
|
1503
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
1503
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
1504
1504
|
};
|
|
1505
1505
|
id: StringConstructor;
|
|
1506
1506
|
prefixCls: StringConstructor;
|
|
@@ -1514,7 +1514,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1514
1514
|
};
|
|
1515
1515
|
autocomplete: StringConstructor;
|
|
1516
1516
|
type: {
|
|
1517
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
1517
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
1518
1518
|
default: string;
|
|
1519
1519
|
};
|
|
1520
1520
|
name: StringConstructor;
|
|
@@ -1572,7 +1572,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1572
1572
|
inputPrefixCls: StringConstructor;
|
|
1573
1573
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
1574
1574
|
onSearch: {
|
|
1575
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
1575
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
1576
1576
|
};
|
|
1577
1577
|
id: StringConstructor;
|
|
1578
1578
|
prefixCls: StringConstructor;
|
|
@@ -1586,7 +1586,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1586
1586
|
};
|
|
1587
1587
|
autocomplete: StringConstructor;
|
|
1588
1588
|
type: {
|
|
1589
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
1589
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
1590
1590
|
default: string;
|
|
1591
1591
|
};
|
|
1592
1592
|
name: StringConstructor;
|
|
@@ -1644,7 +1644,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1644
1644
|
hidden: boolean;
|
|
1645
1645
|
disabled: boolean;
|
|
1646
1646
|
value: string | number;
|
|
1647
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
1647
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
1648
1648
|
readonly: boolean;
|
|
1649
1649
|
autofocus: boolean;
|
|
1650
1650
|
loading: boolean;
|
|
@@ -13,7 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
13
13
|
hidden: boolean;
|
|
14
14
|
disabled: boolean;
|
|
15
15
|
value: string | number;
|
|
16
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
16
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
17
17
|
readonly: boolean;
|
|
18
18
|
autofocus: boolean;
|
|
19
19
|
loading: boolean;
|
|
@@ -34,7 +34,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
34
34
|
};
|
|
35
35
|
autocomplete: StringConstructor;
|
|
36
36
|
type: {
|
|
37
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
37
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
40
|
name: StringConstructor;
|
|
@@ -116,7 +116,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
116
116
|
};
|
|
117
117
|
autocomplete: StringConstructor;
|
|
118
118
|
type: {
|
|
119
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
119
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
120
120
|
default: string;
|
|
121
121
|
};
|
|
122
122
|
name: StringConstructor;
|
|
@@ -174,7 +174,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
174
174
|
hidden: boolean;
|
|
175
175
|
disabled: boolean;
|
|
176
176
|
value: string | number;
|
|
177
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
177
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
178
178
|
readonly: boolean;
|
|
179
179
|
autofocus: boolean;
|
|
180
180
|
loading: boolean;
|
|
@@ -215,7 +215,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
215
215
|
};
|
|
216
216
|
autocomplete: StringConstructor;
|
|
217
217
|
type: {
|
|
218
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
218
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
219
219
|
default: string;
|
|
220
220
|
};
|
|
221
221
|
name: StringConstructor;
|
|
@@ -287,7 +287,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
287
287
|
};
|
|
288
288
|
autocomplete: StringConstructor;
|
|
289
289
|
type: {
|
|
290
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
290
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
291
291
|
default: string;
|
|
292
292
|
};
|
|
293
293
|
name: StringConstructor;
|
|
@@ -345,7 +345,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
345
345
|
hidden: boolean;
|
|
346
346
|
disabled: boolean;
|
|
347
347
|
value: string | number;
|
|
348
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
348
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
349
349
|
readonly: boolean;
|
|
350
350
|
autofocus: boolean;
|
|
351
351
|
loading: boolean;
|
|
@@ -402,7 +402,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
402
402
|
inputPrefixCls: StringConstructor;
|
|
403
403
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
404
404
|
onSearch: {
|
|
405
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
405
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
406
406
|
};
|
|
407
407
|
id: StringConstructor;
|
|
408
408
|
prefixCls: StringConstructor;
|
|
@@ -416,7 +416,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
416
416
|
};
|
|
417
417
|
autocomplete: StringConstructor;
|
|
418
418
|
type: {
|
|
419
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
419
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
420
420
|
default: string;
|
|
421
421
|
};
|
|
422
422
|
name: StringConstructor;
|
|
@@ -474,7 +474,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
474
474
|
inputPrefixCls: StringConstructor;
|
|
475
475
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
476
476
|
onSearch: {
|
|
477
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
477
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
478
478
|
};
|
|
479
479
|
id: StringConstructor;
|
|
480
480
|
prefixCls: StringConstructor;
|
|
@@ -488,7 +488,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
488
488
|
};
|
|
489
489
|
autocomplete: StringConstructor;
|
|
490
490
|
type: {
|
|
491
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
491
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
492
492
|
default: string;
|
|
493
493
|
};
|
|
494
494
|
name: StringConstructor;
|
|
@@ -546,7 +546,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
546
546
|
hidden: boolean;
|
|
547
547
|
disabled: boolean;
|
|
548
548
|
value: string | number;
|
|
549
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
549
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
550
550
|
readonly: boolean;
|
|
551
551
|
autofocus: boolean;
|
|
552
552
|
loading: boolean;
|
|
@@ -594,7 +594,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
594
594
|
};
|
|
595
595
|
name: StringConstructor;
|
|
596
596
|
type: {
|
|
597
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
597
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
598
598
|
default: string;
|
|
599
599
|
};
|
|
600
600
|
id: StringConstructor;
|
|
@@ -675,7 +675,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
675
675
|
};
|
|
676
676
|
name: StringConstructor;
|
|
677
677
|
type: {
|
|
678
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
678
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
679
679
|
default: string;
|
|
680
680
|
};
|
|
681
681
|
id: StringConstructor;
|
|
@@ -720,7 +720,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
720
720
|
hidden: boolean;
|
|
721
721
|
disabled: boolean;
|
|
722
722
|
value: string | number;
|
|
723
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
723
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
724
724
|
readonly: boolean;
|
|
725
725
|
autofocus: boolean;
|
|
726
726
|
loading: boolean;
|
|
@@ -753,7 +753,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
753
753
|
};
|
|
754
754
|
autocomplete: StringConstructor;
|
|
755
755
|
type: {
|
|
756
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
756
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
757
757
|
default: string;
|
|
758
758
|
};
|
|
759
759
|
name: StringConstructor;
|
|
@@ -830,7 +830,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
830
830
|
};
|
|
831
831
|
autocomplete: StringConstructor;
|
|
832
832
|
type: {
|
|
833
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
833
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
834
834
|
default: string;
|
|
835
835
|
};
|
|
836
836
|
name: StringConstructor;
|
|
@@ -888,7 +888,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
888
888
|
hidden: boolean;
|
|
889
889
|
disabled: boolean;
|
|
890
890
|
value: string | number;
|
|
891
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
891
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
892
892
|
action: string;
|
|
893
893
|
readonly: boolean;
|
|
894
894
|
autofocus: boolean;
|
|
@@ -275,7 +275,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
275
275
|
inputPrefixCls: StringConstructor;
|
|
276
276
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
277
277
|
onSearch: {
|
|
278
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
278
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
279
279
|
};
|
|
280
280
|
id: StringConstructor;
|
|
281
281
|
prefixCls: StringConstructor;
|
|
@@ -289,7 +289,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
289
289
|
};
|
|
290
290
|
autocomplete: StringConstructor;
|
|
291
291
|
type: {
|
|
292
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
292
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
293
293
|
default: string;
|
|
294
294
|
};
|
|
295
295
|
name: StringConstructor;
|
|
@@ -347,7 +347,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
347
347
|
inputPrefixCls: StringConstructor;
|
|
348
348
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
349
349
|
onSearch: {
|
|
350
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
350
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
351
351
|
};
|
|
352
352
|
id: StringConstructor;
|
|
353
353
|
prefixCls: StringConstructor;
|
|
@@ -361,7 +361,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
361
361
|
};
|
|
362
362
|
autocomplete: StringConstructor;
|
|
363
363
|
type: {
|
|
364
|
-
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
364
|
+
type: import("vue").PropType<import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>>;
|
|
365
365
|
default: string;
|
|
366
366
|
};
|
|
367
367
|
name: StringConstructor;
|
|
@@ -419,7 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
419
419
|
hidden: boolean;
|
|
420
420
|
disabled: boolean;
|
|
421
421
|
value: string | number;
|
|
422
|
-
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "
|
|
422
|
+
type: import("ant-design-vue/lib/_util/type").LiteralUnion<"number" | "search" | "color" | "hidden" | "text" | "reset" | "checkbox" | "radio" | "button" | "time" | "date" | "week" | "month" | "submit" | "image" | "range" | "tel" | "url" | "email" | "datetime-local" | "file" | "password", string>;
|
|
423
423
|
readonly: boolean;
|
|
424
424
|
autofocus: boolean;
|
|
425
425
|
loading: boolean;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DownloadType } from '../../../table/src/types/tableHeader.type';
|
|
2
2
|
import { Recordable } from '@dt-frames/core';
|
|
3
|
-
|
|
3
|
+
import { ComputedRef } from 'vue';
|
|
4
|
+
export declare function useDownload(exportUrl: string, exportName: string | ComputedRef): {
|
|
4
5
|
download: (excelData: DownloadType & {
|
|
5
6
|
params: Recordable;
|
|
6
7
|
}) => void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Recordable, ApiType } from "@dt-frames/core";
|
|
2
|
+
import { ComputedRef } from "vue";
|
|
2
3
|
export declare type PageQueryType = {
|
|
3
4
|
entityDTO: Recordable;
|
|
4
5
|
orderDTOs: Recordable[];
|
|
@@ -19,7 +20,7 @@ export declare type ApiObjType = {
|
|
|
19
20
|
};
|
|
20
21
|
export declare type SourceType = {
|
|
21
22
|
baseUrl?: string;
|
|
22
|
-
exportName?: string;
|
|
23
|
+
exportName?: string | ComputedRef;
|
|
23
24
|
api: ApiObjType;
|
|
24
25
|
};
|
|
25
26
|
export declare type BaseDataType = {
|
|
@@ -30,6 +30,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
30
|
type: NumberConstructor;
|
|
31
31
|
};
|
|
32
32
|
}, {
|
|
33
|
+
actionBtns: import("vue").Ref<any[]>;
|
|
33
34
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
34
35
|
fixed: {
|
|
35
36
|
type: PropType<boolean | "left" | "right">;
|
|
@@ -19,13 +19,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
editValueRefs: Recordable<import("vue").Ref<any>>;
|
|
20
20
|
} & Recordable<any>>>;
|
|
21
21
|
};
|
|
22
|
-
row: ObjectConstructor;
|
|
23
22
|
column: {
|
|
24
23
|
type: PropType<BasicColumn>;
|
|
25
24
|
default: () => BasicColumn;
|
|
26
25
|
};
|
|
27
26
|
index: NumberConstructor;
|
|
28
|
-
dataSource: PropType<Recordable<any>[]>;
|
|
29
27
|
}, {
|
|
30
28
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
31
29
|
value: {
|
|
@@ -45,13 +43,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
43
|
editValueRefs: Recordable<import("vue").Ref<any>>;
|
|
46
44
|
} & Recordable<any>>>;
|
|
47
45
|
};
|
|
48
|
-
row: ObjectConstructor;
|
|
49
46
|
column: {
|
|
50
47
|
type: PropType<BasicColumn>;
|
|
51
48
|
default: () => BasicColumn;
|
|
52
49
|
};
|
|
53
50
|
index: NumberConstructor;
|
|
54
|
-
dataSource: PropType<Recordable<any>[]>;
|
|
55
51
|
}>> & {
|
|
56
52
|
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any);
|
|
57
53
|
}>>;
|
|
@@ -80,13 +76,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
76
|
editValueRefs: Recordable<import("vue").Ref<any>>;
|
|
81
77
|
} & Recordable<any>>>;
|
|
82
78
|
};
|
|
83
|
-
row: ObjectConstructor;
|
|
84
79
|
column: {
|
|
85
80
|
type: PropType<BasicColumn>;
|
|
86
81
|
default: () => BasicColumn;
|
|
87
82
|
};
|
|
88
83
|
index: NumberConstructor;
|
|
89
|
-
dataSource: PropType<Recordable<any>[]>;
|
|
90
84
|
}>>, {
|
|
91
85
|
value: string;
|
|
92
86
|
column: BasicColumn;
|