@kp-ui/lowcode 1.0.31 → 1.0.32

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 (27) hide show
  1. package/_virtual/virtual_svg-icons-register.js +2 -2
  2. package/package.json +1 -1
  3. package/render.js +13 -14
  4. package/src/components/CustomRender/components/AttachmentRender.vue.js +1 -1
  5. package/src/components/CustomRender/components/AttachmentRender.vue2.js +25 -12
  6. package/src/components/form-designer/form-widget/container-widget/data-table-widget.vue.js +1 -0
  7. package/src/components/form-designer/form-widget/container-widget/data-table-widget.vue3.js +2 -3
  8. package/src/components/form-designer/form-widget/container-widget/vf-box-item.vue.js +4 -3
  9. package/src/components/form-designer/form-widget/container-widget/vf-box-widget.vue.js +4 -3
  10. package/src/components/form-designer/form-widget/container-widget/vf-collapse-widget.vue.js +2 -0
  11. package/src/components/form-designer/form-widget/container-widget/vf-collapse-widget.vue4.js +1 -1
  12. package/src/components/form-designer/form-widget/field-widget/diy-compontent-widget.vue.js +5 -3
  13. package/src/components/form-designer/form-widget/field-widget/fieldMixin.js +87 -122
  14. package/src/components/form-designer/form-widget/field-widget/file-upload-widget.vue.js +1 -1
  15. package/src/components/form-designer/form-widget/field-widget/file-upload-widget.vue2.js +25 -19
  16. package/src/components/form-designer/toolbar-panel/index.vue.js +4 -6
  17. package/src/components/form-designer/widget-panel/advanced/diy-compontent.js +1 -0
  18. package/src/components/form-render/container-item/vf-collapse-item.vue.js +4 -3
  19. package/src/components/form-render/dynamic-dialog.vue.js +236 -241
  20. package/src/components/form-render/dynamic-drawer.vue.js +206 -2
  21. package/src/utils/i18n.js +1 -14
  22. package/styles/style.css +1 -1
  23. package/types/src/components/CustomRender/components/AttachmentRender.d.ts.map +1 -1
  24. package/types/src/components/form-designer/widget-panel/advanced/diy-compontent.d.ts.map +1 -1
  25. package/types/src/components/form-render/index.d.ts.map +1 -1
  26. package/src/components/form-render/dynamic-dialog.vue3.js +0 -5
  27. package/src/components/form-render/dynamic-drawer.vue2.js +0 -247
@@ -1,12 +1,12 @@
1
1
  import ContainerItemWrapper from "./container-item-wrapper.vue.js";
2
2
  import emitter from "../../../utils/emitter.js";
3
+ import { defineAsyncComponent, resolveComponent, withDirectives, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode, normalizeClass, Fragment, renderList, resolveDynamicComponent, createSlots, renderSlot, normalizeProps, guardReactiveProps, Transition, normalizeStyle, vShow } from "vue";
3
4
  import i18n from "../../../utils/i18n.js";
4
5
  import comps from "../../form-designer/form-widget/field-widget/index.js";
5
6
  import refMixin from "../refMixin.js";
6
7
  import containerItemMixin from "./containerItemMixin.js";
7
8
  import TpfCollapseTitle from "../../TpfCollapse/TpfCollapseTitle.vue.js";
8
9
  import SvgIcon from "../../svg-icon/index.vue.js";
9
- import { resolveComponent, withDirectives, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode, normalizeClass, Fragment, renderList, resolveDynamicComponent, createSlots, renderSlot, normalizeProps, guardReactiveProps, Transition, normalizeStyle, vShow } from "vue";
10
10
  /* empty css */
11
11
  /* empty css */
12
12
  /* empty css */
@@ -20,7 +20,8 @@ const _sfc_main = {
20
20
  ContainerItemWrapper,
21
21
  TpfCollapseTitle,
22
22
  SvgIcon,
23
- ...comps
23
+ ...comps,
24
+ VFormRender: defineAsyncComponent(() => import("../../../../render.js"))
24
25
  },
25
26
  props: {
26
27
  widget: Object,
@@ -273,7 +274,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
273
274
  [vShow, !$props.widget.options.hidden]
274
275
  ]);
275
276
  }
276
- const vfCollapseItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-7889e6b4"]]);
277
+ const vfCollapseItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-7f77cb8b"]]);
277
278
  export {
278
279
  vfCollapseItem as default
279
280
  };
@@ -1,274 +1,269 @@
1
- import { defineComponent, getCurrentInstance, ref, computed, onBeforeUnmount, resolveComponent, createBlock, openBlock, withCtx, createVNode, mergeProps, createElementVNode, createCommentVNode, createTextVNode, toDisplayString, nextTick } from "vue";
2
- import { useI18n } from "../../utils/i18n.js";
1
+ import { defineAsyncComponent, resolveComponent, createBlock, openBlock, withCtx, createVNode, mergeProps, createElementVNode, createCommentVNode, createTextVNode, toDisplayString } from "vue";
2
+ import i18n from "../../utils/i18n.js";
3
3
  import zhCN from "ant-design-vue/es/locale/zh_CN";
4
- import VFormRender from "../../../render.js";
5
- const _hoisted_1 = /* @__PURE__ */ createElementVNode("div", { class: "footer-left" }, null, -1);
6
- const _hoisted_2 = { class: "footer-right" };
7
- const _sfc_main = /* @__PURE__ */ defineComponent({
8
- __name: "dynamic-dialog",
4
+ /* empty css */
5
+ import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.js";
6
+ const _sfc_main = {
7
+ name: "dynamic-dialog",
8
+ mixins: [i18n],
9
9
  props: {
10
- options: { default: () => ({}) },
11
- formJson: {},
12
- formData: { default: () => ({}) },
13
- vfCtx: { default: () => ({}) },
14
- optionData: { default: () => ({}) },
15
- globalDsv: { default: () => ({}) },
16
- parentFormRef: { default: null },
17
- extraData: { default: () => ({}) },
18
- wrapperId: { default: null }
10
+ options: {
11
+ type: Object,
12
+ default: () => ({})
13
+ },
14
+ formJson: {
15
+ type: Object
16
+ },
17
+ formData: {
18
+ type: Object,
19
+ default: () => ({})
20
+ },
21
+ vfCtx: {
22
+ type: Object,
23
+ default: () => ({})
24
+ },
25
+ optionData: {
26
+ //prop传入的选项数据
27
+ type: Object,
28
+ default: () => ({})
29
+ },
30
+ globalDsv: {
31
+ // 全局数据源变量
32
+ type: Object,
33
+ default: () => ({})
34
+ },
35
+ parentFormRef: {
36
+ type: Object,
37
+ default: null
38
+ },
39
+ extraData: {
40
+ type: Object,
41
+ default: () => ({})
42
+ },
43
+ wrapperId: {
44
+ type: String,
45
+ default: null
46
+ }
47
+ },
48
+ components: {
49
+ VFormRender: defineAsyncComponent(() => import("../../../render.js"))
19
50
  },
20
- setup(__props, { expose: __expose }) {
21
- const { i18nt } = useI18n();
22
- const ctx = getCurrentInstance();
23
- const isLoading = ref(false);
24
- const props = __props;
25
- const dialogVisible = ref(false);
26
- const dFormRef = ref(null);
27
- const elLocaleMap = {
28
- "zh-CN": { ...zhCN },
29
- "en-US": {}
51
+ data() {
52
+ return {
53
+ isLoading: true,
54
+ dialogVisible: false,
55
+ elLocaleMap: {
56
+ "zh-CN": { ...zhCN },
57
+ "en-US": {}
58
+ }
30
59
  };
31
- const elLocale = computed(() => {
60
+ },
61
+ created() {
62
+ },
63
+ computed: {
64
+ elLocale() {
32
65
  const curLocale = localStorage.getItem("v_form_locale") || "zh-CN";
33
- return elLocaleMap[curLocale];
34
- });
35
- const parentForm = computed(() => {
36
- var _a;
37
- return { ...props.parentFormRef, parentDom: (_a = getCurrentInstance()) == null ? void 0 : _a.proxy, getParentFormRef };
38
- });
39
- const otherAttrs = computed(() => {
40
- if (props.options.cancelButtonHidden && props.options.okButtonHidden) {
66
+ return this.elLocaleMap[curLocale];
67
+ },
68
+ parentForm() {
69
+ return { ...this.parentFormRef, parentDom: this, getParentFormRef: this.getParentFormRef };
70
+ },
71
+ otherAttrs() {
72
+ if (this.options.cancelButtonHidden && this.options.okButtonHidden) {
41
73
  return { footer: null };
42
74
  }
43
75
  return {};
44
- });
45
- const cancelBtnLabel = computed(() => {
46
- return props.options.cancelButtonLabel || i18nt("designer.hint.cancel");
47
- });
48
- const okBtnLabel = computed(() => {
49
- return props.options.okButtonLabel || i18nt("designer.hint.confirm");
50
- });
51
- onBeforeUnmount(() => {
52
- var _a;
53
- (_a = props.parentFormRef) == null ? void 0 : _a.setChildFormRef(null);
54
- });
55
- const loadFormCode = async () => {
56
- var _a;
57
- if (props.options.formCode) {
58
- const http = ctx.appContext.config.globalProperties.$http;
59
- try {
60
- const { data } = await http.get(
61
- `/api/tmgc2-query/dataQuery/detail/FormDefinitionManagement`,
62
- {
63
- params: { code: props.options.formCode }
64
- }
65
- );
66
- (_a = dFormRef.value) == null ? void 0 : _a.setFormJson(JSON.parse(data.object.frontendDefinition || "{}"));
67
- } finally {
68
- }
76
+ },
77
+ cancelBtnLabel() {
78
+ return this.options.cancelButtonLabel || this.i18nt("designer.hint.cancel");
79
+ },
80
+ okBtnLabel() {
81
+ return this.options.okButtonLabel || this.i18nt("designer.hint.confirm");
82
+ }
83
+ },
84
+ mounted() {
85
+ },
86
+ beforeUnmount() {
87
+ this.parentFormRef.setChildFormRef(null);
88
+ },
89
+ methods: {
90
+ async loadFormCode() {
91
+ if (this.options.formCode) {
92
+ const res = await this.$http.get(`/api/tmgc2-query/dataQuery/detail/FormDefinitionManagement`, {
93
+ params: { code: this.options.formCode }
94
+ }).then((res2) => res2.data.object.frontendDefinition || "{}");
95
+ this.$refs.dFormRef.setFormJson(JSON.parse(res));
69
96
  }
70
- };
71
- const setTitle = (title) => {
72
- props.options.title = title;
73
- };
74
- const show = () => {
75
- dialogVisible.value = true;
76
- nextTick(async () => {
77
- var _a, _b, _c, _d, _e, _f;
78
- if (props.options.readMode) {
79
- (_a = dFormRef.value) == null ? void 0 : _a.setReadMode(true);
97
+ },
98
+ setTitle(title) {
99
+ this.options.title = title;
100
+ },
101
+ show() {
102
+ this.dialogVisible = true;
103
+ this.$nextTick(() => {
104
+ if (!!this.options.readMode) {
105
+ this.$refs["dFormRef"].setReadMode(true);
80
106
  }
81
- (_b = dFormRef.value) == null ? void 0 : _b.setLoading(true);
82
- await loadFormCode();
83
- (_d = dFormRef.value) == null ? void 0 : _d.setDialogOrDrawerRef((_c = getCurrentInstance()) == null ? void 0 : _c.proxy);
84
- (_e = props.parentFormRef) == null ? void 0 : _e.setChildFormRef(dFormRef.value);
85
- (_f = dFormRef.value) == null ? void 0 : _f.setLoading(false);
86
- handleOpenedEvent();
107
+ this.loadFormCode();
108
+ this.$refs["dFormRef"].setDialogOrDrawerRef(this);
109
+ this.parentFormRef.setChildFormRef(this.$refs["dFormRef"]);
110
+ this.handleOpenedEvent();
87
111
  });
88
- };
89
- const close = () => {
90
- var _a;
91
- if (props.options.onDialogBeforeClose) {
92
- try {
93
- const customFn = new Function("done", props.options.onDialogBeforeClose);
94
- const closeResult = customFn.call((_a = getCurrentInstance()) == null ? void 0 : _a.proxy);
95
- if (closeResult === false) {
96
- return;
97
- }
98
- } catch (error) {
99
- console.error("Error executing onDialogBeforeClose:", error);
112
+ },
113
+ close() {
114
+ if (!!this.options.onDialogBeforeClose) {
115
+ const customFn = new Function("done", this.options.onDialogBeforeClose);
116
+ const closeResult = customFn.call(this);
117
+ if (closeResult === false) {
118
+ return;
100
119
  }
101
120
  }
102
- dialogVisible.value = false;
103
- setTimeout(deleteWrapperNode, 150);
104
- };
105
- const deleteWrapperNode = () => {
106
- const wrapperNode = document.getElementById("vf-dynamic-dialog-wrapper" + props.wrapperId);
107
- if (wrapperNode) {
121
+ this.dialogVisible = false;
122
+ setTimeout(this.deleteWrapperNode, 150);
123
+ },
124
+ deleteWrapperNode() {
125
+ const wrapperNode = document.getElementById("vf-dynamic-dialog-wrapper" + this.wrapperId);
126
+ if (!!wrapperNode) {
108
127
  document.body.removeChild(wrapperNode);
109
128
  }
110
- };
111
- const handleBeforeClose = () => {
112
- var _a;
113
- if (props.options.onDialogBeforeClose) {
114
- try {
115
- const customFn = new Function(props.options.onDialogBeforeClose);
116
- return customFn.call((_a = getCurrentInstance()) == null ? void 0 : _a.proxy);
117
- } catch (error) {
118
- console.error("Error executing onDialogBeforeClose:", error);
119
- return true;
120
- }
129
+ },
130
+ handleBeforeClose() {
131
+ if (!!this.options.onDialogBeforeClose) {
132
+ const customFn = new Function(this.options.onDialogBeforeClose);
133
+ return customFn.call(this);
121
134
  }
122
135
  return true;
123
- };
124
- const handleCloseEvent = () => {
125
- if (!handleBeforeClose()) return;
126
- dialogVisible.value = false;
127
- setTimeout(deleteWrapperNode, 150);
128
- };
129
- const handleOpenedEvent = () => {
130
- var _a;
131
- if (props.options.onDialogOpened) {
132
- try {
133
- const customFn = new Function(props.options.onDialogOpened);
134
- customFn.call((_a = getCurrentInstance()) == null ? void 0 : _a.proxy);
135
- } catch (error) {
136
- console.error("Error executing onDialogOpened:", error);
137
- }
136
+ },
137
+ handleCloseEvent() {
138
+ if (!this.handleBeforeClose()) return;
139
+ this.dialogVisible = false;
140
+ setTimeout(this.deleteWrapperNode, 150);
141
+ },
142
+ handleOpenedEvent() {
143
+ if (!!this.options.onDialogOpened) {
144
+ const customFn = new Function(this.options.onDialogOpened);
145
+ customFn.call(this);
138
146
  }
139
- };
140
- const handleCancelClick = () => {
141
- var _a;
142
- if (!handleBeforeClose()) return;
143
- if (props.options.onCancelButtonClick) {
144
- try {
145
- const customFn = new Function(props.options.onCancelButtonClick);
146
- const clickResult = customFn.call((_a = getCurrentInstance()) == null ? void 0 : _a.proxy);
147
- if (clickResult === false) {
148
- return;
149
- }
150
- } catch (error) {
151
- console.error("Error executing onCancelButtonClick:", error);
147
+ },
148
+ handleCancelClick() {
149
+ if (!this.handleBeforeClose()) return;
150
+ if (!!this.options.onCancelButtonClick) {
151
+ const customFn = new Function(this.options.onCancelButtonClick);
152
+ const clickResult = customFn.call(this);
153
+ if (clickResult === false) {
154
+ return;
152
155
  }
153
156
  }
154
- dialogVisible.value = false;
155
- setTimeout(deleteWrapperNode, 150);
156
- };
157
- const handleOkClick = async () => {
158
- var _a;
157
+ this.dialogVisible = false;
158
+ setTimeout(this.deleteWrapperNode, 150);
159
+ },
160
+ async handleOkClick() {
159
161
  try {
160
- if (props.options.onOkButtonClick) {
161
- const customFn = new Function(props.options.onOkButtonClick);
162
- const clickResult = await customFn.call((_a = getCurrentInstance()) == null ? void 0 : _a.proxy);
162
+ if (!!this.options.onOkButtonClick) {
163
+ const customFn = new Function(this.options.onOkButtonClick);
164
+ const clickResult = await customFn.call(this);
163
165
  if (clickResult === false) {
164
166
  return;
165
167
  }
166
168
  }
167
- dialogVisible.value = false;
168
- setTimeout(deleteWrapperNode, 150);
169
+ this.dialogVisible = false;
170
+ setTimeout(this.deleteWrapperNode, 150);
169
171
  } catch (error) {
170
- console.error("Error:", error);
172
+ console.log("error: ", error);
171
173
  }
172
- };
173
- const getParentFormRef = () => {
174
- return props.parentFormRef;
175
- };
176
- const getFormRef = () => {
174
+ },
175
+ getParentFormRef() {
176
+ return this.parentFormRef;
177
+ },
178
+ getFormRef() {
177
179
  console.log("getFormRef");
178
- return dFormRef.value;
179
- };
180
- const getWidgetRef = (widgetName, showError = false) => {
181
- var _a;
182
- return (_a = dFormRef.value) == null ? void 0 : _a.getWidgetRef(widgetName, showError);
183
- };
184
- const getExtraData = () => {
185
- return props.extraData;
186
- };
187
- __expose({
188
- setTitle,
189
- show,
190
- close,
191
- getFormRef,
192
- getWidgetRef,
193
- getExtraData,
194
- getParentFormRef
195
- });
196
- return (_ctx, _cache) => {
197
- const _component_a_button = resolveComponent("a-button");
198
- const _component_a_modal = resolveComponent("a-modal");
199
- const _component_a_config_provider = resolveComponent("a-config-provider");
200
- return openBlock(), createBlock(_component_a_config_provider, {
201
- locale: elLocale.value,
202
- input: { autocomplete: "off" }
203
- }, {
180
+ return this.$refs["dFormRef"];
181
+ },
182
+ getWidgetRef(widgetName, showError = false) {
183
+ return this.$refs["dFormRef"].getWidgetRef(widgetName, showError);
184
+ },
185
+ getExtraData() {
186
+ return this.extraData;
187
+ }
188
+ }
189
+ };
190
+ const _hoisted_1 = /* @__PURE__ */ createElementVNode("div", { class: "footer-left" }, null, -1);
191
+ const _hoisted_2 = { class: "footer-right" };
192
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
193
+ const _component_VFormRender = resolveComponent("VFormRender");
194
+ const _component_a_button = resolveComponent("a-button");
195
+ const _component_a_modal = resolveComponent("a-modal");
196
+ const _component_a_config_provider = resolveComponent("a-config-provider");
197
+ return openBlock(), createBlock(_component_a_config_provider, {
198
+ locale: $options.elLocale,
199
+ input: { autocomplete: "off" }
200
+ }, {
201
+ default: withCtx(() => [
202
+ createVNode(_component_a_modal, mergeProps({
203
+ class: "tpf-model design-model",
204
+ transitionName: !$data.dialogVisible ? "" : "zoom",
205
+ maskTransitionName: !$data.dialogVisible ? "" : "fade",
206
+ destroyOnClose: true,
207
+ title: $props.options.title,
208
+ bodyStyle: {
209
+ height: $props.options.height,
210
+ overflow: "auto",
211
+ ...JSON.parse(this.options.bodyStyle || "{}")
212
+ },
213
+ centered: true,
214
+ visible: $data.dialogVisible,
215
+ "onUpdate:visible": _cache[0] || (_cache[0] = ($event) => $data.dialogVisible = $event),
216
+ width: $props.options.width,
217
+ mask: $props.options.showModal,
218
+ maskClosable: $props.options.closeOnClickModal,
219
+ keyboard: $props.options.closeOnPressEscape,
220
+ onCancel: $options.handleCloseEvent
221
+ }, $options.otherAttrs), {
222
+ footer: withCtx(() => [
223
+ _hoisted_1,
224
+ createElementVNode("div", _hoisted_2, [
225
+ !$props.options.cancelButtonHidden ? (openBlock(), createBlock(_component_a_button, {
226
+ key: 0,
227
+ onClick: $options.handleCancelClick
228
+ }, {
229
+ default: withCtx(() => [
230
+ createTextVNode(toDisplayString($options.cancelBtnLabel), 1)
231
+ ]),
232
+ _: 1
233
+ }, 8, ["onClick"])) : createCommentVNode("", true),
234
+ !$props.options.okButtonHidden ? (openBlock(), createBlock(_component_a_button, {
235
+ key: 1,
236
+ type: "primary",
237
+ onClick: $options.handleOkClick
238
+ }, {
239
+ default: withCtx(() => [
240
+ createTextVNode(toDisplayString($options.okBtnLabel), 1)
241
+ ]),
242
+ _: 1
243
+ }, 8, ["onClick"])) : createCommentVNode("", true)
244
+ ])
245
+ ]),
204
246
  default: withCtx(() => [
205
- createVNode(_component_a_modal, mergeProps({
206
- class: "tpf-model design-model",
207
- transitionName: !dialogVisible.value ? "" : "zoom",
208
- maskTransitionName: !dialogVisible.value ? "" : "fade",
209
- destroyOnClose: true,
210
- title: _ctx.options.title,
211
- bodyStyle: {
212
- height: _ctx.options.height,
213
- overflow: "auto",
214
- ...JSON.parse(_ctx.options.bodyStyle || "{}")
215
- },
216
- centered: true,
217
- visible: dialogVisible.value,
218
- "onUpdate:visible": _cache[0] || (_cache[0] = ($event) => dialogVisible.value = $event),
219
- width: _ctx.options.width,
220
- mask: _ctx.options.showModal,
221
- maskClosable: _ctx.options.closeOnClickModal,
222
- keyboard: _ctx.options.closeOnPressEscape,
223
- onCancel: handleCloseEvent
224
- }, otherAttrs.value), {
225
- footer: withCtx(() => [
226
- _hoisted_1,
227
- createElementVNode("div", _hoisted_2, [
228
- !_ctx.options.cancelButtonHidden ? (openBlock(), createBlock(_component_a_button, {
229
- key: 0,
230
- onClick: handleCancelClick
231
- }, {
232
- default: withCtx(() => [
233
- createTextVNode(toDisplayString(cancelBtnLabel.value), 1)
234
- ]),
235
- _: 1
236
- })) : createCommentVNode("", true),
237
- !_ctx.options.okButtonHidden ? (openBlock(), createBlock(_component_a_button, {
238
- key: 1,
239
- type: "primary",
240
- onClick: handleOkClick
241
- }, {
242
- default: withCtx(() => [
243
- createTextVNode(toDisplayString(okBtnLabel.value), 1)
244
- ]),
245
- _: 1
246
- })) : createCommentVNode("", true)
247
- ])
248
- ]),
249
- default: withCtx(() => [
250
- createVNode(VFormRender, {
251
- isLoading: isLoading.value,
252
- ref_key: "dFormRef",
253
- ref: dFormRef,
254
- "form-json": _ctx.formJson,
255
- "form-data": _ctx.formData,
256
- vfCtx: _ctx.vfCtx,
257
- "option-data": _ctx.optionData,
258
- "global-dsv": _ctx.globalDsv,
259
- "parent-form": parentForm.value,
260
- "disabled-mode": _ctx.options.disabledMode,
261
- "dynamic-creation": true
262
- }, null, 8, ["isLoading", "form-json", "form-data", "vfCtx", "option-data", "global-dsv", "parent-form", "disabled-mode"])
263
- ]),
264
- _: 1
265
- }, 16, ["transitionName", "maskTransitionName", "title", "bodyStyle", "visible", "width", "mask", "maskClosable", "keyboard"])
247
+ createVNode(_component_VFormRender, {
248
+ isLoading: $data.isLoading,
249
+ ref: "dFormRef",
250
+ "form-json": $props.formJson,
251
+ "form-data": $props.formData,
252
+ vfCtx: $props.vfCtx,
253
+ "option-data": $props.optionData,
254
+ "global-dsv": $props.globalDsv,
255
+ "parent-form": $options.parentForm,
256
+ "disabled-mode": $props.options.disabledMode,
257
+ "dynamic-creation": true
258
+ }, null, 8, ["isLoading", "form-json", "form-data", "vfCtx", "option-data", "global-dsv", "parent-form", "disabled-mode"])
266
259
  ]),
267
260
  _: 1
268
- }, 8, ["locale"]);
269
- };
270
- }
271
- });
261
+ }, 16, ["transitionName", "maskTransitionName", "title", "bodyStyle", "visible", "width", "mask", "maskClosable", "keyboard", "onCancel"])
262
+ ]),
263
+ _: 1
264
+ }, 8, ["locale"]);
265
+ }
266
+ const DynamicDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
272
267
  export {
273
- _sfc_main as default
268
+ DynamicDialog as default
274
269
  };