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.
- package/bundles/ps-toolkit-ui.umd.js +2 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/row/table.row.component.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 ||
|
|
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);
|