mrxy-yk 1.7.6 → 1.7.8
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.
|
@@ -103,6 +103,7 @@ var FormDialog_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defin
|
|
|
103
103
|
modal: props.modal,
|
|
104
104
|
center: props.dialogCenter,
|
|
105
105
|
"show-close": props.showClose,
|
|
106
|
+
draggable: props.draggable,
|
|
106
107
|
onClose: _cache[3] || (_cache[3] = ($event) => unref(hook).close())
|
|
107
108
|
}, {
|
|
108
109
|
footer: withCtx(() => [renderSlot(_ctx.$slots, "footer", {}, () => [createElementVNode("div", _hoisted_1, [createVNode(_component_el_button, {
|
|
@@ -148,7 +149,8 @@ var FormDialog_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defin
|
|
|
148
149
|
"close-on-click-modal",
|
|
149
150
|
"modal",
|
|
150
151
|
"center",
|
|
151
|
-
"show-close"
|
|
152
|
+
"show-close",
|
|
153
|
+
"draggable"
|
|
152
154
|
]);
|
|
153
155
|
};
|
|
154
156
|
}
|
|
@@ -5,11 +5,11 @@ export namespace TableSlot {
|
|
|
5
5
|
column: TableColumnCtx<T>,
|
|
6
6
|
$index: number
|
|
7
7
|
}
|
|
8
|
-
export type D<T> = TableSlot.Default<T
|
|
8
|
+
export type D<T> = TableSlot.Default<Partial<T>>
|
|
9
9
|
|
|
10
10
|
export type Header<T> = {
|
|
11
11
|
column: TableColumnCtx<T>,
|
|
12
12
|
$index: number
|
|
13
13
|
}
|
|
14
|
-
export type H<T> = TableSlot.Header<T
|
|
14
|
+
export type H<T> = TableSlot.Header<Partial<T>>
|
|
15
15
|
}
|