@seniorsistemas/angular-components 17.4.2 → 17.4.4
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 +323 -203
- 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/components/lookup/lookup.component.d.ts +9 -3
- package/components/dynamic-form/configurations/fields/lookup-field.d.ts +12 -0
- package/components/loading-state/components/dots-indicator/dots-indicator.components.d.ts +2 -0
- package/components/loading-state/components/loading-state-indicators.d.ts +4 -0
- package/components/loading-state/components/logo-indicator/logo-indicator.component.d.ts +2 -0
- package/components/loading-state/loading-state.component.d.ts +2 -0
- package/components/loading-state/loading-state.directive.d.ts +6 -2
- package/esm2015/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +41 -33
- package/esm2015/components/dynamic-form/configurations/fields/lookup-field.js +4 -1
- package/esm2015/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +2 -2
- package/esm2015/components/loading-state/components/dots-indicator/dots-indicator.components.js +13 -0
- package/esm2015/components/loading-state/components/loading-state-indicators.js +6 -0
- package/esm2015/components/loading-state/components/logo-indicator/logo-indicator.component.js +13 -0
- package/esm2015/components/loading-state/loading-state.component.js +13 -9
- package/esm2015/components/loading-state/loading-state.directive.js +22 -11
- package/esm2015/components/loading-state/loading-state.module.js +19 -5
- package/esm2015/locale/fallback.js +3 -1
- package/esm2015/seniorsistemas-angular-components.js +75 -72
- package/esm2015/utils/svg-factory/components/senior-icon/senior-icon.component.js +11 -0
- package/esm2015/utils/svg-factory/components/svg-factory-icons.js +6 -0
- package/esm2015/utils/svg-factory/svg-factory.directive.js +31 -5
- package/esm2015/utils/svg-factory/svg-factory.module.js +3 -1
- package/esm5/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +42 -32
- package/esm5/components/dynamic-form/configurations/fields/lookup-field.js +4 -1
- package/esm5/components/ia-insight/components/ia-insight-sidebar/ia-insight-sidebar.component.js +2 -2
- package/esm5/components/loading-state/components/dots-indicator/dots-indicator.components.js +16 -0
- package/esm5/components/loading-state/components/loading-state-indicators.js +6 -0
- package/esm5/components/loading-state/components/logo-indicator/logo-indicator.component.js +16 -0
- package/esm5/components/loading-state/loading-state.component.js +13 -9
- package/esm5/components/loading-state/loading-state.directive.js +22 -11
- package/esm5/components/loading-state/loading-state.module.js +19 -5
- package/esm5/locale/fallback.js +3 -1
- package/esm5/seniorsistemas-angular-components.js +75 -72
- package/esm5/utils/svg-factory/components/senior-icon/senior-icon.component.js +14 -0
- package/esm5/utils/svg-factory/components/svg-factory-icons.js +6 -0
- package/esm5/utils/svg-factory/svg-factory.directive.js +36 -6
- package/esm5/utils/svg-factory/svg-factory.module.js +3 -1
- package/fesm2015/seniorsistemas-angular-components.js +226 -124
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +250 -133
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +74 -71
- package/seniorsistemas-angular-components.metadata.json +1 -1
- package/utils/svg-factory/components/senior-icon/senior-icon.component.d.ts +2 -0
- package/utils/svg-factory/components/svg-factory-icons.d.ts +4 -0
- package/utils/svg-factory/svg-factory.directive.d.ts +10 -3
|
@@ -4046,6 +4046,38 @@ var CountryPhonePickerModule = /** @class */ (function () {
|
|
|
4046
4046
|
return CountryPhonePickerModule;
|
|
4047
4047
|
}());
|
|
4048
4048
|
|
|
4049
|
+
var CalendarLocaleOptions = /** @class */ (function () {
|
|
4050
|
+
function CalendarLocaleOptions(config) {
|
|
4051
|
+
var _this = this;
|
|
4052
|
+
if (config === void 0) { config = {}; }
|
|
4053
|
+
this.hourFormat = "24";
|
|
4054
|
+
this.dateFormat = "dd/mm/yy";
|
|
4055
|
+
this.firstDayOfWeek = 0;
|
|
4056
|
+
this.today = "Hoje";
|
|
4057
|
+
this.clear = "Limpar";
|
|
4058
|
+
this.dayNames = ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"];
|
|
4059
|
+
this.dayNamesShort = ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"];
|
|
4060
|
+
this.dayNamesMin = ["D", "S", "T", "Q", "Q", "S", "S"];
|
|
4061
|
+
this.monthNamesShort = ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"];
|
|
4062
|
+
this.monthNames = [
|
|
4063
|
+
"Janeiro",
|
|
4064
|
+
"Fevereiro",
|
|
4065
|
+
"Março",
|
|
4066
|
+
"Abril",
|
|
4067
|
+
"Maio",
|
|
4068
|
+
"Junho",
|
|
4069
|
+
"Julho",
|
|
4070
|
+
"Agosto",
|
|
4071
|
+
"Setembro",
|
|
4072
|
+
"Outubro",
|
|
4073
|
+
"Novembro",
|
|
4074
|
+
"Dezembro",
|
|
4075
|
+
];
|
|
4076
|
+
Object.keys(config).forEach(function (key) { return (_this[key] = config[key] || _this[key]); });
|
|
4077
|
+
}
|
|
4078
|
+
return CalendarLocaleOptions;
|
|
4079
|
+
}());
|
|
4080
|
+
|
|
4049
4081
|
var FieldType;
|
|
4050
4082
|
(function (FieldType) {
|
|
4051
4083
|
FieldType["Autocomplete"] = "Autocomplete";
|
|
@@ -4127,38 +4159,6 @@ var AutocompleteField = /** @class */ (function (_super) {
|
|
|
4127
4159
|
return AutocompleteField;
|
|
4128
4160
|
}(Field));
|
|
4129
4161
|
|
|
4130
|
-
var CalendarLocaleOptions = /** @class */ (function () {
|
|
4131
|
-
function CalendarLocaleOptions(config) {
|
|
4132
|
-
var _this = this;
|
|
4133
|
-
if (config === void 0) { config = {}; }
|
|
4134
|
-
this.hourFormat = "24";
|
|
4135
|
-
this.dateFormat = "dd/mm/yy";
|
|
4136
|
-
this.firstDayOfWeek = 0;
|
|
4137
|
-
this.today = "Hoje";
|
|
4138
|
-
this.clear = "Limpar";
|
|
4139
|
-
this.dayNames = ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"];
|
|
4140
|
-
this.dayNamesShort = ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"];
|
|
4141
|
-
this.dayNamesMin = ["D", "S", "T", "Q", "Q", "S", "S"];
|
|
4142
|
-
this.monthNamesShort = ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"];
|
|
4143
|
-
this.monthNames = [
|
|
4144
|
-
"Janeiro",
|
|
4145
|
-
"Fevereiro",
|
|
4146
|
-
"Março",
|
|
4147
|
-
"Abril",
|
|
4148
|
-
"Maio",
|
|
4149
|
-
"Junho",
|
|
4150
|
-
"Julho",
|
|
4151
|
-
"Agosto",
|
|
4152
|
-
"Setembro",
|
|
4153
|
-
"Outubro",
|
|
4154
|
-
"Novembro",
|
|
4155
|
-
"Dezembro",
|
|
4156
|
-
];
|
|
4157
|
-
Object.keys(config).forEach(function (key) { return (_this[key] = config[key] || _this[key]); });
|
|
4158
|
-
}
|
|
4159
|
-
return CalendarLocaleOptions;
|
|
4160
|
-
}());
|
|
4161
|
-
|
|
4162
4162
|
var NumberLocaleOptions = /** @class */ (function () {
|
|
4163
4163
|
function NumberLocaleOptions(config) {
|
|
4164
4164
|
if (config === void 0) { config = {}; }
|
|
@@ -4857,6 +4857,9 @@ var LookupField = /** @class */ (function (_super) {
|
|
|
4857
4857
|
_this.multiple = false;
|
|
4858
4858
|
_this.showSearch = true;
|
|
4859
4859
|
_this.autocompleteForceSelection = true;
|
|
4860
|
+
_this.showAddOption = false;
|
|
4861
|
+
_this.showEditOption = false;
|
|
4862
|
+
_this.showRemoveOption = false;
|
|
4860
4863
|
_this.onSelect = function (event) { };
|
|
4861
4864
|
_this.onUnselect = function (event) { };
|
|
4862
4865
|
Object.assign(_this, config);
|
|
@@ -5114,6 +5117,9 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5114
5117
|
this.showSearch = true;
|
|
5115
5118
|
this.lookupAppendTo = "body";
|
|
5116
5119
|
this.searchFields = [];
|
|
5120
|
+
this.showAddOption = false;
|
|
5121
|
+
this.showEditOption = false;
|
|
5122
|
+
this.showRemoveOption = false;
|
|
5117
5123
|
this.onLookupRequest = new EventEmitter();
|
|
5118
5124
|
this.onSearchRequest = new EventEmitter();
|
|
5119
5125
|
this.onFocus = new EventEmitter();
|
|
@@ -5122,6 +5128,9 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5122
5128
|
this.onSelect = new EventEmitter();
|
|
5123
5129
|
this.onUnselect = new EventEmitter();
|
|
5124
5130
|
this.onClear = new EventEmitter();
|
|
5131
|
+
this.onAdd = new EventEmitter();
|
|
5132
|
+
this.onEdit = new EventEmitter();
|
|
5133
|
+
this.onRemove = new EventEmitter();
|
|
5125
5134
|
this.dialogVisible = false;
|
|
5126
5135
|
this.collapsed = false;
|
|
5127
5136
|
this.selected = [];
|
|
@@ -5135,7 +5144,9 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5135
5144
|
if (!this.searchGridFields) {
|
|
5136
5145
|
this.searchGridFields = this.searchFields.map(function (item) { return new FormField(__assign({}, item)); });
|
|
5137
5146
|
}
|
|
5138
|
-
this.searchFields = this.searchFields.map(function (value) {
|
|
5147
|
+
this.searchFields = this.searchFields.map(function (value) {
|
|
5148
|
+
return new FormField(__assign(__assign({}, value), { size: { sm: 12, md: 12, lg: 12, xl: 12 } }));
|
|
5149
|
+
});
|
|
5139
5150
|
this.searchGridFields = this.searchGridFields.map(function (gridField) {
|
|
5140
5151
|
gridField["width"] = _this.getColWidth(gridField.label);
|
|
5141
5152
|
var calendarOptions = new CalendarLocaleOptions(__assign({}, gridField.calendarLocaleOptions));
|
|
@@ -5170,12 +5181,11 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5170
5181
|
var recordsLabel = this.recordsLabel
|
|
5171
5182
|
? this.searchTotalRecords + " " + this.recordsLabel
|
|
5172
5183
|
: this.translateService.instant("platform.angular_components.total_records", { count: this.searchTotalRecords });
|
|
5173
|
-
return this.searchTotalRecords === 1
|
|
5174
|
-
? recordLabel
|
|
5175
|
-
: recordsLabel;
|
|
5184
|
+
return this.searchTotalRecords === 1 ? recordLabel : recordsLabel;
|
|
5176
5185
|
};
|
|
5177
5186
|
LookupComponent.prototype._convertToMomentHourFormat = function (hourFormat, format) {
|
|
5178
|
-
if (format === "dd/mm/yy") {
|
|
5187
|
+
if (format === "dd/mm/yy") {
|
|
5188
|
+
// valor padrão para o format.
|
|
5179
5189
|
return "LTS";
|
|
5180
5190
|
}
|
|
5181
5191
|
if (hourFormat === "12") {
|
|
@@ -5245,14 +5255,11 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5245
5255
|
this.defaultFilter
|
|
5246
5256
|
.filter(function (_a) {
|
|
5247
5257
|
var field = _a.field;
|
|
5248
|
-
return _this.formGroupDialog.contains(field) &&
|
|
5249
|
-
!_this.formGroupDialog.get([field]).dirty;
|
|
5258
|
+
return _this.formGroupDialog.contains(field) && !_this.formGroupDialog.get([field]).dirty;
|
|
5250
5259
|
})
|
|
5251
5260
|
.forEach(function (_a) {
|
|
5252
5261
|
var value = _a.value, field = _a.field;
|
|
5253
|
-
_this.formGroupDialog
|
|
5254
|
-
.get([field])
|
|
5255
|
-
.patchValue(value instanceof Function ? value() : value);
|
|
5262
|
+
_this.formGroupDialog.get([field]).patchValue(value instanceof Function ? value() : value);
|
|
5256
5263
|
});
|
|
5257
5264
|
};
|
|
5258
5265
|
LookupComponent.prototype.showDialog = function () {
|
|
@@ -5352,7 +5359,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5352
5359
|
return this.emptyFieldLabel;
|
|
5353
5360
|
};
|
|
5354
5361
|
LookupComponent.prototype.isNumber = function (obj, path) {
|
|
5355
|
-
return !
|
|
5362
|
+
return !new BigNumber(this.getFieldValue(obj, path)).isNaN();
|
|
5356
5363
|
};
|
|
5357
5364
|
LookupComponent.prototype.setHotkeys = function () {
|
|
5358
5365
|
var _this = this;
|
|
@@ -5444,31 +5451,19 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5444
5451
|
};
|
|
5445
5452
|
LookupComponent.prototype._subscribeEvents = function () {
|
|
5446
5453
|
var _this = this;
|
|
5447
|
-
this.onSearchRequest
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
this.
|
|
5451
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5452
|
-
.subscribe(function () { return _this.onChange(_this.value); });
|
|
5453
|
-
this.onUnselect
|
|
5454
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5455
|
-
.subscribe(function () { return _this.onChange(_this.value); });
|
|
5456
|
-
this.onClear
|
|
5457
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5458
|
-
.subscribe(function () {
|
|
5454
|
+
this.onSearchRequest.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () { return (_this.loading = true); });
|
|
5455
|
+
this.onSelect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
|
|
5456
|
+
this.onUnselect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
|
|
5457
|
+
this.onClear.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
|
|
5459
5458
|
if (_this.multiple) {
|
|
5460
5459
|
return;
|
|
5461
5460
|
}
|
|
5462
5461
|
_this.onChange(null);
|
|
5463
5462
|
});
|
|
5464
|
-
this.onFocus
|
|
5465
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5466
|
-
.subscribe(function () {
|
|
5463
|
+
this.onFocus.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
|
|
5467
5464
|
_this.onTouched();
|
|
5468
5465
|
});
|
|
5469
|
-
this.onBlur
|
|
5470
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5471
|
-
.subscribe(function (event) {
|
|
5466
|
+
this.onBlur.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function (event) {
|
|
5472
5467
|
var target = event.target;
|
|
5473
5468
|
var currentValue = _this.value && _this.value[_this.lookupDisplayField];
|
|
5474
5469
|
var value = target.value;
|
|
@@ -5554,6 +5549,15 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5554
5549
|
__decorate([
|
|
5555
5550
|
Input()
|
|
5556
5551
|
], LookupComponent.prototype, "defaultFilter", void 0);
|
|
5552
|
+
__decorate([
|
|
5553
|
+
Input()
|
|
5554
|
+
], LookupComponent.prototype, "showAddOption", void 0);
|
|
5555
|
+
__decorate([
|
|
5556
|
+
Input()
|
|
5557
|
+
], LookupComponent.prototype, "showEditOption", void 0);
|
|
5558
|
+
__decorate([
|
|
5559
|
+
Input()
|
|
5560
|
+
], LookupComponent.prototype, "showRemoveOption", void 0);
|
|
5557
5561
|
__decorate([
|
|
5558
5562
|
Output()
|
|
5559
5563
|
], LookupComponent.prototype, "onLookupRequest", void 0);
|
|
@@ -5578,6 +5582,15 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5578
5582
|
__decorate([
|
|
5579
5583
|
Output()
|
|
5580
5584
|
], LookupComponent.prototype, "onClear", void 0);
|
|
5585
|
+
__decorate([
|
|
5586
|
+
Output()
|
|
5587
|
+
], LookupComponent.prototype, "onAdd", void 0);
|
|
5588
|
+
__decorate([
|
|
5589
|
+
Output()
|
|
5590
|
+
], LookupComponent.prototype, "onEdit", void 0);
|
|
5591
|
+
__decorate([
|
|
5592
|
+
Output()
|
|
5593
|
+
], LookupComponent.prototype, "onRemove", void 0);
|
|
5581
5594
|
__decorate([
|
|
5582
5595
|
ViewChild(Table, { static: false })
|
|
5583
5596
|
], LookupComponent.prototype, "table", void 0);
|
|
@@ -5624,7 +5637,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
5624
5637
|
Injectable(),
|
|
5625
5638
|
Component({
|
|
5626
5639
|
selector: "s-lookup",
|
|
5627
|
-
template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"autocompleteForceSelection\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"lazyLoadLookup($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\">\n <ng-template let-item pTemplate=\"selectedItem\">\n <span\n class=\"ui-autocomplete-token-label ng-tns-c65-43 ng-star-inserted\"\n [sTooltip]=\"lookupDisplayFieldTooltip ? item[lookupDisplayField] : null\"\n tooltipPosition=\"top\">\n {{item[lookupDisplayField]}}\n </span>\n </ng-template>\n </p-autoComplete>\n <button\n *ngIf=\"showSearch\"\n pButton\n type=\"button\"\n icon=\"fa fa-search\"\n class=\"button-addon\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\">\n </button>\n</div>\n<p-dialog\n appendTo=\"body\"\n styleClass=\"s-lookup-modal\"\n [header]=\"searchTitle || 'platform.angular_components.advanced_search' | translate\"\n [(visible)]=\"dialogVisible\"\n [modal]=\"true\"\n (onHide)=\"hideDialog()\"\n [blockScroll]=\"true\"\n [focusOnShow]=\"true\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n #dialog>\n <div\n *ngIf=\"dialogVisible\"\n class=\"s-lookup-modal-container\">\n <div\n *ngIf=\"searchFields && searchFields.length\"\n class=\"filter\"\n [@collapseContent]=\"collapsed \n ? { value: 'hidden', params: { transitionParams: transitionOptions } }\n : { value: 'visible', params: { transitionParams: transitionOptions } }\"\n (@collapseContent.done)=\"onToggleDone()\">\n <form\n [formGroup]=\"formGroupDialog\"\n novalidate\n autocomplete=\"off\">\n <div\n *ngIf=\"!collapsed\"\n class=\"form-content\"\n [@childCollapseContent]=\"collapsed\n ? { value: ':leave', params: { transitionParams: transitionOptions } }\n : { value: ':enter', params: { transitionParams: transitionOptions } }\">\n <div class=\"filter-title sds-section-title\">\n {{ filterTitle || \"platform.angular_components.filters\" | translate }}\n </div>\n <div class=\"form-fields\">\n <s-dynamic-form\n [fields]=\"searchFields\"\n [form]=\"formGroupDialog\">\n </s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"filterLabel || 'platform.angular_components.filter' | translate\"\n (onClick)=\"search()\"\n sTooltip=\"(ALT + SHIFT + F)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"clearLabel || 'platform.angular_components.clear' | translate\"\n (onClick)=\"clear()\"\n priority=\"link\"\n sTooltip=\"(ALT + SHIFT + L)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n </div>\n </div>\n </div>\n </form>\n </div>\n <div\n *ngIf=\"searchFields && searchFields.length\"\n class=\"filter-toggle\">\n <div class=\"filter-toggle--start-border-mask\"></div>\n <button\n [id]=\"id + '-filter-toggle-button'\"\n type=\"button\"\n (click)=\"filterToggle()\">\n <span\n class=\"fa\"\n [ngClass]=\"{'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed}\"\n aria-hidden=\"true\">\n </span>\n </button>\n <div class=\"filter-toggle--end-border-mask\"></div>\n </div>\n <div\n class=\"content\"\n [ngClass]=\"{'empty-content': !searchTotalRecords && !loading}\">\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n *ngIf=\"!searchTotalRecords && !loading\"\n [title]=\"searchEmptyTitle || 'platform.angular_components.no_records_found' | translate\"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\">\n </s-empty-state>\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n *sLoadingState=\"loading\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\">\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col\n *ngIf=\"multiple\"\n style=\"width: 50px\" />\n <col\n *ngFor=\"let col of columns\"\n [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th\n *ngIf=\"multiple\"\n style=\"width: 50px\">\n <s-table-header-checkbox\n [useAllObject]=\"lookupRowProps ? false : true\"\n [rowProps]=\"lookupRowProps\">\n </s-table-header-checkbox>\n </th>\n <th\n [style.width]=\"col.width\"\n *ngFor=\"let col of columns\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled?.includes(col.name)\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n <p-sortIcon\n [field]=\"col.name\"\n *ngIf=\"!sortableColumnsDisabled?.includes(col.name)\">\n </p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template\n pTemplate=\"body\"\n let-rowData\n let-columns\n let-rowIndex=\"rowIndex\">\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick (onDoubleClick)=\"onTableRowDoubleClick(rowData)\">\n <td\n *ngIf=\"multiple\"\n style=\"width: 50px\"\n tabindex=\"0\">\n <p-tableCheckbox\n [value]=\"rowData\"\n [pSelectableRow]=\"rowData\">\n </p-tableCheckbox>\n </td>\n <td\n [style.width]=\"col['width']\"\n *ngFor=\"let col of searchGridFields\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\">\n <ng-container *ngSwitchCase=\"'Boolean'\">\n <ng-container *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getBooleanLabel(rowData, col.name, col.optionsLabel) }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Date'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate: col.calendarLocaleOptions?.dateFormat || \"L\" | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'DateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'LocalDateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Time'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedTime: col.calendarLocaleOptions?.dateFormat || \"LTS\" | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Integer'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getIntegerMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Double'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getDoubleMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Money'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getMoneyMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Number'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getNumberMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Enum'\">\n <ng-container\n *ngIf=\"getLabelForValue(getFieldValue(rowData, col.name), col.options); else emptyTemplate\"\n >\n <span> {{ getLabelForValue(getFieldValue(rowData, col.name), col.options) }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"col.mask && col.mask()\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name))\">\n <span>{{ getFieldValue(rowData, col.name) | sMaskFormatter: col.mask() }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!(col.mask && col.mask())\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name)); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n </ng-container>\n </ng-container>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{ printRecordTotalizer() }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n <p-footer>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"selectLabel || 'platform.angular_components.select' | translate\"\n (onClick)=\"select()\"\n sTooltip=\"(ALT + SHIFT + S)\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n [disabled]=\"!selected?.length\">\n </s-button>\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"cancelLabel || 'platform.angular_components.cancel' | translate\"\n (onClick)=\"hideDialog()\"\n sTooltip=\"(ALT + SHIFT + C)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n </p-footer>\n</p-dialog>\n<ng-template #emptyTemplate>\n <span [ngClass]=\"'sds-empty-value'\">\n {{ emptyFieldLabel || 'platform.angular_components.not_informed' | translate }}\n </span>\n</ng-template>\n",
|
|
5640
|
+
template: "<div [ngClass]=\"{ inputgroup: showSearch }\">\n <p-autoComplete\n #autocomplete\n [(ngModel)]=\"value\"\n [disabled]=\"disabled\"\n [dataKey]=\"dataKey\"\n [multiple]=\"multiple\"\n [inputId]=\"id + '-autocomplete'\"\n [forceSelection]=\"autocompleteForceSelection\"\n [suggestions]=\"getLookupSuggestions()\"\n (completeMethod)=\"lazyLoadLookup($event)\"\n (onSelect)=\"onSelect.next($event)\"\n (onBlur)=\"onBlur.next($event)\"\n (onFocus)=\"onFocus.next($event)\"\n (onUnselect)=\"onUnselect.next($event)\"\n (onClear)=\"onClear.next($event)\"\n (onKeyUp)=\"onKeyUp.next($event)\"\n [field]=\"lookupDisplayField\"\n [emptyMessage]=\"lookupEmptyMessage\"\n [dropdown]=\"!showSearch\"\n [appendTo]=\"lookupAppendTo\"\n [placeholder]=\"placeholder || ' '\"\n [autoHighlight]=\"true\"\n inputStyleClass=\"mousetrap\">\n <ng-template let-item pTemplate=\"selectedItem\">\n <span\n class=\"ui-autocomplete-token-label ng-tns-c65-43 ng-star-inserted\"\n [sTooltip]=\"lookupDisplayFieldTooltip ? item[lookupDisplayField] : null\"\n tooltipPosition=\"top\">\n {{item[lookupDisplayField]}}\n </span>\n </ng-template>\n </p-autoComplete>\n <button\n *ngIf=\"showSearch\"\n pButton\n type=\"button\"\n icon=\"fa fa-search\"\n class=\"button-addon\"\n [disabled]=\"disabled\"\n (click)=\"showDialog()\">\n </button>\n</div>\n<p-dialog\n appendTo=\"body\"\n styleClass=\"s-lookup-modal\"\n [header]=\"searchTitle || 'platform.angular_components.advanced_search' | translate\"\n [(visible)]=\"dialogVisible\"\n [modal]=\"true\"\n (onHide)=\"hideDialog()\"\n [blockScroll]=\"true\"\n [focusOnShow]=\"true\"\n [draggable]=\"false\"\n [resizable]=\"false\"\n #dialog>\n <div\n *ngIf=\"dialogVisible\"\n class=\"s-lookup-modal-container\">\n <div\n *ngIf=\"searchFields && searchFields.length\"\n class=\"filter\"\n [@collapseContent]=\"collapsed \n ? { value: 'hidden', params: { transitionParams: transitionOptions } }\n : { value: 'visible', params: { transitionParams: transitionOptions } }\"\n (@collapseContent.done)=\"onToggleDone()\">\n <form\n [formGroup]=\"formGroupDialog\"\n novalidate\n autocomplete=\"off\">\n <div\n *ngIf=\"!collapsed\"\n class=\"form-content\"\n [@childCollapseContent]=\"collapsed\n ? { value: ':leave', params: { transitionParams: transitionOptions } }\n : { value: ':enter', params: { transitionParams: transitionOptions } }\">\n <div class=\"filter-title sds-section-title\">\n {{ filterTitle || \"platform.angular_components.filters\" | translate }}\n </div>\n <div class=\"form-fields\">\n <s-dynamic-form\n [fields]=\"searchFields\"\n [form]=\"formGroupDialog\">\n </s-dynamic-form>\n </div>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n [id]=\"id + '-filter-button'\"\n type=\"submit\"\n [label]=\"filterLabel || 'platform.angular_components.filter' | translate\"\n (onClick)=\"search()\"\n sTooltip=\"(ALT + SHIFT + F)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n <s-button\n [id]=\"id + '-clear-button'\"\n type=\"button\"\n [label]=\"clearLabel || 'platform.angular_components.clear' | translate\"\n (onClick)=\"clear()\"\n priority=\"link\"\n sTooltip=\"(ALT + SHIFT + L)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n </div>\n </div>\n </div>\n </form>\n </div>\n <div\n *ngIf=\"searchFields && searchFields.length\"\n class=\"filter-toggle\">\n <div class=\"filter-toggle--start-border-mask\"></div>\n <button\n [id]=\"id + '-filter-toggle-button'\"\n type=\"button\"\n (click)=\"filterToggle()\">\n <span\n class=\"fa\"\n [ngClass]=\"{'fa-chevron-left': !collapsed, 'fa-chevron-right': collapsed}\"\n aria-hidden=\"true\">\n </span>\n </button>\n <div class=\"filter-toggle--end-border-mask\"></div>\n </div>\n <div\n class=\"content\"\n [ngClass]=\"{'empty-content': !searchTotalRecords && !loading}\">\n <s-empty-state\n [id]=\"id + '-empty-state'\"\n *ngIf=\"!searchTotalRecords && !loading\"\n [title]=\"searchEmptyTitle || 'platform.angular_components.no_records_found' | translate\"\n [description]=\"searchEmptyDescription\"\n iconClass=\"fa fa-search\">\n </s-empty-state>\n\n <div>\n <s-button\n *ngIf=\"showAddOption\"\n priority=\"default\"\n [label]=\"'platform.angular_components.add' | translate\"\n (onClick)=\"onAdd.emit()\">\n </s-button>\n <s-button\n *ngIf=\"showEditOption\"\n priority=\"default\"\n [label]=\"'platform.angular_components.edit' | translate\"\n [disabled]=\"selected.length !== 1\"\n (onClick)=\"onEdit.emit(this.selected[0])\">\n </s-button>\n <s-button\n *ngIf=\"showRemoveOption\"\n priority=\"default\"\n [label]=\"'platform.angular_components.remove' | translate\"\n [disabled]=\"!selected.length\"\n (onClick)=\"onRemove.emit(this.selected)\">\n </s-button>\n </div>\n\n <p-table\n [dataKey]=\"dataKey\"\n [value]=\"getGridData()\"\n [columns]=\"searchGridFields\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n sortMode=\"multiple\"\n [totalRecords]=\"searchTotalRecords\"\n [rows]=\"10\"\n [selection]=\"selected\"\n (onLazyLoad)=\"lazyLoadGrid($event)\"\n *sLoadingState=\"loading\"\n [multiSortMeta]=\"multiSortMeta\"\n [attr.data-hidden]=\"!searchTotalRecords && !loading\"\n [selectionMode]=\"multiple ? 'multiple' : 'single'\"\n (selectionChange)=\"onSelectionChange($event)\">\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col\n *ngIf=\"multiple\"\n style=\"width: 50px\" />\n <col\n *ngFor=\"let col of columns\"\n [style.width]=\"col.width\" />\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th\n *ngIf=\"multiple\"\n style=\"width: 50px\">\n <s-table-header-checkbox\n [useAllObject]=\"lookupRowProps ? false : true\"\n [rowProps]=\"lookupRowProps\">\n </s-table-header-checkbox>\n </th>\n <th\n [style.width]=\"col.width\"\n *ngFor=\"let col of columns\"\n [pSortableColumn]=\"col.name\"\n [pSortableColumnDisabled]=\"sortableColumnsDisabled?.includes(col.name)\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label }}</span>\n <p-sortIcon\n [field]=\"col.name\"\n *ngIf=\"!sortableColumnsDisabled?.includes(col.name)\">\n </p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template\n pTemplate=\"body\"\n let-rowData\n let-columns\n let-rowIndex=\"rowIndex\">\n <tr\n sNavigation\n [pSelectableRow]=\"rowData\"\n [pSelectableRowIndex]=\"rowIndex\"\n sDoubleClick (onDoubleClick)=\"onTableRowDoubleClick(rowData)\">\n <td\n *ngIf=\"multiple\"\n style=\"width: 50px\"\n tabindex=\"0\">\n <p-tableCheckbox\n [value]=\"rowData\"\n [pSelectableRow]=\"rowData\">\n </p-tableCheckbox>\n </td>\n <td\n [style.width]=\"col['width']\"\n *ngFor=\"let col of searchGridFields\"\n [ngSwitch]=\"col.type\"\n tabindex=\"0\">\n <ng-container *ngSwitchCase=\"'Boolean'\">\n <ng-container *ngIf=\"isBooleanValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getBooleanLabel(rowData, col.name, col.optionsLabel) }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Date'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate: col.calendarLocaleOptions?.dateFormat || \"L\" | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'DateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'LocalDateTime'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedDate | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Time'\">\n <ng-container *ngIf=\"getFieldValue(rowData, col.name); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) | localizedTime: col.calendarLocaleOptions?.dateFormat || \"LTS\" | async }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Integer'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getIntegerMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Double'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getDoubleMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Money'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getMoneyMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Number'\">\n <ng-container *ngIf=\"isNumber(rowData, col.name); else emptyTemplate\">\n <span> {{ getFieldValue(rowData, col.name) | localizedBignumber: getNumberMaskConfig(col) | async }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchCase=\"'Enum'\">\n <ng-container\n *ngIf=\"getLabelForValue(getFieldValue(rowData, col.name), col.options); else emptyTemplate\"\n >\n <span> {{ getLabelForValue(getFieldValue(rowData, col.name), col.options) }} </span>\n </ng-container>\n </ng-container>\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"col.mask && col.mask()\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name))\">\n <span>{{ getFieldValue(rowData, col.name) | sMaskFormatter: col.mask() }}</span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!(col.mask && col.mask())\">\n <ng-container *ngIf=\"(isNumber(rowData, col.name) || getFieldValue(rowData, col.name)); else emptyTemplate\">\n <span>{{ getFieldValue(rowData, col.name) }}</span>\n </ng-container>\n </ng-container>\n </ng-container>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [attr.data-hidden]=\"loading\">\n {{ printRecordTotalizer() }}\n </span>\n </ng-template>\n </p-table>\n </div>\n </div>\n <p-footer>\n <s-button\n [id]=\"id + '-select-button'\"\n type=\"button\"\n [label]=\"selectLabel || 'platform.angular_components.select' | translate\"\n (onClick)=\"select()\"\n sTooltip=\"(ALT + SHIFT + S)\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n [disabled]=\"!selected?.length\">\n </s-button>\n <s-button\n [id]=\"id + '-cancel-button'\"\n type=\"button\"\n priority=\"link\"\n [label]=\"cancelLabel || 'platform.angular_components.cancel' | translate\"\n (onClick)=\"hideDialog()\"\n sTooltip=\"(ALT + SHIFT + C)\"\n tooltipPosition=\"top\"\n showDelay=\"500\">\n </s-button>\n </p-footer>\n</p-dialog>\n<ng-template #emptyTemplate>\n <span [ngClass]=\"'sds-empty-value'\">\n {{ emptyFieldLabel || 'platform.angular_components.not_informed' | translate }}\n </span>\n</ng-template>\n",
|
|
5628
5641
|
providers: [
|
|
5629
5642
|
{
|
|
5630
5643
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -6869,8 +6882,134 @@ var InfoSignModule = /** @class */ (function () {
|
|
|
6869
6882
|
return InfoSignModule;
|
|
6870
6883
|
}());
|
|
6871
6884
|
|
|
6885
|
+
var IAssistIconComponent = /** @class */ (function () {
|
|
6886
|
+
function IAssistIconComponent() {
|
|
6887
|
+
}
|
|
6888
|
+
IAssistIconComponent = __decorate([
|
|
6889
|
+
Component({
|
|
6890
|
+
template: "<svg style=\"width: 100%; height: 100%;\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.81451 18.1054L5.99593 17.6059L7.52166 13.4099L7.60877 13.1726L7.61277 13.1614L7.94285 12.2543L8.01159 12.0648L8.05394 11.949L5.2998 8.52426L5.02726 8.18379C5.00569 8.15821 4.9881 8.13104 4.97292 8.10226C4.90099 7.9632 4.85063 7.81294 4.82186 7.6531C4.73075 7.1344 4.90418 6.60771 5.28382 6.24326C5.29421 6.23447 5.3038 6.22567 5.31419 6.21688L5.47164 6.0914L9.3439 3.00238L9.5469 2.84094L9.57088 2.82096L10.4101 2.15041L11.8007 1.04188C11.2181 0.925188 10.6163 0.863647 10.0001 0.863647C4.95374 0.863647 0.863281 4.9541 0.863281 9.99963C0.863281 13.5346 2.87254 16.5989 5.80971 18.1182\" fill=\"#0FA389\"/>\n <path d=\"M14.099 1.83472L13.9495 2.24632L11.997 7.61074L11.9427 7.7594L11.9003 7.87369L14.7448 11.4103C14.7463 11.4127 14.7479 11.4143 14.7495 11.4167L14.9414 11.654C14.9541 11.67 14.9661 11.6868 14.9765 11.7044C15.0764 11.8698 15.1444 12.0505 15.1779 12.2431C15.273 12.7826 15.0812 13.3284 14.676 13.6897C14.656 13.7129 14.6345 13.7344 14.6105 13.7536L11.8563 15.9507L11.6789 16.0922L11.6022 16.1537L10.7406 16.8402V16.841L10.3937 17.1176L9.85747 17.5452L9.39951 17.9112L8.11035 18.9398C8.72016 19.0677 9.35155 19.1364 9.99973 19.1364C15.0461 19.1364 19.1365 15.046 19.1365 9.99964C19.1365 6.42789 17.0857 3.33727 14.099 1.83472Z\" fill=\"#0FA389\"/>\n <path d=\"M14.7287 12.3222C14.7047 12.1832 14.6551 12.0545 14.5864 11.941L14.3954 11.7036C14.3954 11.7036 14.3946 11.7028 14.3938 11.7028L11.3839 7.96005L10.5031 6.86511L10.4256 6.7676L9.03255 5.03487L8.83674 4.79191C8.79278 4.71678 8.75681 4.63446 8.73204 4.54814C8.72085 4.51058 8.71286 4.47222 8.70566 4.43465C8.68568 4.32196 8.68408 4.21007 8.69847 4.10217L8.62334 4.16291L8.44511 4.30438L5.75731 6.44871L5.60066 6.57339C5.34011 6.82275 5.20584 7.19279 5.27218 7.57482C5.29296 7.68751 5.32892 7.79541 5.37927 7.89292C5.37927 7.89292 5.37927 7.89292 5.38007 7.89371L5.6566 8.23818L8.57139 11.8627L8.63293 11.9394L9.53047 13.0559L9.59041 13.1303L9.98363 13.6186L11.0178 14.9046C11.0186 14.9054 11.0194 14.9069 11.0202 14.9077L11.1361 15.0516V15.0524C11.2184 15.1755 11.2768 15.317 11.3048 15.4728C11.3239 15.5807 11.3263 15.6878 11.3143 15.7925L11.3175 15.7965L11.3943 15.735L11.5717 15.5935L14.3266 13.3964L14.3218 13.3908C14.6335 13.1438 14.8022 12.7394 14.7287 12.3222Z\" fill=\"#F3F3F5\"/>\n <path d=\"M10.6822 15.0082C10.6814 15.0074 10.6806 15.0058 10.6806 15.005L10.5672 14.8643L10.3809 14.6325L10.3282 14.567L10.2211 14.4335L9.40028 13.4129L9.32835 13.3242L8.77289 12.6345L8.68098 12.5194L8.44121 12.2205L8.37168 12.4099L8.04159 13.317L8.0376 13.329L7.95128 13.5664L6.42475 17.7623L6.24333 18.2618L5.90605 19.1881L5.73262 19.6645C5.73182 19.6661 5.73102 19.6677 5.73102 19.6685C5.72863 19.6749 5.72703 19.6821 5.72543 19.6885C5.71584 19.7228 5.71424 19.758 5.72063 19.7948C5.74461 19.929 5.87329 20.0193 6.00836 19.9962C6.04112 19.9898 6.07229 19.9778 6.09867 19.9602C6.09867 19.9602 6.09947 19.9602 6.10027 19.9594L6.14103 19.9266L7.39422 18.9268L9.11496 17.5537L9.57292 17.1877L10.1092 16.7601L10.4561 16.4827L10.4537 16.4811C10.7582 16.2382 10.9236 15.8402 10.8509 15.4294C10.8237 15.2735 10.7654 15.1313 10.6822 15.0082Z\" fill=\"#0C847B\"/>\n <path d=\"M9.17644 4.56325C9.2124 4.68713 9.26915 4.80062 9.34268 4.90053C9.34348 4.90053 9.34428 4.90213 9.34428 4.90213L9.40342 4.97645C9.40502 4.97805 9.40582 4.97885 9.40662 4.98045L9.56806 5.17946L9.64878 5.28096L9.67915 5.31932L9.8414 5.51993L10.5559 6.40947L10.7054 6.59569L11.2169 7.23188L11.5142 7.60192L11.5693 7.45247L13.5202 2.08964L14.1596 0.332135C14.1596 0.330536 14.1604 0.328139 14.1612 0.32654C14.174 0.288177 14.1772 0.246617 14.17 0.205058C14.1468 0.0699879 14.0182 -0.0195258 13.8823 0.00365186C13.8407 0.0116442 13.8024 0.028428 13.7712 0.0540033L12.578 1.00589L12.498 1.06982L10.6958 2.50844L9.85658 3.17819L9.8326 3.19737L9.6296 3.35961L9.45297 3.50028C9.2116 3.73925 9.08692 4.08931 9.15006 4.44976C9.15726 4.48813 9.16525 4.52649 9.17644 4.56325Z\" fill=\"#0C847B\"/>\n</svg>"
|
|
6891
|
+
})
|
|
6892
|
+
], IAssistIconComponent);
|
|
6893
|
+
return IAssistIconComponent;
|
|
6894
|
+
}());
|
|
6895
|
+
|
|
6896
|
+
var SeniorIconComponent = /** @class */ (function () {
|
|
6897
|
+
function SeniorIconComponent() {
|
|
6898
|
+
}
|
|
6899
|
+
SeniorIconComponent = __decorate([
|
|
6900
|
+
Component({
|
|
6901
|
+
template: "<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 348 613\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g filter=\"url(#filter0_d_2841_2040)\">\n <path d=\"M174.719 518.932L258.161 439.782C264.546 433.762 269.614 426.603 273.072 418.719C276.53 410.834 278.31 402.378 278.31 393.838C278.31 385.298 276.53 376.843 273.072 368.958C269.614 361.073 264.546 353.915 258.161 347.895L174.719 269.199C168.45 263.304 163.474 256.289 160.077 248.56C156.681 240.83 154.933 232.539 154.933 224.165C154.933 215.792 156.681 207.501 160.077 199.771C163.474 192.042 168.45 185.027 174.719 179.132L303.718 301.496C329.517 326.089 344 359.371 344 394.066C344 428.76 329.517 462.043 303.718 486.635L174.719 609C168.45 603.105 163.474 596.09 160.077 588.36C156.681 580.631 154.933 572.34 154.933 563.966C154.933 555.592 156.681 547.301 160.077 539.572C163.474 531.842 168.45 524.828 174.719 518.932ZM173.76 94.0677L90.3189 173.218C83.9334 179.238 78.8659 186.397 75.408 194.281C71.95 202.166 70.1698 210.622 70.1698 219.162C70.1698 227.702 71.95 236.157 75.408 244.042C78.8659 251.927 83.9334 259.085 90.3189 265.105L173.76 344.256C180.03 350.151 185.006 357.166 188.402 364.895C191.798 372.625 193.547 380.916 193.547 389.289C193.547 397.663 191.798 405.954 188.402 413.684C185.006 421.413 180.03 428.428 173.76 434.323L44.2823 311.504C18.4832 286.911 4 253.629 4 218.934C4 184.24 18.4832 150.957 44.2823 126.365L173.76 4C186.213 16.0129 193.192 32.1861 193.192 49.0338C193.192 65.8815 186.213 82.0547 173.76 94.0677Z\" fill=\"white\" />\n </g>\n <defs>\n <filter id=\"filter0_d_2841_2040\" x=\"0\" y=\"0\" width=\"348\" height=\"613\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\" >\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\" />\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\" />\n <feOffset />\n <feGaussianBlur stdDeviation=\"2\" />\n <feComposite in2=\"hardAlpha\" operator=\"out\" />\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.418936 0 0 0 0 1 0 0 0 0 0.930272 0 0 0 0.35 0\" />\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2841_2040\" />\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2841_2040\" result=\"shape\" />\n </filter>\n </defs>\n</svg>\n"
|
|
6902
|
+
})
|
|
6903
|
+
], SeniorIconComponent);
|
|
6904
|
+
return SeniorIconComponent;
|
|
6905
|
+
}());
|
|
6906
|
+
|
|
6907
|
+
var SVGFactoryIcons;
|
|
6908
|
+
(function (SVGFactoryIcons) {
|
|
6909
|
+
SVGFactoryIcons["IAssist"] = "iassist";
|
|
6910
|
+
SVGFactoryIcons["Senior"] = "senior";
|
|
6911
|
+
})(SVGFactoryIcons || (SVGFactoryIcons = {}));
|
|
6912
|
+
|
|
6913
|
+
var SVGFactoryDirective = /** @class */ (function () {
|
|
6914
|
+
function SVGFactoryDirective(viewContainerRef, componentFactoryResolver, cdr) {
|
|
6915
|
+
this.viewContainerRef = viewContainerRef;
|
|
6916
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
6917
|
+
this.cdr = cdr;
|
|
6918
|
+
this._iconClass = this._getIconClass(SVGFactoryIcons.Senior);
|
|
6919
|
+
}
|
|
6920
|
+
Object.defineProperty(SVGFactoryDirective.prototype, "sSVGFactory", {
|
|
6921
|
+
set: function (icon) {
|
|
6922
|
+
this._iconClass = this._getIconClass(icon);
|
|
6923
|
+
},
|
|
6924
|
+
enumerable: true,
|
|
6925
|
+
configurable: true
|
|
6926
|
+
});
|
|
6927
|
+
SVGFactoryDirective.prototype.ngAfterViewInit = function () {
|
|
6928
|
+
this._createComponent();
|
|
6929
|
+
};
|
|
6930
|
+
SVGFactoryDirective.prototype._createComponent = function () {
|
|
6931
|
+
var factory = this.componentFactoryResolver.resolveComponentFactory(this._iconClass);
|
|
6932
|
+
this.viewContainerRef.clear();
|
|
6933
|
+
this.viewContainerRef.createComponent(factory);
|
|
6934
|
+
this.cdr.detectChanges();
|
|
6935
|
+
};
|
|
6936
|
+
SVGFactoryDirective.prototype._getIconClass = function (icon) {
|
|
6937
|
+
switch (icon) {
|
|
6938
|
+
case SVGFactoryIcons.IAssist:
|
|
6939
|
+
return IAssistIconComponent;
|
|
6940
|
+
case SVGFactoryIcons.Senior:
|
|
6941
|
+
default:
|
|
6942
|
+
return SeniorIconComponent;
|
|
6943
|
+
}
|
|
6944
|
+
};
|
|
6945
|
+
SVGFactoryDirective.ctorParameters = function () { return [
|
|
6946
|
+
{ type: ViewContainerRef },
|
|
6947
|
+
{ type: ComponentFactoryResolver },
|
|
6948
|
+
{ type: ChangeDetectorRef }
|
|
6949
|
+
]; };
|
|
6950
|
+
__decorate([
|
|
6951
|
+
Input("sSVGFactory")
|
|
6952
|
+
], SVGFactoryDirective.prototype, "sSVGFactory", null);
|
|
6953
|
+
SVGFactoryDirective = __decorate([
|
|
6954
|
+
Directive({
|
|
6955
|
+
selector: "[sSVGFactory]",
|
|
6956
|
+
})
|
|
6957
|
+
], SVGFactoryDirective);
|
|
6958
|
+
return SVGFactoryDirective;
|
|
6959
|
+
}());
|
|
6960
|
+
|
|
6961
|
+
var SVGFactoryModule = /** @class */ (function () {
|
|
6962
|
+
function SVGFactoryModule() {
|
|
6963
|
+
}
|
|
6964
|
+
SVGFactoryModule = __decorate([
|
|
6965
|
+
NgModule({
|
|
6966
|
+
imports: [CommonModule],
|
|
6967
|
+
declarations: [
|
|
6968
|
+
SVGFactoryDirective,
|
|
6969
|
+
IAssistIconComponent,
|
|
6970
|
+
SeniorIconComponent,
|
|
6971
|
+
],
|
|
6972
|
+
exports: [SVGFactoryDirective],
|
|
6973
|
+
})
|
|
6974
|
+
], SVGFactoryModule);
|
|
6975
|
+
return SVGFactoryModule;
|
|
6976
|
+
}());
|
|
6977
|
+
|
|
6978
|
+
var DotsIndicatorComponent = /** @class */ (function () {
|
|
6979
|
+
function DotsIndicatorComponent() {
|
|
6980
|
+
}
|
|
6981
|
+
DotsIndicatorComponent = __decorate([
|
|
6982
|
+
Component({
|
|
6983
|
+
selector: "s-dots-indicator",
|
|
6984
|
+
template: "<div class=\"dots-indicator\">\n <div class=\"bounce bounce--1\"></div>\n <div class=\"bounce bounce--2\"></div>\n <div class=\"bounce bounce--3\"></div>\n</div>\n",
|
|
6985
|
+
styles: [".dots-indicator .bounce{animation:1.2s ease-out infinite bounce;background-color:#333;border-radius:100%;display:inline-block;height:10px;width:10px}.dots-indicator .bounce+.bounce{margin-left:15px}.dots-indicator .bounce.bounce--1{animation-delay:0s}.dots-indicator .bounce.bounce--2{animation-delay:.1s}.dots-indicator .bounce.bounce--3{animation-delay:.2s}@keyframes bounce{100%,80%{transform:scale(1)}90%{transform:scale(1.8)}}"]
|
|
6986
|
+
})
|
|
6987
|
+
], DotsIndicatorComponent);
|
|
6988
|
+
return DotsIndicatorComponent;
|
|
6989
|
+
}());
|
|
6990
|
+
|
|
6991
|
+
var LoadingIndicatorComponent = /** @class */ (function () {
|
|
6992
|
+
function LoadingIndicatorComponent() {
|
|
6993
|
+
}
|
|
6994
|
+
LoadingIndicatorComponent = __decorate([
|
|
6995
|
+
Component({
|
|
6996
|
+
selector: "s-logo-indicator",
|
|
6997
|
+
template: "<div class=\"logo-indicator\">\n <span *sSVGFactory=\"'senior'\"></span>\n</div>\n",
|
|
6998
|
+
styles: [".logo-indicator{animation:1s infinite pulsar,1s infinite scale;background-color:#00c89a;border-radius:50%;box-shadow:0 0 0 #00c89ab3;height:64px;padding:calc(64px * .16);position:relative;width:64px}@keyframes pulsar{0%{box-shadow:0 0 0 0 #00c89ab3}70%{box-shadow:0 0 0 40px #00c89a00}100%{box-shadow:0 0 0 0 #00c89a00}}@keyframes scale{0%,100%{transform:scale(1)}50%{transform:scale(1.3)}}"]
|
|
6999
|
+
})
|
|
7000
|
+
], LoadingIndicatorComponent);
|
|
7001
|
+
return LoadingIndicatorComponent;
|
|
7002
|
+
}());
|
|
7003
|
+
|
|
7004
|
+
var LoadingStateIndicators;
|
|
7005
|
+
(function (LoadingStateIndicators) {
|
|
7006
|
+
LoadingStateIndicators["Dots"] = "dots";
|
|
7007
|
+
LoadingStateIndicators["Logo"] = "logo";
|
|
7008
|
+
})(LoadingStateIndicators || (LoadingStateIndicators = {}));
|
|
7009
|
+
|
|
6872
7010
|
var LoadingStateComponent = /** @class */ (function () {
|
|
6873
7011
|
function LoadingStateComponent() {
|
|
7012
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
6874
7013
|
this.id = "s-loading-state-" + LoadingStateComponent_1.nextId++;
|
|
6875
7014
|
this.BLOCK_TIMEOUT_VALUE = 300;
|
|
6876
7015
|
this.UNBLOCK_TIMEOUT_VALUE = 200;
|
|
@@ -6882,10 +7021,7 @@ var LoadingStateComponent = /** @class */ (function () {
|
|
|
6882
7021
|
},
|
|
6883
7022
|
set: function (loading) {
|
|
6884
7023
|
this._loading = loading;
|
|
6885
|
-
|
|
6886
|
-
this.block();
|
|
6887
|
-
else
|
|
6888
|
-
this.unblock();
|
|
7024
|
+
loading ? this.block() : this.unblock();
|
|
6889
7025
|
},
|
|
6890
7026
|
enumerable: true,
|
|
6891
7027
|
configurable: true
|
|
@@ -6917,13 +7053,18 @@ var LoadingStateComponent = /** @class */ (function () {
|
|
|
6917
7053
|
}
|
|
6918
7054
|
};
|
|
6919
7055
|
LoadingStateComponent.prototype.ngOnDestroy = function () {
|
|
6920
|
-
if (this.blockTimeoutId)
|
|
7056
|
+
if (this.blockTimeoutId) {
|
|
6921
7057
|
clearTimeout(this.blockTimeoutId);
|
|
6922
|
-
|
|
7058
|
+
}
|
|
7059
|
+
if (this.unblockTimeoutId) {
|
|
6923
7060
|
clearTimeout(this.unblockTimeoutId);
|
|
7061
|
+
}
|
|
6924
7062
|
};
|
|
6925
7063
|
var LoadingStateComponent_1;
|
|
6926
7064
|
LoadingStateComponent.nextId = 0;
|
|
7065
|
+
__decorate([
|
|
7066
|
+
Input()
|
|
7067
|
+
], LoadingStateComponent.prototype, "indicator", void 0);
|
|
6927
7068
|
__decorate([
|
|
6928
7069
|
Input()
|
|
6929
7070
|
], LoadingStateComponent.prototype, "id", void 0);
|
|
@@ -6936,8 +7077,8 @@ var LoadingStateComponent = /** @class */ (function () {
|
|
|
6936
7077
|
LoadingStateComponent = LoadingStateComponent_1 = __decorate([
|
|
6937
7078
|
Component({
|
|
6938
7079
|
selector: "s-loading-state",
|
|
6939
|
-
template: "<div\n [id]=\"id\"\n class=\"s-loading-state-container\"\n [ngClass]=\"{'loading': loading
|
|
6940
|
-
styles: [".s-loading-state-container{position:relative}.s-loading-state-container
|
|
7080
|
+
template: "<div\n [id]=\"id\"\n class=\"s-loading-state-container\"\n [ngClass]=\"{\n 'loading': loading,\n 'blocking': blocking,\n 'fullscreen': blockWindow\n }\">\n <div\n [id]=\"id + '-loader'\"\n class=\"loader\">\n <div\n [id]=\"id + '-spinner'\"\n class=\"spinner\">\n <ng-container [ngSwitch]=\"indicator\">\n <s-logo-indicator *ngSwitchCase=\"'logo'\"></s-logo-indicator>\n <s-dots-indicator *ngSwitchCase=\"'dots'\"></s-dots-indicator>\n </ng-container>\n </div>\n <div\n [id]=\"id + '-overlay'\"\n class=\"overlay\">\n </div>\n </div>\n <div\n [id]=\"id + '-contents'\"\n class=\"contents\">\n <ng-container *ngTemplateOutlet=\"contents || originalContent\"></ng-container>\n <ng-template #originalContent>\n <ng-content></ng-content>\n </ng-template>\n </div>\n</div>",
|
|
7081
|
+
styles: [".s-loading-state-container{position:relative}.s-loading-state-container .loader{opacity:0;position:absolute;transition:opacity .2s ease-out,display .2s ease-out;visibility:hidden;inset:1px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.s-loading-state-container .loader .overlay{background-color:#fff;height:100%;opacity:.8;transition:opacity .2s ease-out,display .2s ease-out;width:100%}.s-loading-state-container .loader .spinner{display:-ms-flexbox;display:flex;position:absolute;z-index:2}.s-loading-state-container.blocking>.loader,.s-loading-state-container.loading>.loader{visibility:visible}.s-loading-state-container.blocking>.loader,.s-loading-state-container.blocking>.loader>.overlay,.s-loading-state-container.loading>.loader,.s-loading-state-container.loading>.loader>.overlay{cursor:wait;z-index:1}.s-loading-state-container.blocking>.contents,.s-loading-state-container.loading>.contents{z-index:0!important}.s-loading-state-container.blocking.loading>.loader{opacity:1}.s-loading-state-container.fullscreen>.loader{left:0;position:fixed;top:0;z-index:1005}::ng-deep .s-loading-state-container.loading.blocking s-loading-state .s-loading-state-container>.loader{opacity:0;visibility:hidden}::ng-deep .s-loading-state-container.loading.blocking s-loading-state .s-loading-state-container>.contents{z-index:0!important}"]
|
|
6941
7082
|
})
|
|
6942
7083
|
], LoadingStateComponent);
|
|
6943
7084
|
return LoadingStateComponent;
|
|
@@ -6950,15 +7091,22 @@ var LoadingStateDirective = /** @class */ (function () {
|
|
|
6950
7091
|
this.componentFactoryResolver = componentFactoryResolver;
|
|
6951
7092
|
this.cdr = cdr;
|
|
6952
7093
|
this._loading = false;
|
|
7094
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
6953
7095
|
}
|
|
6954
7096
|
Object.defineProperty(LoadingStateDirective.prototype, "sLoadingState", {
|
|
6955
|
-
|
|
6956
|
-
|
|
6957
|
-
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
if (
|
|
6961
|
-
this.
|
|
7097
|
+
set: function (value) {
|
|
7098
|
+
if (typeof value === "boolean") {
|
|
7099
|
+
this._loading = value;
|
|
7100
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
7101
|
+
}
|
|
7102
|
+
else if (typeof value === "object") {
|
|
7103
|
+
this._loading = value.loading;
|
|
7104
|
+
this.indicator = value.indicator || LoadingStateIndicators.Dots;
|
|
7105
|
+
}
|
|
7106
|
+
if (this.loaderComponent) {
|
|
7107
|
+
this.loaderComponent.instance.loading = this._loading;
|
|
7108
|
+
this.loaderComponent.instance.indicator = this.indicator;
|
|
7109
|
+
}
|
|
6962
7110
|
},
|
|
6963
7111
|
enumerable: true,
|
|
6964
7112
|
configurable: true
|
|
@@ -6970,11 +7118,14 @@ var LoadingStateDirective = /** @class */ (function () {
|
|
|
6970
7118
|
var factory = this.componentFactoryResolver.resolveComponentFactory(LoadingStateComponent);
|
|
6971
7119
|
this.loaderComponent = this.target.createComponent(factory);
|
|
6972
7120
|
this.loaderComponent.instance.contents = this.template;
|
|
6973
|
-
this.loaderComponent.instance.loading = this.
|
|
7121
|
+
this.loaderComponent.instance.loading = this._loading;
|
|
7122
|
+
this.loaderComponent.instance.indicator = this.indicator;
|
|
6974
7123
|
this.cdr.detectChanges();
|
|
6975
7124
|
};
|
|
6976
7125
|
LoadingStateDirective.prototype.ngOnDestroy = function () {
|
|
6977
|
-
this.loaderComponent
|
|
7126
|
+
if (this.loaderComponent) {
|
|
7127
|
+
this.loaderComponent.destroy();
|
|
7128
|
+
}
|
|
6978
7129
|
};
|
|
6979
7130
|
LoadingStateDirective.ctorParameters = function () { return [
|
|
6980
7131
|
{ type: ViewContainerRef },
|
|
@@ -6983,7 +7134,7 @@ var LoadingStateDirective = /** @class */ (function () {
|
|
|
6983
7134
|
{ type: ChangeDetectorRef }
|
|
6984
7135
|
]; };
|
|
6985
7136
|
__decorate([
|
|
6986
|
-
Input()
|
|
7137
|
+
Input("sLoadingState")
|
|
6987
7138
|
], LoadingStateDirective.prototype, "sLoadingState", null);
|
|
6988
7139
|
LoadingStateDirective = __decorate([
|
|
6989
7140
|
Directive({
|
|
@@ -6998,9 +7149,20 @@ var LoadingStateModule = /** @class */ (function () {
|
|
|
6998
7149
|
}
|
|
6999
7150
|
LoadingStateModule = __decorate([
|
|
7000
7151
|
NgModule({
|
|
7001
|
-
imports: [
|
|
7002
|
-
|
|
7003
|
-
|
|
7152
|
+
imports: [
|
|
7153
|
+
CommonModule,
|
|
7154
|
+
SVGFactoryModule,
|
|
7155
|
+
],
|
|
7156
|
+
declarations: [
|
|
7157
|
+
LoadingStateComponent,
|
|
7158
|
+
LoadingStateDirective,
|
|
7159
|
+
DotsIndicatorComponent,
|
|
7160
|
+
LoadingIndicatorComponent,
|
|
7161
|
+
],
|
|
7162
|
+
exports: [
|
|
7163
|
+
LoadingStateComponent,
|
|
7164
|
+
LoadingStateDirective,
|
|
7165
|
+
],
|
|
7004
7166
|
entryComponents: [LoadingStateComponent],
|
|
7005
7167
|
})
|
|
7006
7168
|
], LoadingStateModule);
|
|
@@ -9001,7 +9163,7 @@ var LookupFieldComponent = /** @class */ (function () {
|
|
|
9001
9163
|
], LookupFieldComponent.prototype, "formControl", void 0);
|
|
9002
9164
|
LookupFieldComponent = __decorate([
|
|
9003
9165
|
Component({
|
|
9004
|
-
template: "<div
|
|
9166
|
+
template: "<div [sTooltip]=\"field.tooltip\" tooltipPosition=\"top\" [showDelay]=\"500\">\n <s-lookup\n [id]=\"field.id || field.name\"\n [multiple]=\"field.multiple\"\n [formControl]=\"formControl\"\n [lookupSuggestions]=\"field.lookupSuggestions\"\n [dataKey]=\"field.dataKey\"\n [placeholder]=\"field.placeholder\"\n [showSearch]=\"field.showSearch\"\n [searchFields]=\"field.searchFields\"\n [searchGridFields]=\"field.searchGridFields\"\n [searchGridData]=\"field.gridData\"\n (onLookupRequest)=\"field.onLookupRequest($event)\"\n (onSearchRequest)=\"field.onSearchRequest($event)\"\n [lookupDisplayField]=\"field.lookupDisplayField\"\n [searchTotalRecords]=\"field.searchTotalRecords\"\n [searchTotalRecordsLabel]=\"field.searchTotalRecordsLabel\"\n [searchTitle]=\"field.searchTitle\"\n [selectLabel]=\"field.selectLabel\"\n [searchEmptyTitle]=\"field.searchEmptyTitle\"\n [filterLabel]=\"field.filterLabel\"\n [filterTitle]=\"field.filterTitle\"\n [clearLabel]=\"field.clearLabel\"\n [cancelLabel]=\"field.cancelLabel\"\n [emptyFieldLabel]=\"field.emptyFieldLabel\"\n (onSelect)=\"field.onSelect($event)\"\n (onUnselect)=\"field.onUnselect($event)\"\n (onClear)=\"field.onClear ? field.onClear($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [lookupAppendTo]=\"field.appendTo\"\n [lookupEmptyMessage]=\"field.emptyMessage\"\n [recordLabel]=\"field.recordLabel\"\n [recordsLabel]=\"field.recordsLabel\"\n [defaultFilter]=\"field.defaultFilter\"\n [autocompleteForceSelection]=\"field.autocompleteForceSelection\"\n [showAddOption]=\"field.showAddOption\"\n [showEditOption]=\"field.showEditOption\"\n [showRemoveOption]=\"field.showRemoveOption\"\n (onAdd)=\"field.onAdd()\"\n (onEdit)=\"field.onEdit($event)\"\n (onRemove)=\"field.onRemove($event)\"\n >\n </s-lookup>\n</div>\n"
|
|
9005
9167
|
})
|
|
9006
9168
|
], LookupFieldComponent);
|
|
9007
9169
|
return LookupFieldComponent;
|
|
@@ -12951,53 +13113,6 @@ var GlobalSearchModule = /** @class */ (function () {
|
|
|
12951
13113
|
return GlobalSearchModule;
|
|
12952
13114
|
}());
|
|
12953
13115
|
|
|
12954
|
-
var IAssistIconComponent = /** @class */ (function () {
|
|
12955
|
-
function IAssistIconComponent() {
|
|
12956
|
-
}
|
|
12957
|
-
IAssistIconComponent = __decorate([
|
|
12958
|
-
Component({
|
|
12959
|
-
template: "<svg style=\"width: 100%; height: 100%;\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.81451 18.1054L5.99593 17.6059L7.52166 13.4099L7.60877 13.1726L7.61277 13.1614L7.94285 12.2543L8.01159 12.0648L8.05394 11.949L5.2998 8.52426L5.02726 8.18379C5.00569 8.15821 4.9881 8.13104 4.97292 8.10226C4.90099 7.9632 4.85063 7.81294 4.82186 7.6531C4.73075 7.1344 4.90418 6.60771 5.28382 6.24326C5.29421 6.23447 5.3038 6.22567 5.31419 6.21688L5.47164 6.0914L9.3439 3.00238L9.5469 2.84094L9.57088 2.82096L10.4101 2.15041L11.8007 1.04188C11.2181 0.925188 10.6163 0.863647 10.0001 0.863647C4.95374 0.863647 0.863281 4.9541 0.863281 9.99963C0.863281 13.5346 2.87254 16.5989 5.80971 18.1182\" fill=\"#0FA389\"/>\n <path d=\"M14.099 1.83472L13.9495 2.24632L11.997 7.61074L11.9427 7.7594L11.9003 7.87369L14.7448 11.4103C14.7463 11.4127 14.7479 11.4143 14.7495 11.4167L14.9414 11.654C14.9541 11.67 14.9661 11.6868 14.9765 11.7044C15.0764 11.8698 15.1444 12.0505 15.1779 12.2431C15.273 12.7826 15.0812 13.3284 14.676 13.6897C14.656 13.7129 14.6345 13.7344 14.6105 13.7536L11.8563 15.9507L11.6789 16.0922L11.6022 16.1537L10.7406 16.8402V16.841L10.3937 17.1176L9.85747 17.5452L9.39951 17.9112L8.11035 18.9398C8.72016 19.0677 9.35155 19.1364 9.99973 19.1364C15.0461 19.1364 19.1365 15.046 19.1365 9.99964C19.1365 6.42789 17.0857 3.33727 14.099 1.83472Z\" fill=\"#0FA389\"/>\n <path d=\"M14.7287 12.3222C14.7047 12.1832 14.6551 12.0545 14.5864 11.941L14.3954 11.7036C14.3954 11.7036 14.3946 11.7028 14.3938 11.7028L11.3839 7.96005L10.5031 6.86511L10.4256 6.7676L9.03255 5.03487L8.83674 4.79191C8.79278 4.71678 8.75681 4.63446 8.73204 4.54814C8.72085 4.51058 8.71286 4.47222 8.70566 4.43465C8.68568 4.32196 8.68408 4.21007 8.69847 4.10217L8.62334 4.16291L8.44511 4.30438L5.75731 6.44871L5.60066 6.57339C5.34011 6.82275 5.20584 7.19279 5.27218 7.57482C5.29296 7.68751 5.32892 7.79541 5.37927 7.89292C5.37927 7.89292 5.37927 7.89292 5.38007 7.89371L5.6566 8.23818L8.57139 11.8627L8.63293 11.9394L9.53047 13.0559L9.59041 13.1303L9.98363 13.6186L11.0178 14.9046C11.0186 14.9054 11.0194 14.9069 11.0202 14.9077L11.1361 15.0516V15.0524C11.2184 15.1755 11.2768 15.317 11.3048 15.4728C11.3239 15.5807 11.3263 15.6878 11.3143 15.7925L11.3175 15.7965L11.3943 15.735L11.5717 15.5935L14.3266 13.3964L14.3218 13.3908C14.6335 13.1438 14.8022 12.7394 14.7287 12.3222Z\" fill=\"#F3F3F5\"/>\n <path d=\"M10.6822 15.0082C10.6814 15.0074 10.6806 15.0058 10.6806 15.005L10.5672 14.8643L10.3809 14.6325L10.3282 14.567L10.2211 14.4335L9.40028 13.4129L9.32835 13.3242L8.77289 12.6345L8.68098 12.5194L8.44121 12.2205L8.37168 12.4099L8.04159 13.317L8.0376 13.329L7.95128 13.5664L6.42475 17.7623L6.24333 18.2618L5.90605 19.1881L5.73262 19.6645C5.73182 19.6661 5.73102 19.6677 5.73102 19.6685C5.72863 19.6749 5.72703 19.6821 5.72543 19.6885C5.71584 19.7228 5.71424 19.758 5.72063 19.7948C5.74461 19.929 5.87329 20.0193 6.00836 19.9962C6.04112 19.9898 6.07229 19.9778 6.09867 19.9602C6.09867 19.9602 6.09947 19.9602 6.10027 19.9594L6.14103 19.9266L7.39422 18.9268L9.11496 17.5537L9.57292 17.1877L10.1092 16.7601L10.4561 16.4827L10.4537 16.4811C10.7582 16.2382 10.9236 15.8402 10.8509 15.4294C10.8237 15.2735 10.7654 15.1313 10.6822 15.0082Z\" fill=\"#0C847B\"/>\n <path d=\"M9.17644 4.56325C9.2124 4.68713 9.26915 4.80062 9.34268 4.90053C9.34348 4.90053 9.34428 4.90213 9.34428 4.90213L9.40342 4.97645C9.40502 4.97805 9.40582 4.97885 9.40662 4.98045L9.56806 5.17946L9.64878 5.28096L9.67915 5.31932L9.8414 5.51993L10.5559 6.40947L10.7054 6.59569L11.2169 7.23188L11.5142 7.60192L11.5693 7.45247L13.5202 2.08964L14.1596 0.332135C14.1596 0.330536 14.1604 0.328139 14.1612 0.32654C14.174 0.288177 14.1772 0.246617 14.17 0.205058C14.1468 0.0699879 14.0182 -0.0195258 13.8823 0.00365186C13.8407 0.0116442 13.8024 0.028428 13.7712 0.0540033L12.578 1.00589L12.498 1.06982L10.6958 2.50844L9.85658 3.17819L9.8326 3.19737L9.6296 3.35961L9.45297 3.50028C9.2116 3.73925 9.08692 4.08931 9.15006 4.44976C9.15726 4.48813 9.16525 4.52649 9.17644 4.56325Z\" fill=\"#0C847B\"/>\n</svg>"
|
|
12960
|
-
})
|
|
12961
|
-
], IAssistIconComponent);
|
|
12962
|
-
return IAssistIconComponent;
|
|
12963
|
-
}());
|
|
12964
|
-
|
|
12965
|
-
var SVGFactoryDirective = /** @class */ (function () {
|
|
12966
|
-
function SVGFactoryDirective(viewContainerRef, componentFactoryResolver) {
|
|
12967
|
-
this.viewContainerRef = viewContainerRef;
|
|
12968
|
-
this.componentFactoryResolver = componentFactoryResolver;
|
|
12969
|
-
var factory = this.componentFactoryResolver.resolveComponentFactory(IAssistIconComponent);
|
|
12970
|
-
this.viewContainerRef.clear();
|
|
12971
|
-
this.viewContainerRef.createComponent(factory);
|
|
12972
|
-
}
|
|
12973
|
-
SVGFactoryDirective.ctorParameters = function () { return [
|
|
12974
|
-
{ type: ViewContainerRef },
|
|
12975
|
-
{ type: ComponentFactoryResolver }
|
|
12976
|
-
]; };
|
|
12977
|
-
SVGFactoryDirective = __decorate([
|
|
12978
|
-
Directive({
|
|
12979
|
-
selector: "[sSVGFactory]",
|
|
12980
|
-
})
|
|
12981
|
-
], SVGFactoryDirective);
|
|
12982
|
-
return SVGFactoryDirective;
|
|
12983
|
-
}());
|
|
12984
|
-
|
|
12985
|
-
var SVGFactoryModule = /** @class */ (function () {
|
|
12986
|
-
function SVGFactoryModule() {
|
|
12987
|
-
}
|
|
12988
|
-
SVGFactoryModule = __decorate([
|
|
12989
|
-
NgModule({
|
|
12990
|
-
imports: [CommonModule],
|
|
12991
|
-
declarations: [
|
|
12992
|
-
SVGFactoryDirective,
|
|
12993
|
-
IAssistIconComponent,
|
|
12994
|
-
],
|
|
12995
|
-
exports: [SVGFactoryDirective],
|
|
12996
|
-
})
|
|
12997
|
-
], SVGFactoryModule);
|
|
12998
|
-
return SVGFactoryModule;
|
|
12999
|
-
}());
|
|
13000
|
-
|
|
13001
13116
|
var TemplateDirective = /** @class */ (function () {
|
|
13002
13117
|
function TemplateDirective(template) {
|
|
13003
13118
|
this.template = template;
|
|
@@ -13146,7 +13261,7 @@ var IAInsightSidebarComponent = /** @class */ (function () {
|
|
|
13146
13261
|
IAInsightSidebarComponent = __decorate([
|
|
13147
13262
|
Component({
|
|
13148
13263
|
selector: "s-ia-insight-sidebar",
|
|
13149
|
-
template: "<div\n class=\"sidebar\"\n [class.opened]=\"opened\">\n <div class=\"header\">\n <button (click)=\"close()\" class=\"option\">\n <span class=\"far fa-chevron-double-right\"></span>\n </button>\n <div class=\"title\">\n <span><ng-container [ngTemplateOutlet]=\"iassistIcon\"></ng-container></span>\n <span>Insight</span>\n </div>\n </div>\n <div class=\"intro\">\n <ng-container *ngIf=\"hasPermission; then permissionBlock; else noPermissionBlock\"></ng-container>\n\n <ng-template #permissionBlock>\n <ng-container *ngIf=\"insights?.length; then introBlock; else emptyBlock\"></ng-container>\n \n <ng-template #introBlock>\n <ng-container *ngIf=\"introTemplate; then introCustomBlock; else introTextBlock\"></ng-container>\n\n <ng-template #introCustomBlock>\n <ng-container *ngTemplateOutlet=\"introTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #introTextBlock>\n <span class=\"text\">{{ introText || \"platform.angular_components.insight_intro\" | translate }}</span>\n </ng-template>\n </ng-template>\n \n <ng-template #emptyBlock>\n <ng-container *ngIf=\"emptyTemplate; then emptyCustomBlock; else emptyTextBlock\"></ng-container>\n\n <ng-template #emptyCustomBlock>\n <ng-container *ngTemplateOutlet=\"emptyTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #emptyTextBlock>\n <span class=\"text\">{{ emptyText || \"platform.angular_components.insight_empty\" | translate }}</span>\n </ng-template>\n </ng-template>\n </ng-template>\n \n <ng-template #noPermissionBlock>\n <ng-container *ngIf=\"noPermissionTemplate; then noPermissionCustomBlock; else noPermissionTextBlock\"></ng-container>\n\n <ng-template #noPermissionCustomBlock>\n <ng-container *ngTemplateOutlet=\"noPermissionTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #noPermissionTextBlock>\n <span>{{ noPermissionText || \"platform.angular_components.insight_no_permission\" | translate }}</span>\n </ng-template>\n </ng-template>\n </div>\n <div class=\"insights\">\n <ng-container *ngIf=\"insights?.length\">\n <s-ia-insight-card\n *ngFor=\"let insight of insights\"\n [insight]=\"insight\">\n </s-ia-insight-card>\n </ng-container>\n </div>\n</div>\n\n<ng-template #iassistIcon>\n <div style=\"width: 28px; height: 28px;\">\n <span sSVGFactory></span>\n </div>\n</ng-template>\n",
|
|
13264
|
+
template: "<div\n class=\"sidebar\"\n [class.opened]=\"opened\">\n <div class=\"header\">\n <button (click)=\"close()\" class=\"option\">\n <span class=\"far fa-chevron-double-right\"></span>\n </button>\n <div class=\"title\">\n <span><ng-container [ngTemplateOutlet]=\"iassistIcon\"></ng-container></span>\n <span>Insight</span>\n </div>\n </div>\n <div class=\"intro\">\n <ng-container *ngIf=\"hasPermission; then permissionBlock; else noPermissionBlock\"></ng-container>\n\n <ng-template #permissionBlock>\n <ng-container *ngIf=\"insights?.length; then introBlock; else emptyBlock\"></ng-container>\n \n <ng-template #introBlock>\n <ng-container *ngIf=\"introTemplate; then introCustomBlock; else introTextBlock\"></ng-container>\n\n <ng-template #introCustomBlock>\n <ng-container *ngTemplateOutlet=\"introTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #introTextBlock>\n <span class=\"text\">{{ introText || \"platform.angular_components.insight_intro\" | translate }}</span>\n </ng-template>\n </ng-template>\n \n <ng-template #emptyBlock>\n <ng-container *ngIf=\"emptyTemplate; then emptyCustomBlock; else emptyTextBlock\"></ng-container>\n\n <ng-template #emptyCustomBlock>\n <ng-container *ngTemplateOutlet=\"emptyTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #emptyTextBlock>\n <span class=\"text\">{{ emptyText || \"platform.angular_components.insight_empty\" | translate }}</span>\n </ng-template>\n </ng-template>\n </ng-template>\n \n <ng-template #noPermissionBlock>\n <ng-container *ngIf=\"noPermissionTemplate; then noPermissionCustomBlock; else noPermissionTextBlock\"></ng-container>\n\n <ng-template #noPermissionCustomBlock>\n <ng-container *ngTemplateOutlet=\"noPermissionTemplate\"></ng-container>\n </ng-template>\n\n <ng-template #noPermissionTextBlock>\n <span>{{ noPermissionText || \"platform.angular_components.insight_no_permission\" | translate }}</span>\n </ng-template>\n </ng-template>\n </div>\n <div class=\"insights\">\n <ng-container *ngIf=\"insights?.length\">\n <s-ia-insight-card\n *ngFor=\"let insight of insights\"\n [insight]=\"insight\">\n </s-ia-insight-card>\n </ng-container>\n </div>\n</div>\n\n<ng-template #iassistIcon>\n <div style=\"width: 28px; height: 28px;\">\n <span *sSVGFactory=\"'iassist'\"></span>\n </div>\n</ng-template>\n",
|
|
13150
13265
|
styles: [".sidebar{background-color:#fff;border-left:1px solid #dedce5;height:100%;overflow-x:hidden;position:fixed;right:-25%;transition:.5s;top:0;width:25%;z-index:1002}.sidebar .header{border-bottom:1px solid #dedce5;display:-ms-flexbox;display:flex;gap:16px;padding:12px 20px}.sidebar .header .option{background-color:transparent;border:none;color:#428bca;cursor:pointer;font-size:16px;padding:12px}.sidebar .header .title{-ms-flex-align:center;align-items:center;color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:16px;gap:16px;line-height:1;-webkit-user-select:none;-ms-user-select:none;user-select:none}.sidebar .intro{margin:8px 40px}.sidebar .intro .text{color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;-ms-flex-pack:center;justify-content:center;line-height:1.5;text-align:center;-webkit-user-select:none;-ms-user-select:none;user-select:none}.sidebar.opened{right:0}.sidebar.opened .insights{padding:12px}.insights{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:12px}@media (max-width:1366px){.sidebar{right:-50%;width:50%}}@media (max-width:768px){.sidebar{right:-75%;width:75%}}@media (max-width:600px){.sidebar{right:-100%;width:100%}}"]
|
|
13151
13266
|
})
|
|
13152
13267
|
], IAInsightSidebarComponent);
|
|
@@ -16869,6 +16984,8 @@ var fallback = {
|
|
|
16869
16984
|
"platform.angular_components.date_format": "dd/mm/yy",
|
|
16870
16985
|
"platform.angular_components.ia_text_generator": "Gerador de texto por IA",
|
|
16871
16986
|
"platform.angular_components.attach_files": "Anexar arquivos",
|
|
16987
|
+
"platform.angular_components.add": "Adicionar",
|
|
16988
|
+
"platform.angular_components.edit": "Editar",
|
|
16872
16989
|
"platform.angular_components.remove": "Remover",
|
|
16873
16990
|
"platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
|
|
16874
16991
|
"platform.angular_components.loading_file": "Carregando arquivo",
|
|
@@ -17119,5 +17236,5 @@ var fallback = {
|
|
|
17119
17236
|
* Generated bundle index. Do not edit.
|
|
17120
17237
|
*/
|
|
17121
17238
|
|
|
17122
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb,
|
|
17239
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, BooleanSwitchFieldComponent as ɵba, CalendarFieldComponent as ɵbb, ChipsFieldComponent as ɵbc, CountryPhonePickerFieldComponent as ɵbd, CurrencyFieldComponent as ɵbe, DynamicFieldComponent as ɵbf, DynamicFormDirective as ɵbg, FieldsetComponent as ɵbh, FileUploadComponent$1 as ɵbi, LookupFieldComponent as ɵbj, NumberFieldComponent as ɵbk, PasswordFieldComponent as ɵbl, RadioButtonComponent as ɵbm, RowComponent as ɵbn, SectionComponent as ɵbo, SelectFieldComponent as ɵbp, SliderFieldComponent as ɵbq, TextAreaFieldComponent as ɵbr, TextAreaIAFieldComponent as ɵbs, IAssistService as ɵbt, TextFieldComponent as ɵbu, DecimalField as ɵbw, SideTableComponent as ɵbx, ThumbnailService as ɵby, InfiniteScrollModule as ɵbz, CustomTranslationsModule as ɵc, InfiniteScrollDirective as ɵca, TemplateModule as ɵcb, TemplateDirective as ɵcc, IAInsightSidebarComponent as ɵcd, IAInsightCardComponent as ɵce, IAInsightCardLoaderComponent as ɵcf, StructureModule as ɵcg, HeaderComponent as ɵch, FooterComponent as ɵci, KanbanEventService as ɵcj, KanbanItemComponent as ɵck, KanbanColumnComponent as ɵcl, KanbanItemDraggingComponent as ɵcm, NumberLocaleOptions as ɵcn, BorderButtonModule as ɵco, BorderButtonComponent as ɵcp, SelectButtonItemComponent as ɵcq, SlidePanelService as ɵcr, TieredMenuEventService as ɵcs, TieredMenuService as ɵct, TieredMenuComponent as ɵcu, TieredMenuNestedComponent as ɵcv, TieredMenuItemComponent as ɵcw, TieredMenuDividerComponent as ɵcx, TimelineItemModule as ɵcy, TimelineIconItemComponent as ɵcz, CodeEditorComponent as ɵd, HorizontalTimelineModule as ɵda, HorizontalTimelineComponent as ɵdb, VerticalTimelineModule as ɵdc, VerticalTimelineComponent as ɵdd, RangeLineComponent as ɵde, CollapseOptionComponent as ɵdf, CollapsedItemsComponent as ɵdg, VerticalItemsComponent as ɵdh, CoreFacade as ɵe, CodeMirror6Core as ɵf, CountryPhonePickerService as ɵg, LocalizedCurrencyImpurePipe as ɵh, LocalizedBignumberPipe as ɵi, LocalizedBignumberImpurePipe as ɵj, EmptyStateGoBackComponent as ɵk, IAssistIconComponent as ɵl, SeniorIconComponent as ɵm, DotsIndicatorComponent as ɵn, LoadingIndicatorComponent as ɵo, ProgressBarDeterminateComponent as ɵp, ProgressBarIndeterminateComponent as ɵq, FileUploadService as ɵr, FileItemComponent as ɵs, LocaleService as ɵt, InfoSignComponent as ɵu, TableColumnsComponent as ɵv, TablePagingComponent as ɵw, AutocompleteFieldComponent as ɵx, BignumberFieldComponent as ɵy, BooleanFieldComponent as ɵz };
|
|
17123
17240
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|