fantasy-ngzorro 1.1.32 → 1.1.33
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 +8 -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-detail-form/hd-detail-form.component.js +7 -1
- package/esm2015/model/common-type.js +3 -1
- package/esm5/hd-detail-form/hd-detail-form.component.js +7 -1
- package/esm5/model/common-type.js +3 -1
- package/fesm2015/fantasy-ngzorro.js +8 -0
- package/fesm2015/fantasy-ngzorro.js.map +1 -1
- package/fesm5/fantasy-ngzorro.js +8 -0
- package/fesm5/fantasy-ngzorro.js.map +1 -1
- package/model/common-type.d.ts +1 -0
- package/package.json +1 -1
|
@@ -452,6 +452,12 @@
|
|
|
452
452
|
* @return {?}
|
|
453
453
|
*/
|
|
454
454
|
function () {
|
|
455
|
+
// 剔除掉formCols里面不需要显示的内容
|
|
456
|
+
this.formCols = this.formCols.filter((/**
|
|
457
|
+
* @param {?} item
|
|
458
|
+
* @return {?}
|
|
459
|
+
*/
|
|
460
|
+
function (item) { return !item.hide; }));
|
|
455
461
|
};
|
|
456
462
|
HdDetailFormComponent.decorators = [
|
|
457
463
|
{ type: core.Component, args: [{
|
|
@@ -542,6 +548,8 @@
|
|
|
542
548
|
HdOption.prototype.value;
|
|
543
549
|
/** @type {?} */
|
|
544
550
|
HdOption.prototype.color;
|
|
551
|
+
/** @type {?} */
|
|
552
|
+
HdOption.prototype.hide;
|
|
545
553
|
}
|
|
546
554
|
var SelectOption = /** @class */ (function () {
|
|
547
555
|
function SelectOption() {
|