@ebiz/designer-components 0.0.60 → 0.0.61

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.mjs CHANGED
@@ -59755,7 +59755,7 @@ const lW = /* @__PURE__ */ Je(e8, [["render", t8], ["__scopeId", "data-v-491f01c
59755
59755
  }
59756
59756
  },
59757
59757
  emits: [
59758
- "update:modelValue",
59758
+ "update:visible",
59759
59759
  "button-click",
59760
59760
  "dialog-close",
59761
59761
  "dialog-confirm",
@@ -59785,7 +59785,7 @@ const lW = /* @__PURE__ */ Je(e8, [["render", t8], ["__scopeId", "data-v-491f01c
59785
59785
  ce(() => a.visible, (_) => {
59786
59786
  o.value = _;
59787
59787
  }), ce(o, (_) => {
59788
- r("update:modelValue", _);
59788
+ r("update:visible", _);
59789
59789
  });
59790
59790
  const v = (_) => {
59791
59791
  o.value = !1, r("dialog-close", _);
@@ -60022,7 +60022,7 @@ const lW = /* @__PURE__ */ Je(e8, [["render", t8], ["__scopeId", "data-v-491f01c
60022
60022
  }, 8, ["visible", "header", "width", "top", "attach", "destroy-on-close", "mode", "placement", "show-overlay", "close-on-esc-keydown", "close-on-overlay-click", "show-footer"])
60023
60023
  ]));
60024
60024
  }
60025
- }, kW = /* @__PURE__ */ Je(QK, [["__scopeId", "data-v-51b1940e"]]);
60025
+ }, kW = /* @__PURE__ */ Je(QK, [["__scopeId", "data-v-358b8aaa"]]);
60026
60026
  export {
60027
60027
  sW as EbizAlert,
60028
60028
  wW as EbizApproval,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebiz/designer-components",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -252,7 +252,7 @@ const props = defineProps({
252
252
  })
253
253
 
254
254
  const emit = defineEmits([
255
- 'update:modelValue',
255
+ 'update:visible',
256
256
  'button-click',
257
257
  'dialog-close',
258
258
  'dialog-confirm',
@@ -292,7 +292,7 @@ watch(() => props.visible, (newVal) => {
292
292
 
293
293
  // 监听dialogVisible变化,同步更新modelValue
294
294
  watch(dialogVisible, (newVal) => {
295
- emit('update:modelValue', newVal)
295
+ emit('update:visible', newVal)
296
296
  })
297
297
 
298
298
  // 弹窗关闭事件