@form-create/iview 2.5.9 → 2.5.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@form-create/iview",
3
- "version": "2.5.9",
3
+ "version": "2.5.13",
4
4
  "description": "iview动态表单|form-create is a form generation component that can generate dynamic rendering, data collection, verification and submission functions through JSON. Supports 3 UI frameworks, and supports the generation of any Vue components. Built-in 20 kinds of commonly used form components and custom components, no matter how complex forms can be easily handled.",
5
5
  "main": "./dist/form-create.min.js",
6
6
  "module": "./dist/form-create.min.js",
@@ -43,27 +43,27 @@
43
43
  },
44
44
  "homepage": "http://www.form-create.com",
45
45
  "dependencies": {
46
- "@form-create/component-ivu-checkbox": "^2.5.9",
47
- "@form-create/component-ivu-frame": "^2.5.9",
48
- "@form-create/component-ivu-group": "^2.5.9",
49
- "@form-create/component-ivu-radio": "^2.5.9",
50
- "@form-create/component-ivu-select": "^2.5.9",
51
- "@form-create/component-ivu-tree": "^2.5.9",
52
- "@form-create/component-ivu-upload": "^2.5.9",
53
- "@form-create/component-subform": "^2.5.9",
54
- "@form-create/core": "^2.5.9",
55
- "@form-create/utils": "^2.5.9"
46
+ "@form-create/component-ivu-checkbox": "^2.5.13",
47
+ "@form-create/component-ivu-frame": "^2.5.11",
48
+ "@form-create/component-ivu-group": "^2.5.12",
49
+ "@form-create/component-ivu-radio": "^2.5.13",
50
+ "@form-create/component-ivu-select": "^2.5.12",
51
+ "@form-create/component-ivu-tree": "^2.5.11",
52
+ "@form-create/component-ivu-upload": "^2.5.11",
53
+ "@form-create/component-subform": "^2.5.12",
54
+ "@form-create/core": "^2.5.13",
55
+ "@form-create/utils": "^2.5.11"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
60
  "devDependencies": {
61
- "@form-create/component-wangeditor": "^2.5.5",
61
+ "@form-create/component-wangeditor": "^2.5.13",
62
62
  "@vue/cli-plugin-babel": "^4.5.9",
63
63
  "@vue/cli-service": "^4.5.3",
64
64
  "@vue/composition-api": "^1.0.0-beta.22",
65
65
  "iview": "^3.3.3",
66
66
  "v-jsoneditor": "^1.4.2"
67
67
  },
68
- "gitHead": "b4e39524136df76ad16c92a3697fdfe94ac296a7"
68
+ "gitHead": "5cb1a526bfa15ad79532153e613747d092cbc3e5"
69
69
  }
package/src/core/api.js CHANGED
@@ -47,13 +47,13 @@ export default function extendApi(api, h) {
47
47
  }
48
48
  },
49
49
  validateField: (field, callback) => {
50
- if (!h.fieldCtx[field])
51
- return;
52
- const sub = h.subForm[field];
50
+ const ctx = h.getFieldCtx(field);
51
+ if (!ctx) return;
52
+ const sub = h.subForm[ctx.id];
53
53
  let len = 0;
54
54
  let flag;
55
55
  const validate = () => {
56
- h.$manager.validateField(field, (...args) => {
56
+ h.$manager.validateField(ctx.id, (...args) => {
57
57
  if (args[0]) {
58
58
  flag = args;
59
59
  } else if (flag) {
@@ -86,22 +86,24 @@ export default function extendApi(api, h) {
86
86
  clearValidateState(fields, clearSub = true) {
87
87
  api.helper.tidyFields(fields).forEach(field => {
88
88
  if (clearSub) this.clearSubValidateState(field);
89
- const ctx = h.fieldCtx[field];
90
- if (!ctx) return;
91
- h.$manager.clearValidateState(ctx);
89
+ h.getCtxs(field).forEach(ctx => {
90
+ h.$manager.clearValidateState(ctx);
91
+ });
92
92
  });
93
93
  },
94
94
  clearSubValidateState(fields) {
95
95
  api.helper.tidyFields(fields).forEach(field => {
96
- const subForm = h.subForm[field];
97
- if (!subForm) return;
98
- if (Array.isArray(subForm)) {
99
- subForm.forEach(form => {
100
- form.clearValidateState();
101
- })
102
- } else if (subForm) {
103
- subForm.clearValidateState();
104
- }
96
+ h.getCtxs(field).forEach(ctx => {
97
+ const subForm = h.subForm[ctx.id];
98
+ if (!subForm) return;
99
+ if (Array.isArray(subForm)) {
100
+ subForm.forEach(form => {
101
+ form.clearValidateState();
102
+ })
103
+ } else if (subForm) {
104
+ subForm.clearValidateState();
105
+ }
106
+ });
105
107
  })
106
108
  },
107
109
  btn: {
@@ -103,10 +103,9 @@ export default {
103
103
  const {inline, col: _col} = this.rule.props;
104
104
  const item = isFalse(rule.wrap.show) ? children : this.$r(mergeProps([rule.wrap, {
105
105
  props: {
106
- label: rule.title.title,
107
106
  labelWidth,
108
107
  ...(rule.wrap || {}),
109
- prop: ctx.field,
108
+ prop: ctx.id,
110
109
  rules: rule.validate,
111
110
  },
112
111
  class: rule.className,
@@ -117,6 +116,7 @@ export default {
117
116
  return (inline === true || isFalse(_col) || isFalse(col.show)) ? item : this.makeCol(rule, uni, [item]);
118
117
  },
119
118
  isTitle(rule) {
119
+ if (this.options.form.title === false) return false;
120
120
  const title = rule.title;
121
121
  return !((!title.title && !title.native) || isFalse(title.show))
122
122
  },
@@ -132,33 +132,32 @@ export default {
132
132
  type: titleProp.type || 'span',
133
133
  }]), children);
134
134
 
135
- if (!isFalse(infoProp.show) && (infoProp.info || infoProp.native)) {
136
- if (infoProp.icon !== false) {
137
- children[infoProp.align !== 'left' ? 'unshift' : 'push'](this.$r({
138
- type: 'icon',
139
- props: {type: infoProp.icon === true ? iviewConfig.infoIcon : infoProp.icon, size: 16},
140
- style: 'margin-top: -1px',
141
- key: `${uni}i`
142
- }));
143
- }
144
-
135
+ if (!isFalse(infoProp.show) && (infoProp.info || infoProp.native) && !isFalse(infoProp.icon)) {
145
136
  const prop = {
146
137
  type: infoProp.type || 'poptip',
147
138
  props: {...infoProp},
148
139
  key: `${uni}pop`,
149
140
  slot: 'label'
150
141
  };
151
-
152
142
  const field = 'content';
153
143
  if (infoProp.info && !hasProperty(prop.props, field)) {
154
144
  prop.props[field] = infoProp.info;
155
145
  }
156
-
157
- return this.$r(mergeProps([infoProp, prop]), [
158
- titleFn(true)
159
- ])
146
+ children[infoProp.align !== 'left' ? 'unshift' : 'push'](this.$r(mergeProps([infoProp, prop]), [
147
+ this.$r({
148
+ type: 'icon',
149
+ props: {type: infoProp.icon === true ? iviewConfig.infoIcon : infoProp.icon, size: 16},
150
+ style: 'margin-top: -1px',
151
+ key: `${uni}i`
152
+ })
153
+ ]));
160
154
  }
161
- return titleFn();
155
+ return this.$r(mergeProps([titleProp, {
156
+ props: titleProp,
157
+ slot: titleProp.slot || 'label',
158
+ key: `${uni}tit`,
159
+ type: titleProp.type || 'span',
160
+ }]), children);
162
161
  },
163
162
  makeCol(rule, uni, children) {
164
163
  const col = rule.col;
@@ -5,3 +5,7 @@
5
5
  .form-create .form-create .ivu-form-item .ivu-form-item {
6
6
  margin-bottom: 0px;
7
7
  }
8
+
9
+ .form-create{
10
+ transform: rotateZ(0);
11
+ }