@fecp/designer 5.6.22 → 5.6.24
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/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer.css +649 -649
- package/es/node_modules/element-plus/es/components/container/index.mjs +1 -1
- package/es/node_modules/element-plus/es/components/form/index.mjs +1 -1
- package/es/node_modules/element-plus/es/components/input/src/input.vue_vue_type_script_setup_true_lang.mjs +1 -1
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +7 -7
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +4 -2
- package/es/packages/vue/src/components/forms/form/Form.vue2.mjs +1370 -0
- package/es/packages/vue/src/components/forms/form/FormAnchorNav.vue2.mjs +113 -0
- package/es/packages/vue/src/components/forms/form/RightAnchorNav.vue2.mjs +128 -0
- package/es/packages/vue/src/components/forms/form/index.mjs +1 -1
- package/es/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.mjs +1 -1
- package/es/packages/vue/src/components/table/Table.vue.mjs +20 -6
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +54 -3
- package/es/packages/vue/src/composables/usePageEvents.mjs +55 -1
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/index.vue.js +1 -1
- package/lib/designer/src/packages/form/property/index.vue.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer.css +649 -649
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +6 -6
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +4 -2
- package/lib/packages/vue/src/components/forms/form/Form.vue2.js +1370 -0
- package/lib/packages/vue/src/components/forms/form/FormAnchorNav.vue2.js +113 -0
- package/lib/packages/vue/src/components/forms/form/RightAnchorNav.vue2.js +128 -0
- package/lib/packages/vue/src/components/forms/form/index.js +1 -1
- package/lib/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.js +1 -1
- package/lib/packages/vue/src/components/table/Table.vue.js +20 -6
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +54 -3
- package/lib/packages/vue/src/composables/usePageEvents.js +55 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { withInstall, withNoopInstall } from "../../utils/vue/install.mjs";
|
|
2
2
|
import container_default from "./src/container.mjs";
|
|
3
3
|
import aside_default from "./src/aside.mjs";
|
|
4
4
|
import footer_default from "./src/footer.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { withInstall, withNoopInstall } from "../../utils/vue/install.mjs";
|
|
2
2
|
import form_default from "./src/form2.mjs";
|
|
3
3
|
import form_item_default from "./src/form-item2.mjs";
|
|
4
4
|
const ElForm = withInstall(form_default, { FormItem: form_item_default });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UPDATE_MODEL_EVENT, CHANGE_EVENT
|
|
1
|
+
import { INPUT_EVENT, UPDATE_MODEL_EVENT, CHANGE_EVENT } from "../../../constants/event.mjs";
|
|
2
2
|
import { useResizeObserver } from "../../../../node_modules/@vueuse/core/index.mjs";
|
|
3
3
|
import { NOOP, isObject } from "../../../../../@vue/shared/dist/shared.esm-bundler.mjs";
|
|
4
4
|
import { debugWarn } from "../../../utils/error.mjs";
|
|
@@ -3,13 +3,15 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
|
-
import { ref, computed, watch,
|
|
6
|
+
import { ref, computed, watch, createBlock, openBlock, resolveDynamicComponent, mergeProps, normalizeClass, withCtx, createElementVNode, normalizeStyle, createElementBlock, Fragment, createCommentVNode, normalizeProps, toDisplayString, createVNode, createTextVNode, renderList } from "vue";
|
|
7
7
|
import { parseRouteParams } from "../../utils/parseRouteParams.mjs";
|
|
8
8
|
import { calculate } from "../../utils/formulajs/calculate.mjs";
|
|
9
9
|
import { useEventFlow, executeEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
|
|
10
10
|
/* empty css */
|
|
11
11
|
/* empty css */
|
|
12
12
|
import { loadComponentByPath } from "../../utils/common.mjs";
|
|
13
|
+
import _Table from "../table/Table.vue.mjs";
|
|
14
|
+
import _Form from "../forms/form/Form.vue2.mjs";
|
|
13
15
|
/* empty css */
|
|
14
16
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
15
17
|
/* empty css */
|
|
@@ -316,8 +318,6 @@ const _sfc_main = {
|
|
|
316
318
|
}
|
|
317
319
|
return (_ctx, _cache) => {
|
|
318
320
|
var _a;
|
|
319
|
-
const _component_fec_table = resolveComponent("fec-table");
|
|
320
|
-
const _component_fec_form = resolveComponent("fec-form");
|
|
321
321
|
const _component_el_button = ElButton;
|
|
322
322
|
const _component_el_dialog = ElDialog;
|
|
323
323
|
return __props.dialogConfig.componentIsDialog ? (openBlock(), createBlock(resolveDynamicComponent(currentComponent.value), mergeProps({
|
|
@@ -395,7 +395,7 @@ const _sfc_main = {
|
|
|
395
395
|
style: normalizeStyle(contentStyle.value)
|
|
396
396
|
}, [
|
|
397
397
|
((_b = __props.dialogConfig) == null ? void 0 : _b.contentSource) === "table" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
398
|
-
__props.dialogConfig.tableContent === "select" ? (openBlock(), createBlock(
|
|
398
|
+
__props.dialogConfig.tableContent === "select" ? (openBlock(), createBlock(_Table, {
|
|
399
399
|
key: 0,
|
|
400
400
|
templateKey: __props.dialogConfig.subTableKey,
|
|
401
401
|
mode: __props.dialogConfig.subTableMode,
|
|
@@ -407,7 +407,7 @@ const _sfc_main = {
|
|
|
407
407
|
onSelectionChange: tableSelectionChange,
|
|
408
408
|
ref_key: "dialogTableRef",
|
|
409
409
|
ref: dialogTableRef
|
|
410
|
-
}, null, 8, ["templateKey", "mode", "hasPagination", "initHiddenData", "readonly", "selectMode"])) : __props.dialogConfig.tableContent === "custom" ? (openBlock(), createBlock(
|
|
410
|
+
}, null, 8, ["templateKey", "mode", "hasPagination", "initHiddenData", "readonly", "selectMode"])) : __props.dialogConfig.tableContent === "custom" ? (openBlock(), createBlock(_Table, {
|
|
411
411
|
key: 1,
|
|
412
412
|
initOption: __props.dialogConfig.customTableConfig,
|
|
413
413
|
isDialog: "",
|
|
@@ -419,7 +419,7 @@ const _sfc_main = {
|
|
|
419
419
|
ref_key: "dialogTableRef",
|
|
420
420
|
ref: dialogTableRef
|
|
421
421
|
}, null, 8, ["initOption", "hasPagination", "initHiddenData", "readonly", "selectMode"])) : createCommentVNode("", true)
|
|
422
|
-
], 64)) : ((_c = __props.dialogConfig) == null ? void 0 : _c.contentSource) === "form" ? (openBlock(), createBlock(
|
|
422
|
+
], 64)) : ((_c = __props.dialogConfig) == null ? void 0 : _c.contentSource) === "form" ? (openBlock(), createBlock(_Form, {
|
|
423
423
|
key: 1,
|
|
424
424
|
templateKey: __props.dialogConfig.subFormKey,
|
|
425
425
|
isDialog: "",
|
|
@@ -440,7 +440,7 @@ const _sfc_main = {
|
|
|
440
440
|
};
|
|
441
441
|
}
|
|
442
442
|
};
|
|
443
|
-
const DialogRenderer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
443
|
+
const DialogRenderer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-54eda425"]]);
|
|
444
444
|
export {
|
|
445
445
|
DialogRenderer as default
|
|
446
446
|
};
|
|
@@ -21,6 +21,8 @@ import { cloneDeep, removeEmptyValues, isEqual } from "../../../utils/common.mjs
|
|
|
21
21
|
/* empty css */
|
|
22
22
|
import { calculate } from "../../../utils/formulajs/calculate.mjs";
|
|
23
23
|
import { useEventFlow } from "../../../utils/eventFlow/eventFlowHandler.mjs";
|
|
24
|
+
import "../../table/index.mjs";
|
|
25
|
+
import "./index.mjs";
|
|
24
26
|
/* empty css */
|
|
25
27
|
/* empty css */
|
|
26
28
|
/* empty css */
|
|
@@ -1330,7 +1332,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
1330
1332
|
};
|
|
1331
1333
|
}
|
|
1332
1334
|
});
|
|
1333
|
-
const
|
|
1335
|
+
const Form = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2a14b0ea"]]);
|
|
1334
1336
|
export {
|
|
1335
|
-
|
|
1337
|
+
Form as default
|
|
1336
1338
|
};
|