@seniorsistemas/angular-components 17.2.20 → 17.3.1

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.
Files changed (56) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +444 -5
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/kanban/components/kanban-column/kanban-column.component.d.ts +16 -0
  6. package/components/kanban/components/kanban-item/kanban-item.component.d.ts +13 -0
  7. package/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.d.ts +3 -0
  8. package/components/kanban/index.d.ts +4 -0
  9. package/components/kanban/kanban-event.service.d.ts +12 -0
  10. package/components/kanban/kanban.component.d.ts +41 -0
  11. package/components/kanban/kanban.module.d.ts +2 -0
  12. package/components/kanban/models/index.d.ts +2 -0
  13. package/components/kanban/models/kanban-data.d.ts +20 -0
  14. package/components/kanban/models/kanban-template-types.d.ts +7 -0
  15. package/components/kanban/template.directive.d.ts +6 -0
  16. package/components/slide-panel/slide-panel.component.d.ts +1 -0
  17. package/esm2015/components/kanban/components/kanban-column/kanban-column.component.js +82 -0
  18. package/esm2015/components/kanban/components/kanban-item/kanban-item.component.js +44 -0
  19. package/esm2015/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.js +19 -0
  20. package/esm2015/components/kanban/index.js +5 -0
  21. package/esm2015/components/kanban/kanban-event.service.js +27 -0
  22. package/esm2015/components/kanban/kanban.component.js +209 -0
  23. package/esm2015/components/kanban/kanban.module.js +45 -0
  24. package/esm2015/components/kanban/models/index.js +2 -0
  25. package/esm2015/components/kanban/models/kanban-data.js +1 -0
  26. package/esm2015/components/kanban/models/kanban-template-types.js +9 -0
  27. package/esm2015/components/kanban/template.directive.js +20 -0
  28. package/esm2015/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +1 -1
  29. package/esm2015/components/slide-panel/slide-panel.component.js +8 -1
  30. package/esm2015/locale/fallback.js +3 -1
  31. package/esm2015/public-api.js +2 -1
  32. package/esm2015/seniorsistemas-angular-components.js +5 -1
  33. package/esm5/components/kanban/components/kanban-column/kanban-column.component.js +84 -0
  34. package/esm5/components/kanban/components/kanban-item/kanban-item.component.js +45 -0
  35. package/esm5/components/kanban/components/kanban-item-dragging/kanban-item-dragging.component.js +20 -0
  36. package/esm5/components/kanban/index.js +5 -0
  37. package/esm5/components/kanban/kanban-event.service.js +28 -0
  38. package/esm5/components/kanban/kanban.component.js +213 -0
  39. package/esm5/components/kanban/kanban.module.js +48 -0
  40. package/esm5/components/kanban/models/index.js +2 -0
  41. package/esm5/components/kanban/models/kanban-data.js +1 -0
  42. package/esm5/components/kanban/models/kanban-template-types.js +9 -0
  43. package/esm5/components/kanban/template.directive.js +21 -0
  44. package/esm5/components/progressbar/components/progressbar-determinate/progressbar-determinate.component.js +1 -1
  45. package/esm5/components/slide-panel/slide-panel.component.js +8 -1
  46. package/esm5/locale/fallback.js +3 -1
  47. package/esm5/public-api.js +2 -1
  48. package/esm5/seniorsistemas-angular-components.js +5 -1
  49. package/fesm2015/seniorsistemas-angular-components.js +422 -2
  50. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  51. package/fesm5/seniorsistemas-angular-components.js +435 -2
  52. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  53. package/package.json +1 -1
  54. package/public-api.d.ts +1 -0
  55. package/seniorsistemas-angular-components.d.ts +4 -0
  56. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -56,6 +56,7 @@ import { styleTags, tags, HighlightStyle } from '@codemirror/highlight';
56
56
  import { autocompletion, pickedCompletion, startCompletion } from '@codemirror/autocomplete';
57
57
  import { showTooltip } from '@codemirror/tooltip';
58
58
  import { lineNumbers } from '@codemirror/gutter';
59
+ import { moveItemInArray, transferArrayItem, DragDropModule } from '@angular/cdk/drag-drop';
59
60
 
60
61
  var AccordionPanelComponent = /** @class */ (function () {
61
62
  function AccordionPanelComponent() {
@@ -11850,6 +11851,7 @@ var SlidePanelComponent = /** @class */ (function () {
11850
11851
  this.openIcon = "fas fa-chevron-right";
11851
11852
  this.closeIcon = "fas fa-chevron-left";
11852
11853
  this.cache = false;
11854
+ this.createOpen = false;
11853
11855
  this.panelOpened = new EventEmitter();
11854
11856
  this.panelClosed = new EventEmitter();
11855
11857
  this.isOpen = false;
@@ -11880,6 +11882,9 @@ var SlidePanelComponent = /** @class */ (function () {
11880
11882
  _this._calculateSlideHeight();
11881
11883
  _this._calculateSideContentWidth();
11882
11884
  _this.isContentAnimationDisabled = false;
11885
+ if (_this.createOpen) {
11886
+ _this.isOpen = true;
11887
+ }
11883
11888
  });
11884
11889
  };
11885
11890
  SlidePanelComponent.prototype.ngOnDestroy = function () {
@@ -11933,6 +11938,9 @@ var SlidePanelComponent = /** @class */ (function () {
11933
11938
  __decorate([
11934
11939
  Input()
11935
11940
  ], SlidePanelComponent.prototype, "cache", void 0);
11941
+ __decorate([
11942
+ Input()
11943
+ ], SlidePanelComponent.prototype, "createOpen", void 0);
11936
11944
  __decorate([
11937
11945
  Output()
11938
11946
  ], SlidePanelComponent.prototype, "panelOpened", void 0);
@@ -15492,7 +15500,7 @@ var ProgressBarDeterminateComponent = /** @class */ (function () {
15492
15500
  Component({
15493
15501
  selector: "s-progressbar-determinate",
15494
15502
  template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n {{ showValue && value ? value + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || value + '%' }}\n </span>\n </div>\n </div>\n ",
15495
- styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
15503
+ styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10;color:#212533}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
15496
15504
  })
15497
15505
  ], ProgressBarDeterminateComponent);
15498
15506
  return ProgressBarDeterminateComponent;
@@ -15751,6 +15759,8 @@ var PanelModule = /** @class */ (function () {
15751
15759
  }());
15752
15760
 
15753
15761
  var fallback = {
15762
+ "platform.angular_components.count_items_in_target": "{{ count }} itens em {{ target }}",
15763
+ "platform.angular_components.count_items_selected": "{{ count }} itens selecionados",
15754
15764
  "platform.angular_components.january": "Janeiro",
15755
15765
  "platform.angular_components.february": "Fevereiro",
15756
15766
  "platform.angular_components.march": "Março",
@@ -16047,9 +16057,432 @@ var fallback = {
16047
16057
  "platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}"
16048
16058
  };
16049
16059
 
16060
+ var KanbanTemplateTypes;
16061
+ (function (KanbanTemplateTypes) {
16062
+ KanbanTemplateTypes["ColumnHeader"] = "column-header";
16063
+ KanbanTemplateTypes["ColumnEmptyMessage"] = "column-empty-message";
16064
+ KanbanTemplateTypes["ItemHeader"] = "item-header";
16065
+ KanbanTemplateTypes["ItemBody"] = "item-body";
16066
+ KanbanTemplateTypes["ItemFooter"] = "item-footer";
16067
+ })(KanbanTemplateTypes || (KanbanTemplateTypes = {}));
16068
+
16069
+ var TemplateDirective = /** @class */ (function () {
16070
+ function TemplateDirective(template) {
16071
+ this.template = template;
16072
+ }
16073
+ TemplateDirective.ctorParameters = function () { return [
16074
+ { type: TemplateRef }
16075
+ ]; };
16076
+ __decorate([
16077
+ Input("sTemplate")
16078
+ ], TemplateDirective.prototype, "type", void 0);
16079
+ TemplateDirective = __decorate([
16080
+ Directive({
16081
+ selector: "[sTemplate]",
16082
+ })
16083
+ ], TemplateDirective);
16084
+ return TemplateDirective;
16085
+ }());
16086
+
16087
+ var KanbanEventService = /** @class */ (function () {
16088
+ function KanbanEventService() {
16089
+ this.selectAllColumnItemsEvent = new EventEmitter();
16090
+ this.unselectAllColumnItemsEvent = new EventEmitter();
16091
+ this.selectItemEvent = new EventEmitter();
16092
+ this.unselectItemEvent = new EventEmitter();
16093
+ }
16094
+ KanbanEventService.prototype.emitSelectAllColumnItemsEvent = function (column) {
16095
+ this.selectAllColumnItemsEvent.emit(column);
16096
+ };
16097
+ KanbanEventService.prototype.emitUnselectAllColumnItemsEvent = function (column) {
16098
+ this.unselectAllColumnItemsEvent.emit(column);
16099
+ };
16100
+ KanbanEventService.prototype.emitSelectItemEvent = function (item) {
16101
+ this.selectItemEvent.emit(item);
16102
+ };
16103
+ KanbanEventService.prototype.emitUnselectItemEvent = function (item) {
16104
+ this.unselectItemEvent.emit(item);
16105
+ };
16106
+ KanbanEventService = __decorate([
16107
+ Injectable()
16108
+ ], KanbanEventService);
16109
+ return KanbanEventService;
16110
+ }());
16111
+
16112
+ var KanbanComponent = /** @class */ (function () {
16113
+ function KanbanComponent(kanbanEventService) {
16114
+ this.kanbanEventService = kanbanEventService;
16115
+ this.itemsMoved = new EventEmitter();
16116
+ this.dataUpdated = new EventEmitter();
16117
+ this.itemsSelected = new EventEmitter();
16118
+ this.selectedItems = new Set();
16119
+ this.draggingItems = new Set();
16120
+ this._unsubscribe$ = new Subject();
16121
+ }
16122
+ KanbanComponent.prototype.ngOnInit = function () {
16123
+ this._subscribeEvents();
16124
+ this._normalizeData();
16125
+ this._validateInputs();
16126
+ };
16127
+ KanbanComponent.prototype.ngAfterContentInit = function () {
16128
+ this._getTemplates();
16129
+ };
16130
+ KanbanComponent.prototype.ngOnDestroy = function () {
16131
+ this._unsubscribe$.next();
16132
+ this._unsubscribe$.complete();
16133
+ };
16134
+ KanbanComponent.prototype.drop = function (event) {
16135
+ var _this = this;
16136
+ var _a;
16137
+ var previousColumn = this.data.columns.find(function (column) { return column.id === event.previousContainer.id; });
16138
+ var targetColumn = this.data.columns.find(function (column) { return column.id === event.container.id; });
16139
+ if (!previousColumn || !targetColumn) {
16140
+ throw new Error("Unable to obtain information about columns when performing drag and drop");
16141
+ }
16142
+ if (event.previousContainer === event.container) {
16143
+ moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);
16144
+ }
16145
+ else {
16146
+ transferArrayItem(event.previousContainer.data, event.container.data, event.previousIndex, event.currentIndex);
16147
+ }
16148
+ this.selectedItems.forEach(function (item) {
16149
+ var previousIndex = event.previousContainer.data.indexOf(item);
16150
+ if (previousIndex !== -1 && item !== event.item.data) {
16151
+ if (event.previousContainer === event.container) {
16152
+ moveItemInArray(event.container.data, previousIndex, event.currentIndex);
16153
+ }
16154
+ else {
16155
+ transferArrayItem(event.previousContainer.data, event.container.data, previousIndex, event.currentIndex);
16156
+ }
16157
+ }
16158
+ });
16159
+ this.selectedItems.add(event.item.data);
16160
+ this.itemsMoved.emit({
16161
+ items: __spread(this.selectedItems),
16162
+ previousColumn: previousColumn,
16163
+ targetColumn: targetColumn,
16164
+ });
16165
+ if ((_a = this.dataUpdated.observers) === null || _a === void 0 ? void 0 : _a.length) {
16166
+ this.dataUpdated.emit(__assign({}, this.data));
16167
+ }
16168
+ this.data.columns.forEach(function (column) {
16169
+ _this.kanbanEventService.emitUnselectAllColumnItemsEvent(column);
16170
+ });
16171
+ this.selectedItems.clear();
16172
+ };
16173
+ KanbanComponent.prototype.selectItem = function (event, item, column) {
16174
+ if (event.ctrlKey) {
16175
+ if (this.selectedItems.delete(item)) {
16176
+ this.kanbanEventService.emitUnselectItemEvent(item);
16177
+ }
16178
+ else {
16179
+ if (this.selectedColumn && !this.selectedColumn.items.includes(item)) {
16180
+ this.selectedItems.clear();
16181
+ }
16182
+ this.selectedItems.add(item);
16183
+ this.selectedColumn = column;
16184
+ this.kanbanEventService.emitSelectItemEvent(item);
16185
+ }
16186
+ }
16187
+ else {
16188
+ this.selectedItems.clear();
16189
+ this.selectedItems.add(item);
16190
+ this.selectedColumn = column;
16191
+ this.kanbanEventService.emitSelectItemEvent(item);
16192
+ }
16193
+ };
16194
+ KanbanComponent.prototype.dragStarted = function () {
16195
+ var _this = this;
16196
+ this.selectedItems.forEach(function (item) {
16197
+ _this.draggingItems.add(item);
16198
+ });
16199
+ };
16200
+ KanbanComponent.prototype.dragReleased = function () {
16201
+ this.draggingItems.clear();
16202
+ };
16203
+ KanbanComponent.prototype.getLinkedColumns = function (currentColumn) {
16204
+ return this.data.columns
16205
+ .filter(function (column) { return column != currentColumn; })
16206
+ .map(function (column) { return column.id; });
16207
+ };
16208
+ KanbanComponent.prototype.getColumnHeaderTemplate = function () {
16209
+ return this._getCustomTemplate(KanbanTemplateTypes.ColumnHeader);
16210
+ };
16211
+ KanbanComponent.prototype.getColumnEmptyMessageTemplate = function () {
16212
+ return this._getCustomTemplate(KanbanTemplateTypes.ColumnEmptyMessage);
16213
+ };
16214
+ KanbanComponent.prototype.getItemHeaderTemplate = function () {
16215
+ return this._getCustomTemplate(KanbanTemplateTypes.ItemHeader);
16216
+ };
16217
+ KanbanComponent.prototype.getItemBodyTemplate = function () {
16218
+ return this._getCustomTemplate(KanbanTemplateTypes.ItemBody);
16219
+ };
16220
+ KanbanComponent.prototype.getItemFooterTemplate = function () {
16221
+ return this._getCustomTemplate(KanbanTemplateTypes.ItemFooter);
16222
+ };
16223
+ KanbanComponent.prototype._getCustomTemplate = function (type) {
16224
+ var _a;
16225
+ return (_a = this.templates.find(function (template) { return template.type === type; })) === null || _a === void 0 ? void 0 : _a.template;
16226
+ };
16227
+ KanbanComponent.prototype._subscribeEvents = function () {
16228
+ var _this = this;
16229
+ this.kanbanEventService.selectAllColumnItemsEvent
16230
+ .pipe(takeUntil(this._unsubscribe$))
16231
+ .subscribe(function (column) {
16232
+ column.items
16233
+ .filter(function (item) { return !item.disabled; })
16234
+ .forEach(function (item) {
16235
+ _this.selectedItems.add(item);
16236
+ });
16237
+ _this.selectedColumn = column;
16238
+ _this.itemsSelected.emit(__spread(_this.selectedItems));
16239
+ });
16240
+ this.kanbanEventService.unselectAllColumnItemsEvent
16241
+ .pipe(takeUntil(this._unsubscribe$))
16242
+ .subscribe(function (_) {
16243
+ _this.selectedItems.clear();
16244
+ });
16245
+ this.kanbanEventService.selectItemEvent
16246
+ .pipe(takeUntil(this._unsubscribe$))
16247
+ .subscribe(function (item) {
16248
+ if (_this.selectedColumn && !_this.selectedColumn.items.includes(item)) {
16249
+ _this.selectedItems.clear();
16250
+ }
16251
+ _this.selectedItems.add(item);
16252
+ _this.itemsSelected.emit(__spread(_this.selectedItems));
16253
+ // Finding the item column and setting selectedColumn.
16254
+ _this.data.columns.forEach(function (column) {
16255
+ column.items.forEach(function (currentItem) {
16256
+ if (currentItem === item) {
16257
+ _this.selectedColumn = column;
16258
+ return;
16259
+ }
16260
+ });
16261
+ });
16262
+ });
16263
+ this.kanbanEventService.unselectItemEvent
16264
+ .pipe(takeUntil(this._unsubscribe$))
16265
+ .subscribe(function (item) {
16266
+ _this.selectedItems.delete(item);
16267
+ });
16268
+ };
16269
+ KanbanComponent.prototype._normalizeData = function () {
16270
+ this.data.columns.forEach(function (column) {
16271
+ column.id = column.id || "id-" + Math.random().toString(36).substring(2, 9) + "-" + Date.now().toString(36);
16272
+ });
16273
+ };
16274
+ KanbanComponent.prototype._validateInputs = function () {
16275
+ var columns = this.data.columns;
16276
+ var columnIds = this.data.columns.map(function (column) { return column.id; });
16277
+ if (new Set(columnIds).size !== columns.length) {
16278
+ throw new Error("Repeated IDs are not accepted.");
16279
+ }
16280
+ };
16281
+ KanbanComponent.prototype._getTemplates = function () {
16282
+ this.columnHeaderTemplate = this.getColumnHeaderTemplate();
16283
+ this.columnEmptyMessageTemplate = this.getColumnEmptyMessageTemplate();
16284
+ this.itemHeaderTemplate = this.getItemHeaderTemplate();
16285
+ this.itemBodyTemplate = this.getItemBodyTemplate();
16286
+ this.itemFooterTemplate = this.getItemFooterTemplate();
16287
+ };
16288
+ KanbanComponent.ctorParameters = function () { return [
16289
+ { type: KanbanEventService }
16290
+ ]; };
16291
+ __decorate([
16292
+ Input()
16293
+ ], KanbanComponent.prototype, "data", void 0);
16294
+ __decorate([
16295
+ Output()
16296
+ ], KanbanComponent.prototype, "itemsMoved", void 0);
16297
+ __decorate([
16298
+ Output()
16299
+ ], KanbanComponent.prototype, "dataUpdated", void 0);
16300
+ __decorate([
16301
+ Output()
16302
+ ], KanbanComponent.prototype, "itemsSelected", void 0);
16303
+ __decorate([
16304
+ ContentChildren(TemplateDirective)
16305
+ ], KanbanComponent.prototype, "templates", void 0);
16306
+ KanbanComponent = __decorate([
16307
+ Component({
16308
+ selector: 's-kanban',
16309
+ template: "<div class=\"kanban\">\n <s-kanban-column\n *ngFor=\"let column of data.columns\"\n [data]=\"column\"\n [headerTemplate]=\"columnHeaderTemplate\">\n <div\n [id]=\"column.id\"\n style=\"height: 100%; width: 100%;\"\n cdkDropList\n #dynamicList=\"cdkDropList\"\n [cdkDropListData]=\"column.items\"\n [cdkDropListConnectedTo]=\"getLinkedColumns(column)\"\n (cdkDropListDropped)=\"drop($event)\">\n\n <ng-container *ngIf=\"!columnEmptyMessageTemplate; then defaultEmptyMessageTemplate else customEmptyMessageTemplate\"></ng-container>\n\n <ng-template #defaultEmptyMessageTemplate>\n <div *ngIf=\"!column.items.length\" class=\"empty-message\">\n <p class=\"text\">\n <span class=\"fas fa-clock\"></span>&nbsp;\n <span>{{ \"platform.angular_components.count_items_in_target\" | translate:{ count: column.items.length, target: column.title } }}</span>\n </p>\n </div>\n </ng-template>\n\n <ng-template #customEmptyMessageTemplate>\n <ng-container *ngTemplateOutlet=\"columnEmptyMessageTemplate; context: { $implicit: column }\"></ng-container>\n </ng-template>\n\n <div\n *ngFor=\"let item of column.items\"\n cdkDrag\n [cdkDragData]=\"item\"\n [cdkDragDisabled]=\"item.disabled\"\n (cdkDragStarted)=\"dragStarted()\"\n (cdkDragReleased)=\"dragReleased()\"\n (click)=\"selectItem($event, item, column)\">\n \n <ng-container *ngTemplateOutlet=\"itemTemplate\"></ng-container>\n\n <ng-container *cdkDragPreview>\n <ng-container *ngIf=\"selectedItems.size > 1; then itemDraggingTemplate else itemTemplate\"></ng-container>\n </ng-container>\n\n <ng-template #itemTemplate>\n <s-kanban-item\n [item]=\"item\"\n [selected]=\"selectedItems.has(item)\"\n [headerTemplate]=\"itemHeaderTemplate\"\n [bodyTemplate]=\"itemBodyTemplate\"\n [footerTemplate]=\"itemFooterTemplate\">\n </s-kanban-item>\n </ng-template>\n\n <ng-template #itemDraggingTemplate>\n <s-kanban-item-dragging [quantityItems]=\"selectedItems.size\"></s-kanban-item-dragging>\n </ng-template>\n\n <div *cdkDragPlaceholder>\n <div class=\"placeholder\">\n <div class=\"placeholder-line\"></div>\n </div>\n </div>\n </div>\n </div>\n </s-kanban-column>\n</div>\n\n",
16310
+ styles: [".kanban{display:-ms-flexbox;display:flex;gap:16px;width:100%}.kanban .empty-message{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin:16px}.kanban .empty-message .text{overflow:hidden;text-align:center;text-overflow:ellipsis;width:100%;white-space:nowrap}@media screen and (max-width:600px){.kanban{-ms-flex-direction:column;flex-direction:column}}s-kanban-column{display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;min-width:292px}.placeholder{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.placeholder .placeholder-line{background-color:#a5a5b2;height:1px;margin:6px 0;width:50%}"]
16311
+ })
16312
+ ], KanbanComponent);
16313
+ return KanbanComponent;
16314
+ }());
16315
+
16316
+ var KanbanItemComponent = /** @class */ (function () {
16317
+ function KanbanItemComponent(_kanbanEventService) {
16318
+ this._kanbanEventService = _kanbanEventService;
16319
+ this.selected = false;
16320
+ }
16321
+ KanbanItemComponent.prototype.onSelectedChange = function (value) {
16322
+ if (value) {
16323
+ this._kanbanEventService.emitSelectItemEvent(this.item);
16324
+ }
16325
+ else {
16326
+ this._kanbanEventService.emitUnselectItemEvent(this.item);
16327
+ }
16328
+ };
16329
+ KanbanItemComponent.ctorParameters = function () { return [
16330
+ { type: KanbanEventService }
16331
+ ]; };
16332
+ __decorate([
16333
+ Input()
16334
+ ], KanbanItemComponent.prototype, "item", void 0);
16335
+ __decorate([
16336
+ Input()
16337
+ ], KanbanItemComponent.prototype, "selected", void 0);
16338
+ __decorate([
16339
+ Input()
16340
+ ], KanbanItemComponent.prototype, "headerTemplate", void 0);
16341
+ __decorate([
16342
+ Input()
16343
+ ], KanbanItemComponent.prototype, "bodyTemplate", void 0);
16344
+ __decorate([
16345
+ Input()
16346
+ ], KanbanItemComponent.prototype, "footerTemplate", void 0);
16347
+ KanbanItemComponent = __decorate([
16348
+ Component({
16349
+ selector: 's-kanban-item',
16350
+ template: "<p-tieredMenu\n #optionsMenu\n [popup]=\"true\"\n appendTo=\"body\"\n [baseZIndex]=\"9999\"\n [model]=\"item.options\">\n</p-tieredMenu>\n\n<div\n class=\"kanban-item\"\n [ngClass]=\"{\n 'kanban-item--selected': selected && !item.disabled,\n 'kanban-item--disabled': item.disabled\n }\">\n <div class=\"kanban-item__header\">\n <div class=\"content\">\n <form>\n <input\n *ngIf=\"!item.disabled\"\n type=\"checkbox\"\n name=\"checkbox\"\n [(ngModel)]=\"selected\"\n (ngModelChange)=\"onSelectedChange($event)\"\n (click)=\"$event.stopPropagation()\">\n </form>\n <ng-container *ngTemplateOutlet=\"headerTemplate; context: { $implicit: item }\"></ng-container>\n </div>\n <button\n *ngIf=\"item.options && !item.disabled\"\n class=\"options-button\"\n (click)=\"optionsMenu.toggle($event); $event.stopPropagation();\">\n <i class=\"fas fa-ellipsis-v\"></i>\n </button>\n </div>\n <div class=\"kanban-item__body\">\n <ng-container *ngTemplateOutlet=\"bodyTemplate; context: { $implicit: item }\"></ng-container>\n </div>\n <div *ngIf=\"footerTemplate\" class=\"kanban-item__footer\">\n <ng-container *ngTemplateOutlet=\"footerTemplate; context: { $implicit: item }\"></ng-container> \n </div>\n</div>",
16351
+ styles: [".kanban-item{background-color:#fff;border-radius:4px;box-shadow:0 1px 5px 0 rgba(0,0,0,.25);cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;margin:16px;min-width:260px;padding:16px;-webkit-user-select:none;-ms-user-select:none;user-select:none}.kanban-item .kanban-item__header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.kanban-item .kanban-item__header .content{display:-ms-flexbox;display:flex;gap:16px}.kanban-item .kanban-item__header .options-button{background-color:transparent;border:none;cursor:pointer;margin-right:-8px;padding:0 8px}.kanban-item .kanban-item__body{margin:16px 0}.kanban-item .kanban-item__footer{border-top:1px solid #dedce5;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.kanban-item .kanban-item__footer .date-info{-ms-flex-align:center;align-items:center;color:#6e7280;display:-ms-flexbox;display:flex;font-family:\"Open Sans\" sans-serif;font-size:12px;gap:4px;line-height:150%}.kanban-item--selected{border:1px solid #428bca}.kanban-item--disabled{opacity:50%}"]
16352
+ })
16353
+ ], KanbanItemComponent);
16354
+ return KanbanItemComponent;
16355
+ }());
16356
+
16357
+ var KanbanColumnComponent = /** @class */ (function () {
16358
+ function KanbanColumnComponent(kanbanEventService) {
16359
+ this.kanbanEventService = kanbanEventService;
16360
+ this.selectionControl = new FormControl(false);
16361
+ this._unsubscribe$ = new Subject();
16362
+ }
16363
+ KanbanColumnComponent.prototype.ngOnInit = function () {
16364
+ this._validateInputs();
16365
+ this._subscriveEvents();
16366
+ };
16367
+ KanbanColumnComponent.prototype.ngOnDestroy = function () {
16368
+ this._unsubscribe$.next();
16369
+ this._unsubscribe$.complete();
16370
+ };
16371
+ KanbanColumnComponent.prototype._subscriveEvents = function () {
16372
+ var _this = this;
16373
+ this.selectionControl.valueChanges
16374
+ .pipe(takeUntil(this._unsubscribe$))
16375
+ .subscribe(function (value) {
16376
+ if (value) {
16377
+ _this.kanbanEventService.emitSelectAllColumnItemsEvent(_this.data);
16378
+ }
16379
+ else {
16380
+ _this.kanbanEventService.emitUnselectAllColumnItemsEvent(_this.data);
16381
+ }
16382
+ });
16383
+ this.kanbanEventService.unselectItemEvent
16384
+ .pipe(takeUntil(this._unsubscribe$))
16385
+ .subscribe(function (_) {
16386
+ _this.selectionControl.setValue(false, { emitEvent: false });
16387
+ });
16388
+ this.kanbanEventService.selectItemEvent
16389
+ .pipe(takeUntil(this._unsubscribe$))
16390
+ .subscribe(function (item) {
16391
+ if (!_this.data.items.includes(item)) {
16392
+ _this.selectionControl.setValue(false, { emitEvent: false });
16393
+ }
16394
+ });
16395
+ this.kanbanEventService.selectAllColumnItemsEvent
16396
+ .pipe(takeUntil(this._unsubscribe$))
16397
+ .subscribe(function (column) {
16398
+ if (_this.data !== column) {
16399
+ _this.selectionControl.setValue(false, { emitEvent: false });
16400
+ }
16401
+ });
16402
+ this.kanbanEventService.unselectAllColumnItemsEvent
16403
+ .pipe(takeUntil(this._unsubscribe$))
16404
+ .subscribe(function (column) {
16405
+ if (_this.data !== column) {
16406
+ _this.selectionControl.setValue(false, { emitEvent: false });
16407
+ }
16408
+ });
16409
+ };
16410
+ KanbanColumnComponent.prototype._validateInputs = function () {
16411
+ if (!this.data) {
16412
+ throw new Error("data parameter is required");
16413
+ }
16414
+ };
16415
+ KanbanColumnComponent.ctorParameters = function () { return [
16416
+ { type: KanbanEventService }
16417
+ ]; };
16418
+ __decorate([
16419
+ Input()
16420
+ ], KanbanColumnComponent.prototype, "data", void 0);
16421
+ __decorate([
16422
+ Input()
16423
+ ], KanbanColumnComponent.prototype, "headerTemplate", void 0);
16424
+ KanbanColumnComponent = __decorate([
16425
+ Component({
16426
+ selector: "s-kanban-column",
16427
+ template: "<div class=\"kanban-column\">\n <div class=\"kanban-column__header\">\n <div class=\"content\">\n <form>\n <input\n type=\"checkbox\"\n name=\"checkbox\"\n [formControl]=\"selectionControl\">\n </form>\n\n <ng-container *ngIf=\"!headerTemplate; then defaultHeaderTemplate else customHeaderTemplate\"></ng-container>\n \n <ng-template #defaultHeaderTemplate>\n <div class=\"header\">\n <span class=\"title\">{{ data.title }} ({{ data.items.length }})</span>\n </div>\n </ng-template>\n \n <ng-template #customHeaderTemplate>\n <ng-container *ngTemplateOutlet=\"headerTemplate; context: { $implicit: data }\"></ng-container>\n </ng-template>\n </div>\n <s-button\n *ngIf=\"data.options\"\n priority=\"default\"\n [disabled]=\"false\"\n [auxiliary]=\"true\"\n size=\"small\"\n [model]=\"data.options\">\n </s-button>\n </div>\n <div class=\"kanban-column__body\">\n <ng-content></ng-content>\n </div>\n</div>",
16428
+ styles: [".kanban-column{-ms-flex-align:center;align-items:center;background-color:#fbfafc;border:1px solid #dedce5;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;min-height:120px;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:100%}.kanban-column .kanban-column__header{-ms-flex-align:center;align-items:center;border-bottom:1px solid #dedce5;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:16px 16px 8px;width:100%}.kanban-column .kanban-column__header .content{display:-ms-flexbox;display:flex;gap:16px}.kanban-column .kanban-column__header .content .teste{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-family:\"Open Sans\" sans-serif}.kanban-column .kanban-column__header .content .teste .title{font-size:14px;font-weight:800}.kanban-column .kanban-column__header .content .teste .description{font-size:12px}.kanban-column .kanban-column__body{display:-ms-flexbox;display:flex;height:100%;-ms-flex-pack:center;justify-content:center;width:100%}"]
16429
+ })
16430
+ ], KanbanColumnComponent);
16431
+ return KanbanColumnComponent;
16432
+ }());
16433
+
16434
+ var KanbanItemDraggingComponent = /** @class */ (function () {
16435
+ function KanbanItemDraggingComponent() {
16436
+ this.quantityItems = 0;
16437
+ }
16438
+ __decorate([
16439
+ Input()
16440
+ ], KanbanItemDraggingComponent.prototype, "quantityItems", void 0);
16441
+ KanbanItemDraggingComponent = __decorate([
16442
+ Component({
16443
+ selector: "s-kanban-item-dragging",
16444
+ template: "<div\n *ngIf=\"quantityItems\"\n class=\"kanban-item-dragging\">\n</div>\n\n<div\n class=\"kanban-item-dragging\"\n [ngClass]=\"{ 'kanban-item-dragging--over': quantityItems }\">\n <div class=\"content\">\n <input type=\"checkbox\" checked />\n <s-badge\n [text]=\"'platform.angular_components.count_items_selected' | translate:{ count: quantityItems }\"\n color=\"blue\">\n </s-badge>\n </div>\n</div>",
16445
+ styles: [".kanban-item-dragging{background-color:#fff;border:1px solid #428bca;border-radius:4px;box-shadow:0 1px 5px 0 rgba(0,0,0,.25);height:52px;padding:16px;width:260px}.kanban-item-dragging .content{display:-ms-flexbox;display:flex;gap:16px}.kanban-item-dragging--over{left:12px;position:relative;top:-64px}"]
16446
+ })
16447
+ ], KanbanItemDraggingComponent);
16448
+ return KanbanItemDraggingComponent;
16449
+ }());
16450
+
16451
+ var KanbanModule = /** @class */ (function () {
16452
+ function KanbanModule() {
16453
+ }
16454
+ KanbanModule = __decorate([
16455
+ NgModule({
16456
+ imports: [
16457
+ CommonModule,
16458
+ FormsModule,
16459
+ ReactiveFormsModule,
16460
+ TranslateModule,
16461
+ DragDropModule,
16462
+ BadgeModule,
16463
+ ButtonModule,
16464
+ TieredMenuModule$1,
16465
+ ],
16466
+ declarations: [
16467
+ KanbanComponent,
16468
+ KanbanItemComponent,
16469
+ KanbanColumnComponent,
16470
+ KanbanItemDraggingComponent,
16471
+ TemplateDirective,
16472
+ ],
16473
+ exports: [
16474
+ KanbanComponent,
16475
+ TemplateDirective,
16476
+ ],
16477
+ providers: [KanbanEventService],
16478
+ })
16479
+ ], KanbanModule);
16480
+ return KanbanModule;
16481
+ }());
16482
+
16050
16483
  /**
16051
16484
  * Generated bundle index. Do not edit.
16052
16485
  */
16053
16486
 
16054
- export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, RadioButtonComponent as ɵba, RowComponent as ɵbb, SectionComponent as ɵbc, SelectFieldComponent as ɵbd, SliderFieldComponent as ɵbe, TextAreaFieldComponent as ɵbf, TextAreaIAFieldComponent as ɵbg, IAssistService as ɵbh, TextFieldComponent as ɵbi, DecimalField as ɵbk, SideTableComponent as ɵbl, StructureModule as ɵbm, HeaderComponent as ɵbn, FooterComponent as ɵbo, NumberLocaleOptions as ɵbp, ThumbnailService as ɵbq, BorderButtonModule as ɵbr, BorderButtonComponent as ɵbs, SlidePanelService as ɵbt, TimelineItemModule as ɵbu, TimelineIconItemComponent as ɵbv, HorizontalTimelineModule as ɵbw, HorizontalTimelineComponent as ɵbx, VerticalTimelineModule as ɵby, VerticalTimelineComponent as ɵbz, CountryPhonePickerService as ɵc, RangeLineComponent as ɵca, CollapseOptionComponent as ɵcb, CollapsedItemsComponent as ɵcc, VerticalItemsComponent as ɵcd, InfiniteScrollModule as ɵce, InfiniteScrollDirective as ɵcf, CustomTranslationsModule as ɵcg, CodeEditorComponent as ɵch, CoreFacade as ɵci, CodeMirror6Core as ɵcj, TieredMenuEventService as ɵck, TieredMenuService as ɵcl, TieredMenuComponent as ɵcm, TieredMenuNestedComponent as ɵcn, TieredMenuItemComponent as ɵco, TieredMenuDividerComponent as ɵcp, ProgressBarDeterminateComponent as ɵcq, ProgressBarIndeterminateComponent as ɵcr, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BignumberFieldComponent as ɵm, BooleanFieldComponent as ɵn, BooleanSwitchFieldComponent as ɵo, CalendarFieldComponent as ɵp, ChipsFieldComponent as ɵq, CountryPhonePickerFieldComponent as ɵr, CurrencyFieldComponent as ɵs, DynamicFieldComponent as ɵt, DynamicFormDirective as ɵu, FieldsetComponent as ɵv, FileUploadComponent$1 as ɵw, LookupFieldComponent as ɵx, NumberFieldComponent as ɵy, PasswordFieldComponent as ɵz };
16487
+ export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, RadioButtonComponent as ɵba, RowComponent as ɵbb, SectionComponent as ɵbc, SelectFieldComponent as ɵbd, SliderFieldComponent as ɵbe, TextAreaFieldComponent as ɵbf, TextAreaIAFieldComponent as ɵbg, IAssistService as ɵbh, TextFieldComponent as ɵbi, DecimalField as ɵbk, SideTableComponent as ɵbl, StructureModule as ɵbm, HeaderComponent as ɵbn, FooterComponent as ɵbo, NumberLocaleOptions as ɵbp, ThumbnailService as ɵbq, BorderButtonModule as ɵbr, BorderButtonComponent as ɵbs, SlidePanelService as ɵbt, TimelineItemModule as ɵbu, TimelineIconItemComponent as ɵbv, HorizontalTimelineModule as ɵbw, HorizontalTimelineComponent as ɵbx, VerticalTimelineModule as ɵby, VerticalTimelineComponent as ɵbz, CountryPhonePickerService as ɵc, RangeLineComponent as ɵca, CollapseOptionComponent as ɵcb, CollapsedItemsComponent as ɵcc, VerticalItemsComponent as ɵcd, InfiniteScrollModule as ɵce, InfiniteScrollDirective as ɵcf, CustomTranslationsModule as ɵcg, CodeEditorComponent as ɵch, CoreFacade as ɵci, CodeMirror6Core as ɵcj, TieredMenuEventService as ɵck, TieredMenuService as ɵcl, TieredMenuComponent as ɵcm, TieredMenuNestedComponent as ɵcn, TieredMenuItemComponent as ɵco, TieredMenuDividerComponent as ɵcp, ProgressBarDeterminateComponent as ɵcq, ProgressBarIndeterminateComponent as ɵcr, KanbanEventService as ɵcs, KanbanItemComponent as ɵct, KanbanColumnComponent as ɵcu, KanbanItemDraggingComponent as ɵcv, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BignumberFieldComponent as ɵm, BooleanFieldComponent as ɵn, BooleanSwitchFieldComponent as ɵo, CalendarFieldComponent as ɵp, ChipsFieldComponent as ɵq, CountryPhonePickerFieldComponent as ɵr, CurrencyFieldComponent as ɵs, DynamicFieldComponent as ɵt, DynamicFormDirective as ɵu, FieldsetComponent as ɵv, FileUploadComponent$1 as ɵw, LookupFieldComponent as ɵx, NumberFieldComponent as ɵy, PasswordFieldComponent as ɵz };
16055
16488
  //# sourceMappingURL=seniorsistemas-angular-components.js.map