@seniorsistemas/angular-components 17.15.5 → 17.16.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.
- package/bundles/seniorsistemas-angular-components.umd.js +374 -2
- 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/dynamic-form/configurations/fields/select-field.d.ts +2 -0
- 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/esm2015/components/dynamic-form/components/fields/select/select-field.component.js +2 -2
- package/esm2015/components/dynamic-form/configurations/fields/select-field.js +2 -1
- 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/locale/fallback.js +7 -2
- package/esm2015/seniorsistemas-angular-components.js +2 -1
- package/esm5/components/dynamic-form/components/fields/select/select-field.component.js +2 -2
- package/esm5/components/dynamic-form/configurations/fields/select-field.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/locale/fallback.js +7 -2
- package/esm5/seniorsistemas-angular-components.js +2 -1
- package/fesm2015/seniorsistemas-angular-components.js +330 -4
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +367 -4
- 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';
|
|
@@ -6551,6 +6551,7 @@ var SelectField = /** @class */ (function (_super) {
|
|
|
6551
6551
|
_this.onChange = config.onChange;
|
|
6552
6552
|
_this.emptyMessage = config.emptyMessage;
|
|
6553
6553
|
_this.editable = config.editable;
|
|
6554
|
+
_this.filter = config.filter;
|
|
6554
6555
|
return _this;
|
|
6555
6556
|
}
|
|
6556
6557
|
return SelectField;
|
|
@@ -10618,7 +10619,7 @@ var SelectFieldComponent = /** @class */ (function (_super) {
|
|
|
10618
10619
|
], SelectFieldComponent.prototype, "formControl", void 0);
|
|
10619
10620
|
SelectFieldComponent = __decorate([
|
|
10620
10621
|
Component({
|
|
10621
|
-
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<p-dropdown\n *ngIf=\"!field.multiple\"\n [inputId]=\"(field.id || field.name)\"\n [name]=\"field.name\"\n [options]=\"isFunction(field.options) ? field.options() : field.options\"\n [placeholder]=\"field.placeholder || ' '\"\n [formControl]=\"formControl\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n [showClear]=\"field.showClear\"\n dataKey=\"{{field.dataKey}}\"\n optionLabel=\"{{field.optionLabel}}\"\n [autoDisplayFirst]=\"field.autoDisplayFirst\"\n [appendTo]=\"field.appendTo || 'body'\"\n [editable]=\"field.editable\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n</p-dropdown>\n<p-multiSelect\n *ngIf=\"field.multiple\"\n [formControl]=\"formControl\"\n [name]=\"field.name\"\n [inputId]=\"(field.id || field.name)\"\n [options]=\"isFunction(field.options) ? field.options() : field.options\"\n [defaultLabel]=\"field.placeholder\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [emptyFilterMessage]=\"field.emptyMessage || 'platform.angular_components.no_records_found' | translate\"\n [showDelay]=\"500\"\n [selectedItemsLabel]=\"field.multipleSelectedLabel || 'platform.angular_components.total_records_selected' | translate\"\n [appendTo]=\"field.appendTo || 'body'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n</p-multiSelect>\n\n"
|
|
10622
|
+
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<p-dropdown\n *ngIf=\"!field.multiple\"\n [filter]=\"field.filter\"\n [inputId]=\"(field.id || field.name)\"\n [name]=\"field.name\"\n [options]=\"isFunction(field.options) ? field.options() : field.options\"\n [placeholder]=\"field.placeholder || ' '\"\n [formControl]=\"formControl\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n [showClear]=\"field.showClear\"\n dataKey=\"{{field.dataKey}}\"\n optionLabel=\"{{field.optionLabel}}\"\n [autoDisplayFirst]=\"field.autoDisplayFirst\"\n [appendTo]=\"field.appendTo || 'body'\"\n [editable]=\"field.editable\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n</p-dropdown>\n<p-multiSelect\n *ngIf=\"field.multiple\"\n [formControl]=\"formControl\"\n [name]=\"field.name\"\n [inputId]=\"(field.id || field.name)\"\n [options]=\"isFunction(field.options) ? field.options() : field.options\"\n [defaultLabel]=\"field.placeholder\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [emptyFilterMessage]=\"field.emptyMessage || 'platform.angular_components.no_records_found' | translate\"\n [showDelay]=\"500\"\n [selectedItemsLabel]=\"field.multipleSelectedLabel || 'platform.angular_components.total_records_selected' | translate\"\n [appendTo]=\"field.appendTo || 'body'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n</p-multiSelect>\n\n"
|
|
10622
10623
|
})
|
|
10623
10624
|
], SelectFieldComponent);
|
|
10624
10625
|
return SelectFieldComponent;
|
|
@@ -20111,6 +20112,363 @@ var LabelValueModule = /** @class */ (function () {
|
|
|
20111
20112
|
return LabelValueModule;
|
|
20112
20113
|
}());
|
|
20113
20114
|
|
|
20115
|
+
var PicklistTemplateTypes;
|
|
20116
|
+
(function (PicklistTemplateTypes) {
|
|
20117
|
+
PicklistTemplateTypes["ItemToSelect"] = "item-to-select";
|
|
20118
|
+
PicklistTemplateTypes["SelectedItem"] = "selected-item";
|
|
20119
|
+
})(PicklistTemplateTypes || (PicklistTemplateTypes = {}));
|
|
20120
|
+
|
|
20121
|
+
var PicklistComponent = /** @class */ (function () {
|
|
20122
|
+
function PicklistComponent(cdr) {
|
|
20123
|
+
this.cdr = cdr;
|
|
20124
|
+
this.itensToSelect = [];
|
|
20125
|
+
this.selectedItens = [];
|
|
20126
|
+
this.showCheckbox = false;
|
|
20127
|
+
this.filterBy = '';
|
|
20128
|
+
this.selectedItensChange = new EventEmitter();
|
|
20129
|
+
this.itensToSelectChange = new EventEmitter();
|
|
20130
|
+
this.availableItensFilter = '';
|
|
20131
|
+
this.selectedItensFilter = '';
|
|
20132
|
+
this.itensToSelectFilterUtil = {
|
|
20133
|
+
rawItensToSelect: [],
|
|
20134
|
+
filteredItensToSelect: [],
|
|
20135
|
+
};
|
|
20136
|
+
this.selectedItensFilterUtil = {
|
|
20137
|
+
rawSelectedItens: [],
|
|
20138
|
+
filteredSelectedItens: [],
|
|
20139
|
+
};
|
|
20140
|
+
this.selectedItensMap = new Set();
|
|
20141
|
+
this.itensToSelectId = randomHash('itensToSelect');
|
|
20142
|
+
this.selectedItensId = randomHash('selectedItens');
|
|
20143
|
+
}
|
|
20144
|
+
PicklistComponent.prototype.ngAfterViewInit = function () {
|
|
20145
|
+
var _a, _b;
|
|
20146
|
+
this.itemToSelectTemplate = (_a = this.templates.find(function (x) { return x.type === PicklistTemplateTypes.ItemToSelect; })) === null || _a === void 0 ? void 0 : _a.template;
|
|
20147
|
+
this.itemSelectedTemplate = (_b = this.templates.find(function (x) { return x.type === PicklistTemplateTypes.SelectedItem; })) === null || _b === void 0 ? void 0 : _b.template;
|
|
20148
|
+
if (!this.itemToSelectTemplate) {
|
|
20149
|
+
console.error("Missing template for " + PicklistTemplateTypes.ItemToSelect + " add this template using sTemplate directive.");
|
|
20150
|
+
}
|
|
20151
|
+
if (!this.itemSelectedTemplate) {
|
|
20152
|
+
console.error("Missing template for " + PicklistTemplateTypes.SelectedItem + " add this template using sTemplate directive.");
|
|
20153
|
+
}
|
|
20154
|
+
this.cdr.detectChanges();
|
|
20155
|
+
};
|
|
20156
|
+
PicklistComponent.prototype.ngOnChanges = function (changes) {
|
|
20157
|
+
if (changes.itensToSelect && changes.itensToSelect.firstChange) {
|
|
20158
|
+
this.itensToSelectFilterUtil = {
|
|
20159
|
+
rawItensToSelect: this.itensToSelect,
|
|
20160
|
+
filteredItensToSelect: this.itensToSelect,
|
|
20161
|
+
};
|
|
20162
|
+
}
|
|
20163
|
+
if (changes.selectedItens && changes.selectedItens.firstChange) {
|
|
20164
|
+
this.selectedItensFilterUtil = {
|
|
20165
|
+
filteredSelectedItens: this.selectedItens,
|
|
20166
|
+
rawSelectedItens: this.selectedItens
|
|
20167
|
+
};
|
|
20168
|
+
}
|
|
20169
|
+
};
|
|
20170
|
+
PicklistComponent.prototype.toggleSelected = function (internalPicklistItem, containerListId) {
|
|
20171
|
+
if (internalPicklistItem.disabled) {
|
|
20172
|
+
return;
|
|
20173
|
+
}
|
|
20174
|
+
this.unselectedItensByListId(this.getOppositiveId(containerListId));
|
|
20175
|
+
internalPicklistItem.selected = !internalPicklistItem.selected;
|
|
20176
|
+
if (internalPicklistItem.selected) {
|
|
20177
|
+
this.selectedItensMap.add(internalPicklistItem);
|
|
20178
|
+
}
|
|
20179
|
+
else {
|
|
20180
|
+
this.selectedItensMap.delete(internalPicklistItem);
|
|
20181
|
+
}
|
|
20182
|
+
this.cdr.detectChanges();
|
|
20183
|
+
};
|
|
20184
|
+
PicklistComponent.prototype.remove = function (all) {
|
|
20185
|
+
var _this = this;
|
|
20186
|
+
if (all === void 0) { all = false; }
|
|
20187
|
+
var itens = filterEnabled((all ? this.selectedItensFilterUtil.rawSelectedItens : this.selectedItensMap));
|
|
20188
|
+
if (!itens.length) {
|
|
20189
|
+
return;
|
|
20190
|
+
}
|
|
20191
|
+
itens.forEach(function (itemRemove) {
|
|
20192
|
+
_this.itensToSelect.push(itemRemove);
|
|
20193
|
+
itemRemove.selected = false;
|
|
20194
|
+
_this.selectedItensMap.delete(itemRemove);
|
|
20195
|
+
});
|
|
20196
|
+
this.selectedItens = this.selectedItens.filter(function (x) { return !itens.includes(x); });
|
|
20197
|
+
this.selectedItensFilterUtil.rawSelectedItens = this.selectedItens;
|
|
20198
|
+
this.filterSelectedItens();
|
|
20199
|
+
this.filterItensToSelect();
|
|
20200
|
+
this.emitData();
|
|
20201
|
+
this.cdr.detectChanges();
|
|
20202
|
+
};
|
|
20203
|
+
PicklistComponent.prototype.add = function (all) {
|
|
20204
|
+
var _this = this;
|
|
20205
|
+
if (all === void 0) { all = false; }
|
|
20206
|
+
var itens = filterEnabled((all ? this.itensToSelectFilterUtil.rawItensToSelect : this.selectedItensMap));
|
|
20207
|
+
if (!itens.length) {
|
|
20208
|
+
return;
|
|
20209
|
+
}
|
|
20210
|
+
itens.forEach(function (itemRemove) {
|
|
20211
|
+
_this.selectedItens.push(itemRemove);
|
|
20212
|
+
itemRemove.selected = false;
|
|
20213
|
+
_this.selectedItensMap.delete(itemRemove);
|
|
20214
|
+
});
|
|
20215
|
+
this.itensToSelect = this.itensToSelect.filter(function (x) { return !itens.includes(x); });
|
|
20216
|
+
this.itensToSelectFilterUtil.rawItensToSelect = this.itensToSelect;
|
|
20217
|
+
this.filterSelectedItens();
|
|
20218
|
+
this.filterItensToSelect();
|
|
20219
|
+
this.emitData();
|
|
20220
|
+
this.cdr.detectChanges();
|
|
20221
|
+
};
|
|
20222
|
+
PicklistComponent.prototype.filterItensToSelect = function () {
|
|
20223
|
+
var _this = this;
|
|
20224
|
+
var searchTerm = this.availableItensFilter;
|
|
20225
|
+
searchTerm = searchTerm.trim();
|
|
20226
|
+
if (searchTerm) {
|
|
20227
|
+
this.itensToSelectFilterUtil.filteredItensToSelect = this.itensToSelectFilterUtil.rawItensToSelect
|
|
20228
|
+
.filter(function (item) { return compareStrings(item.data[_this.filterBy], searchTerm); });
|
|
20229
|
+
}
|
|
20230
|
+
else {
|
|
20231
|
+
this.itensToSelectFilterUtil.filteredItensToSelect = this.itensToSelectFilterUtil.rawItensToSelect;
|
|
20232
|
+
}
|
|
20233
|
+
this.cdr.detectChanges();
|
|
20234
|
+
};
|
|
20235
|
+
PicklistComponent.prototype.filterSelectedItens = function () {
|
|
20236
|
+
var _this = this;
|
|
20237
|
+
var searchTerm = this.selectedItensFilter;
|
|
20238
|
+
searchTerm = searchTerm.trim();
|
|
20239
|
+
if (searchTerm) {
|
|
20240
|
+
this.selectedItensFilterUtil.filteredSelectedItens = this.selectedItensFilterUtil.rawSelectedItens
|
|
20241
|
+
.filter(function (item) { return compareStrings(item.data[_this.filterBy], searchTerm); });
|
|
20242
|
+
}
|
|
20243
|
+
else {
|
|
20244
|
+
this.selectedItensFilterUtil.filteredSelectedItens = this.selectedItensFilterUtil.rawSelectedItens;
|
|
20245
|
+
}
|
|
20246
|
+
};
|
|
20247
|
+
PicklistComponent.prototype.drop = function (event) {
|
|
20248
|
+
var isDifferentContainer = event.container !== event.previousContainer;
|
|
20249
|
+
if (!isDifferentContainer) {
|
|
20250
|
+
return;
|
|
20251
|
+
}
|
|
20252
|
+
var isRemovedItens = event.previousContainer.id === this.selectedItensId;
|
|
20253
|
+
if (isRemovedItens) {
|
|
20254
|
+
this.remove();
|
|
20255
|
+
}
|
|
20256
|
+
else {
|
|
20257
|
+
this.add();
|
|
20258
|
+
}
|
|
20259
|
+
this.cdr.detectChanges();
|
|
20260
|
+
};
|
|
20261
|
+
PicklistComponent.prototype.onDragStart = function (event, dragListId) {
|
|
20262
|
+
this.unselectedItensByListId(this.getOppositiveId(dragListId));
|
|
20263
|
+
event.source.data.selected = true;
|
|
20264
|
+
this.selectedItensMap.add(event.source.data);
|
|
20265
|
+
this.selectedItensMap.forEach(function (x) { return x.invisible = true; });
|
|
20266
|
+
this.cdr.detectChanges();
|
|
20267
|
+
};
|
|
20268
|
+
PicklistComponent.prototype.onDragRelease = function () {
|
|
20269
|
+
this.selectedItensMap.forEach(function (item) { return item.invisible = false; });
|
|
20270
|
+
};
|
|
20271
|
+
PicklistComponent.prototype.checkAllAvailableItensChange = function (checked) {
|
|
20272
|
+
this._checkAllSelectedItensChange(checked, this.itensToSelectFilterUtil.filteredItensToSelect, this.itensToSelectId);
|
|
20273
|
+
};
|
|
20274
|
+
PicklistComponent.prototype.checkAllSelectedItensChange = function (checked) {
|
|
20275
|
+
this._checkAllSelectedItensChange(checked, this.selectedItensFilterUtil.filteredSelectedItens, this.selectedItensId);
|
|
20276
|
+
};
|
|
20277
|
+
Object.defineProperty(PicklistComponent.prototype, "disableSelectedItensCheckbox", {
|
|
20278
|
+
get: function () {
|
|
20279
|
+
return filterEnabled(this.selectedItensFilterUtil.filteredSelectedItens).length === 0;
|
|
20280
|
+
},
|
|
20281
|
+
enumerable: true,
|
|
20282
|
+
configurable: true
|
|
20283
|
+
});
|
|
20284
|
+
Object.defineProperty(PicklistComponent.prototype, "disableItensToSelectCheckbox", {
|
|
20285
|
+
get: function () {
|
|
20286
|
+
return filterEnabled(this.itensToSelectFilterUtil.filteredItensToSelect).length === 0;
|
|
20287
|
+
},
|
|
20288
|
+
enumerable: true,
|
|
20289
|
+
configurable: true
|
|
20290
|
+
});
|
|
20291
|
+
Object.defineProperty(PicklistComponent.prototype, "itensToSelectAllSelected", {
|
|
20292
|
+
get: function () {
|
|
20293
|
+
return this._checkAllSelectedByList(this.itensToSelectFilterUtil.filteredItensToSelect);
|
|
20294
|
+
},
|
|
20295
|
+
enumerable: true,
|
|
20296
|
+
configurable: true
|
|
20297
|
+
});
|
|
20298
|
+
Object.defineProperty(PicklistComponent.prototype, "selectedItensAllSelected", {
|
|
20299
|
+
get: function () {
|
|
20300
|
+
return this._checkAllSelectedByList(this.selectedItensFilterUtil.filteredSelectedItens);
|
|
20301
|
+
},
|
|
20302
|
+
enumerable: true,
|
|
20303
|
+
configurable: true
|
|
20304
|
+
});
|
|
20305
|
+
Object.defineProperty(PicklistComponent.prototype, "canAddItens", {
|
|
20306
|
+
get: function () {
|
|
20307
|
+
return this.itensToSelect.filter(function (x) { return x === null || x === void 0 ? void 0 : x.selected; }).length > 0;
|
|
20308
|
+
},
|
|
20309
|
+
enumerable: true,
|
|
20310
|
+
configurable: true
|
|
20311
|
+
});
|
|
20312
|
+
Object.defineProperty(PicklistComponent.prototype, "canRemoveItens", {
|
|
20313
|
+
get: function () {
|
|
20314
|
+
return this.selectedItens.filter(function (x) { return x === null || x === void 0 ? void 0 : x.selected; }).length > 0;
|
|
20315
|
+
},
|
|
20316
|
+
enumerable: true,
|
|
20317
|
+
configurable: true
|
|
20318
|
+
});
|
|
20319
|
+
PicklistComponent.prototype._checkAllSelectedByList = function (list) {
|
|
20320
|
+
var _listItens = filterEnabled(list);
|
|
20321
|
+
if (!_listItens.length) {
|
|
20322
|
+
return false;
|
|
20323
|
+
}
|
|
20324
|
+
else {
|
|
20325
|
+
return _listItens.every(function (x) { return x.selected; });
|
|
20326
|
+
}
|
|
20327
|
+
};
|
|
20328
|
+
PicklistComponent.prototype._checkAllSelectedItensChange = function (checked, list, listId) {
|
|
20329
|
+
var _this = this;
|
|
20330
|
+
this.unselectedItensByListId(listId === this.selectedItensId ? this.itensToSelectId : this.selectedItensId);
|
|
20331
|
+
filterEnabled(list).forEach(function (item) {
|
|
20332
|
+
item.selected = checked;
|
|
20333
|
+
_this.selectedItensMap.add(item);
|
|
20334
|
+
});
|
|
20335
|
+
this.cdr.detectChanges();
|
|
20336
|
+
};
|
|
20337
|
+
PicklistComponent.prototype.unselectedItensByListId = function (listId) {
|
|
20338
|
+
var _this = this;
|
|
20339
|
+
var clearList = this.getAllElementsByListId(listId);
|
|
20340
|
+
clearList.forEach(function (x) {
|
|
20341
|
+
x.selected = false;
|
|
20342
|
+
_this.selectedItensMap.delete(x);
|
|
20343
|
+
});
|
|
20344
|
+
this.cdr.detectChanges();
|
|
20345
|
+
};
|
|
20346
|
+
PicklistComponent.prototype.getAllElementsByListId = function (listId) {
|
|
20347
|
+
return listId === this.selectedItensId ? this.selectedItensFilterUtil.rawSelectedItens : this.itensToSelectFilterUtil.rawItensToSelect;
|
|
20348
|
+
};
|
|
20349
|
+
PicklistComponent.prototype.getOppositiveId = function (listId) {
|
|
20350
|
+
return listId === this.selectedItensId ? this.itensToSelectId : this.selectedItensId;
|
|
20351
|
+
};
|
|
20352
|
+
PicklistComponent.prototype.emitData = function () {
|
|
20353
|
+
this.itensToSelectChange.emit(parseValueEmit(this.itensToSelect));
|
|
20354
|
+
this.selectedItensChange.emit(parseValueEmit(this.selectedItens));
|
|
20355
|
+
};
|
|
20356
|
+
PicklistComponent.ctorParameters = function () { return [
|
|
20357
|
+
{ type: ChangeDetectorRef }
|
|
20358
|
+
]; };
|
|
20359
|
+
__decorate([
|
|
20360
|
+
Input()
|
|
20361
|
+
], PicklistComponent.prototype, "itensToSelect", void 0);
|
|
20362
|
+
__decorate([
|
|
20363
|
+
Input()
|
|
20364
|
+
], PicklistComponent.prototype, "selectedItens", void 0);
|
|
20365
|
+
__decorate([
|
|
20366
|
+
Input()
|
|
20367
|
+
], PicklistComponent.prototype, "availableItensLabel", void 0);
|
|
20368
|
+
__decorate([
|
|
20369
|
+
Input()
|
|
20370
|
+
], PicklistComponent.prototype, "availableItensPlaceholder", void 0);
|
|
20371
|
+
__decorate([
|
|
20372
|
+
Input()
|
|
20373
|
+
], PicklistComponent.prototype, "addSelectedItensLabel", void 0);
|
|
20374
|
+
__decorate([
|
|
20375
|
+
Input()
|
|
20376
|
+
], PicklistComponent.prototype, "addAllItensLabel", void 0);
|
|
20377
|
+
__decorate([
|
|
20378
|
+
Input()
|
|
20379
|
+
], PicklistComponent.prototype, "selectedItensLabel", void 0);
|
|
20380
|
+
__decorate([
|
|
20381
|
+
Input()
|
|
20382
|
+
], PicklistComponent.prototype, "selectedItensPlaceholder", void 0);
|
|
20383
|
+
__decorate([
|
|
20384
|
+
Input()
|
|
20385
|
+
], PicklistComponent.prototype, "removeSelectedItemsLabel", void 0);
|
|
20386
|
+
__decorate([
|
|
20387
|
+
Input()
|
|
20388
|
+
], PicklistComponent.prototype, "removeAllItemsLabel", void 0);
|
|
20389
|
+
__decorate([
|
|
20390
|
+
Input()
|
|
20391
|
+
], PicklistComponent.prototype, "showCheckbox", void 0);
|
|
20392
|
+
__decorate([
|
|
20393
|
+
Input()
|
|
20394
|
+
], PicklistComponent.prototype, "filterBy", void 0);
|
|
20395
|
+
__decorate([
|
|
20396
|
+
Output()
|
|
20397
|
+
], PicklistComponent.prototype, "selectedItensChange", void 0);
|
|
20398
|
+
__decorate([
|
|
20399
|
+
Output()
|
|
20400
|
+
], PicklistComponent.prototype, "itensToSelectChange", void 0);
|
|
20401
|
+
__decorate([
|
|
20402
|
+
ContentChildren(TemplateDirective)
|
|
20403
|
+
], PicklistComponent.prototype, "templates", void 0);
|
|
20404
|
+
PicklistComponent = __decorate([
|
|
20405
|
+
Component({
|
|
20406
|
+
selector: 's-picklist',
|
|
20407
|
+
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",
|
|
20408
|
+
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}"]
|
|
20409
|
+
})
|
|
20410
|
+
], PicklistComponent);
|
|
20411
|
+
return PicklistComponent;
|
|
20412
|
+
}());
|
|
20413
|
+
var normalizeString = function (str) {
|
|
20414
|
+
return str.normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase();
|
|
20415
|
+
};
|
|
20416
|
+
var ɵ0$3 = normalizeString;
|
|
20417
|
+
/**
|
|
20418
|
+
* Compares two strings by normalizing them to a case-insensitive and accent-free form,
|
|
20419
|
+
* and checks if the main string contains the substring.
|
|
20420
|
+
*
|
|
20421
|
+
* @param mainString - The string to be searched.
|
|
20422
|
+
* @param substring - The string to search for within the main string.
|
|
20423
|
+
* @returns A boolean indicating whether the normalized main string contains the normalized substring.
|
|
20424
|
+
*/
|
|
20425
|
+
var compareStrings = function (mainString, substring) {
|
|
20426
|
+
return normalizeString(mainString).includes(normalizeString(substring));
|
|
20427
|
+
};
|
|
20428
|
+
var ɵ1$2 = compareStrings;
|
|
20429
|
+
var randomHash = function (prefix) {
|
|
20430
|
+
if (prefix === void 0) { prefix = 'id'; }
|
|
20431
|
+
return prefix + "-" + Math.random().toString(36).substring(2, 9) + "-" + Date.now().toString(36);
|
|
20432
|
+
};
|
|
20433
|
+
var ɵ2$1 = randomHash;
|
|
20434
|
+
var filterEnabled = function (list) {
|
|
20435
|
+
var _list = list instanceof Set ? Array.from(list) : list;
|
|
20436
|
+
return _list.filter(function (x) { return !x.disabled; });
|
|
20437
|
+
};
|
|
20438
|
+
var ɵ3 = filterEnabled;
|
|
20439
|
+
var mapData = function (list) {
|
|
20440
|
+
return list.map(function (x) { return x.data; });
|
|
20441
|
+
};
|
|
20442
|
+
var ɵ4 = mapData;
|
|
20443
|
+
var parseValueEmit = pipe(filterEnabled, mapData);
|
|
20444
|
+
var parseItensPickList = function (array, disabledFn) {
|
|
20445
|
+
return array.map(function (x) {
|
|
20446
|
+
return {
|
|
20447
|
+
data: x,
|
|
20448
|
+
disabled: disabledFn ? disabledFn(x) : false
|
|
20449
|
+
};
|
|
20450
|
+
});
|
|
20451
|
+
};
|
|
20452
|
+
|
|
20453
|
+
var PicklistModule = /** @class */ (function () {
|
|
20454
|
+
function PicklistModule() {
|
|
20455
|
+
}
|
|
20456
|
+
PicklistModule = __decorate([
|
|
20457
|
+
NgModule({
|
|
20458
|
+
declarations: [PicklistComponent],
|
|
20459
|
+
imports: [
|
|
20460
|
+
CommonModule,
|
|
20461
|
+
TranslateModule,
|
|
20462
|
+
DragDropModule,
|
|
20463
|
+
FormsModule,
|
|
20464
|
+
ButtonModule,
|
|
20465
|
+
],
|
|
20466
|
+
exports: [PicklistComponent]
|
|
20467
|
+
})
|
|
20468
|
+
], PicklistModule);
|
|
20469
|
+
return PicklistModule;
|
|
20470
|
+
}());
|
|
20471
|
+
|
|
20114
20472
|
var fallback = {
|
|
20115
20473
|
"platform.angular_components.drag_your_photo_or": "Arraste sua foto ou",
|
|
20116
20474
|
"platform.angular_components.select_a_file": "selecione um arquivo",
|
|
@@ -20425,12 +20783,17 @@ var fallback = {
|
|
|
20425
20783
|
"platform.angular_components.country_name_tm": "Turquemenistão",
|
|
20426
20784
|
"platform.angular_components.country_name_uz": "Uzbequistão",
|
|
20427
20785
|
"platform.angular_components.country_name_ve": "Venezuela",
|
|
20428
|
-
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}"
|
|
20786
|
+
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}",
|
|
20787
|
+
"platform.angular_components.available-items": "Itens disponíveis",
|
|
20788
|
+
"platform.angular_components.selected-items": "Itens selecionados",
|
|
20789
|
+
"plataform.angular_components.picklist-placeholder": "Busque pelo nome ou termo",
|
|
20790
|
+
"platform.angular_components.add_all": "Adicionar todos",
|
|
20791
|
+
"platform.angular_components.remove_all": "Remover todos"
|
|
20429
20792
|
};
|
|
20430
20793
|
|
|
20431
20794
|
/**
|
|
20432
20795
|
* Generated bundle index. Do not edit.
|
|
20433
20796
|
*/
|
|
20434
20797
|
|
|
20435
|
-
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 };
|
|
20798
|
+
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 };
|
|
20436
20799
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|