@seniorsistemas/angular-components 17.10.2 → 17.10.3

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.
@@ -15825,6 +15825,8 @@ var KanbanColumnComponent = /** @class */ (function () {
15825
15825
  };
15826
15826
  KanbanColumnComponent.prototype._createTieredOptions = function () {
15827
15827
  var _this = this;
15828
+ if (!this.data.options)
15829
+ return;
15828
15830
  var options = [];
15829
15831
  this.data.options.forEach(function (option) {
15830
15832
  options.push(__assign(__assign({}, option), { command: function () { option.command(_this.data); } }));
@@ -15933,6 +15935,8 @@ var KanbanItemComponent = /** @class */ (function () {
15933
15935
  };
15934
15936
  KanbanItemComponent.prototype._createTieredOptions = function () {
15935
15937
  var _this = this;
15938
+ if (!this.item.options)
15939
+ return;
15936
15940
  var options = [];
15937
15941
  this.item.options.forEach(function (option) {
15938
15942
  options.push(__assign(__assign({}, option), { command: function () { option.command(_this.item); } }));