fantasy-ngzorro 1.0.16 → 1.0.17
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/bundles/fantasy-ngzorro.umd.js +5 -8
- package/bundles/fantasy-ngzorro.umd.js.map +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js +1 -1
- package/bundles/fantasy-ngzorro.umd.min.js.map +1 -1
- package/esm2015/hd-form/hd-form.component.js +6 -9
- package/esm5/hd-form/hd-form.component.js +6 -9
- package/fesm2015/fantasy-ngzorro.js +5 -8
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +5 -8
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/package.json +1 -1
|
@@ -1445,17 +1445,14 @@
|
|
|
1445
1445
|
if (this.formList[m].isRowFirst === 1) {
|
|
1446
1446
|
this.formList[m].columnItems = [];
|
|
1447
1447
|
/** @type {?} */
|
|
1448
|
-
var space =
|
|
1449
|
-
for (var n = 1; n <
|
|
1450
|
-
if (this.formList[m + n].
|
|
1451
|
-
space++;
|
|
1448
|
+
var space = 0;
|
|
1449
|
+
for (var n = 1; n < formListLength - m; n++) {
|
|
1450
|
+
if (space === 4 || this.formList[m + n].isRowFirst === 1) {
|
|
1452
1451
|
break;
|
|
1453
1452
|
}
|
|
1454
|
-
if (this.formList[m + n] && this.formList[m + n].isRowFirst === 0) {
|
|
1453
|
+
if (!this.formList[m + n].hide && this.formList[m + n] && this.formList[m + n].isRowFirst === 0) {
|
|
1455
1454
|
this.formList[m].columnItems.push(this.formList[m + n]);
|
|
1456
|
-
|
|
1457
|
-
else {
|
|
1458
|
-
break;
|
|
1455
|
+
space++;
|
|
1459
1456
|
}
|
|
1460
1457
|
}
|
|
1461
1458
|
}
|