ps-toolkit-ui 0.0.34 → 0.0.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.
@@ -2525,6 +2525,9 @@
2525
2525
  };
2526
2526
  TableRowComponent.prototype.getOptions = function () {
2527
2527
  var _this = this;
2528
+ console.log(this.table.options);
2529
+ console.log(this.table.options.map(function (x) { return x.condition; }));
2530
+ console.log(this.table.options.map(function (x) { return _this.row[x.condition]; }));
2528
2531
  return (this.addChildren !== null && (this.table.level === null || this.table.level > this.level) ? [this.addChildren] : [])
2529
2532
  .concat(this.table.options.filter(function (x) { return x.condition == null ||
2530
2533
  (x.condition.startsWith('!') ? !_this.row[x.condition.substring(1)] : _this.row[x.condition]); }).map(function (o) {