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/lib/index.js CHANGED
@@ -8088,7 +8088,8 @@ const modalProps = {
8088
8088
  okText: { type: String, default: "确定" },
8089
8089
  closeFunc: Function
8090
8090
  };
8091
- const basicProps$5 = Object.assign({}, modalProps, {
8091
+ const basicProps$5 = vue.reactive({
8092
+ ...modalProps,
8092
8093
  defaultFullscreen: { type: Boolean },
8093
8094
  // Can it be full screen
8094
8095
  canFullscreen: { type: Boolean, default: true },
@@ -30082,7 +30083,7 @@ const ShyTag = /* @__PURE__ */ vue.defineComponent({
30082
30083
  immediate: true
30083
30084
  });
30084
30085
  const tag2 = vue.computed(() => {
30085
- return vue.unref(optionsRef).find((item) => item[vue.unref(fieldNames).value] == props2.value) ?? {
30086
+ return utils$1.treeToList(vue.unref(optionsRef)).find((item) => item[vue.unref(fieldNames).value] == props2.value) ?? {
30086
30087
  [vue.unref(fieldNames).label]: "-",
30087
30088
  [vue.unref(fieldNames).color]: "var(--gray-5)",
30088
30089
  [vue.unref(fieldNames).css]: ""
@@ -49713,6 +49714,7 @@ exports.BasicForm = ShyForm;
49713
49714
  exports.BasicHelp = BasicHelp;
49714
49715
  exports.BasicLabel = BasicLabel;
49715
49716
  exports.BasicModal = BasicModal;
49717
+ exports.BasicModalProps = basicProps$5;
49716
49718
  exports.BasicResizeWrapper = BasicResizeWrapper;
49717
49719
  exports.BasicTable = ShyTable;
49718
49720
  exports.BasicTitle = Divider;