@fecp/designer 5.6.23 → 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.
Files changed (26) hide show
  1. package/es/designer/package.json.mjs +1 -1
  2. package/es/designer.css +258 -258
  3. package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +7 -7
  4. package/es/packages/vue/src/components/forms/form/Form.vue2.mjs +1370 -0
  5. package/es/packages/vue/src/components/forms/form/FormAnchorNav.vue2.mjs +113 -0
  6. package/es/packages/vue/src/components/forms/form/RightAnchorNav.vue2.mjs +128 -0
  7. package/es/packages/vue/src/components/forms/form/index.mjs +2 -2
  8. package/es/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.mjs +4 -4
  9. package/es/packages/vue/src/components/table/Table.vue.mjs +22 -10
  10. package/es/packages/vue/src/components/table/TableColumn.vue.mjs +54 -5
  11. package/es/packages/vue/src/components/table/index.mjs +2 -2
  12. package/es/packages/vue/src/composables/usePageEvents.mjs +55 -3
  13. package/lib/designer/package.json.js +1 -1
  14. package/lib/designer/src/packages/form/index.vue.js +1 -1
  15. package/lib/designer/src/packages/form/property/index.vue.js +1 -1
  16. package/lib/designer.css +258 -258
  17. package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +10 -10
  18. package/lib/packages/vue/src/components/forms/form/Form.vue2.js +1370 -0
  19. package/lib/packages/vue/src/components/forms/form/FormAnchorNav.vue2.js +113 -0
  20. package/lib/packages/vue/src/components/forms/form/RightAnchorNav.vue2.js +128 -0
  21. package/lib/packages/vue/src/components/forms/form/index.js +1 -1
  22. package/lib/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.js +1 -1
  23. package/lib/packages/vue/src/components/table/Table.vue.js +22 -10
  24. package/lib/packages/vue/src/components/table/TableColumn.vue.js +54 -5
  25. package/lib/packages/vue/src/composables/usePageEvents.js +55 -3
  26. package/package.json +1 -1
@@ -0,0 +1,113 @@
1
+ import { ref, watch, createElementBlock, createCommentVNode, openBlock, createElementVNode, Fragment, renderList, withModifiers, normalizeClass, createTextVNode, toDisplayString } from "vue";
2
+ /* empty css */
3
+ import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
4
+ const _hoisted_1 = { class: "fec-form-links" };
5
+ const _hoisted_2 = ["href", "onClick"];
6
+ const _hoisted_3 = { class: "fec-form-link-content" };
7
+ const _hoisted_4 = {
8
+ key: 0,
9
+ class: "tab-count"
10
+ };
11
+ const _sfc_main = {
12
+ __name: "FormAnchorNav",
13
+ props: {
14
+ links: {
15
+ type: Array,
16
+ default: () => []
17
+ },
18
+ modelValue: {
19
+ type: [String, Number],
20
+ default: ""
21
+ },
22
+ fecFormRef: {
23
+ type: Object
24
+ }
25
+ },
26
+ emits: ["change", "update:modelValue"],
27
+ setup(__props, { emit: __emit }) {
28
+ var _a;
29
+ const props = __props;
30
+ const formAnchorRef = ref();
31
+ const emit = __emit;
32
+ watch(
33
+ () => props.links,
34
+ (newLinks) => {
35
+ if (newLinks.length && !props.modelValue) {
36
+ emit("update:modelValue", newLinks[0].id);
37
+ }
38
+ },
39
+ { immediate: true }
40
+ );
41
+ let isClickScrolling = false;
42
+ function handleClick(e, link) {
43
+ var _a2;
44
+ e.preventDefault();
45
+ emit("update:modelValue", link.id);
46
+ emit("change", link);
47
+ const fecForm = (_a2 = formAnchorRef.value) == null ? void 0 : _a2.closest(".fec-form");
48
+ const element = fecForm == null ? void 0 : fecForm.querySelector(`#comp_${link.id}`);
49
+ if (element) {
50
+ isClickScrolling = true;
51
+ element.scrollIntoView({ behavior: "smooth", block: "start" });
52
+ waitScrollEnd(() => {
53
+ isClickScrolling = false;
54
+ });
55
+ }
56
+ }
57
+ const scrollWrap = (_a = props.fecFormRef) == null ? void 0 : _a.$el.querySelector(".el-scrollbar__wrap");
58
+ scrollWrap == null ? void 0 : scrollWrap.addEventListener("scroll", onScroll);
59
+ function waitScrollEnd(callback) {
60
+ let timer = null;
61
+ if (!scrollWrap) return;
62
+ const handler = () => {
63
+ clearTimeout(timer);
64
+ timer = setTimeout(() => {
65
+ scrollWrap.removeEventListener("scroll", handler);
66
+ callback();
67
+ }, 150);
68
+ };
69
+ scrollWrap.addEventListener("scroll", handler);
70
+ }
71
+ function onScroll() {
72
+ if (isClickScrolling) return;
73
+ const top = scrollWrap.scrollTop;
74
+ let current = null;
75
+ for (const item of props.links) {
76
+ const el = document.getElementById(String(item.id));
77
+ if (!el) continue;
78
+ if (el.offsetTop <= top) current = item;
79
+ }
80
+ if (current) {
81
+ emit("update:modelValue", current.id);
82
+ }
83
+ }
84
+ return (_ctx, _cache) => {
85
+ return __props.links.length ? (openBlock(), createElementBlock("div", {
86
+ key: 0,
87
+ class: "fec-form-nav",
88
+ ref_key: "formAnchorRef",
89
+ ref: formAnchorRef
90
+ }, [
91
+ createElementVNode("div", _hoisted_1, [
92
+ (openBlock(true), createElementBlock(Fragment, null, renderList(__props.links, (link) => {
93
+ return openBlock(), createElementBlock("a", {
94
+ key: link.id,
95
+ href: `#${link.id}`,
96
+ class: normalizeClass(["fec-form-link-item", { "is-active": __props.modelValue == link.id }]),
97
+ onClick: withModifiers(($event) => handleClick($event, link), ["prevent"])
98
+ }, [
99
+ createElementVNode("span", _hoisted_3, [
100
+ createTextVNode(toDisplayString(link.title) + " ", 1),
101
+ link.count ? (openBlock(), createElementBlock("span", _hoisted_4, "(" + toDisplayString(link.count) + ")", 1)) : createCommentVNode("", true)
102
+ ])
103
+ ], 10, _hoisted_2);
104
+ }), 128))
105
+ ])
106
+ ], 512)) : createCommentVNode("", true);
107
+ };
108
+ }
109
+ };
110
+ const FormAnchorNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1a0c9e5c"]]);
111
+ export {
112
+ FormAnchorNav as default
113
+ };
@@ -0,0 +1,128 @@
1
+ import "../../../../../../node_modules/element-plus/es/index.mjs";
2
+ /* empty css */
3
+ /* empty css */
4
+ /* empty css */
5
+ import { ref, watch, onMounted, createElementBlock, openBlock, createElementVNode, createVNode, createTextVNode, withCtx, Fragment, renderList, createBlock, withModifiers, createCommentVNode, toDisplayString } from "vue";
6
+ /* empty css */
7
+ import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
8
+ import { ElAnchor, ElAnchorLink } from "../../../../../../node_modules/element-plus/es/components/anchor/index.mjs";
9
+ const _hoisted_1 = { class: "anchor-nav" };
10
+ const _hoisted_2 = { key: 0 };
11
+ const _sfc_main = {
12
+ __name: "RightAnchorNav",
13
+ props: {
14
+ links: {
15
+ type: Array,
16
+ default: () => []
17
+ },
18
+ modelValue: {
19
+ type: [String, Number],
20
+ default: ""
21
+ },
22
+ fecFormRef: {
23
+ type: Object
24
+ }
25
+ },
26
+ emits: ["change", "update:modelValue"],
27
+ setup(__props, { emit: __emit }) {
28
+ var _a;
29
+ const props = __props;
30
+ const anchorRef = ref();
31
+ const emit = __emit;
32
+ watch(
33
+ () => props.links,
34
+ (newLinks) => {
35
+ if (newLinks.length && !props.modelValue) {
36
+ emit("update:modelValue", newLinks[0].id);
37
+ }
38
+ },
39
+ { immediate: true }
40
+ );
41
+ let isClickScrolling = false;
42
+ function handleClick(e, link) {
43
+ var _a2, _b;
44
+ e.preventDefault();
45
+ emit("update:modelValue", link.id);
46
+ emit("change", link);
47
+ const fecForm = (_b = (_a2 = anchorRef.value) == null ? void 0 : _a2.$el) == null ? void 0 : _b.closest(".fec-form");
48
+ const element = fecForm == null ? void 0 : fecForm.querySelector(`#comp_${link.id}`);
49
+ if (element) {
50
+ isClickScrolling = true;
51
+ element.scrollIntoView({ behavior: "smooth", block: "start" });
52
+ waitScrollEnd(() => {
53
+ isClickScrolling = false;
54
+ });
55
+ }
56
+ }
57
+ const scrollWrap = (_a = props.fecFormRef) == null ? void 0 : _a.$el.querySelector(".el-scrollbar__wrap");
58
+ scrollWrap == null ? void 0 : scrollWrap.addEventListener("scroll", onScroll);
59
+ function waitScrollEnd(callback) {
60
+ let timer = null;
61
+ if (!scrollWrap) return;
62
+ const handler = () => {
63
+ clearTimeout(timer);
64
+ timer = setTimeout(() => {
65
+ scrollWrap.removeEventListener("scroll", handler);
66
+ callback();
67
+ }, 150);
68
+ };
69
+ scrollWrap.addEventListener("scroll", handler);
70
+ }
71
+ function onScroll() {
72
+ var _a2;
73
+ if (isClickScrolling) return;
74
+ const top = scrollWrap.scrollTop;
75
+ let current = null;
76
+ for (const item of props.links) {
77
+ const el = document.getElementById(String(item.id));
78
+ if (!el) continue;
79
+ if (el.offsetTop - 70 <= top) current = item;
80
+ }
81
+ if (current) {
82
+ emit("update:modelValue", current.id);
83
+ (_a2 = anchorRef.value) == null ? void 0 : _a2.scrollTo(`#${current.id}`);
84
+ }
85
+ }
86
+ onMounted(() => {
87
+ var _a2;
88
+ (_a2 = anchorRef.value) == null ? void 0 : _a2.scrollTo(`#${props.modelValue}`);
89
+ });
90
+ return (_ctx, _cache) => {
91
+ const _component_el_anchor_link = ElAnchorLink;
92
+ const _component_el_anchor = ElAnchor;
93
+ return openBlock(), createElementBlock("div", _hoisted_1, [
94
+ _cache[0] || (_cache[0] = createElementVNode("div", { class: "anchor-title" }, [
95
+ createElementVNode("div", { class: "label-line" }),
96
+ createTextVNode(" 导航 ")
97
+ ], -1)),
98
+ createVNode(_component_el_anchor, {
99
+ type: "underline",
100
+ offset: 70,
101
+ ref_key: "anchorRef",
102
+ ref: anchorRef
103
+ }, {
104
+ default: withCtx(() => [
105
+ (openBlock(true), createElementBlock(Fragment, null, renderList(__props.links, (link) => {
106
+ return openBlock(), createBlock(_component_el_anchor_link, {
107
+ key: link.id,
108
+ href: `#${link.id}`,
109
+ onClick: withModifiers(($event) => handleClick($event, link), ["prevent"])
110
+ }, {
111
+ default: withCtx(() => [
112
+ createTextVNode(toDisplayString(link.title) + " ", 1),
113
+ link.count ? (openBlock(), createElementBlock("span", _hoisted_2, "(" + toDisplayString(link.count) + ")", 1)) : createCommentVNode("", true)
114
+ ]),
115
+ _: 2
116
+ }, 1032, ["href", "onClick"]);
117
+ }), 128))
118
+ ]),
119
+ _: 1
120
+ }, 512)
121
+ ]);
122
+ };
123
+ }
124
+ };
125
+ const RightAnchorNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-298a5455"]]);
126
+ export {
127
+ RightAnchorNav as default
128
+ };
@@ -1,6 +1,6 @@
1
- import Form$1 from "./Form.vue.mjs";
1
+ import _Form from "./Form.vue2.mjs";
2
2
  import install from "../../../utils/install.mjs";
3
- const Form = install.withInstall("Form", Form$1);
3
+ const Form = install.withInstall("Form", _Form);
4
4
  export {
5
5
  Form,
6
6
  Form as default
@@ -6,8 +6,8 @@ import { ArrowRight as arrow_right_default } from "../../../../../../node_module
6
6
  import { customDialog } from "../../dialog/customDialog/index.mjs";
7
7
  import api from "../../../api/index.mjs";
8
8
  import { getCurrentVueInstance } from "../../../utils/getInstance.mjs";
9
- import Form from "../../forms/form/Form.vue.mjs";
10
- import Table from "../../table/Table.vue.mjs";
9
+ import _Form from "../../forms/form/Form.vue2.mjs";
10
+ import _Table from "../../table/Table.vue.mjs";
11
11
  import { cloneDeep, loadComponentByPath } from "../../../utils/common.mjs";
12
12
  /* empty css */
13
13
  import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
@@ -78,10 +78,10 @@ const _sfc_main = {
78
78
  }).then((res) => {
79
79
  const data = JSON.parse(res);
80
80
  if (data.formMode) {
81
- currentComponent.value = Form;
81
+ currentComponent.value = _Form;
82
82
  currentParams.value.modelValue = cloneDeep(props.morePageParams);
83
83
  } else {
84
- currentComponent.value = Table;
84
+ currentComponent.value = _Table;
85
85
  currentParams.value.initHiddenData = cloneDeep(props.morePageParams);
86
86
  currentParams.value.hasPagination = true;
87
87
  }
@@ -23,12 +23,29 @@ import { isEqual } from "../../utils/common.mjs";
23
23
  /* empty css */
24
24
  import "../../utils/formulajs/functionCore.mjs";
25
25
  import { useEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
26
- import "./index.mjs";
27
- import "../forms/form/index.mjs";
26
+ import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
27
+ import emitter from "../../utils/eventBus.mjs";
28
+ import { formatCellValue } from "../../utils/formatCellValue.mjs";
29
+ import { useStore } from "../../../../../node_modules/vuex/dist/vuex.esm-bundler.mjs";
28
30
  /* empty css */
29
31
  /* empty css */
30
- /* empty css */
32
+ /* empty css */
31
33
  import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
34
+ /* empty css */
35
+ /* empty css */
36
+ import "../../../../../node_modules/grid-layout-plus/es/index.mjs";
37
+ import "../forms/formItem/index.mjs";
38
+ import "../details/header/index.mjs";
39
+ import "../details/main/index.mjs";
40
+ import "../details/footer/index.mjs";
41
+ /* empty css */
42
+ /* empty css */
43
+ /* empty css */
44
+ /* empty css */
45
+ import "../../../../../node_modules/moment/dist/moment.mjs";
46
+ import "../../utils/importantDataChange.mjs";
47
+ /* empty css */
48
+ /* empty css */
32
49
  /* empty css */
33
50
  /* empty css */
34
51
  /* empty css */
@@ -41,11 +58,6 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
41
58
  /* empty css */
42
59
  /* empty css */
43
60
  /* empty css */
44
- import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
45
- import emitter from "../../utils/eventBus.mjs";
46
- import { formatCellValue } from "../../utils/formatCellValue.mjs";
47
- import { useStore } from "../../../../../node_modules/vuex/dist/vuex.esm-bundler.mjs";
48
- /* empty css */
49
61
  import { ElContainer } from "../../../../../node_modules/element-plus/es/components/container/index.mjs";
50
62
  import { ElMessage } from "../../../../../node_modules/element-plus/es/components/message/index.mjs";
51
63
  const _hoisted_1 = { class: "fec-vxe-table" };
@@ -1028,7 +1040,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
1028
1040
  };
1029
1041
  }
1030
1042
  });
1031
- const Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-28ff595c"]]);
1043
+ const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-28ff595c"]]);
1032
1044
  export {
1033
- Table as default
1045
+ _Table as default
1034
1046
  };
@@ -13,10 +13,61 @@ import { removeEmptyValues } from "../../utils/common.mjs";
13
13
  /* empty css */
14
14
  import "../../utils/formulajs/functionCore.mjs";
15
15
  import { useEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
16
- import "./index.mjs";
17
- import "../forms/form/index.mjs";
18
- /* empty css */
16
+ /* empty css */
17
+ /* empty css */
18
+ /* empty css */
19
+ /* empty css */
20
+ /* empty css */
21
+ import "xe-utils";
22
+ /* empty css */
23
+ /* empty css */
24
+ /* empty css */
25
+ /* empty css */
26
+ /* empty css */
27
+ /* empty css */
28
+ /* empty css */
29
+ /* empty css */
30
+ /* empty css */
31
+ /* empty css */
19
32
  import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
33
+ /* empty css */
34
+ /* empty css */
35
+ /* empty css */
36
+ /* empty css */
37
+ /* empty css */
38
+ /* empty css */
39
+ /* empty css */
40
+ import "../../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs";
41
+ import "../forms/text/index.mjs";
42
+ import "../forms/select/index.mjs";
43
+ import "../forms/multipleSelection/index.mjs";
44
+ import "../forms/date/index.mjs";
45
+ import "../forms/number/index.mjs";
46
+ /* empty css */
47
+ /* empty css */
48
+ /* empty css */
49
+ /* empty css */
50
+ /* empty css */
51
+ /* empty css */
52
+ import "../../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.mjs";
53
+ /* empty css */
54
+ import "../../utils/eventBus.mjs";
55
+ import "../../../../../node_modules/decimal.js/decimal.mjs";
56
+ /* empty css */
57
+ /* empty css */
58
+ import "../../../../../node_modules/grid-layout-plus/es/index.mjs";
59
+ import "../forms/formItem/index.mjs";
60
+ import "../details/header/index.mjs";
61
+ import "../details/main/index.mjs";
62
+ import "../details/footer/index.mjs";
63
+ /* empty css */
64
+ /* empty css */
65
+ /* empty css */
66
+ /* empty css */
67
+ import "../../../../../node_modules/moment/dist/moment.mjs";
68
+ import "../../utils/importantDataChange.mjs";
69
+ /* empty css */
70
+ /* empty css */
20
71
  /* empty css */
21
72
  /* empty css */
22
73
  /* empty css */
@@ -27,9 +78,7 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
27
78
  /* empty css */
28
79
  /* empty css */
29
80
  /* empty css */
30
- /* empty css */
31
81
  /* empty css */
32
- /* empty css */
33
82
  import { ElLink } from "../../../../../node_modules/element-plus/es/components/link/index.mjs";
34
83
  import { ElIcon } from "../../../../../node_modules/element-plus/es/components/icon/index.mjs";
35
84
  import { ElButton } from "../../../../../node_modules/element-plus/es/components/button/index.mjs";
@@ -1,6 +1,6 @@
1
- import Table$1 from "./Table.vue.mjs";
1
+ import _Table from "./Table.vue.mjs";
2
2
  import install from "../../utils/install.mjs";
3
- const Table = install.withInstall("Table", Table$1);
3
+ const Table = install.withInstall("Table", _Table);
4
4
  export {
5
5
  Table,
6
6
  Table as default
@@ -7,8 +7,61 @@ import { onUnmounted, onBeforeUnmount, onMounted } from "vue";
7
7
  /* empty css */
8
8
  import "../utils/formulajs/functionCore.mjs";
9
9
  import { useEventFlow } from "../utils/eventFlow/eventFlowHandler.mjs";
10
- import "../components/table/index.mjs";
11
- import "../components/forms/form/index.mjs";
10
+ /* empty css */
11
+ /* empty css */
12
+ /* empty css */
13
+ /* empty css */
14
+ /* empty css */
15
+ import "vxe-table";
16
+ import "xe-utils";
17
+ /* empty css */
18
+ /* empty css */
19
+ /* empty css */
20
+ /* empty css */
21
+ /* empty css */
22
+ /* empty css */
23
+ /* empty css */
24
+ /* empty css */
25
+ /* empty css */
26
+ /* empty css */
27
+ /* empty css */
28
+ /* empty css */
29
+ /* empty css */
30
+ /* empty css */
31
+ /* empty css */
32
+ /* empty css */
33
+ /* empty css */
34
+ /* empty css */
35
+ import "../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs";
36
+ import "../components/forms/text/index.mjs";
37
+ import "../components/forms/select/index.mjs";
38
+ import "../components/forms/multipleSelection/index.mjs";
39
+ import "../components/forms/date/index.mjs";
40
+ import "../components/forms/number/index.mjs";
41
+ /* empty css */
42
+ /* empty css */
43
+ /* empty css */
44
+ /* empty css */
45
+ /* empty css */
46
+ /* empty css */
47
+ import "../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.mjs";
48
+ /* empty css */
49
+ import "../utils/eventBus.mjs";
50
+ import "../../../../node_modules/decimal.js/decimal.mjs";
51
+ /* empty css */
52
+ /* empty css */
53
+ import "../../../../node_modules/grid-layout-plus/es/index.mjs";
54
+ import "../components/forms/formItem/index.mjs";
55
+ import "../components/details/header/index.mjs";
56
+ import "../components/details/main/index.mjs";
57
+ import "../components/details/footer/index.mjs";
58
+ /* empty css */
59
+ /* empty css */
60
+ /* empty css */
61
+ /* empty css */
62
+ import "../../../../node_modules/moment/dist/moment.mjs";
63
+ import "../utils/importantDataChange.mjs";
64
+ /* empty css */
12
65
  /* empty css */
13
66
  /* empty css */
14
67
  /* empty css */
@@ -20,7 +73,6 @@ import "../components/forms/form/index.mjs";
20
73
  /* empty css */
21
74
  /* empty css */
22
75
  /* empty css */
23
- /* empty css */
24
76
  /* empty css */
25
77
  function usePageEvents(getOptions) {
26
78
  if (typeof getOptions !== "function") {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const version = "5.6.23";
3
+ const version = "5.6.24";
4
4
  const packageJson = {
5
5
  version
6
6
  };
@@ -15,7 +15,7 @@ const PageFooterSetting = require("./PageFooterSetting.vue.js");
15
15
  const ComponentPreviewWrapper = require("./components/ComponentPreviewWrapper.vue.js");
16
16
  const SubTitle = require("./components/SubTitle.vue.js");
17
17
  const H2Wrapper = require("./components/H2Wrapper.vue.js");
18
- const SubForm = require("./components/SubForm.vue.js");
18
+ const SubForm = ;/* empty css */
19
19
  const approvalHistory = require("./components/approvalHistory.vue.js");
20
20
  const SubTable = require("./components/SubTable.vue.js");
21
21
  const Document = require("./components/Document.vue.js");
@@ -9,7 +9,7 @@ const widgets = require("./widgets.vue.js");
9
9
  const pageHeaderBtn = require("./pageHeaderBtn.vue.js");
10
10
  const pageFooterBtn = require("./pageFooterBtn.vue.js");
11
11
  const subTitleH2 = require("./subTitleH2.vue.js");
12
- const subForm = require("./subForm.vue.js");
12
+ const subForm = ;/* empty css */
13
13
  const subTable = require("./subTable.vue.js");
14
14
  const blank = require("./blank.vue.js");
15
15
  const approvalHistory = require("./approvalHistory.vue.js");