fantasy-ngzorro 1.1.34 → 1.1.35
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 +9 -0
- 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 +10 -1
- package/esm5/hd-form/hd-form.component.js +10 -1
- package/fesm2015/fantasy-ngzorro.js +9 -0
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +9 -0
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/package.json +1 -1
|
@@ -2357,6 +2357,9 @@
|
|
|
2357
2357
|
* @return {?}
|
|
2358
2358
|
*/
|
|
2359
2359
|
function () {
|
|
2360
|
+
if (!this.formList || this.formList.length === 0) {
|
|
2361
|
+
return;
|
|
2362
|
+
}
|
|
2360
2363
|
this.init();
|
|
2361
2364
|
};
|
|
2362
2365
|
/**
|
|
@@ -2368,6 +2371,12 @@
|
|
|
2368
2371
|
* @return {?}
|
|
2369
2372
|
*/
|
|
2370
2373
|
function (changes) {
|
|
2374
|
+
if (changes['formList'] && JSON.stringify(changes['formList'].currentValue) !== JSON.stringify(changes['formList'].previousValue)) {
|
|
2375
|
+
if (!this.formList || this.formList.length === 0) {
|
|
2376
|
+
return;
|
|
2377
|
+
}
|
|
2378
|
+
this.init();
|
|
2379
|
+
}
|
|
2371
2380
|
this.dealRow();
|
|
2372
2381
|
};
|
|
2373
2382
|
/**
|