@deskhero/dh_ui 1.20.2 → 1.20.4
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/dh_ui.es.js +17 -14
- package/dist/dh_ui.umd.js +6 -6
- package/dist/src/components/Modal.vue.d.ts +9 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/dh_ui.es.js
CHANGED
|
@@ -283,6 +283,10 @@ const _sfc_main$a = defineComponent({
|
|
|
283
283
|
hasCloseConfirmation: {
|
|
284
284
|
type: Boolean,
|
|
285
285
|
default: false
|
|
286
|
+
},
|
|
287
|
+
bodyClass: {
|
|
288
|
+
type: String,
|
|
289
|
+
default: ""
|
|
286
290
|
}
|
|
287
291
|
},
|
|
288
292
|
emits: ["close"],
|
|
@@ -299,14 +303,10 @@ const _hoisted_3$8 = {
|
|
|
299
303
|
class: "modal-header"
|
|
300
304
|
};
|
|
301
305
|
const _hoisted_4$6 = /* @__PURE__ */ createTextVNode("Modal header! ");
|
|
302
|
-
const _hoisted_5$6 =
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
};
|
|
306
|
-
const _hoisted_6$6 = /* @__PURE__ */ createTextVNode("Modal body! ");
|
|
307
|
-
const _hoisted_7$5 = { class: "modal-footer" };
|
|
308
|
-
const _hoisted_8$4 = /* @__PURE__ */ createTextVNode("Modal footer! ");
|
|
309
|
-
const _hoisted_9$4 = /* @__PURE__ */ createElementVNode("button", { class: "btn btn-primary" }, "Button right", -1);
|
|
306
|
+
const _hoisted_5$6 = /* @__PURE__ */ createTextVNode("Modal body! ");
|
|
307
|
+
const _hoisted_6$6 = { class: "modal-footer" };
|
|
308
|
+
const _hoisted_7$5 = /* @__PURE__ */ createTextVNode("Modal footer! ");
|
|
309
|
+
const _hoisted_8$4 = /* @__PURE__ */ createElementVNode("button", { class: "btn btn-primary" }, "Button right", -1);
|
|
310
310
|
function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
311
311
|
const _component_dh_icon = resolveComponent("dh-icon");
|
|
312
312
|
const _component_sidebar = resolveComponent("sidebar");
|
|
@@ -360,17 +360,20 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
360
360
|
_hoisted_4$6
|
|
361
361
|
])
|
|
362
362
|
]),
|
|
363
|
-
createElementVNode("section",
|
|
363
|
+
createElementVNode("section", {
|
|
364
|
+
id: "modalDescription",
|
|
365
|
+
class: normalizeClass(["modal-body", _ctx.bodyClass])
|
|
366
|
+
}, [
|
|
364
367
|
renderSlot(_ctx.$slots, "body", {}, () => [
|
|
365
|
-
|
|
368
|
+
_hoisted_5$6
|
|
366
369
|
])
|
|
367
|
-
]),
|
|
368
|
-
createElementVNode("footer",
|
|
370
|
+
], 2),
|
|
371
|
+
createElementVNode("footer", _hoisted_6$6, [
|
|
369
372
|
renderSlot(_ctx.$slots, "footer", {}, () => [
|
|
370
|
-
|
|
373
|
+
_hoisted_7$5
|
|
371
374
|
]),
|
|
372
375
|
renderSlot(_ctx.$slots, "footer-button-right", {}, () => [
|
|
373
|
-
|
|
376
|
+
_hoisted_8$4
|
|
374
377
|
])
|
|
375
378
|
])
|
|
376
379
|
], 2)
|