@seniorsistemas/angular-components 17.15.4 → 17.16.0
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 +378 -6
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/index.d.ts +1 -0
- package/components/picklist/index.d.ts +4 -0
- package/components/picklist/picklist/models/picklist-models.d.ts +8 -0
- package/components/picklist/picklist/picklist.component.d.ts +71 -0
- package/components/picklist/picklist.module.d.ts +2 -0
- package/components/table/table-column/table-columns.component.d.ts +8 -5
- package/esm2015/components/index.js +2 -1
- package/esm2015/components/picklist/index.js +5 -0
- package/esm2015/components/picklist/picklist/models/picklist-models.js +6 -0
- package/esm2015/components/picklist/picklist/picklist.component.js +305 -0
- package/esm2015/components/picklist/picklist.module.js +25 -0
- package/esm2015/components/table/table-column/table-columns.component.js +7 -6
- package/esm2015/locale/fallback.js +7 -2
- package/esm2015/seniorsistemas-angular-components.js +2 -1
- package/esm5/components/index.js +2 -1
- package/esm5/components/picklist/index.js +5 -0
- package/esm5/components/picklist/picklist/models/picklist-models.js +6 -0
- package/esm5/components/picklist/picklist/picklist.component.js +339 -0
- package/esm5/components/picklist/picklist.module.js +28 -0
- package/esm5/components/table/table-column/table-columns.component.js +7 -6
- package/esm5/locale/fallback.js +7 -2
- package/esm5/seniorsistemas-angular-components.js +2 -1
- package/fesm2015/seniorsistemas-angular-components.js +334 -8
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +371 -8
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +1 -0
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __decorate, __values, __assign, __extends, __spread, __awaiter, __generator, __param, __rest, __read } from 'tslib';
|
|
2
2
|
import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, KeyValueDiffers, HostBinding, ChangeDetectorRef, TemplateRef, InjectionToken, Inject, Pipe, ɵɵinject, ViewEncapsulation, ViewContainerRef, ContentChild, Optional, ViewChildren } from '@angular/core';
|
|
3
3
|
import { trigger, transition, style as style$7, animate, state, group, query, animateChild } from '@angular/animations';
|
|
4
|
-
import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin } from 'rxjs';
|
|
4
|
+
import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin, pipe } from 'rxjs';
|
|
5
5
|
import { takeUntil, tap, map, switchMap, catchError, first, filter, take, delay, debounceTime, repeat, finalize } from 'rxjs/operators';
|
|
6
6
|
import { CommonModule } from '@angular/common';
|
|
7
7
|
import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule, FormControl, FormGroup, NG_VALIDATORS, FormBuilder, Validators, FormArray, ControlContainer } from '@angular/forms';
|
|
@@ -9636,6 +9636,7 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
9636
9636
|
calendar: __assign(__assign({}, this.localeService.getLocaleOptions().calendar), { dateFormat: convertToMomentDateFormat(this.localeService.getLocaleOptions().calendar.dateFormat) }),
|
|
9637
9637
|
number: __assign(__assign({}, this.localeService.getLocaleOptions().number), { scale: 0 }),
|
|
9638
9638
|
};
|
|
9639
|
+
this.cellsData = [];
|
|
9639
9640
|
this.formattedColumns = [];
|
|
9640
9641
|
}
|
|
9641
9642
|
TableColumnsComponent.prototype.ngOnChanges = function (changes) {
|
|
@@ -9648,7 +9649,7 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
9648
9649
|
TableColumnsComponent.prototype.isArray = function (value) {
|
|
9649
9650
|
return Array.isArray(value);
|
|
9650
9651
|
};
|
|
9651
|
-
TableColumnsComponent.prototype.
|
|
9652
|
+
TableColumnsComponent.prototype.getCellData = function (column) {
|
|
9652
9653
|
var columnValue = column.columnValue, separator = column.separator, uninformed = column.uninformed;
|
|
9653
9654
|
if (typeof columnValue === "string") {
|
|
9654
9655
|
var splittedString_1 = columnValue.split(separator);
|
|
@@ -9657,7 +9658,7 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
9657
9658
|
return {
|
|
9658
9659
|
value: string,
|
|
9659
9660
|
isUninformed: string === uninformed,
|
|
9660
|
-
separator: !isLastIndex ? separator :
|
|
9661
|
+
separator: !isLastIndex ? separator : null,
|
|
9661
9662
|
};
|
|
9662
9663
|
});
|
|
9663
9664
|
}
|
|
@@ -9679,8 +9680,8 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
9679
9680
|
var columns = ((_a = changes.columns) === null || _a === void 0 ? void 0 : _a.currentValue) || this.columns;
|
|
9680
9681
|
var rowValue = ((_b = changes.rowValue) === null || _b === void 0 ? void 0 : _b.currentValue) || this.rowValue;
|
|
9681
9682
|
var locale = ((_c = changes.locale) === null || _c === void 0 ? void 0 : _c.currentValue) || this.locale;
|
|
9682
|
-
this.formattedColumns =
|
|
9683
|
-
|
|
9683
|
+
this.formattedColumns = columns.map(function (column) { return _this.getColumnValue(column, rowValue, locale); });
|
|
9684
|
+
this.cellsData = this.formattedColumns.map(function (column) { return _this.getCellData(column); });
|
|
9684
9685
|
this.viewContainerRef.createEmbeddedView(this.columnsTemplate);
|
|
9685
9686
|
};
|
|
9686
9687
|
TableColumnsComponent.prototype.getColumnSeparator = function (column) {
|
|
@@ -9870,7 +9871,7 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
9870
9871
|
], TableColumnsComponent.prototype, "locale", void 0);
|
|
9871
9872
|
TableColumnsComponent = __decorate([
|
|
9872
9873
|
Component({
|
|
9873
|
-
template: "<ng-template #columnsTemplate>\n <td\n *ngFor=\"let column of formattedColumns\"\n [ngStyle]=\"column.style\"\n (click)=\"column.onColumnClick ? column.onColumnClick(rowValue) : null\"\n >\n <div *ngIf=\"column.type !== 'TOKENS' || !isArray(column.columnValue); else tokensTemplate\">\n <span *ngIf=\"column.type !== 'LINK'\" [sTooltip]=\"column.tooltip\" [escape]=\"false\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container>\n </span>\n\n <
|
|
9874
|
+
template: "<ng-template #columnsTemplate>\n <td\n *ngFor=\"let column of formattedColumns; let i = index\"\n [ngStyle]=\"column.style\"\n (click)=\"column.onColumnClick ? column.onColumnClick(rowValue) : null\"\n >\n <div *ngIf=\"column.type !== 'TOKENS' || !isArray(column.columnValue); else tokensTemplate\">\n <span *ngIf=\"column.type !== 'LINK'\" [sTooltip]=\"column.tooltip\" [escape]=\"false\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container>\n </span>\n\n <ng-container *ngIf=\"column.type === 'LINK'\">\n <span *ngIf=\"cellsData[i][0].isUninformed; else anchorTemplate\" class=\"sds-empty-value\">{{ cellsData[i][0].value }}</span>\n\n <ng-template #anchorTemplate>\n <a [sTooltip]=\"column.tooltip\" [escape]=\"false\" (click)=\"column.onLinkClick ? column.onLinkClick(rowValue) : null\">\n <ng-container *ngTemplateOutlet=\"columnValueTemplate\"></ng-container>\n </a>\n </ng-template>\n </ng-container>\n\n <ng-template #columnValueTemplate>\n <ng-container *ngFor=\"let cellData of cellsData[i]\">\n <span *ngIf=\"cellData.isUninformed; else isInformedTemplate\" class=\"sds-empty-value\">{{ cellData.value }}</span>\n\n <ng-template #isInformedTemplate>\n <s-badge\n *ngIf=\"column.badgeConfigs; else withoutBadgeTemplate\"\n [sTooltip]=\"column.tooltip\"\n [color]=\"column.badgeConfigs.color\"\n [text]=\"cellData.value\"\n ></s-badge>\n\n <ng-template #withoutBadgeTemplate>\n <span>{{ cellData.value }}</span>\n </ng-template>\n </ng-template>\n\n <span *ngIf=\"cellData.separator\">{{ cellData.separator }}</span>\n </ng-container>\n\n <ng-container *ngIf=\"!!column.infoSign\">\n <span *sInfoSign=\"column.infoSign\"></span>\n </ng-container>\n </ng-template>\n </div>\n\n <ng-template #tokensTemplate>\n <s-token-list [tokens]=\"column.columnValue\" [hidePointerEvents]=\"true\"></s-token-list>\n\n <ng-container *ngIf=\"!!column.infoSign\">\n <span *sInfoSign=\"column.infoSign\"></span>\n </ng-container>\n </ng-template>\n </td>\n</ng-template>\n",
|
|
9874
9875
|
selector: "s-table-columns",
|
|
9875
9876
|
styles: [":host{display:none}"]
|
|
9876
9877
|
}),
|
|
@@ -20110,6 +20111,363 @@ var LabelValueModule = /** @class */ (function () {
|
|
|
20110
20111
|
return LabelValueModule;
|
|
20111
20112
|
}());
|
|
20112
20113
|
|
|
20114
|
+
var PicklistTemplateTypes;
|
|
20115
|
+
(function (PicklistTemplateTypes) {
|
|
20116
|
+
PicklistTemplateTypes["ItemToSelect"] = "item-to-select";
|
|
20117
|
+
PicklistTemplateTypes["SelectedItem"] = "selected-item";
|
|
20118
|
+
})(PicklistTemplateTypes || (PicklistTemplateTypes = {}));
|
|
20119
|
+
|
|
20120
|
+
var PicklistComponent = /** @class */ (function () {
|
|
20121
|
+
function PicklistComponent(cdr) {
|
|
20122
|
+
this.cdr = cdr;
|
|
20123
|
+
this.itensToSelect = [];
|
|
20124
|
+
this.selectedItens = [];
|
|
20125
|
+
this.showCheckbox = false;
|
|
20126
|
+
this.filterBy = '';
|
|
20127
|
+
this.selectedItensChange = new EventEmitter();
|
|
20128
|
+
this.itensToSelectChange = new EventEmitter();
|
|
20129
|
+
this.availableItensFilter = '';
|
|
20130
|
+
this.selectedItensFilter = '';
|
|
20131
|
+
this.itensToSelectFilterUtil = {
|
|
20132
|
+
rawItensToSelect: [],
|
|
20133
|
+
filteredItensToSelect: [],
|
|
20134
|
+
};
|
|
20135
|
+
this.selectedItensFilterUtil = {
|
|
20136
|
+
rawSelectedItens: [],
|
|
20137
|
+
filteredSelectedItens: [],
|
|
20138
|
+
};
|
|
20139
|
+
this.selectedItensMap = new Set();
|
|
20140
|
+
this.itensToSelectId = randomHash('itensToSelect');
|
|
20141
|
+
this.selectedItensId = randomHash('selectedItens');
|
|
20142
|
+
}
|
|
20143
|
+
PicklistComponent.prototype.ngAfterViewInit = function () {
|
|
20144
|
+
var _a, _b;
|
|
20145
|
+
this.itemToSelectTemplate = (_a = this.templates.find(function (x) { return x.type === PicklistTemplateTypes.ItemToSelect; })) === null || _a === void 0 ? void 0 : _a.template;
|
|
20146
|
+
this.itemSelectedTemplate = (_b = this.templates.find(function (x) { return x.type === PicklistTemplateTypes.SelectedItem; })) === null || _b === void 0 ? void 0 : _b.template;
|
|
20147
|
+
if (!this.itemToSelectTemplate) {
|
|
20148
|
+
console.error("Missing template for " + PicklistTemplateTypes.ItemToSelect + " add this template using sTemplate directive.");
|
|
20149
|
+
}
|
|
20150
|
+
if (!this.itemSelectedTemplate) {
|
|
20151
|
+
console.error("Missing template for " + PicklistTemplateTypes.SelectedItem + " add this template using sTemplate directive.");
|
|
20152
|
+
}
|
|
20153
|
+
this.cdr.detectChanges();
|
|
20154
|
+
};
|
|
20155
|
+
PicklistComponent.prototype.ngOnChanges = function (changes) {
|
|
20156
|
+
if (changes.itensToSelect && changes.itensToSelect.firstChange) {
|
|
20157
|
+
this.itensToSelectFilterUtil = {
|
|
20158
|
+
rawItensToSelect: this.itensToSelect,
|
|
20159
|
+
filteredItensToSelect: this.itensToSelect,
|
|
20160
|
+
};
|
|
20161
|
+
}
|
|
20162
|
+
if (changes.selectedItens && changes.selectedItens.firstChange) {
|
|
20163
|
+
this.selectedItensFilterUtil = {
|
|
20164
|
+
filteredSelectedItens: this.selectedItens,
|
|
20165
|
+
rawSelectedItens: this.selectedItens
|
|
20166
|
+
};
|
|
20167
|
+
}
|
|
20168
|
+
};
|
|
20169
|
+
PicklistComponent.prototype.toggleSelected = function (internalPicklistItem, containerListId) {
|
|
20170
|
+
if (internalPicklistItem.disabled) {
|
|
20171
|
+
return;
|
|
20172
|
+
}
|
|
20173
|
+
this.unselectedItensByListId(this.getOppositiveId(containerListId));
|
|
20174
|
+
internalPicklistItem.selected = !internalPicklistItem.selected;
|
|
20175
|
+
if (internalPicklistItem.selected) {
|
|
20176
|
+
this.selectedItensMap.add(internalPicklistItem);
|
|
20177
|
+
}
|
|
20178
|
+
else {
|
|
20179
|
+
this.selectedItensMap.delete(internalPicklistItem);
|
|
20180
|
+
}
|
|
20181
|
+
this.cdr.detectChanges();
|
|
20182
|
+
};
|
|
20183
|
+
PicklistComponent.prototype.remove = function (all) {
|
|
20184
|
+
var _this = this;
|
|
20185
|
+
if (all === void 0) { all = false; }
|
|
20186
|
+
var itens = filterEnabled((all ? this.selectedItensFilterUtil.rawSelectedItens : this.selectedItensMap));
|
|
20187
|
+
if (!itens.length) {
|
|
20188
|
+
return;
|
|
20189
|
+
}
|
|
20190
|
+
itens.forEach(function (itemRemove) {
|
|
20191
|
+
_this.itensToSelect.push(itemRemove);
|
|
20192
|
+
itemRemove.selected = false;
|
|
20193
|
+
_this.selectedItensMap.delete(itemRemove);
|
|
20194
|
+
});
|
|
20195
|
+
this.selectedItens = this.selectedItens.filter(function (x) { return !itens.includes(x); });
|
|
20196
|
+
this.selectedItensFilterUtil.rawSelectedItens = this.selectedItens;
|
|
20197
|
+
this.filterSelectedItens();
|
|
20198
|
+
this.filterItensToSelect();
|
|
20199
|
+
this.emitData();
|
|
20200
|
+
this.cdr.detectChanges();
|
|
20201
|
+
};
|
|
20202
|
+
PicklistComponent.prototype.add = function (all) {
|
|
20203
|
+
var _this = this;
|
|
20204
|
+
if (all === void 0) { all = false; }
|
|
20205
|
+
var itens = filterEnabled((all ? this.itensToSelectFilterUtil.rawItensToSelect : this.selectedItensMap));
|
|
20206
|
+
if (!itens.length) {
|
|
20207
|
+
return;
|
|
20208
|
+
}
|
|
20209
|
+
itens.forEach(function (itemRemove) {
|
|
20210
|
+
_this.selectedItens.push(itemRemove);
|
|
20211
|
+
itemRemove.selected = false;
|
|
20212
|
+
_this.selectedItensMap.delete(itemRemove);
|
|
20213
|
+
});
|
|
20214
|
+
this.itensToSelect = this.itensToSelect.filter(function (x) { return !itens.includes(x); });
|
|
20215
|
+
this.itensToSelectFilterUtil.rawItensToSelect = this.itensToSelect;
|
|
20216
|
+
this.filterSelectedItens();
|
|
20217
|
+
this.filterItensToSelect();
|
|
20218
|
+
this.emitData();
|
|
20219
|
+
this.cdr.detectChanges();
|
|
20220
|
+
};
|
|
20221
|
+
PicklistComponent.prototype.filterItensToSelect = function () {
|
|
20222
|
+
var _this = this;
|
|
20223
|
+
var searchTerm = this.availableItensFilter;
|
|
20224
|
+
searchTerm = searchTerm.trim();
|
|
20225
|
+
if (searchTerm) {
|
|
20226
|
+
this.itensToSelectFilterUtil.filteredItensToSelect = this.itensToSelectFilterUtil.rawItensToSelect
|
|
20227
|
+
.filter(function (item) { return compareStrings(item.data[_this.filterBy], searchTerm); });
|
|
20228
|
+
}
|
|
20229
|
+
else {
|
|
20230
|
+
this.itensToSelectFilterUtil.filteredItensToSelect = this.itensToSelectFilterUtil.rawItensToSelect;
|
|
20231
|
+
}
|
|
20232
|
+
this.cdr.detectChanges();
|
|
20233
|
+
};
|
|
20234
|
+
PicklistComponent.prototype.filterSelectedItens = function () {
|
|
20235
|
+
var _this = this;
|
|
20236
|
+
var searchTerm = this.selectedItensFilter;
|
|
20237
|
+
searchTerm = searchTerm.trim();
|
|
20238
|
+
if (searchTerm) {
|
|
20239
|
+
this.selectedItensFilterUtil.filteredSelectedItens = this.selectedItensFilterUtil.rawSelectedItens
|
|
20240
|
+
.filter(function (item) { return compareStrings(item.data[_this.filterBy], searchTerm); });
|
|
20241
|
+
}
|
|
20242
|
+
else {
|
|
20243
|
+
this.selectedItensFilterUtil.filteredSelectedItens = this.selectedItensFilterUtil.rawSelectedItens;
|
|
20244
|
+
}
|
|
20245
|
+
};
|
|
20246
|
+
PicklistComponent.prototype.drop = function (event) {
|
|
20247
|
+
var isDifferentContainer = event.container !== event.previousContainer;
|
|
20248
|
+
if (!isDifferentContainer) {
|
|
20249
|
+
return;
|
|
20250
|
+
}
|
|
20251
|
+
var isRemovedItens = event.previousContainer.id === this.selectedItensId;
|
|
20252
|
+
if (isRemovedItens) {
|
|
20253
|
+
this.remove();
|
|
20254
|
+
}
|
|
20255
|
+
else {
|
|
20256
|
+
this.add();
|
|
20257
|
+
}
|
|
20258
|
+
this.cdr.detectChanges();
|
|
20259
|
+
};
|
|
20260
|
+
PicklistComponent.prototype.onDragStart = function (event, dragListId) {
|
|
20261
|
+
this.unselectedItensByListId(this.getOppositiveId(dragListId));
|
|
20262
|
+
event.source.data.selected = true;
|
|
20263
|
+
this.selectedItensMap.add(event.source.data);
|
|
20264
|
+
this.selectedItensMap.forEach(function (x) { return x.invisible = true; });
|
|
20265
|
+
this.cdr.detectChanges();
|
|
20266
|
+
};
|
|
20267
|
+
PicklistComponent.prototype.onDragRelease = function () {
|
|
20268
|
+
this.selectedItensMap.forEach(function (item) { return item.invisible = false; });
|
|
20269
|
+
};
|
|
20270
|
+
PicklistComponent.prototype.checkAllAvailableItensChange = function (checked) {
|
|
20271
|
+
this._checkAllSelectedItensChange(checked, this.itensToSelectFilterUtil.filteredItensToSelect, this.itensToSelectId);
|
|
20272
|
+
};
|
|
20273
|
+
PicklistComponent.prototype.checkAllSelectedItensChange = function (checked) {
|
|
20274
|
+
this._checkAllSelectedItensChange(checked, this.selectedItensFilterUtil.filteredSelectedItens, this.selectedItensId);
|
|
20275
|
+
};
|
|
20276
|
+
Object.defineProperty(PicklistComponent.prototype, "disableSelectedItensCheckbox", {
|
|
20277
|
+
get: function () {
|
|
20278
|
+
return filterEnabled(this.selectedItensFilterUtil.filteredSelectedItens).length === 0;
|
|
20279
|
+
},
|
|
20280
|
+
enumerable: true,
|
|
20281
|
+
configurable: true
|
|
20282
|
+
});
|
|
20283
|
+
Object.defineProperty(PicklistComponent.prototype, "disableItensToSelectCheckbox", {
|
|
20284
|
+
get: function () {
|
|
20285
|
+
return filterEnabled(this.itensToSelectFilterUtil.filteredItensToSelect).length === 0;
|
|
20286
|
+
},
|
|
20287
|
+
enumerable: true,
|
|
20288
|
+
configurable: true
|
|
20289
|
+
});
|
|
20290
|
+
Object.defineProperty(PicklistComponent.prototype, "itensToSelectAllSelected", {
|
|
20291
|
+
get: function () {
|
|
20292
|
+
return this._checkAllSelectedByList(this.itensToSelectFilterUtil.filteredItensToSelect);
|
|
20293
|
+
},
|
|
20294
|
+
enumerable: true,
|
|
20295
|
+
configurable: true
|
|
20296
|
+
});
|
|
20297
|
+
Object.defineProperty(PicklistComponent.prototype, "selectedItensAllSelected", {
|
|
20298
|
+
get: function () {
|
|
20299
|
+
return this._checkAllSelectedByList(this.selectedItensFilterUtil.filteredSelectedItens);
|
|
20300
|
+
},
|
|
20301
|
+
enumerable: true,
|
|
20302
|
+
configurable: true
|
|
20303
|
+
});
|
|
20304
|
+
Object.defineProperty(PicklistComponent.prototype, "canAddItens", {
|
|
20305
|
+
get: function () {
|
|
20306
|
+
return this.itensToSelect.filter(function (x) { return x === null || x === void 0 ? void 0 : x.selected; }).length > 0;
|
|
20307
|
+
},
|
|
20308
|
+
enumerable: true,
|
|
20309
|
+
configurable: true
|
|
20310
|
+
});
|
|
20311
|
+
Object.defineProperty(PicklistComponent.prototype, "canRemoveItens", {
|
|
20312
|
+
get: function () {
|
|
20313
|
+
return this.selectedItens.filter(function (x) { return x === null || x === void 0 ? void 0 : x.selected; }).length > 0;
|
|
20314
|
+
},
|
|
20315
|
+
enumerable: true,
|
|
20316
|
+
configurable: true
|
|
20317
|
+
});
|
|
20318
|
+
PicklistComponent.prototype._checkAllSelectedByList = function (list) {
|
|
20319
|
+
var _listItens = filterEnabled(list);
|
|
20320
|
+
if (!_listItens.length) {
|
|
20321
|
+
return false;
|
|
20322
|
+
}
|
|
20323
|
+
else {
|
|
20324
|
+
return _listItens.every(function (x) { return x.selected; });
|
|
20325
|
+
}
|
|
20326
|
+
};
|
|
20327
|
+
PicklistComponent.prototype._checkAllSelectedItensChange = function (checked, list, listId) {
|
|
20328
|
+
var _this = this;
|
|
20329
|
+
this.unselectedItensByListId(listId === this.selectedItensId ? this.itensToSelectId : this.selectedItensId);
|
|
20330
|
+
filterEnabled(list).forEach(function (item) {
|
|
20331
|
+
item.selected = checked;
|
|
20332
|
+
_this.selectedItensMap.add(item);
|
|
20333
|
+
});
|
|
20334
|
+
this.cdr.detectChanges();
|
|
20335
|
+
};
|
|
20336
|
+
PicklistComponent.prototype.unselectedItensByListId = function (listId) {
|
|
20337
|
+
var _this = this;
|
|
20338
|
+
var clearList = this.getAllElementsByListId(listId);
|
|
20339
|
+
clearList.forEach(function (x) {
|
|
20340
|
+
x.selected = false;
|
|
20341
|
+
_this.selectedItensMap.delete(x);
|
|
20342
|
+
});
|
|
20343
|
+
this.cdr.detectChanges();
|
|
20344
|
+
};
|
|
20345
|
+
PicklistComponent.prototype.getAllElementsByListId = function (listId) {
|
|
20346
|
+
return listId === this.selectedItensId ? this.selectedItensFilterUtil.rawSelectedItens : this.itensToSelectFilterUtil.rawItensToSelect;
|
|
20347
|
+
};
|
|
20348
|
+
PicklistComponent.prototype.getOppositiveId = function (listId) {
|
|
20349
|
+
return listId === this.selectedItensId ? this.itensToSelectId : this.selectedItensId;
|
|
20350
|
+
};
|
|
20351
|
+
PicklistComponent.prototype.emitData = function () {
|
|
20352
|
+
this.itensToSelectChange.emit(parseValueEmit(this.itensToSelect));
|
|
20353
|
+
this.selectedItensChange.emit(parseValueEmit(this.selectedItens));
|
|
20354
|
+
};
|
|
20355
|
+
PicklistComponent.ctorParameters = function () { return [
|
|
20356
|
+
{ type: ChangeDetectorRef }
|
|
20357
|
+
]; };
|
|
20358
|
+
__decorate([
|
|
20359
|
+
Input()
|
|
20360
|
+
], PicklistComponent.prototype, "itensToSelect", void 0);
|
|
20361
|
+
__decorate([
|
|
20362
|
+
Input()
|
|
20363
|
+
], PicklistComponent.prototype, "selectedItens", void 0);
|
|
20364
|
+
__decorate([
|
|
20365
|
+
Input()
|
|
20366
|
+
], PicklistComponent.prototype, "availableItensLabel", void 0);
|
|
20367
|
+
__decorate([
|
|
20368
|
+
Input()
|
|
20369
|
+
], PicklistComponent.prototype, "availableItensPlaceholder", void 0);
|
|
20370
|
+
__decorate([
|
|
20371
|
+
Input()
|
|
20372
|
+
], PicklistComponent.prototype, "addSelectedItensLabel", void 0);
|
|
20373
|
+
__decorate([
|
|
20374
|
+
Input()
|
|
20375
|
+
], PicklistComponent.prototype, "addAllItensLabel", void 0);
|
|
20376
|
+
__decorate([
|
|
20377
|
+
Input()
|
|
20378
|
+
], PicklistComponent.prototype, "selectedItensLabel", void 0);
|
|
20379
|
+
__decorate([
|
|
20380
|
+
Input()
|
|
20381
|
+
], PicklistComponent.prototype, "selectedItensPlaceholder", void 0);
|
|
20382
|
+
__decorate([
|
|
20383
|
+
Input()
|
|
20384
|
+
], PicklistComponent.prototype, "removeSelectedItemsLabel", void 0);
|
|
20385
|
+
__decorate([
|
|
20386
|
+
Input()
|
|
20387
|
+
], PicklistComponent.prototype, "removeAllItemsLabel", void 0);
|
|
20388
|
+
__decorate([
|
|
20389
|
+
Input()
|
|
20390
|
+
], PicklistComponent.prototype, "showCheckbox", void 0);
|
|
20391
|
+
__decorate([
|
|
20392
|
+
Input()
|
|
20393
|
+
], PicklistComponent.prototype, "filterBy", void 0);
|
|
20394
|
+
__decorate([
|
|
20395
|
+
Output()
|
|
20396
|
+
], PicklistComponent.prototype, "selectedItensChange", void 0);
|
|
20397
|
+
__decorate([
|
|
20398
|
+
Output()
|
|
20399
|
+
], PicklistComponent.prototype, "itensToSelectChange", void 0);
|
|
20400
|
+
__decorate([
|
|
20401
|
+
ContentChildren(TemplateDirective)
|
|
20402
|
+
], PicklistComponent.prototype, "templates", void 0);
|
|
20403
|
+
PicklistComponent = __decorate([
|
|
20404
|
+
Component({
|
|
20405
|
+
selector: 's-picklist',
|
|
20406
|
+
template: "<ng-template #previewRender let-itens=\"itens\" let-template=\"template\">\n <section class=\"picklist-items\">\n <ng-container *ngFor=\"let item of itens\">\n <ng-container *ngTemplateOutlet=\"template; context: { item: item.data }\"></ng-container>\n </ng-container>\n </section>\n</ng-template>\n\n<ng-template #picklistItensRender let-id=\"id\" let-itens=\"itens\" let-template=\"template\" let-listConnectedTo=\"listConnectedTo\">\n <div\n class=\"picklist-items\"\n cdkDropList\n [id]=\"id\"\n [cdkDropListSortingDisabled]=\"true\"\n [cdkDropListData]=\"itens\"\n [cdkDropListConnectedTo]=\"listConnectedTo\"\n (cdkDropListDropped)=\"drop($event)\">\n <div\n *ngFor=\"let item of itens\"\n cdkDrag\n [cdkDragDisabled]=\"item.disabled\"\n [cdkDragData]=\"item\"\n (click)=\"toggleSelected(item, id)\"\n (cdkDragStarted)=\"onDragStart($event, id)\"\n (cdkDragReleased)=\"onDragRelease()\"\n class=\"picklist-item\"\n [class.picklist-disabled]=\"item.disabled\"\n [class.picklist-item-invisible]=\"item.invisible\"\n [class.picklist-item-active]=\"item.selected\">\n <input\n type=\"checkbox\"\n class=\"input-checkbox\"\n [(ngModel)]=\"item.selected\"\n [disabled]=\"item.disabled\"\n *ngIf=\"showCheckbox\">\n <div class=\"picklist-content\">\n <ng-container *ngTemplateOutlet=\"template; context: { item: item.data, selected: item.selected, disabled: item.disabled }\"></ng-container>\n </div>\n <ng-container *cdkDragPreview>\n <ng-container *ngTemplateOutlet=\"previewRender; context: { itens: selectedItensMap, template: template }\"></ng-container>\n </ng-container>\n </div>\n</div>\n</ng-template>\n\n<ng-template #checkboxTitleRender let-disabled=\"disabled\" let-checked=\"checked\" let-changeFn=\"changeFn\">\n <input\n *ngIf=\"showCheckbox\"\n class=\"input-checkbox\"\n type=\"checkbox\"\n [disabled]=\"disabled\"\n [checked]=\"checked\"\n (change)=\"changeFn($event.target.checked)\">\n</ng-template>\n\n<div class=\"picklist-container\">\n <div class=\"picklist-item-container\">\n <div class=\"picklist-box\">\n <div class=\"picklist-title-container\">\n <ng-container *ngIf=\"!filterBy\">\n <ng-container *ngTemplateOutlet=\"checkboxTitleRender; context: { disabled: disableItensToSelectCheckbox, checked: itensToSelectAllSelected, changeFn: checkAllAvailableItensChange.bind(this) }\"></ng-container>\n </ng-container>\n <span class=\"picklist-title\">\n {{ availableItensLabel || 'platform.angular_components.available-items' | translate }}\n </span>\n </div>\n <div class=\"picklist-filter\" *ngIf=\"filterBy && showCheckbox\">\n <ng-container *ngTemplateOutlet=\"checkboxTitleRender; context: { disabled: disableItensToSelectCheckbox, checked: itensToSelectAllSelected, changeFn: checkAllAvailableItensChange.bind(this) }\"></ng-container>\n <input\n *ngIf=\"filterBy\"\n type=\"text\"\n class=\"input-search\"\n [(ngModel)]=\"availableItensFilter\"\n (ngModelChange)=\"filterItensToSelect()\"\n [placeholder]=\"availableItensPlaceholder || 'plataform.angular_components.picklist-placeholder' | translate\">\n </div>\n <ng-container *ngTemplateOutlet=\"picklistItensRender;\n context: {\n id: itensToSelectId,\n itens: itensToSelectFilterUtil.filteredItensToSelect,\n template: itemToSelectTemplate,\n listConnectedTo: selectedItensId\n }\">\n </ng-container>\n </div>\n <div class=\"buttons-container\">\n <s-button\n [label]=\"addSelectedItensLabel || 'platform.angular_components.add' | translate\"\n priority=\"primary\"\n rightIconClass=\"fa fa-fw fa-arrow-right\"\n [disabled]=\"!canAddItens\"\n (onClick)=\"add()\"\n [auxiliary]=\"false\"\n [caret]=\"false\">\n </s-button>\n <s-button\n [label]=\"addAllItensLabel || 'platform.angular_components.add_all' | translate\"\n priority=\"link\"\n (onClick)=\"add(true)\"\n [auxiliary]=\"false\">\n </s-button>\n </div>\n </div>\n <div class=\"picklist-item-container\">\n <div class=\"picklist-box\">\n <div class=\"picklist-title-container\">\n <ng-container *ngIf=\"!filterBy\">\n <ng-container *ngTemplateOutlet=\"checkboxTitleRender; context: { disabled: disableSelectedItensCheckbox, checked: selectedItensAllSelected, changeFn: checkAllSelectedItensChange.bind(this) }\"></ng-container>\n </ng-container>\n <span class=\"picklist-title\">\n {{ selectedItensLabel || 'platform.angular_components.selected-items' | translate }}\n </span>\n </div>\n <div class=\"picklist-filter\" *ngIf=\"filterBy && showCheckbox\">\n <ng-container *ngTemplateOutlet=\"checkboxTitleRender; context: { disabled: disableSelectedItensCheckbox, checked: selectedItensAllSelected, changeFn: checkAllSelectedItensChange.bind(this) }\"></ng-container>\n <input\n *ngIf=\"filterBy\"\n type=\"text\"\n class=\"input-search\"\n [(ngModel)]=\"selectedItensFilter\"\n (ngModelChange)=\"filterSelectedItens()\"\n [placeholder]=\"selectedItensPlaceholder || 'plataform.angular_components.picklist-placeholder' | translate\">\n </div>\n <ng-container *ngTemplateOutlet=\"picklistItensRender;\n context: {\n id: selectedItensId,\n itens: selectedItensFilterUtil.filteredSelectedItens,\n template: itemSelectedTemplate,\n listConnectedTo: itensToSelectId\n }\">\n\n </ng-container>\n </div>\n <div class=\"buttons-container\">\n <s-button\n [label]=\"removeSelectedItemsLabel || 'platform.angular_components.remove' | translate\"\n priority=\"primary\"\n iconClass=\"fa fa-fw fa-arrow-left\"\n [disabled]=\"!canRemoveItens\"\n [auxiliary]=\"false\"\n (onClick)=\"remove()\"\n [caret]=\"false\">\n </s-button>\n <s-button\n [label]=\"removeAllItemsLabel || 'platform.angular_components.remove_all' | translate\"\n priority=\"link\"\n (onClick)=\"remove(true)\"\n [auxiliary]=\"false\">\n </s-button>\n </div>\n </div>\n</div>\n",
|
|
20407
|
+
styles: [".picklist-container{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;border-radius:4px solid #dedce5;width:100%;background-color:#fff;gap:20px;padding:8px}.picklist-container .picklist-item-container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex:1;flex:1}.picklist-container .picklist-item-container .picklist-box{border:1px solid #dedce5;padding:8px;height:100%;min-width:200px}.picklist-container .picklist-item-container .picklist-box .picklist-filter{display:-ms-flexbox;display:flex;width:100%}.picklist-container .picklist-item-container .picklist-box .picklist-filter .input-search{border:1px solid #dedce5;min-height:35px;width:100%;border-radius:3px;margin-bottom:10px;margin-top:10px;padding:0 8px;-ms-flex:1;flex:1}.picklist-container .picklist-item-container .picklist-box .picklist-title-container{width:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.picklist-container .picklist-item-container .picklist-box .picklist-title-container .picklist-title{font-family:Open Sans;font-size:14px;font-weight:700;line-height:21px;text-underline-position:from-font;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.picklist-container .picklist-item-container .picklist-box .picklist-items{max-height:23em;overflow:auto;height:100%;min-height:55px}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-content{width:100%;height:100%;padding-right:8px;border-radius:3px;margin-bottom:8px}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-item{height:55px;border:3px;display:-ms-flexbox;display:flex}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-item:not(.picklist-disabled){cursor:pointer}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-item:hover:not(.picklist-disabled,.picklist-item-active,.picklist-item-invisible){background-color:#f1f7f8}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-item-active:not(.picklist-item-invisible){background-color:#d5e8ec}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-disabled{opacity:.5;background-color:#fbfafc}.picklist-container .picklist-item-container .picklist-box .picklist-items .picklist-item-invisible{display:none!important}.picklist-container .picklist-item-container .buttons-container{padding-top:10px;display:-ms-flexbox;display:flex}.picklist-container .picklist-item-container .input-checkbox{margin:12px}"]
|
|
20408
|
+
})
|
|
20409
|
+
], PicklistComponent);
|
|
20410
|
+
return PicklistComponent;
|
|
20411
|
+
}());
|
|
20412
|
+
var normalizeString = function (str) {
|
|
20413
|
+
return str.normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase();
|
|
20414
|
+
};
|
|
20415
|
+
var ɵ0$3 = normalizeString;
|
|
20416
|
+
/**
|
|
20417
|
+
* Compares two strings by normalizing them to a case-insensitive and accent-free form,
|
|
20418
|
+
* and checks if the main string contains the substring.
|
|
20419
|
+
*
|
|
20420
|
+
* @param mainString - The string to be searched.
|
|
20421
|
+
* @param substring - The string to search for within the main string.
|
|
20422
|
+
* @returns A boolean indicating whether the normalized main string contains the normalized substring.
|
|
20423
|
+
*/
|
|
20424
|
+
var compareStrings = function (mainString, substring) {
|
|
20425
|
+
return normalizeString(mainString).includes(normalizeString(substring));
|
|
20426
|
+
};
|
|
20427
|
+
var ɵ1$2 = compareStrings;
|
|
20428
|
+
var randomHash = function (prefix) {
|
|
20429
|
+
if (prefix === void 0) { prefix = 'id'; }
|
|
20430
|
+
return prefix + "-" + Math.random().toString(36).substring(2, 9) + "-" + Date.now().toString(36);
|
|
20431
|
+
};
|
|
20432
|
+
var ɵ2$1 = randomHash;
|
|
20433
|
+
var filterEnabled = function (list) {
|
|
20434
|
+
var _list = list instanceof Set ? Array.from(list) : list;
|
|
20435
|
+
return _list.filter(function (x) { return !x.disabled; });
|
|
20436
|
+
};
|
|
20437
|
+
var ɵ3 = filterEnabled;
|
|
20438
|
+
var mapData = function (list) {
|
|
20439
|
+
return list.map(function (x) { return x.data; });
|
|
20440
|
+
};
|
|
20441
|
+
var ɵ4 = mapData;
|
|
20442
|
+
var parseValueEmit = pipe(filterEnabled, mapData);
|
|
20443
|
+
var parseItensPickList = function (array, disabledFn) {
|
|
20444
|
+
return array.map(function (x) {
|
|
20445
|
+
return {
|
|
20446
|
+
data: x,
|
|
20447
|
+
disabled: disabledFn ? disabledFn(x) : false
|
|
20448
|
+
};
|
|
20449
|
+
});
|
|
20450
|
+
};
|
|
20451
|
+
|
|
20452
|
+
var PicklistModule = /** @class */ (function () {
|
|
20453
|
+
function PicklistModule() {
|
|
20454
|
+
}
|
|
20455
|
+
PicklistModule = __decorate([
|
|
20456
|
+
NgModule({
|
|
20457
|
+
declarations: [PicklistComponent],
|
|
20458
|
+
imports: [
|
|
20459
|
+
CommonModule,
|
|
20460
|
+
TranslateModule,
|
|
20461
|
+
DragDropModule,
|
|
20462
|
+
FormsModule,
|
|
20463
|
+
ButtonModule,
|
|
20464
|
+
],
|
|
20465
|
+
exports: [PicklistComponent]
|
|
20466
|
+
})
|
|
20467
|
+
], PicklistModule);
|
|
20468
|
+
return PicklistModule;
|
|
20469
|
+
}());
|
|
20470
|
+
|
|
20113
20471
|
var fallback = {
|
|
20114
20472
|
"platform.angular_components.drag_your_photo_or": "Arraste sua foto ou",
|
|
20115
20473
|
"platform.angular_components.select_a_file": "selecione um arquivo",
|
|
@@ -20424,12 +20782,17 @@ var fallback = {
|
|
|
20424
20782
|
"platform.angular_components.country_name_tm": "Turquemenistão",
|
|
20425
20783
|
"platform.angular_components.country_name_uz": "Uzbequistão",
|
|
20426
20784
|
"platform.angular_components.country_name_ve": "Venezuela",
|
|
20427
|
-
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}"
|
|
20785
|
+
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}",
|
|
20786
|
+
"platform.angular_components.available-items": "Itens disponíveis",
|
|
20787
|
+
"platform.angular_components.selected-items": "Itens selecionados",
|
|
20788
|
+
"plataform.angular_components.picklist-placeholder": "Busque pelo nome ou termo",
|
|
20789
|
+
"platform.angular_components.add_all": "Adicionar todos",
|
|
20790
|
+
"platform.angular_components.remove_all": "Remover todos"
|
|
20428
20791
|
};
|
|
20429
20792
|
|
|
20430
20793
|
/**
|
|
20431
20794
|
* Generated bundle index. Do not edit.
|
|
20432
20795
|
*/
|
|
20433
20796
|
|
|
20434
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, CheckboxComponent, CheckboxModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, 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, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, 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, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, LocalizedNumberInputModule as ɵbj, NumberInputModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberInputModule as ɵbp, BignumberFieldComponent as ɵbq, CheckboxFieldModule as ɵbr, CheckboxFieldComponent as ɵbs, ProfilePictureModule as ɵbt, ThumbnailService as ɵbu, StructureModule as ɵbv, HeaderComponent as ɵbw, FooterComponent as ɵbx, ProfilePictureFieldComponent as ɵby, EditorFieldModule as ɵbz, TieredMenuEventService as ɵc, EditorFieldComponent as ɵca, AutocompleteFieldComponent as ɵcb, BooleanFieldComponent as ɵcc, BooleanSwitchFieldComponent as ɵcd, CalendarFieldComponent as ɵce, ChipsFieldComponent as ɵcf, CountryPhonePickerFieldComponent as ɵcg, DynamicFieldComponent as ɵch, DynamicFormDirective as ɵci, FieldsetComponent as ɵcj, FileUploadComponent$1 as ɵck, LookupFieldComponent as ɵcl, RadioButtonComponent as ɵcm, RowComponent as ɵcn, SectionComponent as ɵco, SelectFieldComponent as ɵcp, SliderFieldComponent as ɵcq, TextAreaFieldComponent as ɵcr, TextAreaIAFieldComponent as ɵcs, IAssistService as ɵct, DecimalField as ɵcv, SideTableComponent as ɵcw, InfiniteScrollModule as ɵcx, InfiniteScrollDirective as ɵcy, IAInsightSidebarComponent as ɵcz, TieredMenuService as ɵd, IAInsightCardComponent as ɵda, IAInsightCardLoaderComponent as ɵdb, InlineEditItemComponent as ɵdc, LocaleService as ɵdd, InlineEditCalendarComponent as ɵde, InlineEditLookupComponent as ɵdf, InlineEditNumberComponent as ɵdg, InlineEditTextComponent as ɵdh, InlineEditTextAreaComponent as ɵdi, InlineEditTextAreaIAComponent as ɵdj, KanbanEventService as ɵdk, KanbanItemComponent as ɵdl, KanbanColumnComponent as ɵdm, KanbanItemDraggingComponent as ɵdn, NumberLocaleOptions as ɵdo, BorderButtonModule as ɵdp, BorderButtonComponent as ɵdq, ProgressBarDeterminateComponent as ɵdr, ProgressBarIndeterminateComponent as ɵds, SelectButtonItemComponent as ɵdt, SlidePanelService as ɵdu, TimelineItemModule as ɵdv, TimelineIconItemComponent as ɵdw, HorizontalTimelineModule as ɵdx, HorizontalTimelineComponent as ɵdy, VerticalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineComponent as ɵea, RangeLineComponent as ɵeb, CollapseOptionComponent as ɵec, CollapsedItemsComponent as ɵed, VerticalItemsComponent as ɵee, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
|
|
20797
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, CheckboxComponent, CheckboxModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, 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, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, LocalizedNumberInputModule as ɵbj, NumberInputModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberInputModule as ɵbp, BignumberFieldComponent as ɵbq, CheckboxFieldModule as ɵbr, CheckboxFieldComponent as ɵbs, ProfilePictureModule as ɵbt, ThumbnailService as ɵbu, StructureModule as ɵbv, HeaderComponent as ɵbw, FooterComponent as ɵbx, ProfilePictureFieldComponent as ɵby, EditorFieldModule as ɵbz, TieredMenuEventService as ɵc, EditorFieldComponent as ɵca, AutocompleteFieldComponent as ɵcb, BooleanFieldComponent as ɵcc, BooleanSwitchFieldComponent as ɵcd, CalendarFieldComponent as ɵce, ChipsFieldComponent as ɵcf, CountryPhonePickerFieldComponent as ɵcg, DynamicFieldComponent as ɵch, DynamicFormDirective as ɵci, FieldsetComponent as ɵcj, FileUploadComponent$1 as ɵck, LookupFieldComponent as ɵcl, RadioButtonComponent as ɵcm, RowComponent as ɵcn, SectionComponent as ɵco, SelectFieldComponent as ɵcp, SliderFieldComponent as ɵcq, TextAreaFieldComponent as ɵcr, TextAreaIAFieldComponent as ɵcs, IAssistService as ɵct, DecimalField as ɵcv, SideTableComponent as ɵcw, InfiniteScrollModule as ɵcx, InfiniteScrollDirective as ɵcy, IAInsightSidebarComponent as ɵcz, TieredMenuService as ɵd, IAInsightCardComponent as ɵda, IAInsightCardLoaderComponent as ɵdb, InlineEditItemComponent as ɵdc, LocaleService as ɵdd, InlineEditCalendarComponent as ɵde, InlineEditLookupComponent as ɵdf, InlineEditNumberComponent as ɵdg, InlineEditTextComponent as ɵdh, InlineEditTextAreaComponent as ɵdi, InlineEditTextAreaIAComponent as ɵdj, KanbanEventService as ɵdk, KanbanItemComponent as ɵdl, KanbanColumnComponent as ɵdm, KanbanItemDraggingComponent as ɵdn, NumberLocaleOptions as ɵdo, BorderButtonModule as ɵdp, BorderButtonComponent as ɵdq, ProgressBarDeterminateComponent as ɵdr, ProgressBarIndeterminateComponent as ɵds, SelectButtonItemComponent as ɵdt, SlidePanelService as ɵdu, TimelineItemModule as ɵdv, TimelineIconItemComponent as ɵdw, HorizontalTimelineModule as ɵdx, HorizontalTimelineComponent as ɵdy, VerticalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineComponent as ɵea, RangeLineComponent as ɵeb, CollapseOptionComponent as ɵec, CollapsedItemsComponent as ɵed, VerticalItemsComponent as ɵee, ButtonModule as ɵef, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
|
|
20435
20798
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|