@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,7 +2,7 @@ import { defineComponent, resolveComponent, openBlock, createBlock, withCtx, cre
|
|
|
2
2
|
import { _VkfInputCtx, VkfInput } from '@vunk/form/components/input';
|
|
3
3
|
import { bindPropsFactory, onEmitsFactory } from '@vunk/core/shared/utils-vue';
|
|
4
4
|
import { ElButton, ElIcon, ElButtonGroup, ElUpload, ElMessage } from 'element-plus';
|
|
5
|
-
import { u as upload_default, e as edit_default, m as map_location_default,
|
|
5
|
+
import { u as upload_default, e as edit_default, m as map_location_default, b as document_checked_default } from '../index2.mjs';
|
|
6
6
|
import { _ as _export_sfc } from '../_plugin-vue_export-helper.mjs';
|
|
7
7
|
import { VaTdtBasemap, VaMapView, VaSketch, VaGraphicsLayer } from '@vuesri/core';
|
|
8
8
|
import MapView from '@arcgis/core/views/MapView';
|
|
@@ -135,7 +135,7 @@ var _sfc_main = vue.defineComponent({
|
|
|
135
135
|
const theSlots = {
|
|
136
136
|
labelActions: slots?.labelActions ? () => slots.labelActions?.() : void 0
|
|
137
137
|
};
|
|
138
|
-
const keys = ["labelActions"];
|
|
138
|
+
const keys = ["labelActions", "after"];
|
|
139
139
|
const formItemSlots = props2.formItemSlots;
|
|
140
140
|
formItemSlots && Object.keys(formItemSlots).filter((key) => keys.includes(key)).forEach((key) => {
|
|
141
141
|
const slot = formItemSlots?.[key];
|
|
@@ -180,10 +180,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
180
180
|
}), vue.createSlots({
|
|
181
181
|
default: vue.withCtx(() => [
|
|
182
182
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
183
|
+
_ctx.customSlots.after ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.customSlots.after), { key: 0 })) : vue.createCommentVNode("v-if", true),
|
|
183
184
|
_ctx.formItemTip ? (vue.openBlock(), vue.createElementBlock(
|
|
184
185
|
"div",
|
|
185
186
|
{
|
|
186
|
-
key:
|
|
187
|
+
key: 1,
|
|
187
188
|
class: vue.normalizeClass(["vkf-form-item__tip", _ctx.formItemTipClass])
|
|
188
189
|
},
|
|
189
190
|
[
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { formItemProps, ElFormItem, ElIcon, ElTooltip, ElButton, useGlobalConfig } from 'element-plus';
|
|
2
2
|
import { bindPropsFactory } from '@vunk/core/shared/utils-vue';
|
|
3
|
-
import { defineComponent, computed, resolveComponent, openBlock, createBlock, mergeProps, createSlots, withCtx, renderSlot, createElementBlock, normalizeClass, createElementVNode, toDisplayString,
|
|
3
|
+
import { defineComponent, computed, resolveComponent, openBlock, createBlock, mergeProps, createSlots, withCtx, renderSlot, resolveDynamicComponent, createCommentVNode, createElementBlock, normalizeClass, createElementVNode, toDisplayString, createVNode, renderList } from 'vue';
|
|
4
4
|
import { createFormItemBindProps } from '@vunk/form/shared/element-plus';
|
|
5
5
|
import { useComputedReadonly } from '@vunk/form/composables';
|
|
6
6
|
import { isPlainObject } from '@vunk/core/shared/utils-object';
|
|
@@ -131,7 +131,7 @@ var _sfc_main = defineComponent({
|
|
|
131
131
|
const theSlots = {
|
|
132
132
|
labelActions: slots?.labelActions ? () => slots.labelActions?.() : void 0
|
|
133
133
|
};
|
|
134
|
-
const keys = ["labelActions"];
|
|
134
|
+
const keys = ["labelActions", "after"];
|
|
135
135
|
const formItemSlots = props2.formItemSlots;
|
|
136
136
|
formItemSlots && Object.keys(formItemSlots).filter((key) => keys.includes(key)).forEach((key) => {
|
|
137
137
|
const slot = formItemSlots?.[key];
|
|
@@ -176,10 +176,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
176
176
|
}), createSlots({
|
|
177
177
|
default: withCtx(() => [
|
|
178
178
|
renderSlot(_ctx.$slots, "default"),
|
|
179
|
+
_ctx.customSlots.after ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.customSlots.after), { key: 0 })) : createCommentVNode("v-if", true),
|
|
179
180
|
_ctx.formItemTip ? (openBlock(), createElementBlock(
|
|
180
181
|
"div",
|
|
181
182
|
{
|
|
182
|
-
key:
|
|
183
|
+
key: 1,
|
|
183
184
|
class: normalizeClass(["vkf-form-item__tip", _ctx.formItemTipClass])
|
|
184
185
|
},
|
|
185
186
|
[
|
package/components/index2.cjs
CHANGED
|
@@ -62,6 +62,24 @@ var circle_close_filled_vue_vue_type_script_setup_true_lang_default = /* @__PURE
|
|
|
62
62
|
|
|
63
63
|
// src/components/circle-close-filled.vue
|
|
64
64
|
var circle_close_filled_default = circle_close_filled_vue_vue_type_script_setup_true_lang_default;
|
|
65
|
+
var close_bold_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
|
|
66
|
+
name: "CloseBold",
|
|
67
|
+
__name: "close-bold",
|
|
68
|
+
setup(__props) {
|
|
69
|
+
return (_ctx, _cache) => (vue.openBlock(), vue.createElementBlock("svg", {
|
|
70
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
71
|
+
viewBox: "0 0 1024 1024"
|
|
72
|
+
}, [
|
|
73
|
+
vue.createElementVNode("path", {
|
|
74
|
+
fill: "currentColor",
|
|
75
|
+
d: "M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"
|
|
76
|
+
})
|
|
77
|
+
]));
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
// src/components/close-bold.vue
|
|
82
|
+
var close_bold_default = close_bold_vue_vue_type_script_setup_true_lang_default;
|
|
65
83
|
var close_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
|
|
66
84
|
name: "Close",
|
|
67
85
|
__name: "close",
|
|
@@ -250,6 +268,24 @@ var right_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defi
|
|
|
250
268
|
|
|
251
269
|
// src/components/right.vue
|
|
252
270
|
var right_default = right_vue_vue_type_script_setup_true_lang_default;
|
|
271
|
+
var select_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
|
|
272
|
+
name: "Select",
|
|
273
|
+
__name: "select",
|
|
274
|
+
setup(__props) {
|
|
275
|
+
return (_ctx, _cache) => (vue.openBlock(), vue.createElementBlock("svg", {
|
|
276
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
277
|
+
viewBox: "0 0 1024 1024"
|
|
278
|
+
}, [
|
|
279
|
+
vue.createElementVNode("path", {
|
|
280
|
+
fill: "currentColor",
|
|
281
|
+
d: "M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"
|
|
282
|
+
})
|
|
283
|
+
]));
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
// src/components/select.vue
|
|
288
|
+
var select_default = select_vue_vue_type_script_setup_true_lang_default;
|
|
253
289
|
var success_filled_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
|
|
254
290
|
name: "SuccessFilled",
|
|
255
291
|
__name: "success-filled",
|
|
@@ -344,6 +380,7 @@ var zoom_in_default = zoom_in_vue_vue_type_script_setup_true_lang_default;
|
|
|
344
380
|
exports.check_default = check_default;
|
|
345
381
|
exports.circle_check_default = circle_check_default;
|
|
346
382
|
exports.circle_close_filled_default = circle_close_filled_default;
|
|
383
|
+
exports.close_bold_default = close_bold_default;
|
|
347
384
|
exports.close_default = close_default;
|
|
348
385
|
exports.delete_default = delete_default;
|
|
349
386
|
exports.document_checked_default = document_checked_default;
|
|
@@ -354,6 +391,7 @@ exports.map_location_default = map_location_default;
|
|
|
354
391
|
exports.minus_default = minus_default;
|
|
355
392
|
exports.plus_default = plus_default;
|
|
356
393
|
exports.right_default = right_default;
|
|
394
|
+
exports.select_default = select_default;
|
|
357
395
|
exports.success_filled_default = success_filled_default;
|
|
358
396
|
exports.upload_default = upload_default;
|
|
359
397
|
exports.upload_filled_default = upload_filled_default;
|
package/components/index2.mjs
CHANGED
|
@@ -60,6 +60,24 @@ var circle_close_filled_vue_vue_type_script_setup_true_lang_default = /* @__PURE
|
|
|
60
60
|
|
|
61
61
|
// src/components/circle-close-filled.vue
|
|
62
62
|
var circle_close_filled_default = circle_close_filled_vue_vue_type_script_setup_true_lang_default;
|
|
63
|
+
var close_bold_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
64
|
+
name: "CloseBold",
|
|
65
|
+
__name: "close-bold",
|
|
66
|
+
setup(__props) {
|
|
67
|
+
return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
|
|
68
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
69
|
+
viewBox: "0 0 1024 1024"
|
|
70
|
+
}, [
|
|
71
|
+
createElementVNode("path", {
|
|
72
|
+
fill: "currentColor",
|
|
73
|
+
d: "M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"
|
|
74
|
+
})
|
|
75
|
+
]));
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
// src/components/close-bold.vue
|
|
80
|
+
var close_bold_default = close_bold_vue_vue_type_script_setup_true_lang_default;
|
|
63
81
|
var close_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
64
82
|
name: "Close",
|
|
65
83
|
__name: "close",
|
|
@@ -248,6 +266,24 @@ var right_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineCo
|
|
|
248
266
|
|
|
249
267
|
// src/components/right.vue
|
|
250
268
|
var right_default = right_vue_vue_type_script_setup_true_lang_default;
|
|
269
|
+
var select_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
270
|
+
name: "Select",
|
|
271
|
+
__name: "select",
|
|
272
|
+
setup(__props) {
|
|
273
|
+
return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
|
|
274
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
275
|
+
viewBox: "0 0 1024 1024"
|
|
276
|
+
}, [
|
|
277
|
+
createElementVNode("path", {
|
|
278
|
+
fill: "currentColor",
|
|
279
|
+
d: "M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"
|
|
280
|
+
})
|
|
281
|
+
]));
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
|
|
285
|
+
// src/components/select.vue
|
|
286
|
+
var select_default = select_vue_vue_type_script_setup_true_lang_default;
|
|
251
287
|
var success_filled_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
252
288
|
name: "SuccessFilled",
|
|
253
289
|
__name: "success-filled",
|
|
@@ -339,4 +375,4 @@ var zoom_in_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ define
|
|
|
339
375
|
// src/components/zoom-in.vue
|
|
340
376
|
var zoom_in_default = zoom_in_vue_vue_type_script_setup_true_lang_default;
|
|
341
377
|
|
|
342
|
-
export {
|
|
378
|
+
export { close_bold_default as a, document_checked_default as b, circle_close_filled_default as c, download_default as d, edit_default as e, minus_default as f, check_default as g, delete_default as h, close_default as i, circle_check_default as j, document_default as k, success_filled_default as l, map_location_default as m, upload_filled_default as n, plus_default as p, right_default as r, select_default as s, upload_default as u, warning_default as w, zoom_in_default as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, computed, createVNode, Fragment, ref, resolveComponent, openBlock, createBlock, withCtx, normalizeProps, guardReactiveProps, createSlots, createElementBlock, createTextVNode, createCommentVNode, renderSlot } from 'vue';
|
|
2
|
-
import { p as plus_default,
|
|
2
|
+
import { p as plus_default, f as minus_default } from '../index2.mjs';
|
|
3
3
|
import { ensetData, getValue } from '@vunk/core';
|
|
4
4
|
import { VkfFieldset } from '@vunk/form/components/fieldset';
|
|
5
5
|
import { _VkfFormItemCtx, VkfFormItem } from '@vunk/form/components/form-item';
|
|
@@ -204,8 +204,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
204
204
|
modelValue: NormalObject[];
|
|
205
205
|
columns: any[];
|
|
206
206
|
defaultExpandAll: boolean;
|
|
207
|
-
splicable: boolean;
|
|
208
207
|
labelActions: boolean;
|
|
208
|
+
splicable: boolean;
|
|
209
209
|
defaultItemValue: NormalObject;
|
|
210
210
|
}, {}, {
|
|
211
211
|
ElTable: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
@@ -864,7 +864,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
864
864
|
VkTableColumns: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
865
865
|
source: {
|
|
866
866
|
type: import("vue").PropType<__VkTableColumns.Source<any>[]>;
|
|
867
|
-
default: () =>
|
|
867
|
+
default: () => never[];
|
|
868
868
|
};
|
|
869
869
|
type: {
|
|
870
870
|
type: StringConstructor;
|
|
@@ -920,16 +920,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
920
920
|
};
|
|
921
921
|
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
922
922
|
sortOrders: {
|
|
923
|
-
type: import("vue").PropType<("ascending" | "descending")[]>;
|
|
924
|
-
default: () => string[];
|
|
925
|
-
validator: (val: ("ascending" | "descending")[]) => boolean;
|
|
923
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
924
|
+
default: () => (string | null)[];
|
|
925
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
926
926
|
};
|
|
927
927
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
928
928
|
[key: string]: any;
|
|
929
929
|
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
930
930
|
source: {
|
|
931
931
|
type: import("vue").PropType<__VkTableColumns.Source<any>[]>;
|
|
932
|
-
default: () =>
|
|
932
|
+
default: () => never[];
|
|
933
933
|
};
|
|
934
934
|
type: {
|
|
935
935
|
type: StringConstructor;
|
|
@@ -985,21 +985,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
985
985
|
};
|
|
986
986
|
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
987
987
|
sortOrders: {
|
|
988
|
-
type: import("vue").PropType<("ascending" | "descending")[]>;
|
|
989
|
-
default: () => string[];
|
|
990
|
-
validator: (val: ("ascending" | "descending")[]) => boolean;
|
|
988
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
989
|
+
default: () => (string | null)[];
|
|
990
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
991
991
|
};
|
|
992
992
|
}>> & Readonly<{}>, {
|
|
993
993
|
type: string;
|
|
994
|
-
|
|
994
|
+
source: __VkTableColumns.Source<any>[];
|
|
995
995
|
width: string | number;
|
|
996
|
+
sortOrders: ("ascending" | "descending" | null)[];
|
|
996
997
|
minWidth: string | number;
|
|
997
998
|
sortable: string | boolean;
|
|
998
999
|
resizable: boolean;
|
|
999
1000
|
showOverflowTooltip: boolean;
|
|
1000
1001
|
reserveSelection: boolean;
|
|
1001
1002
|
filterMultiple: boolean;
|
|
1002
|
-
source: __VkTableColumns.Source<any>[];
|
|
1003
1003
|
showTooltipWhenOverflow: boolean;
|
|
1004
1004
|
}, {}, {
|
|
1005
1005
|
ElTableColumn: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
@@ -1040,9 +1040,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1040
1040
|
align: StringConstructor;
|
|
1041
1041
|
headerAlign: StringConstructor;
|
|
1042
1042
|
showOverflowTooltip: {
|
|
1043
|
-
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
1043
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "placement" | "appendTo" | "offset" | "popperClass" | "showArrow" | "transition" | "effect" | "enterable" | "popperOptions" | "showAfter" | "hideAfter">> | undefined>;
|
|
1044
1044
|
default: undefined;
|
|
1045
1045
|
};
|
|
1046
|
+
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/table/src/util").TableOverflowTooltipFormatter<any> | undefined>;
|
|
1046
1047
|
fixed: (StringConstructor | BooleanConstructor)[];
|
|
1047
1048
|
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1048
1049
|
[key: string]: any;
|
|
@@ -1060,9 +1061,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1060
1061
|
filterClassName: StringConstructor;
|
|
1061
1062
|
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
1062
1063
|
sortOrders: {
|
|
1063
|
-
type: import("vue").PropType<("ascending" | "descending")[]>;
|
|
1064
|
-
default: () => string[];
|
|
1065
|
-
validator: (val: ("ascending" | "descending")[]) => boolean;
|
|
1064
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
1065
|
+
default: () => (string | null)[];
|
|
1066
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
1066
1067
|
};
|
|
1067
1068
|
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1068
1069
|
type: {
|
|
@@ -1102,9 +1103,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1102
1103
|
align: StringConstructor;
|
|
1103
1104
|
headerAlign: StringConstructor;
|
|
1104
1105
|
showOverflowTooltip: {
|
|
1105
|
-
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
1106
|
+
type: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "placement" | "appendTo" | "offset" | "popperClass" | "showArrow" | "transition" | "effect" | "enterable" | "popperOptions" | "showAfter" | "hideAfter">> | undefined>;
|
|
1106
1107
|
default: undefined;
|
|
1107
1108
|
};
|
|
1109
|
+
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/table/src/util").TableOverflowTooltipFormatter<any> | undefined>;
|
|
1108
1110
|
fixed: (StringConstructor | BooleanConstructor)[];
|
|
1109
1111
|
formatter: import("vue").PropType<(row: any, column: import("element-plus").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1110
1112
|
[key: string]: any;
|
|
@@ -1122,16 +1124,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1122
1124
|
filterClassName: StringConstructor;
|
|
1123
1125
|
index: import("vue").PropType<number | ((index: number) => number)>;
|
|
1124
1126
|
sortOrders: {
|
|
1125
|
-
type: import("vue").PropType<("ascending" | "descending")[]>;
|
|
1126
|
-
default: () => string[];
|
|
1127
|
-
validator: (val: ("ascending" | "descending")[]) => boolean;
|
|
1127
|
+
type: import("vue").PropType<("ascending" | "descending" | null)[]>;
|
|
1128
|
+
default: () => (string | null)[];
|
|
1129
|
+
validator: (val: ("ascending" | "descending" | null)[]) => boolean;
|
|
1128
1130
|
};
|
|
1129
1131
|
}>>, {
|
|
1130
|
-
type: string;
|
|
1131
1132
|
width: string | number;
|
|
1132
1133
|
minWidth: string | number;
|
|
1133
|
-
|
|
1134
|
-
|
|
1134
|
+
type: string;
|
|
1135
|
+
showOverflowTooltip: boolean | Partial<Pick<import("element-plus").ElTooltipProps, "placement" | "appendTo" | "offset" | "popperClass" | "showArrow" | "transition" | "effect" | "enterable" | "popperOptions" | "showAfter" | "hideAfter">> | undefined;
|
|
1136
|
+
sortOrders: ("ascending" | "descending" | null)[];
|
|
1135
1137
|
sortable: string | boolean;
|
|
1136
1138
|
resizable: boolean;
|
|
1137
1139
|
reserveSelection: boolean;
|
|
@@ -83,7 +83,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
83
83
|
}>;
|
|
84
84
|
coreEmits: {};
|
|
85
85
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
86
|
-
'update:modelValue':
|
|
86
|
+
'update:modelValue': null;
|
|
87
87
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
88
88
|
readonly: {
|
|
89
89
|
type: BooleanConstructor;
|
|
@@ -161,7 +161,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
161
161
|
inlineMessage: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
|
|
162
162
|
showMessage: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
163
163
|
}>> & Readonly<{
|
|
164
|
-
"onUpdate:modelValue"?: (...args:
|
|
164
|
+
"onUpdate:modelValue"?: (...args: unknown[]) => any;
|
|
165
165
|
}>, {
|
|
166
166
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
167
167
|
formItemSize: "default" | "small" | "large";
|
|
@@ -197,7 +197,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
197
197
|
}>, {
|
|
198
198
|
editorNode: import("vue").Ref<HTMLDivElement, HTMLDivElement>;
|
|
199
199
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
200
|
-
'update:modelValue':
|
|
200
|
+
'update:modelValue': null;
|
|
201
201
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
202
202
|
modelValue: {
|
|
203
203
|
type: StringConstructor;
|
|
@@ -212,11 +212,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
212
212
|
default: boolean;
|
|
213
213
|
};
|
|
214
214
|
}>> & Readonly<{
|
|
215
|
-
"onUpdate:modelValue"?: (...args: any[]
|
|
215
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
216
216
|
}>, {
|
|
217
217
|
modelValue: string;
|
|
218
|
-
defaultOptions: import("monaco-editor").editor.IStandaloneEditorConstructionOptions;
|
|
219
218
|
readOnly: boolean;
|
|
219
|
+
defaultOptions: import("monaco-editor").editor.IStandaloneEditorConstructionOptions;
|
|
220
220
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
221
221
|
VkfFormItem: {
|
|
222
222
|
new (...args: any[]): any;
|