@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
|
@@ -3823,6 +3823,35 @@ CountryPhonePickerModule = __decorate([
|
|
|
3823
3823
|
})
|
|
3824
3824
|
], CountryPhonePickerModule);
|
|
3825
3825
|
|
|
3826
|
+
class CalendarLocaleOptions {
|
|
3827
|
+
constructor(config = {}) {
|
|
3828
|
+
this.hourFormat = "24";
|
|
3829
|
+
this.dateFormat = "dd/mm/yy";
|
|
3830
|
+
this.firstDayOfWeek = 0;
|
|
3831
|
+
this.today = "Hoje";
|
|
3832
|
+
this.clear = "Limpar";
|
|
3833
|
+
this.dayNames = ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"];
|
|
3834
|
+
this.dayNamesShort = ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"];
|
|
3835
|
+
this.dayNamesMin = ["D", "S", "T", "Q", "Q", "S", "S"];
|
|
3836
|
+
this.monthNamesShort = ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"];
|
|
3837
|
+
this.monthNames = [
|
|
3838
|
+
"Janeiro",
|
|
3839
|
+
"Fevereiro",
|
|
3840
|
+
"Março",
|
|
3841
|
+
"Abril",
|
|
3842
|
+
"Maio",
|
|
3843
|
+
"Junho",
|
|
3844
|
+
"Julho",
|
|
3845
|
+
"Agosto",
|
|
3846
|
+
"Setembro",
|
|
3847
|
+
"Outubro",
|
|
3848
|
+
"Novembro",
|
|
3849
|
+
"Dezembro",
|
|
3850
|
+
];
|
|
3851
|
+
Object.keys(config).forEach(key => (this[key] = config[key] || this[key]));
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3826
3855
|
var FieldType;
|
|
3827
3856
|
(function (FieldType) {
|
|
3828
3857
|
FieldType["Autocomplete"] = "Autocomplete";
|
|
@@ -3897,35 +3926,6 @@ class AutocompleteField extends Field {
|
|
|
3897
3926
|
}
|
|
3898
3927
|
}
|
|
3899
3928
|
|
|
3900
|
-
class CalendarLocaleOptions {
|
|
3901
|
-
constructor(config = {}) {
|
|
3902
|
-
this.hourFormat = "24";
|
|
3903
|
-
this.dateFormat = "dd/mm/yy";
|
|
3904
|
-
this.firstDayOfWeek = 0;
|
|
3905
|
-
this.today = "Hoje";
|
|
3906
|
-
this.clear = "Limpar";
|
|
3907
|
-
this.dayNames = ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"];
|
|
3908
|
-
this.dayNamesShort = ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"];
|
|
3909
|
-
this.dayNamesMin = ["D", "S", "T", "Q", "Q", "S", "S"];
|
|
3910
|
-
this.monthNamesShort = ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"];
|
|
3911
|
-
this.monthNames = [
|
|
3912
|
-
"Janeiro",
|
|
3913
|
-
"Fevereiro",
|
|
3914
|
-
"Março",
|
|
3915
|
-
"Abril",
|
|
3916
|
-
"Maio",
|
|
3917
|
-
"Junho",
|
|
3918
|
-
"Julho",
|
|
3919
|
-
"Agosto",
|
|
3920
|
-
"Setembro",
|
|
3921
|
-
"Outubro",
|
|
3922
|
-
"Novembro",
|
|
3923
|
-
"Dezembro",
|
|
3924
|
-
];
|
|
3925
|
-
Object.keys(config).forEach(key => (this[key] = config[key] || this[key]));
|
|
3926
|
-
}
|
|
3927
|
-
}
|
|
3928
|
-
|
|
3929
3929
|
class NumberLocaleOptions {
|
|
3930
3930
|
constructor(config = {}) {
|
|
3931
3931
|
this.thousandsSeparator = ".";
|
|
@@ -4543,6 +4543,9 @@ class LookupField extends Field {
|
|
|
4543
4543
|
this.multiple = false;
|
|
4544
4544
|
this.showSearch = true;
|
|
4545
4545
|
this.autocompleteForceSelection = true;
|
|
4546
|
+
this.showAddOption = false;
|
|
4547
|
+
this.showEditOption = false;
|
|
4548
|
+
this.showRemoveOption = false;
|
|
4546
4549
|
this.onSelect = (event) => { };
|
|
4547
4550
|
this.onUnselect = (event) => { };
|
|
4548
4551
|
Object.assign(this, config);
|
|
@@ -4758,6 +4761,9 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4758
4761
|
this.showSearch = true;
|
|
4759
4762
|
this.lookupAppendTo = "body";
|
|
4760
4763
|
this.searchFields = [];
|
|
4764
|
+
this.showAddOption = false;
|
|
4765
|
+
this.showEditOption = false;
|
|
4766
|
+
this.showRemoveOption = false;
|
|
4761
4767
|
this.onLookupRequest = new EventEmitter();
|
|
4762
4768
|
this.onSearchRequest = new EventEmitter();
|
|
4763
4769
|
this.onFocus = new EventEmitter();
|
|
@@ -4766,6 +4772,9 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4766
4772
|
this.onSelect = new EventEmitter();
|
|
4767
4773
|
this.onUnselect = new EventEmitter();
|
|
4768
4774
|
this.onClear = new EventEmitter();
|
|
4775
|
+
this.onAdd = new EventEmitter();
|
|
4776
|
+
this.onEdit = new EventEmitter();
|
|
4777
|
+
this.onRemove = new EventEmitter();
|
|
4769
4778
|
this.dialogVisible = false;
|
|
4770
4779
|
this.collapsed = false;
|
|
4771
4780
|
this.selected = [];
|
|
@@ -4775,7 +4784,7 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4775
4784
|
}
|
|
4776
4785
|
ngOnInit() {
|
|
4777
4786
|
if (!this.searchGridFields) {
|
|
4778
|
-
this.searchGridFields = this.searchFields.map(item => new FormField(Object.assign({}, item)));
|
|
4787
|
+
this.searchGridFields = this.searchFields.map((item) => new FormField(Object.assign({}, item)));
|
|
4779
4788
|
}
|
|
4780
4789
|
this.searchFields = this.searchFields.map((value) => new FormField(Object.assign(Object.assign({}, value), { size: { sm: 12, md: 12, lg: 12, xl: 12 } })));
|
|
4781
4790
|
this.searchGridFields = this.searchGridFields.map((gridField) => {
|
|
@@ -4812,12 +4821,11 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4812
4821
|
const recordsLabel = this.recordsLabel
|
|
4813
4822
|
? `${this.searchTotalRecords} ${this.recordsLabel}`
|
|
4814
4823
|
: this.translateService.instant("platform.angular_components.total_records", { count: this.searchTotalRecords });
|
|
4815
|
-
return this.searchTotalRecords === 1
|
|
4816
|
-
? recordLabel
|
|
4817
|
-
: recordsLabel;
|
|
4824
|
+
return this.searchTotalRecords === 1 ? recordLabel : recordsLabel;
|
|
4818
4825
|
}
|
|
4819
4826
|
_convertToMomentHourFormat(hourFormat, format) {
|
|
4820
|
-
if (format === "dd/mm/yy") {
|
|
4827
|
+
if (format === "dd/mm/yy") {
|
|
4828
|
+
// valor padrão para o format.
|
|
4821
4829
|
return "LTS";
|
|
4822
4830
|
}
|
|
4823
4831
|
if (hourFormat === "12") {
|
|
@@ -4884,12 +4892,9 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4884
4892
|
if (!this.defaultFilter)
|
|
4885
4893
|
return;
|
|
4886
4894
|
this.defaultFilter
|
|
4887
|
-
.filter(({ field }) => this.formGroupDialog.contains(field) &&
|
|
4888
|
-
!this.formGroupDialog.get([field]).dirty)
|
|
4895
|
+
.filter(({ field }) => this.formGroupDialog.contains(field) && !this.formGroupDialog.get([field]).dirty)
|
|
4889
4896
|
.forEach(({ value, field }) => {
|
|
4890
|
-
this.formGroupDialog
|
|
4891
|
-
.get([field])
|
|
4892
|
-
.patchValue(value instanceof Function ? value() : value);
|
|
4897
|
+
this.formGroupDialog.get([field]).patchValue(value instanceof Function ? value() : value);
|
|
4893
4898
|
});
|
|
4894
4899
|
}
|
|
4895
4900
|
showDialog() {
|
|
@@ -4968,7 +4973,7 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4968
4973
|
getLabelForValue(value, options) {
|
|
4969
4974
|
if (!options)
|
|
4970
4975
|
return value;
|
|
4971
|
-
const option = options.find(opt => opt.value === value);
|
|
4976
|
+
const option = options.find((opt) => opt.value === value);
|
|
4972
4977
|
return option ? option.label : value;
|
|
4973
4978
|
}
|
|
4974
4979
|
isBooleanValue(obj, path) {
|
|
@@ -4988,7 +4993,7 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
4988
4993
|
return this.emptyFieldLabel;
|
|
4989
4994
|
}
|
|
4990
4995
|
isNumber(obj, path) {
|
|
4991
|
-
return !
|
|
4996
|
+
return !new BigNumber(this.getFieldValue(obj, path)).isNaN();
|
|
4992
4997
|
}
|
|
4993
4998
|
setHotkeys() {
|
|
4994
4999
|
const clearHotkey = this.newHotkey("alt+shift+l", this.clear.bind(this));
|
|
@@ -5078,31 +5083,19 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
5078
5083
|
}
|
|
5079
5084
|
}
|
|
5080
5085
|
_subscribeEvents() {
|
|
5081
|
-
this.onSearchRequest
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
this.
|
|
5085
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5086
|
-
.subscribe(() => this.onChange(this.value));
|
|
5087
|
-
this.onUnselect
|
|
5088
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5089
|
-
.subscribe(() => this.onChange(this.value));
|
|
5090
|
-
this.onClear
|
|
5091
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5092
|
-
.subscribe(() => {
|
|
5086
|
+
this.onSearchRequest.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => (this.loading = true));
|
|
5087
|
+
this.onSelect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => this.onChange(this.value));
|
|
5088
|
+
this.onUnselect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => this.onChange(this.value));
|
|
5089
|
+
this.onClear.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => {
|
|
5093
5090
|
if (this.multiple) {
|
|
5094
5091
|
return;
|
|
5095
5092
|
}
|
|
5096
5093
|
this.onChange(null);
|
|
5097
5094
|
});
|
|
5098
|
-
this.onFocus
|
|
5099
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5100
|
-
.subscribe(() => {
|
|
5095
|
+
this.onFocus.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => {
|
|
5101
5096
|
this.onTouched();
|
|
5102
5097
|
});
|
|
5103
|
-
this.onBlur
|
|
5104
|
-
.pipe(takeUntil(this.ngUnsubscribe))
|
|
5105
|
-
.subscribe((event) => {
|
|
5098
|
+
this.onBlur.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
5106
5099
|
const target = event.target;
|
|
5107
5100
|
const currentValue = this.value && this.value[this.lookupDisplayField];
|
|
5108
5101
|
const { value } = target;
|
|
@@ -5188,6 +5181,15 @@ __decorate([
|
|
|
5188
5181
|
__decorate([
|
|
5189
5182
|
Input()
|
|
5190
5183
|
], LookupComponent.prototype, "defaultFilter", void 0);
|
|
5184
|
+
__decorate([
|
|
5185
|
+
Input()
|
|
5186
|
+
], LookupComponent.prototype, "showAddOption", void 0);
|
|
5187
|
+
__decorate([
|
|
5188
|
+
Input()
|
|
5189
|
+
], LookupComponent.prototype, "showEditOption", void 0);
|
|
5190
|
+
__decorate([
|
|
5191
|
+
Input()
|
|
5192
|
+
], LookupComponent.prototype, "showRemoveOption", void 0);
|
|
5191
5193
|
__decorate([
|
|
5192
5194
|
Output()
|
|
5193
5195
|
], LookupComponent.prototype, "onLookupRequest", void 0);
|
|
@@ -5212,6 +5214,15 @@ __decorate([
|
|
|
5212
5214
|
__decorate([
|
|
5213
5215
|
Output()
|
|
5214
5216
|
], LookupComponent.prototype, "onClear", void 0);
|
|
5217
|
+
__decorate([
|
|
5218
|
+
Output()
|
|
5219
|
+
], LookupComponent.prototype, "onAdd", void 0);
|
|
5220
|
+
__decorate([
|
|
5221
|
+
Output()
|
|
5222
|
+
], LookupComponent.prototype, "onEdit", void 0);
|
|
5223
|
+
__decorate([
|
|
5224
|
+
Output()
|
|
5225
|
+
], LookupComponent.prototype, "onRemove", void 0);
|
|
5215
5226
|
__decorate([
|
|
5216
5227
|
ViewChild(Table, { static: false })
|
|
5217
5228
|
], LookupComponent.prototype, "table", void 0);
|
|
@@ -5258,7 +5269,7 @@ LookupComponent = LookupComponent_1 = __decorate([
|
|
|
5258
5269
|
Injectable(),
|
|
5259
5270
|
Component({
|
|
5260
5271
|
selector: "s-lookup",
|
|
5261
|
-
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",
|
|
5272
|
+
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",
|
|
5262
5273
|
providers: [
|
|
5263
5274
|
{
|
|
5264
5275
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -6443,19 +6454,122 @@ InfoSignModule = __decorate([
|
|
|
6443
6454
|
})
|
|
6444
6455
|
], InfoSignModule);
|
|
6445
6456
|
|
|
6457
|
+
let IAssistIconComponent = class IAssistIconComponent {
|
|
6458
|
+
};
|
|
6459
|
+
IAssistIconComponent = __decorate([
|
|
6460
|
+
Component({
|
|
6461
|
+
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>"
|
|
6462
|
+
})
|
|
6463
|
+
], IAssistIconComponent);
|
|
6464
|
+
|
|
6465
|
+
let SeniorIconComponent = class SeniorIconComponent {
|
|
6466
|
+
};
|
|
6467
|
+
SeniorIconComponent = __decorate([
|
|
6468
|
+
Component({
|
|
6469
|
+
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"
|
|
6470
|
+
})
|
|
6471
|
+
], SeniorIconComponent);
|
|
6472
|
+
|
|
6473
|
+
var SVGFactoryIcons;
|
|
6474
|
+
(function (SVGFactoryIcons) {
|
|
6475
|
+
SVGFactoryIcons["IAssist"] = "iassist";
|
|
6476
|
+
SVGFactoryIcons["Senior"] = "senior";
|
|
6477
|
+
})(SVGFactoryIcons || (SVGFactoryIcons = {}));
|
|
6478
|
+
|
|
6479
|
+
let SVGFactoryDirective = class SVGFactoryDirective {
|
|
6480
|
+
constructor(viewContainerRef, componentFactoryResolver, cdr) {
|
|
6481
|
+
this.viewContainerRef = viewContainerRef;
|
|
6482
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
6483
|
+
this.cdr = cdr;
|
|
6484
|
+
this._iconClass = this._getIconClass(SVGFactoryIcons.Senior);
|
|
6485
|
+
}
|
|
6486
|
+
set sSVGFactory(icon) {
|
|
6487
|
+
this._iconClass = this._getIconClass(icon);
|
|
6488
|
+
}
|
|
6489
|
+
ngAfterViewInit() {
|
|
6490
|
+
this._createComponent();
|
|
6491
|
+
}
|
|
6492
|
+
_createComponent() {
|
|
6493
|
+
const factory = this.componentFactoryResolver.resolveComponentFactory(this._iconClass);
|
|
6494
|
+
this.viewContainerRef.clear();
|
|
6495
|
+
this.viewContainerRef.createComponent(factory);
|
|
6496
|
+
this.cdr.detectChanges();
|
|
6497
|
+
}
|
|
6498
|
+
_getIconClass(icon) {
|
|
6499
|
+
switch (icon) {
|
|
6500
|
+
case SVGFactoryIcons.IAssist:
|
|
6501
|
+
return IAssistIconComponent;
|
|
6502
|
+
case SVGFactoryIcons.Senior:
|
|
6503
|
+
default:
|
|
6504
|
+
return SeniorIconComponent;
|
|
6505
|
+
}
|
|
6506
|
+
}
|
|
6507
|
+
};
|
|
6508
|
+
SVGFactoryDirective.ctorParameters = () => [
|
|
6509
|
+
{ type: ViewContainerRef },
|
|
6510
|
+
{ type: ComponentFactoryResolver },
|
|
6511
|
+
{ type: ChangeDetectorRef }
|
|
6512
|
+
];
|
|
6513
|
+
__decorate([
|
|
6514
|
+
Input("sSVGFactory")
|
|
6515
|
+
], SVGFactoryDirective.prototype, "sSVGFactory", null);
|
|
6516
|
+
SVGFactoryDirective = __decorate([
|
|
6517
|
+
Directive({
|
|
6518
|
+
selector: "[sSVGFactory]",
|
|
6519
|
+
})
|
|
6520
|
+
], SVGFactoryDirective);
|
|
6521
|
+
|
|
6522
|
+
let SVGFactoryModule = class SVGFactoryModule {
|
|
6523
|
+
};
|
|
6524
|
+
SVGFactoryModule = __decorate([
|
|
6525
|
+
NgModule({
|
|
6526
|
+
imports: [CommonModule],
|
|
6527
|
+
declarations: [
|
|
6528
|
+
SVGFactoryDirective,
|
|
6529
|
+
IAssistIconComponent,
|
|
6530
|
+
SeniorIconComponent,
|
|
6531
|
+
],
|
|
6532
|
+
exports: [SVGFactoryDirective],
|
|
6533
|
+
})
|
|
6534
|
+
], SVGFactoryModule);
|
|
6535
|
+
|
|
6536
|
+
let DotsIndicatorComponent = class DotsIndicatorComponent {
|
|
6537
|
+
};
|
|
6538
|
+
DotsIndicatorComponent = __decorate([
|
|
6539
|
+
Component({
|
|
6540
|
+
selector: "s-dots-indicator",
|
|
6541
|
+
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",
|
|
6542
|
+
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)}}"]
|
|
6543
|
+
})
|
|
6544
|
+
], DotsIndicatorComponent);
|
|
6545
|
+
|
|
6546
|
+
let LoadingIndicatorComponent = class LoadingIndicatorComponent {
|
|
6547
|
+
};
|
|
6548
|
+
LoadingIndicatorComponent = __decorate([
|
|
6549
|
+
Component({
|
|
6550
|
+
selector: "s-logo-indicator",
|
|
6551
|
+
template: "<div class=\"logo-indicator\">\n <span *sSVGFactory=\"'senior'\"></span>\n</div>\n",
|
|
6552
|
+
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)}}"]
|
|
6553
|
+
})
|
|
6554
|
+
], LoadingIndicatorComponent);
|
|
6555
|
+
|
|
6556
|
+
var LoadingStateIndicators;
|
|
6557
|
+
(function (LoadingStateIndicators) {
|
|
6558
|
+
LoadingStateIndicators["Dots"] = "dots";
|
|
6559
|
+
LoadingStateIndicators["Logo"] = "logo";
|
|
6560
|
+
})(LoadingStateIndicators || (LoadingStateIndicators = {}));
|
|
6561
|
+
|
|
6446
6562
|
var LoadingStateComponent_1;
|
|
6447
6563
|
let LoadingStateComponent = LoadingStateComponent_1 = class LoadingStateComponent {
|
|
6448
6564
|
constructor() {
|
|
6565
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
6449
6566
|
this.id = `s-loading-state-${LoadingStateComponent_1.nextId++}`;
|
|
6450
6567
|
this.BLOCK_TIMEOUT_VALUE = 300;
|
|
6451
6568
|
this.UNBLOCK_TIMEOUT_VALUE = 200;
|
|
6452
6569
|
}
|
|
6453
6570
|
set loading(loading) {
|
|
6454
6571
|
this._loading = loading;
|
|
6455
|
-
|
|
6456
|
-
this.block();
|
|
6457
|
-
else
|
|
6458
|
-
this.unblock();
|
|
6572
|
+
loading ? this.block() : this.unblock();
|
|
6459
6573
|
}
|
|
6460
6574
|
get loading() {
|
|
6461
6575
|
return this._loading;
|
|
@@ -6485,13 +6599,18 @@ let LoadingStateComponent = LoadingStateComponent_1 = class LoadingStateComponen
|
|
|
6485
6599
|
}
|
|
6486
6600
|
}
|
|
6487
6601
|
ngOnDestroy() {
|
|
6488
|
-
if (this.blockTimeoutId)
|
|
6602
|
+
if (this.blockTimeoutId) {
|
|
6489
6603
|
clearTimeout(this.blockTimeoutId);
|
|
6490
|
-
|
|
6604
|
+
}
|
|
6605
|
+
if (this.unblockTimeoutId) {
|
|
6491
6606
|
clearTimeout(this.unblockTimeoutId);
|
|
6607
|
+
}
|
|
6492
6608
|
}
|
|
6493
6609
|
};
|
|
6494
6610
|
LoadingStateComponent.nextId = 0;
|
|
6611
|
+
__decorate([
|
|
6612
|
+
Input()
|
|
6613
|
+
], LoadingStateComponent.prototype, "indicator", void 0);
|
|
6495
6614
|
__decorate([
|
|
6496
6615
|
Input()
|
|
6497
6616
|
], LoadingStateComponent.prototype, "id", void 0);
|
|
@@ -6504,8 +6623,8 @@ __decorate([
|
|
|
6504
6623
|
LoadingStateComponent = LoadingStateComponent_1 = __decorate([
|
|
6505
6624
|
Component({
|
|
6506
6625
|
selector: "s-loading-state",
|
|
6507
|
-
template: "<div\n [id]=\"id\"\n class=\"s-loading-state-container\"\n [ngClass]=\"{'loading': loading
|
|
6508
|
-
styles: [".s-loading-state-container{position:relative}.s-loading-state-container
|
|
6626
|
+
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>",
|
|
6627
|
+
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}"]
|
|
6509
6628
|
})
|
|
6510
6629
|
], LoadingStateComponent);
|
|
6511
6630
|
|
|
@@ -6516,14 +6635,21 @@ let LoadingStateDirective = class LoadingStateDirective {
|
|
|
6516
6635
|
this.componentFactoryResolver = componentFactoryResolver;
|
|
6517
6636
|
this.cdr = cdr;
|
|
6518
6637
|
this._loading = false;
|
|
6638
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
6519
6639
|
}
|
|
6520
|
-
set sLoadingState(
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
this.
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6640
|
+
set sLoadingState(value) {
|
|
6641
|
+
if (typeof value === "boolean") {
|
|
6642
|
+
this._loading = value;
|
|
6643
|
+
this.indicator = LoadingStateIndicators.Dots;
|
|
6644
|
+
}
|
|
6645
|
+
else if (typeof value === "object") {
|
|
6646
|
+
this._loading = value.loading;
|
|
6647
|
+
this.indicator = value.indicator || LoadingStateIndicators.Dots;
|
|
6648
|
+
}
|
|
6649
|
+
if (this.loaderComponent) {
|
|
6650
|
+
this.loaderComponent.instance.loading = this._loading;
|
|
6651
|
+
this.loaderComponent.instance.indicator = this.indicator;
|
|
6652
|
+
}
|
|
6527
6653
|
}
|
|
6528
6654
|
ngAfterViewInit() {
|
|
6529
6655
|
this.createComponent();
|
|
@@ -6532,11 +6658,14 @@ let LoadingStateDirective = class LoadingStateDirective {
|
|
|
6532
6658
|
const factory = this.componentFactoryResolver.resolveComponentFactory(LoadingStateComponent);
|
|
6533
6659
|
this.loaderComponent = this.target.createComponent(factory);
|
|
6534
6660
|
this.loaderComponent.instance.contents = this.template;
|
|
6535
|
-
this.loaderComponent.instance.loading = this.
|
|
6661
|
+
this.loaderComponent.instance.loading = this._loading;
|
|
6662
|
+
this.loaderComponent.instance.indicator = this.indicator;
|
|
6536
6663
|
this.cdr.detectChanges();
|
|
6537
6664
|
}
|
|
6538
6665
|
ngOnDestroy() {
|
|
6539
|
-
this.loaderComponent
|
|
6666
|
+
if (this.loaderComponent) {
|
|
6667
|
+
this.loaderComponent.destroy();
|
|
6668
|
+
}
|
|
6540
6669
|
}
|
|
6541
6670
|
};
|
|
6542
6671
|
LoadingStateDirective.ctorParameters = () => [
|
|
@@ -6546,7 +6675,7 @@ LoadingStateDirective.ctorParameters = () => [
|
|
|
6546
6675
|
{ type: ChangeDetectorRef }
|
|
6547
6676
|
];
|
|
6548
6677
|
__decorate([
|
|
6549
|
-
Input()
|
|
6678
|
+
Input("sLoadingState")
|
|
6550
6679
|
], LoadingStateDirective.prototype, "sLoadingState", null);
|
|
6551
6680
|
LoadingStateDirective = __decorate([
|
|
6552
6681
|
Directive({
|
|
@@ -6558,9 +6687,20 @@ let LoadingStateModule = class LoadingStateModule {
|
|
|
6558
6687
|
};
|
|
6559
6688
|
LoadingStateModule = __decorate([
|
|
6560
6689
|
NgModule({
|
|
6561
|
-
imports: [
|
|
6562
|
-
|
|
6563
|
-
|
|
6690
|
+
imports: [
|
|
6691
|
+
CommonModule,
|
|
6692
|
+
SVGFactoryModule,
|
|
6693
|
+
],
|
|
6694
|
+
declarations: [
|
|
6695
|
+
LoadingStateComponent,
|
|
6696
|
+
LoadingStateDirective,
|
|
6697
|
+
DotsIndicatorComponent,
|
|
6698
|
+
LoadingIndicatorComponent,
|
|
6699
|
+
],
|
|
6700
|
+
exports: [
|
|
6701
|
+
LoadingStateComponent,
|
|
6702
|
+
LoadingStateDirective,
|
|
6703
|
+
],
|
|
6564
6704
|
entryComponents: [LoadingStateComponent],
|
|
6565
6705
|
})
|
|
6566
6706
|
], LoadingStateModule);
|
|
@@ -8414,7 +8554,7 @@ __decorate([
|
|
|
8414
8554
|
], LookupFieldComponent.prototype, "formControl", void 0);
|
|
8415
8555
|
LookupFieldComponent = __decorate([
|
|
8416
8556
|
Component({
|
|
8417
|
-
template: "<div
|
|
8557
|
+
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"
|
|
8418
8558
|
})
|
|
8419
8559
|
], LookupFieldComponent);
|
|
8420
8560
|
|
|
@@ -12133,46 +12273,6 @@ GlobalSearchModule = __decorate([
|
|
|
12133
12273
|
})
|
|
12134
12274
|
], GlobalSearchModule);
|
|
12135
12275
|
|
|
12136
|
-
let IAssistIconComponent = class IAssistIconComponent {
|
|
12137
|
-
};
|
|
12138
|
-
IAssistIconComponent = __decorate([
|
|
12139
|
-
Component({
|
|
12140
|
-
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>"
|
|
12141
|
-
})
|
|
12142
|
-
], IAssistIconComponent);
|
|
12143
|
-
|
|
12144
|
-
let SVGFactoryDirective = class SVGFactoryDirective {
|
|
12145
|
-
constructor(viewContainerRef, componentFactoryResolver) {
|
|
12146
|
-
this.viewContainerRef = viewContainerRef;
|
|
12147
|
-
this.componentFactoryResolver = componentFactoryResolver;
|
|
12148
|
-
const factory = this.componentFactoryResolver.resolveComponentFactory(IAssistIconComponent);
|
|
12149
|
-
this.viewContainerRef.clear();
|
|
12150
|
-
this.viewContainerRef.createComponent(factory);
|
|
12151
|
-
}
|
|
12152
|
-
};
|
|
12153
|
-
SVGFactoryDirective.ctorParameters = () => [
|
|
12154
|
-
{ type: ViewContainerRef },
|
|
12155
|
-
{ type: ComponentFactoryResolver }
|
|
12156
|
-
];
|
|
12157
|
-
SVGFactoryDirective = __decorate([
|
|
12158
|
-
Directive({
|
|
12159
|
-
selector: "[sSVGFactory]",
|
|
12160
|
-
})
|
|
12161
|
-
], SVGFactoryDirective);
|
|
12162
|
-
|
|
12163
|
-
let SVGFactoryModule = class SVGFactoryModule {
|
|
12164
|
-
};
|
|
12165
|
-
SVGFactoryModule = __decorate([
|
|
12166
|
-
NgModule({
|
|
12167
|
-
imports: [CommonModule],
|
|
12168
|
-
declarations: [
|
|
12169
|
-
SVGFactoryDirective,
|
|
12170
|
-
IAssistIconComponent,
|
|
12171
|
-
],
|
|
12172
|
-
exports: [SVGFactoryDirective],
|
|
12173
|
-
})
|
|
12174
|
-
], SVGFactoryModule);
|
|
12175
|
-
|
|
12176
12276
|
let TemplateDirective = class TemplateDirective {
|
|
12177
12277
|
constructor(template) {
|
|
12178
12278
|
this.template = template;
|
|
@@ -12316,7 +12416,7 @@ __decorate([
|
|
|
12316
12416
|
IAInsightSidebarComponent = __decorate([
|
|
12317
12417
|
Component({
|
|
12318
12418
|
selector: "s-ia-insight-sidebar",
|
|
12319
|
-
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",
|
|
12419
|
+
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",
|
|
12320
12420
|
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%}}"]
|
|
12321
12421
|
})
|
|
12322
12422
|
], IAInsightSidebarComponent);
|
|
@@ -15826,6 +15926,8 @@ const fallback = {
|
|
|
15826
15926
|
"platform.angular_components.date_format": "dd/mm/yy",
|
|
15827
15927
|
"platform.angular_components.ia_text_generator": "Gerador de texto por IA",
|
|
15828
15928
|
"platform.angular_components.attach_files": "Anexar arquivos",
|
|
15929
|
+
"platform.angular_components.add": "Adicionar",
|
|
15930
|
+
"platform.angular_components.edit": "Editar",
|
|
15829
15931
|
"platform.angular_components.remove": "Remover",
|
|
15830
15932
|
"platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
|
|
15831
15933
|
"platform.angular_components.loading_file": "Carregando arquivo",
|
|
@@ -16076,5 +16178,5 @@ const fallback = {
|
|
|
16076
16178
|
* Generated bundle index. Do not edit.
|
|
16077
16179
|
*/
|
|
16078
16180
|
|
|
16079
|
-
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,
|
|
16181
|
+
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 };
|
|
16080
16182
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|