@tmagic/form 1.3.0-alpha.13 → 1.3.0-alpha.15
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/style.css +13 -0
- package/dist/tmagic-form.js +258 -107
- package/dist/tmagic-form.js.map +1 -1
- package/dist/tmagic-form.umd.cjs +284 -132
- package/dist/tmagic-form.umd.cjs.map +1 -1
- package/package.json +4 -4
- package/src/FormDialog.vue +14 -4
- package/src/FormDrawer.vue +130 -0
- package/src/containers/Container.vue +1 -2
- package/src/index.ts +1 -0
- package/src/schema.ts +1 -1
- package/src/theme/form-drawer.scss +11 -0
- package/src/theme/index.scss +1 -0
- package/src/theme/panel.scss +6 -0
- package/types/FormDialog.vue.d.ts +2 -0
- package/types/FormDrawer.vue.d.ts +333 -0
- package/types/index.d.ts +1 -0
- package/types/schema.d.ts +1 -1
package/dist/style.css
CHANGED
|
@@ -9,6 +9,15 @@
|
|
|
9
9
|
margin-bottom: 0;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
.m-form-drawer .el-drawer__header {
|
|
13
|
+
margin: 0;
|
|
14
|
+
}
|
|
15
|
+
.m-form-drawer .m-drawer-body {
|
|
16
|
+
height: 100%;
|
|
17
|
+
overflow-y: auto;
|
|
18
|
+
overflow-x: hidden;
|
|
19
|
+
}
|
|
20
|
+
|
|
12
21
|
.fade-enter-active,
|
|
13
22
|
.fade-leave-active {
|
|
14
23
|
transition: opacity 0.5s;
|
|
@@ -106,6 +115,10 @@ fieldset.m-fieldset .m-form-tip {
|
|
|
106
115
|
margin-left: 5px;
|
|
107
116
|
}
|
|
108
117
|
|
|
118
|
+
.m-container-panel:not(:last-of-type) {
|
|
119
|
+
margin-bottom: 20px;
|
|
120
|
+
}
|
|
121
|
+
|
|
109
122
|
.m-fields-table {
|
|
110
123
|
width: 100%;
|
|
111
124
|
}
|