@vunk/form 2.9.2 → 2.10.0
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/components/api-tables-select/src/ctx.d.ts +42 -40
- package/components/api-tables-select/src/index.vue.d.ts +55 -54
- package/components/editable-text/index.cjs +266 -0
- package/components/editable-text/index.css +6 -0
- package/components/editable-text/index.d.ts +4 -0
- package/components/editable-text/index.mjs +260 -0
- package/components/editable-text/src/ctx.d.ts +89 -0
- package/components/editable-text/src/index.vue.d.ts +823 -0
- package/components/editable-text/src/types.d.ts +1 -0
- package/components/esri-input-geojson/index.mjs +1 -1
- package/components/form-item/index.cjs +3 -2
- package/components/form-item/index.mjs +4 -3
- package/components/form-item/src/types.d.ts +4 -2
- package/components/index2.cjs +38 -0
- package/components/index2.mjs +37 -1
- package/components/input-collection/index.mjs +1 -1
- package/components/input-collection/src/index.vue.d.ts +24 -22
- package/components/monaco-editor/src/ctx.d.ts +1 -1
- package/components/monaco-editor/src/index.vue.d.ts +5 -5
- package/components/tables-select/src/ctx.d.ts +60 -58
- package/components/tables-select/src/index.vue.d.ts +2351 -2228
- package/components/upload/index.cjs +1 -0
- package/components/upload/index.mjs +2 -1
- package/components/upload/src/index.vue.d.ts +2 -0
- package/components/upload-plus/index.mjs +1 -1
- package/components/vditor/src/index.vue.d.ts +16 -16
- package/index.css +7 -0
- package/package.json +9 -1
|
@@ -70,7 +70,7 @@ export declare const props: {
|
|
|
70
70
|
};
|
|
71
71
|
disabled: {
|
|
72
72
|
type: BooleanConstructor;
|
|
73
|
-
default:
|
|
73
|
+
default: undefined;
|
|
74
74
|
};
|
|
75
75
|
selectionHidden: {
|
|
76
76
|
type: BooleanConstructor;
|
|
@@ -90,11 +90,11 @@ export declare const props: {
|
|
|
90
90
|
};
|
|
91
91
|
tableStyle: {
|
|
92
92
|
type: PropType<import("vue").CSSProperties>;
|
|
93
|
-
default:
|
|
93
|
+
default: undefined;
|
|
94
94
|
};
|
|
95
95
|
layout: {
|
|
96
96
|
type: StringConstructor;
|
|
97
|
-
default:
|
|
97
|
+
default: undefined;
|
|
98
98
|
};
|
|
99
99
|
pageSize: {
|
|
100
100
|
type: NumberConstructor;
|
|
@@ -106,11 +106,11 @@ export declare const props: {
|
|
|
106
106
|
};
|
|
107
107
|
start: {
|
|
108
108
|
type: NumberConstructor;
|
|
109
|
-
default:
|
|
109
|
+
default: undefined;
|
|
110
110
|
};
|
|
111
111
|
columns: {
|
|
112
112
|
type: PropType<import("@vunk/plus/components/tables-v1/src/types").Column[]>;
|
|
113
|
-
default: () =>
|
|
113
|
+
default: () => never[];
|
|
114
114
|
};
|
|
115
115
|
modules: {
|
|
116
116
|
type: PropType<"pagination"[]>;
|
|
@@ -126,35 +126,44 @@ export declare const props: {
|
|
|
126
126
|
};
|
|
127
127
|
elRef: {
|
|
128
128
|
type: PropType<import("@vunk/core").AnyFunc>;
|
|
129
|
-
default:
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
131
|
+
duplexFull: {
|
|
132
|
+
type: BooleanConstructor;
|
|
133
|
+
default: boolean;
|
|
130
134
|
};
|
|
131
|
-
load: PropType<(row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void>;
|
|
132
135
|
data: {
|
|
133
136
|
type: PropType<any[]>;
|
|
134
|
-
default: () =>
|
|
137
|
+
default: () => never[];
|
|
135
138
|
};
|
|
136
139
|
size: {
|
|
137
140
|
readonly type: PropType<import("element-plus").ButtonType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
138
141
|
readonly required: false;
|
|
139
|
-
readonly validator: (val: unknown) => boolean;
|
|
142
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
143
|
__epPropKey: true;
|
|
141
144
|
};
|
|
145
|
+
load: PropType<((row: any, treeNode: import("element-plus").TreeNode, resolve: (data: any[]) => void) => void) | undefined>;
|
|
146
|
+
fit: {
|
|
147
|
+
type: BooleanConstructor;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
142
151
|
width: (StringConstructor | NumberConstructor)[];
|
|
143
|
-
showOverflowTooltip: PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
144
|
-
rowKey: PropType<string | ((row: any) => string)>;
|
|
145
|
-
summaryMethod: PropType<import("element-plus").SummaryMethod<any
|
|
146
|
-
rowClassName: PropType<import("element-plus").ColumnCls<any
|
|
147
|
-
rowStyle: PropType<import("element-plus").ColumnStyle<any
|
|
148
|
-
cellClassName: PropType<import("element-plus").CellCls<any
|
|
149
|
-
cellStyle: PropType<import("element-plus").CellStyle<any
|
|
150
|
-
headerRowClassName: PropType<import("element-plus").ColumnCls<any
|
|
151
|
-
headerRowStyle: PropType<import("element-plus").ColumnStyle<any
|
|
152
|
-
headerCellClassName: PropType<import("element-plus").CellCls<any
|
|
153
|
-
headerCellStyle: PropType<import("element-plus").CellStyle<any
|
|
154
|
-
expandRowKeys: PropType<
|
|
155
|
-
defaultSort: PropType<import("element-plus").Sort>;
|
|
156
|
-
tooltipOptions: PropType<Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
157
|
-
spanMethod: PropType<(data: {
|
|
152
|
+
showOverflowTooltip: PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "placement" | "appendTo" | "offset" | "popperClass" | "showArrow" | "transition" | "effect" | "enterable" | "popperOptions" | "showAfter" | "hideAfter">> | undefined>;
|
|
153
|
+
rowKey: PropType<string | ((row: any) => string) | undefined>;
|
|
154
|
+
summaryMethod: PropType<import("element-plus").SummaryMethod<any> | undefined>;
|
|
155
|
+
rowClassName: PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
156
|
+
rowStyle: PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
157
|
+
cellClassName: PropType<import("element-plus").CellCls<any> | undefined>;
|
|
158
|
+
cellStyle: PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
159
|
+
headerRowClassName: PropType<import("element-plus").ColumnCls<any> | undefined>;
|
|
160
|
+
headerRowStyle: PropType<import("element-plus").ColumnStyle<any> | undefined>;
|
|
161
|
+
headerCellClassName: PropType<import("element-plus").CellCls<any> | undefined>;
|
|
162
|
+
headerCellStyle: PropType<import("element-plus").CellStyle<any> | undefined>;
|
|
163
|
+
expandRowKeys: PropType<string[] | undefined>;
|
|
164
|
+
defaultSort: PropType<import("element-plus").Sort | undefined>;
|
|
165
|
+
tooltipOptions: PropType<Partial<Pick<import("element-plus").ElTooltipProps, "placement" | "appendTo" | "offset" | "popperClass" | "showArrow" | "transition" | "effect" | "enterable" | "popperOptions" | "showAfter" | "hideAfter">> | undefined>;
|
|
166
|
+
spanMethod: PropType<((data: {
|
|
158
167
|
row: any;
|
|
159
168
|
rowIndex: number;
|
|
160
169
|
column: import("element-plus").TableColumnCtx<any>;
|
|
@@ -162,24 +171,16 @@ export declare const props: {
|
|
|
162
171
|
}) => number[] | {
|
|
163
172
|
rowspan: number;
|
|
164
173
|
colspan: number;
|
|
165
|
-
}>;
|
|
174
|
+
} | undefined) | undefined>;
|
|
166
175
|
treeProps: {
|
|
167
|
-
type: PropType<
|
|
168
|
-
hasChildren?: string;
|
|
169
|
-
children?: string;
|
|
170
|
-
}>;
|
|
176
|
+
type: PropType<import("element-plus/es/components/table/src/table/defaults").TreeProps | undefined>;
|
|
171
177
|
default: () => {
|
|
172
178
|
hasChildren: string;
|
|
173
179
|
children: string;
|
|
174
180
|
checkStrictly: boolean;
|
|
175
181
|
};
|
|
176
182
|
};
|
|
177
|
-
height: (StringConstructor | NumberConstructor)[];
|
|
178
183
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
179
|
-
fit: {
|
|
180
|
-
type: BooleanConstructor;
|
|
181
|
-
default: boolean;
|
|
182
|
-
};
|
|
183
184
|
stripe: BooleanConstructor;
|
|
184
185
|
showHeader: {
|
|
185
186
|
type: BooleanConstructor;
|
|
@@ -210,7 +211,7 @@ export declare const props: {
|
|
|
210
211
|
appendFilterPanelTo: StringConstructor;
|
|
211
212
|
scrollbarTabindex: {
|
|
212
213
|
type: (StringConstructor | NumberConstructor)[];
|
|
213
|
-
default:
|
|
214
|
+
default: undefined;
|
|
214
215
|
};
|
|
215
216
|
defaultPageSize: NumberConstructor;
|
|
216
217
|
total: NumberConstructor;
|
|
@@ -227,6 +228,7 @@ export declare const props: {
|
|
|
227
228
|
small: BooleanConstructor;
|
|
228
229
|
background: BooleanConstructor;
|
|
229
230
|
hideOnSinglePage: BooleanConstructor;
|
|
231
|
+
appendSizeTo: StringConstructor;
|
|
230
232
|
type: {
|
|
231
233
|
type: StringConstructor;
|
|
232
234
|
default: string;
|
|
@@ -273,9 +275,9 @@ export declare const props: {
|
|
|
273
275
|
};
|
|
274
276
|
index: PropType<number | ((index: number) => number)>;
|
|
275
277
|
sortOrders: {
|
|
276
|
-
type: PropType<("ascending" | "descending")[]>;
|
|
277
|
-
default: () => string[];
|
|
278
|
-
validator: (val: ("ascending" | "descending")[]) => boolean;
|
|
278
|
+
type: PropType<("ascending" | "descending" | null)[]>;
|
|
279
|
+
default: () => (string | null)[];
|
|
280
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
279
281
|
};
|
|
280
282
|
required: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
281
283
|
formItemSize: {
|
|
@@ -322,29 +324,29 @@ export declare const props: {
|
|
|
322
324
|
inlineMessage: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
|
|
323
325
|
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
324
326
|
};
|
|
325
|
-
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"small", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"prop", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"teleported", keyof T2> | Extract<"className", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"fixed", keyof T2> | Extract<"data", keyof T2> | Extract<"filters", keyof T2> | Extract<"currentPage", keyof T2> | Extract<"pageSize", keyof T2> | Extract<"total", keyof T2> | Extract<"start", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"labelField", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"getRows", keyof T2> | Extract<"updateWhenCompleted", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"dialogClass", keyof T2> | Extract<"checkTrigger", keyof T2> | Extract<"oidField", keyof T2> | Extract<"selectionHidden", keyof T2> | Extract<"paginationDisabled", keyof T2> | Extract<"border", keyof T2> | Extract<"tableClass", keyof T2> | Extract<"tableStyle", keyof T2> | Extract<"layout", keyof T2> | Extract<"columns", keyof T2> | Extract<"modules", keyof T2> | Extract<"align", keyof T2> | Extract<"headerAlign", keyof T2> | Extract<"load", keyof T2> | Extract<"width", keyof T2> | Extract<"showOverflowTooltip", keyof T2> | Extract<"rowKey", keyof T2> | Extract<"summaryMethod", keyof T2> | Extract<"rowClassName", keyof T2> | Extract<"rowStyle", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"cellStyle", keyof T2> | Extract<"headerRowClassName", keyof T2> | Extract<"headerRowStyle", keyof T2> | Extract<"headerCellClassName", keyof T2> | Extract<"headerCellStyle", keyof T2> | Extract<"expandRowKeys", keyof T2> | Extract<"defaultSort", keyof T2> | Extract<"tooltipOptions", keyof T2> | Extract<"spanMethod", keyof T2> | Extract<"treeProps", keyof T2> | Extract<"height", keyof T2> | Extract<"maxHeight", keyof T2> | Extract<"fit", keyof T2> | Extract<"stripe", keyof T2> | Extract<"showHeader", keyof T2> | Extract<"showSummary", keyof T2> | Extract<"sumText", keyof T2> | Extract<"highlightCurrentRow", keyof T2> | Extract<"currentRowKey", keyof T2> | Extract<"emptyText", keyof T2> | Extract<"defaultExpandAll", keyof T2> | Extract<"tooltipEffect", keyof T2> | Extract<"selectOnIndeterminate", keyof T2> | Extract<"indent", keyof T2> | Extract<"lazy", keyof T2> | Extract<"tableLayout", keyof T2> | Extract<"scrollbarAlwaysOn", keyof T2> | Extract<"flexible", keyof T2> | Extract<"appendFilterPanelTo", keyof T2> | Extract<"scrollbarTabindex", keyof T2> | Extract<"defaultPageSize", keyof T2> | Extract<"pageCount", keyof T2> | Extract<"pagerCount", keyof T2> | Extract<"defaultCurrentPage", keyof T2> | Extract<"pageSizes", keyof T2> | Extract<"prevText", keyof T2> | Extract<"prevIcon", keyof T2> | Extract<"nextText", keyof T2> | Extract<"nextIcon", keyof T2> | Extract<"background", keyof T2> | Extract<"hideOnSinglePage", keyof T2> | Extract<"labelClassName", keyof T2> | Extract<"property", keyof T2> | Extract<"minWidth", keyof T2> | Extract<"renderHeader", keyof T2> | Extract<"sortable", keyof T2> | Extract<"sortMethod", keyof T2> | Extract<"sortBy", keyof T2> | Extract<"resizable", keyof T2> | Extract<"columnKey", keyof T2> | Extract<"showTooltipWhenOverflow", keyof T2> | Extract<"formatter", keyof T2> | Extract<"selectable", keyof T2> | Extract<"reserveSelection", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"filteredValue", keyof T2> | Extract<"filterPlacement", keyof T2> | Extract<"filterMultiple", keyof T2> | Extract<"index", keyof T2> | Extract<"sortOrders", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "load" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "height" | "maxHeight" | "fit" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>, KE> : Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "load" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "height" | "maxHeight" | "fit" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>]: { [k in Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "load" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "height" | "maxHeight" | "fit" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>]: T2[k]; }[P]; }>;
|
|
327
|
+
export declare const createBindProps: <T2 extends import("@vunk/core").NormalObject, EX extends (Extract<"size", keyof T2> | Extract<"type", keyof T2> | Extract<"required", keyof T2> | Extract<"small", keyof T2> | Extract<"formItemSize", keyof T2> | Extract<"formItemSlots", keyof T2> | Extract<"elRef", keyof T2> | Extract<"inline", keyof T2> | Extract<"readonly", keyof T2> | Extract<"formItemTip", keyof T2> | Extract<"formItemTipClass", keyof T2> | Extract<"labelTip", keyof T2> | Extract<"information", keyof T2> | Extract<"label", keyof T2> | Extract<"labelWidth", keyof T2> | Extract<"labelPosition", keyof T2> | Extract<"prop", keyof T2> | Extract<"rules", keyof T2> | Extract<"error", keyof T2> | Extract<"validateStatus", keyof T2> | Extract<"for", keyof T2> | Extract<"inlineMessage", keyof T2> | Extract<"showMessage", keyof T2> | Extract<"disabled", keyof T2> | Extract<"teleported", keyof T2> | Extract<"className", keyof T2> | Extract<"popperClass", keyof T2> | Extract<"fixed", keyof T2> | Extract<"data", keyof T2> | Extract<"filters", keyof T2> | Extract<"currentPage", keyof T2> | Extract<"pageSize", keyof T2> | Extract<"total", keyof T2> | Extract<"start", keyof T2> | Extract<"modelValue", keyof T2> | Extract<"labelField", keyof T2> | Extract<"clearable", keyof T2> | Extract<"multiple", keyof T2> | Extract<"getRows", keyof T2> | Extract<"updateWhenCompleted", keyof T2> | Extract<"stringify", keyof T2> | Extract<"placeholder", keyof T2> | Extract<"dialogClass", keyof T2> | Extract<"checkTrigger", keyof T2> | Extract<"oidField", keyof T2> | Extract<"selectionHidden", keyof T2> | Extract<"paginationDisabled", keyof T2> | Extract<"border", keyof T2> | Extract<"tableClass", keyof T2> | Extract<"tableStyle", keyof T2> | Extract<"layout", keyof T2> | Extract<"columns", keyof T2> | Extract<"modules", keyof T2> | Extract<"align", keyof T2> | Extract<"headerAlign", keyof T2> | Extract<"duplexFull", keyof T2> | Extract<"load", keyof T2> | Extract<"fit", keyof T2> | Extract<"height", keyof T2> | Extract<"width", keyof T2> | Extract<"showOverflowTooltip", keyof T2> | Extract<"rowKey", keyof T2> | Extract<"summaryMethod", keyof T2> | Extract<"rowClassName", keyof T2> | Extract<"rowStyle", keyof T2> | Extract<"cellClassName", keyof T2> | Extract<"cellStyle", keyof T2> | Extract<"headerRowClassName", keyof T2> | Extract<"headerRowStyle", keyof T2> | Extract<"headerCellClassName", keyof T2> | Extract<"headerCellStyle", keyof T2> | Extract<"expandRowKeys", keyof T2> | Extract<"defaultSort", keyof T2> | Extract<"tooltipOptions", keyof T2> | Extract<"spanMethod", keyof T2> | Extract<"treeProps", keyof T2> | Extract<"maxHeight", keyof T2> | Extract<"stripe", keyof T2> | Extract<"showHeader", keyof T2> | Extract<"showSummary", keyof T2> | Extract<"sumText", keyof T2> | Extract<"highlightCurrentRow", keyof T2> | Extract<"currentRowKey", keyof T2> | Extract<"emptyText", keyof T2> | Extract<"defaultExpandAll", keyof T2> | Extract<"tooltipEffect", keyof T2> | Extract<"selectOnIndeterminate", keyof T2> | Extract<"indent", keyof T2> | Extract<"lazy", keyof T2> | Extract<"tableLayout", keyof T2> | Extract<"scrollbarAlwaysOn", keyof T2> | Extract<"flexible", keyof T2> | Extract<"appendFilterPanelTo", keyof T2> | Extract<"scrollbarTabindex", keyof T2> | Extract<"defaultPageSize", keyof T2> | Extract<"pageCount", keyof T2> | Extract<"pagerCount", keyof T2> | Extract<"defaultCurrentPage", keyof T2> | Extract<"pageSizes", keyof T2> | Extract<"prevText", keyof T2> | Extract<"prevIcon", keyof T2> | Extract<"nextText", keyof T2> | Extract<"nextIcon", keyof T2> | Extract<"background", keyof T2> | Extract<"hideOnSinglePage", keyof T2> | Extract<"appendSizeTo", keyof T2> | Extract<"labelClassName", keyof T2> | Extract<"property", keyof T2> | Extract<"minWidth", keyof T2> | Extract<"renderHeader", keyof T2> | Extract<"sortable", keyof T2> | Extract<"sortMethod", keyof T2> | Extract<"sortBy", keyof T2> | Extract<"resizable", keyof T2> | Extract<"columnKey", keyof T2> | Extract<"showTooltipWhenOverflow", keyof T2> | Extract<"formatter", keyof T2> | Extract<"selectable", keyof T2> | Extract<"reserveSelection", keyof T2> | Extract<"filterMethod", keyof T2> | Extract<"filteredValue", keyof T2> | Extract<"filterPlacement", keyof T2> | Extract<"filterMultiple", keyof T2> | Extract<"index", keyof T2> | Extract<"sortOrders", keyof T2>)[]>(propsArg: T2, excludes?: EX) => import("vue").ComputedRef<{ [P in EX extends (infer KE)[] ? Exclude<Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "duplexFull" | "load" | "fit" | "height" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "maxHeight" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "appendSizeTo" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>, KE> : Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "duplexFull" | "load" | "fit" | "height" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "maxHeight" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "appendSizeTo" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>]: { [k in Extract<"size" | "type" | "required" | "small" | "formItemSize" | "formItemSlots" | "elRef" | "inline" | "readonly" | "formItemTip" | "formItemTipClass" | "labelTip" | "information" | "label" | "labelWidth" | "labelPosition" | "prop" | "rules" | "error" | "validateStatus" | "for" | "inlineMessage" | "showMessage" | "disabled" | "teleported" | "className" | "popperClass" | "fixed" | "data" | "filters" | "currentPage" | "pageSize" | "total" | "start" | "modelValue" | "labelField" | "clearable" | "multiple" | "getRows" | "updateWhenCompleted" | "stringify" | "placeholder" | "dialogClass" | "checkTrigger" | "oidField" | "selectionHidden" | "paginationDisabled" | "border" | "tableClass" | "tableStyle" | "layout" | "columns" | "modules" | "align" | "headerAlign" | "duplexFull" | "load" | "fit" | "height" | "width" | "showOverflowTooltip" | "rowKey" | "summaryMethod" | "rowClassName" | "rowStyle" | "cellClassName" | "cellStyle" | "headerRowClassName" | "headerRowStyle" | "headerCellClassName" | "headerCellStyle" | "expandRowKeys" | "defaultSort" | "tooltipOptions" | "spanMethod" | "treeProps" | "maxHeight" | "stripe" | "showHeader" | "showSummary" | "sumText" | "highlightCurrentRow" | "currentRowKey" | "emptyText" | "defaultExpandAll" | "tooltipEffect" | "selectOnIndeterminate" | "indent" | "lazy" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "appendFilterPanelTo" | "scrollbarTabindex" | "defaultPageSize" | "pageCount" | "pagerCount" | "defaultCurrentPage" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage" | "appendSizeTo" | "labelClassName" | "property" | "minWidth" | "renderHeader" | "sortable" | "sortMethod" | "sortBy" | "resizable" | "columnKey" | "showTooltipWhenOverflow" | "formatter" | "selectable" | "reserveSelection" | "filterMethod" | "filteredValue" | "filterPlacement" | "filterMultiple" | "index" | "sortOrders", keyof T2>]: T2[k]; }[P]; }>;
|
|
326
328
|
export declare const emits: {
|
|
327
329
|
'update:modelValue': any;
|
|
328
330
|
'update:start': (val: number) => boolean;
|
|
329
|
-
select:
|
|
330
|
-
'select-all':
|
|
331
|
-
'selection-change':
|
|
332
|
-
'cell-mouse-enter':
|
|
333
|
-
'cell-mouse-leave':
|
|
334
|
-
'cell-contextmenu':
|
|
335
|
-
'cell-click':
|
|
336
|
-
'cell-dblclick':
|
|
337
|
-
'row-click':
|
|
338
|
-
'row-contextmenu':
|
|
339
|
-
'row-dblclick':
|
|
340
|
-
'header-click':
|
|
341
|
-
'header-contextmenu':
|
|
342
|
-
'sort-change':
|
|
343
|
-
'filter-change':
|
|
344
|
-
'current-change':
|
|
345
|
-
'header-dragend':
|
|
346
|
-
'expand-change':
|
|
347
|
-
scroll:
|
|
331
|
+
select: null;
|
|
332
|
+
'select-all': null;
|
|
333
|
+
'selection-change': null;
|
|
334
|
+
'cell-mouse-enter': null;
|
|
335
|
+
'cell-mouse-leave': null;
|
|
336
|
+
'cell-contextmenu': null;
|
|
337
|
+
'cell-click': null;
|
|
338
|
+
'cell-dblclick': null;
|
|
339
|
+
'row-click': null;
|
|
340
|
+
'row-contextmenu': null;
|
|
341
|
+
'row-dblclick': null;
|
|
342
|
+
'header-click': null;
|
|
343
|
+
'header-contextmenu': null;
|
|
344
|
+
'sort-change': null;
|
|
345
|
+
'filter-change': null;
|
|
346
|
+
'current-change': null;
|
|
347
|
+
'header-dragend': null;
|
|
348
|
+
'expand-change': null;
|
|
349
|
+
scroll: null;
|
|
348
350
|
'update:current-page': (val: number) => boolean;
|
|
349
351
|
'update:page-size': (val: number) => boolean;
|
|
350
352
|
'size-change': (val: number) => boolean;
|