@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
|
@@ -15971,6 +15971,8 @@
|
|
|
15971
15971
|
};
|
|
15972
15972
|
KanbanColumnComponent.prototype._createTieredOptions = function () {
|
|
15973
15973
|
var _this = this;
|
|
15974
|
+
if (!this.data.options)
|
|
15975
|
+
return;
|
|
15974
15976
|
var options = [];
|
|
15975
15977
|
this.data.options.forEach(function (option) {
|
|
15976
15978
|
options.push(__assign(__assign({}, option), { command: function () { option.command(_this.data); } }));
|
|
@@ -16079,6 +16081,8 @@
|
|
|
16079
16081
|
};
|
|
16080
16082
|
KanbanItemComponent.prototype._createTieredOptions = function () {
|
|
16081
16083
|
var _this = this;
|
|
16084
|
+
if (!this.item.options)
|
|
16085
|
+
return;
|
|
16082
16086
|
var options = [];
|
|
16083
16087
|
this.item.options.forEach(function (option) {
|
|
16084
16088
|
options.push(__assign(__assign({}, option), { command: function () { option.command(_this.item); } }));
|