@tmagic/form 1.2.0-beta.7 → 1.2.0-beta.8
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/dist/tmagic-form.mjs +3 -1
- package/dist/tmagic-form.mjs.map +1 -1
- package/dist/tmagic-form.umd.js +3 -1
- package/dist/tmagic-form.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/FormDialog.vue +2 -0
- package/types/Form.vue.d.ts +1 -3
- package/types/FormDialog.vue.d.ts +7 -9
- package/types/containers/Col.vue.d.ts +1 -3
- package/types/containers/Container.vue.d.ts +1 -3
- package/types/containers/Fieldset.vue.d.ts +1 -3
- package/types/containers/GroupList.vue.d.ts +1 -3
- package/types/containers/GroupListItem.vue.d.ts +1 -3
- package/types/containers/Row.vue.d.ts +1 -3
- package/types/containers/Step.vue.d.ts +1 -3
- package/types/containers/Tabs.vue.d.ts +1 -3
- package/types/fields/Cascader.vue.d.ts +1 -3
- package/types/fields/Checkbox.vue.d.ts +1 -3
- package/types/fields/CheckboxGroup.vue.d.ts +1 -3
- package/types/fields/ColorPicker.vue.d.ts +1 -3
- package/types/fields/Date.vue.d.ts +1 -3
- package/types/fields/DateTime.vue.d.ts +1 -3
- package/types/fields/Daterange.vue.d.ts +1 -3
- package/types/fields/Display.vue.d.ts +1 -3
- package/types/fields/DynamicField.vue.d.ts +1 -3
- package/types/fields/Hidden.vue.d.ts +1 -3
- package/types/fields/Link.vue.d.ts +1 -3
- package/types/fields/Number.vue.d.ts +1 -3
- package/types/fields/RadioGroup.vue.d.ts +1 -3
- package/types/fields/Select.vue.d.ts +1 -3
- package/types/fields/SelectOptionGroups.vue.d.ts +1 -3
- package/types/fields/SelectOptions.vue.d.ts +1 -3
- package/types/fields/Switch.vue.d.ts +1 -3
- package/types/fields/Text.vue.d.ts +1 -3
- package/types/fields/Textarea.vue.d.ts +1 -3
- package/types/fields/Time.vue.d.ts +1 -3
package/dist/tmagic-form.umd.js
CHANGED
|
@@ -2501,6 +2501,7 @@
|
|
|
2501
2501
|
labelWidth: null,
|
|
2502
2502
|
fullscreen: { type: Boolean },
|
|
2503
2503
|
title: null,
|
|
2504
|
+
zIndex: null,
|
|
2504
2505
|
size: null,
|
|
2505
2506
|
confirmText: { default: "\u786E\u5B9A" }
|
|
2506
2507
|
},
|
|
@@ -2570,6 +2571,7 @@
|
|
|
2570
2571
|
"append-to-body": "",
|
|
2571
2572
|
title: __props.title,
|
|
2572
2573
|
width: __props.width,
|
|
2574
|
+
zIndex: __props.zIndex,
|
|
2573
2575
|
fullscreen: __props.fullscreen,
|
|
2574
2576
|
"close-on-click-modal": false,
|
|
2575
2577
|
onClose: closeHandler
|
|
@@ -2663,7 +2665,7 @@
|
|
|
2663
2665
|
], 4)) : vue.createCommentVNode("", true)
|
|
2664
2666
|
]),
|
|
2665
2667
|
_: 3
|
|
2666
|
-
}, 8, ["modelValue", "title", "width", "fullscreen"]);
|
|
2668
|
+
}, 8, ["modelValue", "title", "width", "zIndex", "fullscreen"]);
|
|
2667
2669
|
};
|
|
2668
2670
|
}
|
|
2669
2671
|
});
|