@tmagic/form 1.3.10 → 1.3.12
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.js
CHANGED
|
@@ -4043,7 +4043,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
4043
4043
|
_hoisted_2$1,
|
|
4044
4044
|
createElementVNode("div", _hoisted_3, [
|
|
4045
4045
|
createVNode(unref(TMagicButton), {
|
|
4046
|
-
|
|
4046
|
+
link: "",
|
|
4047
4047
|
size: "small",
|
|
4048
4048
|
onClick: _cache[2] || (_cache[2] = ($event) => popoverVisible.value = false)
|
|
4049
4049
|
}, {
|
|
@@ -4558,4 +4558,3 @@ const index = {
|
|
|
4558
4558
|
};
|
|
4559
4559
|
|
|
4560
4560
|
export { _sfc_main$p as MCascader, _sfc_main$o as MCheckbox, _sfc_main$n as MCheckboxGroup, _sfc_main$m as MColorPicker, _sfc_main$z as MContainer, _sfc_main$l as MDate, _sfc_main$j as MDateTime, _sfc_main$k as MDaterange, _sfc_main$i as MDisplay, _sfc_main$h as MDynamicField, _sfc_main$y as MFieldset, _sfc_main$f as MForm, _sfc_main as MFormBox, _sfc_main$e as MFormDialog, _sfc_main$1 as MFormDrawer, _sfc_main$w as MGroupList, _sfc_main$g as MHidden, _sfc_main$d as MLink, _sfc_main$c as MNumber, _sfc_main$b as MNumberRange, _sfc_main$v as MPanel, _sfc_main$a as MRadioGroup, _sfc_main$t as MRow, _sfc_main$7 as MSelect, _sfc_main$6 as MSwitch, _sfc_main$r as MTable, _sfc_main$q as MTabs, _sfc_main$5 as MText, _sfc_main$4 as MTextarea, _sfc_main$3 as MTime, _sfc_main$2 as MTimerange, createForm, createValues, index as default, display, filterFunction, getRules, initValue, useAddField };
|
|
4561
|
-
//# sourceMappingURL=tmagic-form.js.map
|
package/dist/tmagic-form.umd.cjs
CHANGED
|
@@ -4042,7 +4042,7 @@
|
|
|
4042
4042
|
_hoisted_2$1,
|
|
4043
4043
|
vue.createElementVNode("div", _hoisted_3, [
|
|
4044
4044
|
vue.createVNode(vue.unref(design.TMagicButton), {
|
|
4045
|
-
|
|
4045
|
+
link: "",
|
|
4046
4046
|
size: "small",
|
|
4047
4047
|
onClick: _cache[2] || (_cache[2] = ($event) => popoverVisible.value = false)
|
|
4048
4048
|
}, {
|
|
@@ -4599,4 +4599,3 @@
|
|
|
4599
4599
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4600
4600
|
|
|
4601
4601
|
}));
|
|
4602
|
-
//# sourceMappingURL=tmagic-form.umd.cjs.map
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.12",
|
|
3
3
|
"name": "@tmagic/form",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": [
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@element-plus/icons-vue": "^2.3.1",
|
|
35
|
-
"@tmagic/design": "1.3.
|
|
36
|
-
"@tmagic/utils": "1.3.
|
|
35
|
+
"@tmagic/design": "1.3.12",
|
|
36
|
+
"@tmagic/utils": "1.3.12",
|
|
37
37
|
"lodash-es": "^4.17.21",
|
|
38
38
|
"sortablejs": "^1.14.0",
|
|
39
39
|
"vue": "^3.3.8"
|
package/src/fields/Text.vue
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<div class="m-form-item__content">
|
|
28
28
|
<div class="m-form-validate__warning">输入内容前后有空格,是否移除空格?</div>
|
|
29
29
|
<div style="display: flex; justify-content: flex-end">
|
|
30
|
-
<TMagicButton
|
|
30
|
+
<TMagicButton link size="small" @click="popoverVisible = false">保持原样</TMagicButton>
|
|
31
31
|
<TMagicButton type="primary" size="small" @click="confirmTrimHandler">移除空格</TMagicButton>
|
|
32
32
|
</div>
|
|
33
33
|
</div>
|