@vtj/ui 0.9.0-alpha.5 → 0.9.0-alpha.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1039 -1015
- package/dist/index.umd.js +10 -10
- package/dist/style.css +1 -1
- package/package.json +8 -8
- package/types/components/action/Action.d.ts +13 -7
- package/types/components/action/hooks.d.ts +3 -2
- package/types/components/action-bar/ActionBar.d.ts +9 -5
- package/types/components/attachment/Attachment.d.ts +3 -3
- package/types/components/data-item/DataItem.d.ts +30 -5
- package/types/components/data-item/types.d.ts +9 -0
- package/types/components/dialog-form/DialogForm.d.ts +14 -2
- package/types/components/dialog-grid/DialogGrid.d.ts +24 -24
- package/types/components/field/Field.d.ts +1 -2
- package/types/components/form/Form.d.ts +10 -1
- package/types/components/form/types.d.ts +7 -0
- package/types/components/grid/Grid.d.ts +12 -12
- package/types/components/grid/hooks/useLoader.d.ts +12 -12
- package/types/components/grid/hooks/useState.d.ts +12 -12
- package/types/components/mask/Mask.d.ts +9 -5
- package/types/components/query-form/QueryForm.d.ts +42 -6
- package/types/components/tabs/Tabs.d.ts +5 -3
- package/types/utils/util.d.ts +1 -1
- package/types/version.d.ts +2 -2
@@ -796,7 +796,7 @@ declare function __VLS_template(): {
|
|
796
796
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
797
797
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
798
798
|
filters: {
|
799
|
-
label?:
|
799
|
+
label?: string | number | undefined;
|
800
800
|
value?: any;
|
801
801
|
data?: any;
|
802
802
|
resetValue?: any;
|
@@ -830,7 +830,7 @@ declare function __VLS_template(): {
|
|
830
830
|
[key: string]: (...args: any[]) => any;
|
831
831
|
} | undefined;
|
832
832
|
children?: any[] | undefined;
|
833
|
-
cellType?:
|
833
|
+
cellType?: "string" | "number" | undefined;
|
834
834
|
};
|
835
835
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
836
836
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -886,7 +886,7 @@ declare function __VLS_template(): {
|
|
886
886
|
[key: string]: any;
|
887
887
|
} | undefined;
|
888
888
|
children?: any[] | undefined;
|
889
|
-
cellType?:
|
889
|
+
cellType?: "string" | "number" | undefined;
|
890
890
|
};
|
891
891
|
editRender: {
|
892
892
|
events?: {
|
@@ -922,7 +922,7 @@ declare function __VLS_template(): {
|
|
922
922
|
[key: string]: any;
|
923
923
|
} | undefined;
|
924
924
|
children?: any[] | undefined;
|
925
|
-
cellType?:
|
925
|
+
cellType?: "string" | "number" | undefined;
|
926
926
|
};
|
927
927
|
contentRender: {
|
928
928
|
options?: any[] | undefined;
|
@@ -949,7 +949,7 @@ declare function __VLS_template(): {
|
|
949
949
|
[key: string]: (...args: any[]) => any;
|
950
950
|
} | undefined;
|
951
951
|
children?: any[] | undefined;
|
952
|
-
cellType?:
|
952
|
+
cellType?: "string" | "number" | undefined;
|
953
953
|
};
|
954
954
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
955
955
|
slots: {
|
@@ -987,7 +987,7 @@ declare function __VLS_template(): {
|
|
987
987
|
update: boolean;
|
988
988
|
value: any;
|
989
989
|
};
|
990
|
-
children: any[];
|
990
|
+
children: /*elided*/ any[];
|
991
991
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
992
992
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
993
993
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -1025,7 +1025,7 @@ declare function __VLS_template(): {
|
|
1025
1025
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
1026
1026
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
1027
1027
|
filters: {
|
1028
|
-
label?:
|
1028
|
+
label?: string | number | undefined;
|
1029
1029
|
value?: any;
|
1030
1030
|
data?: any;
|
1031
1031
|
resetValue?: any;
|
@@ -1059,7 +1059,7 @@ declare function __VLS_template(): {
|
|
1059
1059
|
[key: string]: (...args: any[]) => any;
|
1060
1060
|
} | undefined;
|
1061
1061
|
children?: any[] | undefined;
|
1062
|
-
cellType?:
|
1062
|
+
cellType?: "string" | "number" | undefined;
|
1063
1063
|
};
|
1064
1064
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
1065
1065
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -1115,7 +1115,7 @@ declare function __VLS_template(): {
|
|
1115
1115
|
[key: string]: any;
|
1116
1116
|
} | undefined;
|
1117
1117
|
children?: any[] | undefined;
|
1118
|
-
cellType?:
|
1118
|
+
cellType?: "string" | "number" | undefined;
|
1119
1119
|
};
|
1120
1120
|
editRender: {
|
1121
1121
|
events?: {
|
@@ -1151,7 +1151,7 @@ declare function __VLS_template(): {
|
|
1151
1151
|
[key: string]: any;
|
1152
1152
|
} | undefined;
|
1153
1153
|
children?: any[] | undefined;
|
1154
|
-
cellType?:
|
1154
|
+
cellType?: "string" | "number" | undefined;
|
1155
1155
|
};
|
1156
1156
|
contentRender: {
|
1157
1157
|
options?: any[] | undefined;
|
@@ -1178,7 +1178,7 @@ declare function __VLS_template(): {
|
|
1178
1178
|
[key: string]: (...args: any[]) => any;
|
1179
1179
|
} | undefined;
|
1180
1180
|
children?: any[] | undefined;
|
1181
|
-
cellType?:
|
1181
|
+
cellType?: "string" | "number" | undefined;
|
1182
1182
|
};
|
1183
1183
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
1184
1184
|
slots: {
|
@@ -1216,7 +1216,7 @@ declare function __VLS_template(): {
|
|
1216
1216
|
update: boolean;
|
1217
1217
|
value: any;
|
1218
1218
|
};
|
1219
|
-
children: any[];
|
1219
|
+
children: /*elided*/ any[];
|
1220
1220
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
1221
1221
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
1222
1222
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -1417,7 +1417,7 @@ declare function __VLS_template(): {
|
|
1417
1417
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
1418
1418
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
1419
1419
|
filters: {
|
1420
|
-
label?:
|
1420
|
+
label?: string | number | undefined;
|
1421
1421
|
value?: any;
|
1422
1422
|
data?: any;
|
1423
1423
|
resetValue?: any;
|
@@ -1451,7 +1451,7 @@ declare function __VLS_template(): {
|
|
1451
1451
|
[key: string]: (...args: any[]) => any;
|
1452
1452
|
} | undefined;
|
1453
1453
|
children?: any[] | undefined;
|
1454
|
-
cellType?:
|
1454
|
+
cellType?: "string" | "number" | undefined;
|
1455
1455
|
};
|
1456
1456
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
1457
1457
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -1507,7 +1507,7 @@ declare function __VLS_template(): {
|
|
1507
1507
|
[key: string]: any;
|
1508
1508
|
} | undefined;
|
1509
1509
|
children?: any[] | undefined;
|
1510
|
-
cellType?:
|
1510
|
+
cellType?: "string" | "number" | undefined;
|
1511
1511
|
};
|
1512
1512
|
editRender: {
|
1513
1513
|
events?: {
|
@@ -1543,7 +1543,7 @@ declare function __VLS_template(): {
|
|
1543
1543
|
[key: string]: any;
|
1544
1544
|
} | undefined;
|
1545
1545
|
children?: any[] | undefined;
|
1546
|
-
cellType?:
|
1546
|
+
cellType?: "string" | "number" | undefined;
|
1547
1547
|
};
|
1548
1548
|
contentRender: {
|
1549
1549
|
options?: any[] | undefined;
|
@@ -1570,7 +1570,7 @@ declare function __VLS_template(): {
|
|
1570
1570
|
[key: string]: (...args: any[]) => any;
|
1571
1571
|
} | undefined;
|
1572
1572
|
children?: any[] | undefined;
|
1573
|
-
cellType?:
|
1573
|
+
cellType?: "string" | "number" | undefined;
|
1574
1574
|
};
|
1575
1575
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
1576
1576
|
slots: {
|
@@ -1608,7 +1608,7 @@ declare function __VLS_template(): {
|
|
1608
1608
|
update: boolean;
|
1609
1609
|
value: any;
|
1610
1610
|
};
|
1611
|
-
children: any[];
|
1611
|
+
children: /*elided*/ any[];
|
1612
1612
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
1613
1613
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
1614
1614
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -1646,7 +1646,7 @@ declare function __VLS_template(): {
|
|
1646
1646
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
1647
1647
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
1648
1648
|
filters: {
|
1649
|
-
label?:
|
1649
|
+
label?: string | number | undefined;
|
1650
1650
|
value?: any;
|
1651
1651
|
data?: any;
|
1652
1652
|
resetValue?: any;
|
@@ -1680,7 +1680,7 @@ declare function __VLS_template(): {
|
|
1680
1680
|
[key: string]: (...args: any[]) => any;
|
1681
1681
|
} | undefined;
|
1682
1682
|
children?: any[] | undefined;
|
1683
|
-
cellType?:
|
1683
|
+
cellType?: "string" | "number" | undefined;
|
1684
1684
|
};
|
1685
1685
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
1686
1686
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -1736,7 +1736,7 @@ declare function __VLS_template(): {
|
|
1736
1736
|
[key: string]: any;
|
1737
1737
|
} | undefined;
|
1738
1738
|
children?: any[] | undefined;
|
1739
|
-
cellType?:
|
1739
|
+
cellType?: "string" | "number" | undefined;
|
1740
1740
|
};
|
1741
1741
|
editRender: {
|
1742
1742
|
events?: {
|
@@ -1772,7 +1772,7 @@ declare function __VLS_template(): {
|
|
1772
1772
|
[key: string]: any;
|
1773
1773
|
} | undefined;
|
1774
1774
|
children?: any[] | undefined;
|
1775
|
-
cellType?:
|
1775
|
+
cellType?: "string" | "number" | undefined;
|
1776
1776
|
};
|
1777
1777
|
contentRender: {
|
1778
1778
|
options?: any[] | undefined;
|
@@ -1799,7 +1799,7 @@ declare function __VLS_template(): {
|
|
1799
1799
|
[key: string]: (...args: any[]) => any;
|
1800
1800
|
} | undefined;
|
1801
1801
|
children?: any[] | undefined;
|
1802
|
-
cellType?:
|
1802
|
+
cellType?: "string" | "number" | undefined;
|
1803
1803
|
};
|
1804
1804
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
1805
1805
|
slots: {
|
@@ -1837,7 +1837,7 @@ declare function __VLS_template(): {
|
|
1837
1837
|
update: boolean;
|
1838
1838
|
value: any;
|
1839
1839
|
};
|
1840
|
-
children: any[];
|
1840
|
+
children: /*elided*/ any[];
|
1841
1841
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
1842
1842
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
1843
1843
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -2,9 +2,8 @@ import { ComputedRef, ComponentInternalInstance, VNodeProps, AllowedComponentPro
|
|
2
2
|
import { FieldEditorProps, FieldOption, FieldOptionsLoader } from './types';
|
3
3
|
import { BaseSize } from '../../';
|
4
4
|
import { EpPropMergeType, EpPropFinalized } from 'element-plus/es/utils/index.mjs';
|
5
|
-
import { FormItemProp, FormItemRule, ElTooltipProps } from 'element-plus';
|
5
|
+
import { FormItemProp, FormItemRule, FormValidateCallback, FormValidationResult, ElTooltipProps } from 'element-plus';
|
6
6
|
import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
|
7
|
-
import { FormValidateCallback, FormValidationResult } from 'element-plus/es/components/form/src/types.mjs';
|
8
7
|
import { OnCleanup } from '@vue/reactivity';
|
9
8
|
import { BuiltinFieldEditorType } from './builtin';
|
10
9
|
declare function __VLS_template(): {
|
@@ -44,7 +44,7 @@ declare function __VLS_template(): {
|
|
44
44
|
readonly rules?: Partial<Record<string, Arrayable<FormItemRule>>> | undefined;
|
45
45
|
readonly model?: Record<string, any> | undefined;
|
46
46
|
readonly scrollIntoViewOptions?: EpPropMergeType<readonly [ObjectConstructor, BooleanConstructor], unknown, unknown> | undefined;
|
47
|
-
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
47
|
+
onValidate?: ((prop: FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
48
48
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "inline" | "labelWidth" | "labelPosition" | "inlineMessage" | "showMessage" | "requireAsteriskPosition" | "labelSuffix" | "statusIcon" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError">;
|
49
49
|
$attrs: {
|
50
50
|
[x: string]: unknown;
|
@@ -229,6 +229,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
229
229
|
type: PropType<boolean | Partial< ElTooltipProps>>;
|
230
230
|
default: undefined;
|
231
231
|
};
|
232
|
+
enterSubmit: {
|
233
|
+
type: BooleanConstructor;
|
234
|
+
default: boolean;
|
235
|
+
};
|
232
236
|
}>, {
|
233
237
|
formRef: Ref<any, any>;
|
234
238
|
model: FormModel;
|
@@ -270,6 +274,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
270
274
|
type: PropType<boolean | Partial< ElTooltipProps>>;
|
271
275
|
default: undefined;
|
272
276
|
};
|
277
|
+
enterSubmit: {
|
278
|
+
type: BooleanConstructor;
|
279
|
+
default: boolean;
|
280
|
+
};
|
273
281
|
}>> & Readonly<{
|
274
282
|
onReset?: (() => any) | undefined;
|
275
283
|
onSubmit?: ((model: Record<string, any>) => any) | undefined;
|
@@ -281,6 +289,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
281
289
|
model: Record<string, any>;
|
282
290
|
submitText: string | null;
|
283
291
|
resetText: string | null;
|
292
|
+
enterSubmit: boolean;
|
284
293
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
285
294
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
286
295
|
export default _default;
|
@@ -56,6 +56,13 @@ export declare const formProps: {
|
|
56
56
|
type: PropType<boolean | Partial<ElTooltipProps>>;
|
57
57
|
default: undefined;
|
58
58
|
};
|
59
|
+
/**
|
60
|
+
* 回车键出发提交
|
61
|
+
*/
|
62
|
+
enterSubmit: {
|
63
|
+
type: BooleanConstructor;
|
64
|
+
default: boolean;
|
65
|
+
};
|
59
66
|
};
|
60
67
|
export type FormProps = ComponentPropsType<typeof formProps>;
|
61
68
|
export type FormEmits = {
|
@@ -148,7 +148,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
148
148
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
149
149
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
150
150
|
filters: {
|
151
|
-
label?:
|
151
|
+
label?: string | number | undefined;
|
152
152
|
value?: any;
|
153
153
|
data?: any;
|
154
154
|
resetValue?: any;
|
@@ -182,7 +182,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
182
182
|
[key: string]: (...args: any[]) => any;
|
183
183
|
} | undefined;
|
184
184
|
children?: any[] | undefined;
|
185
|
-
cellType?:
|
185
|
+
cellType?: "string" | "number" | undefined;
|
186
186
|
};
|
187
187
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
188
188
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -238,7 +238,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
238
238
|
[key: string]: any;
|
239
239
|
} | undefined;
|
240
240
|
children?: any[] | undefined;
|
241
|
-
cellType?:
|
241
|
+
cellType?: "string" | "number" | undefined;
|
242
242
|
};
|
243
243
|
editRender: {
|
244
244
|
events?: {
|
@@ -274,7 +274,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
274
274
|
[key: string]: any;
|
275
275
|
} | undefined;
|
276
276
|
children?: any[] | undefined;
|
277
|
-
cellType?:
|
277
|
+
cellType?: "string" | "number" | undefined;
|
278
278
|
};
|
279
279
|
contentRender: {
|
280
280
|
options?: any[] | undefined;
|
@@ -301,7 +301,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
301
301
|
[key: string]: (...args: any[]) => any;
|
302
302
|
} | undefined;
|
303
303
|
children?: any[] | undefined;
|
304
|
-
cellType?:
|
304
|
+
cellType?: "string" | "number" | undefined;
|
305
305
|
};
|
306
306
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
307
307
|
slots: {
|
@@ -339,7 +339,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
339
339
|
update: boolean;
|
340
340
|
value: any;
|
341
341
|
};
|
342
|
-
children: any[];
|
342
|
+
children: /*elided*/ any[];
|
343
343
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
344
344
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
345
345
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -377,7 +377,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
377
377
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
378
378
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
379
379
|
filters: {
|
380
|
-
label?:
|
380
|
+
label?: string | number | undefined;
|
381
381
|
value?: any;
|
382
382
|
data?: any;
|
383
383
|
resetValue?: any;
|
@@ -411,7 +411,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
411
411
|
[key: string]: (...args: any[]) => any;
|
412
412
|
} | undefined;
|
413
413
|
children?: any[] | undefined;
|
414
|
-
cellType?:
|
414
|
+
cellType?: "string" | "number" | undefined;
|
415
415
|
};
|
416
416
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
417
417
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -467,7 +467,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
467
467
|
[key: string]: any;
|
468
468
|
} | undefined;
|
469
469
|
children?: any[] | undefined;
|
470
|
-
cellType?:
|
470
|
+
cellType?: "string" | "number" | undefined;
|
471
471
|
};
|
472
472
|
editRender: {
|
473
473
|
events?: {
|
@@ -503,7 +503,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
503
503
|
[key: string]: any;
|
504
504
|
} | undefined;
|
505
505
|
children?: any[] | undefined;
|
506
|
-
cellType?:
|
506
|
+
cellType?: "string" | "number" | undefined;
|
507
507
|
};
|
508
508
|
contentRender: {
|
509
509
|
options?: any[] | undefined;
|
@@ -530,7 +530,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
530
530
|
[key: string]: (...args: any[]) => any;
|
531
531
|
} | undefined;
|
532
532
|
children?: any[] | undefined;
|
533
|
-
cellType?:
|
533
|
+
cellType?: "string" | "number" | undefined;
|
534
534
|
};
|
535
535
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
536
536
|
slots: {
|
@@ -568,7 +568,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
568
568
|
update: boolean;
|
569
569
|
value: any;
|
570
570
|
};
|
571
|
-
children: any[];
|
571
|
+
children: /*elided*/ any[];
|
572
572
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
573
573
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
574
574
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -33,7 +33,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
33
33
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
34
34
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
35
35
|
filters: {
|
36
|
-
label?:
|
36
|
+
label?: string | number | undefined;
|
37
37
|
value?: any;
|
38
38
|
data?: any;
|
39
39
|
resetValue?: any;
|
@@ -67,7 +67,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
67
67
|
[key: string]: (...args: any[]) => any;
|
68
68
|
} | undefined;
|
69
69
|
children?: any[] | undefined;
|
70
|
-
cellType?:
|
70
|
+
cellType?: "string" | "number" | undefined;
|
71
71
|
};
|
72
72
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
73
73
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -123,7 +123,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
123
123
|
[key: string]: any;
|
124
124
|
} | undefined;
|
125
125
|
children?: any[] | undefined;
|
126
|
-
cellType?:
|
126
|
+
cellType?: "string" | "number" | undefined;
|
127
127
|
};
|
128
128
|
editRender: {
|
129
129
|
events?: {
|
@@ -159,7 +159,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
159
159
|
[key: string]: any;
|
160
160
|
} | undefined;
|
161
161
|
children?: any[] | undefined;
|
162
|
-
cellType?:
|
162
|
+
cellType?: "string" | "number" | undefined;
|
163
163
|
};
|
164
164
|
contentRender: {
|
165
165
|
options?: any[] | undefined;
|
@@ -186,7 +186,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
186
186
|
[key: string]: (...args: any[]) => any;
|
187
187
|
} | undefined;
|
188
188
|
children?: any[] | undefined;
|
189
|
-
cellType?:
|
189
|
+
cellType?: "string" | "number" | undefined;
|
190
190
|
};
|
191
191
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
192
192
|
slots: {
|
@@ -224,7 +224,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
224
224
|
update: boolean;
|
225
225
|
value: any;
|
226
226
|
};
|
227
|
-
children: any[];
|
227
|
+
children: /*elided*/ any[];
|
228
228
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
229
229
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
230
230
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -262,7 +262,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
262
262
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
263
263
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
264
264
|
filters: {
|
265
|
-
label?:
|
265
|
+
label?: string | number | undefined;
|
266
266
|
value?: any;
|
267
267
|
data?: any;
|
268
268
|
resetValue?: any;
|
@@ -296,7 +296,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
296
296
|
[key: string]: (...args: any[]) => any;
|
297
297
|
} | undefined;
|
298
298
|
children?: any[] | undefined;
|
299
|
-
cellType?:
|
299
|
+
cellType?: "string" | "number" | undefined;
|
300
300
|
};
|
301
301
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
302
302
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -352,7 +352,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
352
352
|
[key: string]: any;
|
353
353
|
} | undefined;
|
354
354
|
children?: any[] | undefined;
|
355
|
-
cellType?:
|
355
|
+
cellType?: "string" | "number" | undefined;
|
356
356
|
};
|
357
357
|
editRender: {
|
358
358
|
events?: {
|
@@ -388,7 +388,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
388
388
|
[key: string]: any;
|
389
389
|
} | undefined;
|
390
390
|
children?: any[] | undefined;
|
391
|
-
cellType?:
|
391
|
+
cellType?: "string" | "number" | undefined;
|
392
392
|
};
|
393
393
|
contentRender: {
|
394
394
|
options?: any[] | undefined;
|
@@ -415,7 +415,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
415
415
|
[key: string]: (...args: any[]) => any;
|
416
416
|
} | undefined;
|
417
417
|
children?: any[] | undefined;
|
418
|
-
cellType?:
|
418
|
+
cellType?: "string" | "number" | undefined;
|
419
419
|
};
|
420
420
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
421
421
|
slots: {
|
@@ -453,7 +453,7 @@ export declare function useLoader(props: GridProps, vxeRef: Ref<VxeGridInstance
|
|
453
453
|
update: boolean;
|
454
454
|
value: any;
|
455
455
|
};
|
456
|
-
children: any[];
|
456
|
+
children: /*elided*/ any[];
|
457
457
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
458
458
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
459
459
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -32,7 +32,7 @@ export declare function useState(props: GridProps): {
|
|
32
32
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
33
33
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
34
34
|
filters: {
|
35
|
-
label?:
|
35
|
+
label?: string | number | undefined;
|
36
36
|
value?: any;
|
37
37
|
data?: any;
|
38
38
|
resetValue?: any;
|
@@ -66,7 +66,7 @@ export declare function useState(props: GridProps): {
|
|
66
66
|
[key: string]: (...args: any[]) => any;
|
67
67
|
} | undefined;
|
68
68
|
children?: any[] | undefined;
|
69
|
-
cellType?:
|
69
|
+
cellType?: "string" | "number" | undefined;
|
70
70
|
};
|
71
71
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
72
72
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -122,7 +122,7 @@ export declare function useState(props: GridProps): {
|
|
122
122
|
[key: string]: any;
|
123
123
|
} | undefined;
|
124
124
|
children?: any[] | undefined;
|
125
|
-
cellType?:
|
125
|
+
cellType?: "string" | "number" | undefined;
|
126
126
|
};
|
127
127
|
editRender: {
|
128
128
|
events?: {
|
@@ -158,7 +158,7 @@ export declare function useState(props: GridProps): {
|
|
158
158
|
[key: string]: any;
|
159
159
|
} | undefined;
|
160
160
|
children?: any[] | undefined;
|
161
|
-
cellType?:
|
161
|
+
cellType?: "string" | "number" | undefined;
|
162
162
|
};
|
163
163
|
contentRender: {
|
164
164
|
options?: any[] | undefined;
|
@@ -185,7 +185,7 @@ export declare function useState(props: GridProps): {
|
|
185
185
|
[key: string]: (...args: any[]) => any;
|
186
186
|
} | undefined;
|
187
187
|
children?: any[] | undefined;
|
188
|
-
cellType?:
|
188
|
+
cellType?: "string" | "number" | undefined;
|
189
189
|
};
|
190
190
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
191
191
|
slots: {
|
@@ -223,7 +223,7 @@ export declare function useState(props: GridProps): {
|
|
223
223
|
update: boolean;
|
224
224
|
value: any;
|
225
225
|
};
|
226
|
-
children: any[];
|
226
|
+
children: /*elided*/ any[];
|
227
227
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
228
228
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
229
229
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
@@ -261,7 +261,7 @@ export declare function useState(props: GridProps): {
|
|
261
261
|
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy;
|
262
262
|
sortType: import("vxe-table").VxeColumnPropTypes.SortType;
|
263
263
|
filters: {
|
264
|
-
label?:
|
264
|
+
label?: string | number | undefined;
|
265
265
|
value?: any;
|
266
266
|
data?: any;
|
267
267
|
resetValue?: any;
|
@@ -295,7 +295,7 @@ export declare function useState(props: GridProps): {
|
|
295
295
|
[key: string]: (...args: any[]) => any;
|
296
296
|
} | undefined;
|
297
297
|
children?: any[] | undefined;
|
298
|
-
cellType?:
|
298
|
+
cellType?: "string" | "number" | undefined;
|
299
299
|
};
|
300
300
|
treeNode: import("vxe-table").VxeColumnPropTypes.TreeNode;
|
301
301
|
visible: import("vxe-table").VxeColumnPropTypes.Visible;
|
@@ -351,7 +351,7 @@ export declare function useState(props: GridProps): {
|
|
351
351
|
[key: string]: any;
|
352
352
|
} | undefined;
|
353
353
|
children?: any[] | undefined;
|
354
|
-
cellType?:
|
354
|
+
cellType?: "string" | "number" | undefined;
|
355
355
|
};
|
356
356
|
editRender: {
|
357
357
|
events?: {
|
@@ -387,7 +387,7 @@ export declare function useState(props: GridProps): {
|
|
387
387
|
[key: string]: any;
|
388
388
|
} | undefined;
|
389
389
|
children?: any[] | undefined;
|
390
|
-
cellType?:
|
390
|
+
cellType?: "string" | "number" | undefined;
|
391
391
|
};
|
392
392
|
contentRender: {
|
393
393
|
options?: any[] | undefined;
|
@@ -414,7 +414,7 @@ export declare function useState(props: GridProps): {
|
|
414
414
|
[key: string]: (...args: any[]) => any;
|
415
415
|
} | undefined;
|
416
416
|
children?: any[] | undefined;
|
417
|
-
cellType?:
|
417
|
+
cellType?: "string" | "number" | undefined;
|
418
418
|
};
|
419
419
|
params: import("vxe-table").VxeColumnPropTypes.Params;
|
420
420
|
slots: {
|
@@ -452,7 +452,7 @@ export declare function useState(props: GridProps): {
|
|
452
452
|
update: boolean;
|
453
453
|
value: any;
|
454
454
|
};
|
455
|
-
children: any[];
|
455
|
+
children: /*elided*/ any[];
|
456
456
|
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
457
457
|
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
458
458
|
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|