ps-toolkit-ui 0.0.7 → 0.0.8

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.
@@ -2500,7 +2500,8 @@
2500
2500
  TableRowComponent.prototype.getOptions = function () {
2501
2501
  var _this = this;
2502
2502
  return (this.addChildren !== null && (this.table.level === null || this.table.level > this.level) ? [this.addChildren] : [])
2503
- .concat(this.table.options.filter(function (x) { return x.condition == null || _this.row[x.condition]; }).map(function (o) {
2503
+ .concat(this.table.options.filter(function (x) { return x.condition == null ||
2504
+ (x.condition.startsWith('!') ? !_this.row[x.condition.substring(1)] : _this.row[x.condition]); }).map(function (o) {
2504
2505
  var i = HelperClass.clone(o);
2505
2506
  if (i.url) {
2506
2507
  i.url = i.url.replace('{}', _this.row.Id);