3h1-ui 3.0.0-next.230 → 3.0.0-next.232

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/es/index.js CHANGED
@@ -8064,7 +8064,8 @@ const modalProps = {
8064
8064
  okText: { type: String, default: "确定" },
8065
8065
  closeFunc: Function
8066
8066
  };
8067
- const basicProps$5 = Object.assign({}, modalProps, {
8067
+ const basicProps$5 = reactive({
8068
+ ...modalProps,
8068
8069
  defaultFullscreen: { type: Boolean },
8069
8070
  // Can it be full screen
8070
8071
  canFullscreen: { type: Boolean, default: true },
@@ -30058,7 +30059,7 @@ const ShyTag = /* @__PURE__ */ defineComponent({
30058
30059
  immediate: true
30059
30060
  });
30060
30061
  const tag2 = computed(() => {
30061
- return unref(optionsRef).find((item) => item[unref(fieldNames).value] == props2.value) ?? {
30062
+ return treeToList$1(unref(optionsRef)).find((item) => item[unref(fieldNames).value] == props2.value) ?? {
30062
30063
  [unref(fieldNames).label]: "-",
30063
30064
  [unref(fieldNames).color]: "var(--gray-5)",
30064
30065
  [unref(fieldNames).css]: ""
@@ -49690,6 +49691,7 @@ export {
49690
49691
  BasicHelp,
49691
49692
  BasicLabel,
49692
49693
  BasicModal,
49694
+ basicProps$5 as BasicModalProps,
49693
49695
  BasicResizeWrapper,
49694
49696
  ShyTable as BasicTable,
49695
49697
  Divider as BasicTitle,