@atooyu/uxto-ui 1.1.40 → 1.1.41
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/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +11 -11
- package/package.json +1 -1
- package/src/components/u-popup/u-popup.vue +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4486,7 +4486,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4486
4486
|
setup(__props, { emit: __emit }) {
|
|
4487
4487
|
const props = __props;
|
|
4488
4488
|
const emit = __emit;
|
|
4489
|
-
computed(() => {
|
|
4489
|
+
const isOpen = computed(() => {
|
|
4490
4490
|
if (props.show !== void 0) return props.show;
|
|
4491
4491
|
if (props.visible !== void 0) return props.visible;
|
|
4492
4492
|
return false;
|
|
@@ -4502,7 +4502,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4502
4502
|
emit("close");
|
|
4503
4503
|
};
|
|
4504
4504
|
return (_ctx, _cache) => {
|
|
4505
|
-
return
|
|
4505
|
+
return isOpen.value ? (openBlock(), createElementBlock("view", _hoisted_1$5, [
|
|
4506
4506
|
createElementVNode("view", {
|
|
4507
4507
|
class: "u-popup__overlay",
|
|
4508
4508
|
onClick: handleOverlayClick
|
|
@@ -4523,7 +4523,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4523
4523
|
};
|
|
4524
4524
|
}
|
|
4525
4525
|
});
|
|
4526
|
-
const uPopup = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-
|
|
4526
|
+
const uPopup = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-1c6a1eb0"]]);
|
|
4527
4527
|
const _hoisted_1$4 = { class: "u-code-input" };
|
|
4528
4528
|
const _hoisted_2$4 = { class: "u-code-input__wrapper" };
|
|
4529
4529
|
const _hoisted_3$4 = {
|