@fecp/designer 5.4.114 → 5.4.116
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/designer/package.json.mjs +1 -1
- package/es/designer.css +670 -670
- package/es/node_modules/element-plus/es/components/config-provider/src/hooks/use-global-config.mjs +1 -1
- package/es/node_modules/element-plus/es/components/form/src/hooks/use-form-common-props.mjs +1 -1
- package/es/node_modules/element-plus/es/utils/vue/icon.mjs +1 -1
- package/es/node_modules/vxe-table/es/table/src/table.mjs +3 -3
- package/es/packages/vue/src/components/all.mjs +3 -3
- package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +2 -2
- package/es/packages/vue/src/components/table/Table.vue.mjs +2 -2
- package/es/packages/vue/src/components/table/index.mjs +2 -2
- package/lib/designer/package.json.js +1 -1
- package/lib/designer.css +670 -670
- package/lib/node_modules/vxe-table/es/ui/src/utils.js +5 -5
- package/lib/packages/vue/src/components/all.js +60 -60
- package/lib/packages/vue/src/components/table/Table.vue.js +2 -2
- package/package.json +1 -1
package/es/node_modules/element-plus/es/components/config-provider/src/hooks/use-global-config.mjs
CHANGED
|
@@ -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 {
|
|
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 {
|
|
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,
|
|
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,
|
|
5
|
-
import { isEnableConf, hasChildrenList,
|
|
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,
|
|
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,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Layout } from "./layout/index.mjs";
|
|
2
|
+
import { FormItem } from "./forms/formItem/index.mjs";
|
|
2
3
|
import { Text } from "./forms/text/index.mjs";
|
|
3
4
|
import { Textarea } from "./forms/textarea/index.mjs";
|
|
4
5
|
import { Number } from "./forms/number/index.mjs";
|
|
@@ -19,14 +20,13 @@ import { Industry } from "./forms/industry/index.mjs";
|
|
|
19
20
|
import { UserSelect } from "./forms/userSelect/index.mjs";
|
|
20
21
|
import { RoleSelect } from "./forms/roleSelect/index.mjs";
|
|
21
22
|
import { Form } from "./forms/form/index.mjs";
|
|
22
|
-
import {
|
|
23
|
+
import { Table } from "./table/index.mjs";
|
|
23
24
|
import { ApprovalHistory } from "./bus/approvalHistory/index.mjs";
|
|
24
25
|
import { Document } from "./bus/document/index.mjs";
|
|
25
26
|
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
|
|
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(
|
|
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
|
|
901
|
+
const Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c35f81ee"]]);
|
|
902
902
|
export {
|
|
903
|
-
|
|
903
|
+
Table as default
|
|
904
904
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import Table$1 from "./Table.vue.mjs";
|
|
2
2
|
import install from "../../utils/install.mjs";
|
|
3
|
-
const Table = install.withInstall("Table",
|
|
3
|
+
const Table = install.withInstall("Table", Table$1);
|
|
4
4
|
export {
|
|
5
5
|
Table,
|
|
6
6
|
Table as default
|