@fecp/designer 5.4.114 → 5.4.115

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.
@@ -6,7 +6,7 @@ import { useZIndex, defaultInitialZIndex, zIndexContextKey } from "../../../../h
6
6
  import { SIZE_INJECTION_KEY } from "../../../../hooks/use-size/index.mjs";
7
7
  import { emptyValuesContextKey } from "../../../../hooks/use-empty-values/index.mjs";
8
8
  import { configProviderContextKey } from "../constants.mjs";
9
- import { computed, unref, getCurrentInstance, inject, ref, provide } from "vue";
9
+ import { getCurrentInstance, inject, ref, computed, unref, provide } from "vue";
10
10
  const globalConfig = ref();
11
11
  function useGlobalConfig(key, defaultValue = void 0) {
12
12
  const config = getCurrentInstance() ? inject(configProviderContextKey, globalConfig) : globalConfig;
@@ -1,7 +1,7 @@
1
1
  import { useProp } from "../../../../hooks/use-prop/index.mjs";
2
2
  import { useGlobalSize } from "../../../../hooks/use-size/index.mjs";
3
3
  import { formContextKey, formItemContextKey } from "../constants.mjs";
4
- import { ref, inject, computed, unref } from "vue";
4
+ import { inject, computed, unref, ref } from "vue";
5
5
  const useFormSize = (fallback, ignore = {}) => {
6
6
  const emptyRef = ref(void 0);
7
7
  const size = ignore.prop ? emptyRef : useProp("size");
@@ -1,5 +1,5 @@
1
1
  import { definePropType } from "./props/runtime.mjs";
2
- import { CircleClose as circle_close_default, CircleCheck as circle_check_default, Loading as loading_default, Close as close_default, InfoFilled as info_filled_default, CircleCloseFilled as circle_close_filled_default, WarningFilled as warning_filled_default, SuccessFilled as success_filled_default } from "../../../../@element-plus/icons-vue/dist/index.mjs";
2
+ import { CircleClose as circle_close_default, CircleCheck as circle_check_default, Loading as loading_default, InfoFilled as info_filled_default, CircleCloseFilled as circle_close_filled_default, WarningFilled as warning_filled_default, SuccessFilled as success_filled_default, Close as close_default } from "../../../../@element-plus/icons-vue/dist/index.mjs";
3
3
  const iconPropType = definePropType([
4
4
  String,
5
5
  Object,
@@ -1,10 +1,10 @@
1
1
  import { inject, reactive, ref, computed, watch, nextTick, onActivated, onDeactivated, onMounted, onBeforeUnmount, onUnmounted, provide, h, Teleport } from "vue";
2
2
  import { defineVxeComponent } from "../../ui/src/comp.mjs";
3
3
  import XEUtils from "xe-utils";
4
- import { initTpImg, getEventTargetNode, hasClass, hasControlKey, isScale, toCssUnit, setScrollLeft, setScrollTop, removeClass, addClass, checkTargetElement, getTpImg, isPx, getPaddingTopBottomSize } from "../../ui/src/dom.mjs";
5
- import { isEnableConf, hasChildrenList, getFuncText, eqEmptyValue, getLastZIndex, nextZIndex, formatText } from "../../ui/src/utils.mjs";
4
+ import { initTpImg, setScrollLeft, setScrollTop, removeClass, addClass, isScale, getEventTargetNode, hasClass, hasControlKey, checkTargetElement, getTpImg, isPx, getPaddingTopBottomSize, toCssUnit } from "../../ui/src/dom.mjs";
5
+ import { isEnableConf, hasChildrenList, getLastZIndex, nextZIndex, getFuncText, eqEmptyValue, formatText } from "../../ui/src/utils.mjs";
6
6
  import "../../ui/index.mjs";
7
- import { createInternalData, getCalcHeight, restoreScrollLocation, getColumnList, hasDeepKey, setCellValue, getRowkey, getRowUniqueId, getRefElem, getRowid, createHandleGetRowId, getCellRestHeight, handleFieldOrColumn, colToVisible, rowToVisible, toFilters, getRootColumn, handleRowidOrRow, getCellValue, clearTableAllStatus, getColReMinWidth, getLastChildColumn, createHandleUpdateRowId, toTreePathSeq } from "./util.mjs";
7
+ import { createInternalData, getCalcHeight, hasDeepKey, restoreScrollLocation, getColumnList, createHandleGetRowId, getCellRestHeight, getRefElem, handleFieldOrColumn, colToVisible, rowToVisible, getRowid, toFilters, getRowkey, getRootColumn, handleRowidOrRow, getCellValue, setCellValue, clearTableAllStatus, getColReMinWidth, getLastChildColumn, createHandleUpdateRowId, toTreePathSeq, getRowUniqueId } from "./util.mjs";
8
8
  import { getSlotVNs } from "../../ui/src/vn.mjs";
9
9
  import { moveColAnimateToLr, moveRowAnimateToTb, clearRowAnimate, clearColAnimate } from "../../ui/src/anime.mjs";
10
10
  import { warnLog, errLog } from "../../ui/src/log.mjs";
@@ -1,3 +1,4 @@
1
+ import { Layout } from "./layout/index.mjs";
1
2
  import { Table } from "./table/index.mjs";
2
3
  import { Text } from "./forms/text/index.mjs";
3
4
  import { Textarea } from "./forms/textarea/index.mjs";
@@ -26,7 +27,6 @@ import { header } from "./details/header/index.mjs";
26
27
  import { footer } from "./details/footer/index.mjs";
27
28
  import { main } from "./details/main/index.mjs";
28
29
  import { customDialog } from "./dialog/customDialog/index.mjs";
29
- import { Layout } from "./layout/index.mjs";
30
30
  import { LayoutCard } from "./layout/layoutCard/index.mjs";
31
31
  export {
32
32
  ApprovalHistory,
@@ -2,7 +2,7 @@ import "../../../../../../node_modules/element-plus/es/index.mjs";
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  import { inject, computed, ref, createElementBlock, openBlock, Fragment, createCommentVNode, createVNode, createBlock, unref, createSlots, withCtx, renderList, createTextVNode, toDisplayString } from "vue";
5
- import _Table from "../../table/Table.vue.mjs";
5
+ import Table from "../../table/Table.vue.mjs";
6
6
  import { SubTitle } from "../subTitle/index.mjs";
7
7
  import { H2 } from "../h2/index.mjs";
8
8
  import { parseRouteParams } from "../../../utils/parseRouteParams.mjs";
@@ -186,7 +186,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
186
186
  config: __props.config
187
187
  }, null, 8, ["config"])) : createCommentVNode("", true)
188
188
  ])) : createCommentVNode("", true),
189
- createVNode(unref(_Table), {
189
+ createVNode(unref(Table), {
190
190
  ref_key: "tableRef",
191
191
  ref: tableRef,
192
192
  templateKey: __props.config.subTableKey,
@@ -898,7 +898,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
898
898
  };
899
899
  }
900
900
  });
901
- const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c35f81ee"]]);
901
+ const Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c35f81ee"]]);
902
902
  export {
903
- _Table as default
903
+ Table as default
904
904
  };
@@ -1,6 +1,6 @@
1
- import _Table from "./Table.vue.mjs";
1
+ import Table$1 from "./Table.vue.mjs";
2
2
  import install from "../../utils/install.mjs";
3
- const Table = install.withInstall("Table", _Table);
3
+ const Table = install.withInstall("Table", Table$1);
4
4
  export {
5
5
  Table,
6
6
  Table as default
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const version = "5.4.114";
3
+ const version = "5.4.115";
4
4
  const packageJson = {
5
5
  version
6
6
  };