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.
@@ -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() {