cleek 2.3.49 → 2.3.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/cleek.es.js +3 -0
- package/dist/cleek.umd.js +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -18104,6 +18104,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
18104
18104
|
notCloseBtn: { type: Boolean, default: false },
|
|
18105
18105
|
notCloseByBg: { type: Boolean, default: false },
|
|
18106
18106
|
preventCloseOnCancel: { type: Boolean, default: false },
|
|
18107
|
+
width: { type: String, default: void 0 },
|
|
18107
18108
|
maxWidth: { type: String, default: void 0 }
|
|
18108
18109
|
},
|
|
18109
18110
|
emits: ["update:modelValue", "cancel", "accept"],
|
|
@@ -18121,6 +18122,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
18121
18122
|
const list = [];
|
|
18122
18123
|
if (props.maxWidth)
|
|
18123
18124
|
list.push({ maxWidth: props.maxWidth });
|
|
18125
|
+
if (props.width)
|
|
18126
|
+
list.push({ width: props.width });
|
|
18124
18127
|
return list;
|
|
18125
18128
|
});
|
|
18126
18129
|
function onCancel() {
|