@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.
- package/bundles/seniorsistemas-angular-components.umd.js +4 -0
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/kanban/components/kanban-column/kanban-column.component.js +3 -1
- package/esm2015/components/kanban/components/kanban-item/kanban-item.component.js +3 -1
- package/esm5/components/kanban/components/kanban-column/kanban-column.component.js +3 -1
- package/esm5/components/kanban/components/kanban-item/kanban-item.component.js +3 -1
- package/fesm2015/seniorsistemas-angular-components.js +4 -0
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +4 -0
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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); } }));
|