@seniorsistemas/angular-components 17.31.5 → 17.31.7
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 +249 -246
- 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/esm2015/components/dynamic-form/components/lookup/lookup.component.js +6 -3
- package/esm2015/components/file-upload/file-upload.component.js +2 -2
- package/esm2015/components/file-upload/file-upload.module.js +3 -3
- package/esm2015/components/sidebar/sidebar.component.js +2 -2
- package/esm2015/seniorsistemas-angular-components.js +70 -70
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +6 -3
- package/esm5/components/file-upload/file-upload.component.js +2 -2
- package/esm5/components/file-upload/file-upload.module.js +3 -3
- package/esm5/components/sidebar/sidebar.component.js +2 -2
- package/esm5/seniorsistemas-angular-components.js +70 -70
- package/fesm2015/seniorsistemas-angular-components.js +168 -166
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +177 -175
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +69 -69
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -45,7 +45,6 @@ import { MultiSelectModule } from 'primeng/multiselect';
|
|
|
45
45
|
import { PanelModule as PanelModule$1 } from 'primeng/panel';
|
|
46
46
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
47
47
|
import { SliderModule as SliderModule$1 } from 'primeng/slider';
|
|
48
|
-
import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
|
|
49
48
|
import { TooltipModule as TooltipModule$1 } from 'primeng/tooltip';
|
|
50
49
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
51
50
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
@@ -7099,10 +7098,13 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
7099
7098
|
this.dialogVisible = false;
|
|
7100
7099
|
this.collapsed = false;
|
|
7101
7100
|
this.hotkeysService.unpause([...this.hotkeysService.pausedHotkeys]);
|
|
7102
|
-
if (this.multiple)
|
|
7101
|
+
if (this.multiple) {
|
|
7103
7102
|
multiInputEL.nativeElement.focus();
|
|
7104
|
-
|
|
7103
|
+
}
|
|
7104
|
+
else {
|
|
7105
7105
|
inputEL.nativeElement.focus();
|
|
7106
|
+
}
|
|
7107
|
+
this.formGroupDialog.reset(this.originalFormValues);
|
|
7106
7108
|
}
|
|
7107
7109
|
search() {
|
|
7108
7110
|
this.resetTable();
|
|
@@ -8038,6 +8040,165 @@ EmptyStateModule = __decorate([
|
|
|
8038
8040
|
})
|
|
8039
8041
|
], EmptyStateModule);
|
|
8040
8042
|
|
|
8043
|
+
var ProgressBarColors;
|
|
8044
|
+
(function (ProgressBarColors) {
|
|
8045
|
+
ProgressBarColors["Blue"] = "blue";
|
|
8046
|
+
ProgressBarColors["Green"] = "green";
|
|
8047
|
+
ProgressBarColors["Red"] = "red";
|
|
8048
|
+
ProgressBarColors["Yellow"] = "yellow";
|
|
8049
|
+
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
8050
|
+
|
|
8051
|
+
var ProgressBarMode;
|
|
8052
|
+
(function (ProgressBarMode) {
|
|
8053
|
+
ProgressBarMode["Determinate"] = "determinate";
|
|
8054
|
+
ProgressBarMode["Indeterminate"] = "indeterminate";
|
|
8055
|
+
})(ProgressBarMode || (ProgressBarMode = {}));
|
|
8056
|
+
|
|
8057
|
+
let ProgressBarComponent = class ProgressBarComponent {
|
|
8058
|
+
constructor() {
|
|
8059
|
+
this.numberFormatOptions = {
|
|
8060
|
+
style: "decimal",
|
|
8061
|
+
minimumFractionDigits: 0,
|
|
8062
|
+
maximumFractionDigits: 2,
|
|
8063
|
+
roundingMode: "trunc",
|
|
8064
|
+
};
|
|
8065
|
+
this.showValue = true;
|
|
8066
|
+
this.mode = ProgressBarMode.Determinate;
|
|
8067
|
+
}
|
|
8068
|
+
ngOnInit() {
|
|
8069
|
+
this.validateInputs();
|
|
8070
|
+
}
|
|
8071
|
+
validateInputs() {
|
|
8072
|
+
if (this.value < 0 || this.value > 100) {
|
|
8073
|
+
throw new Error("Invalid value for value");
|
|
8074
|
+
}
|
|
8075
|
+
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
8076
|
+
throw new Error("Invalid value for targetValue");
|
|
8077
|
+
}
|
|
8078
|
+
if (this.mode === ProgressBarMode.Indeterminate && (this.value || this.targetValue || this.targetLabel)) {
|
|
8079
|
+
throw new Error("When the mode is indeterminate, the value, targetValue and targetLabel parameters are not expected.");
|
|
8080
|
+
}
|
|
8081
|
+
}
|
|
8082
|
+
};
|
|
8083
|
+
__decorate([
|
|
8084
|
+
Input()
|
|
8085
|
+
], ProgressBarComponent.prototype, "value", void 0);
|
|
8086
|
+
__decorate([
|
|
8087
|
+
Input()
|
|
8088
|
+
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
8089
|
+
__decorate([
|
|
8090
|
+
Input()
|
|
8091
|
+
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
8092
|
+
__decorate([
|
|
8093
|
+
Input()
|
|
8094
|
+
], ProgressBarComponent.prototype, "label", void 0);
|
|
8095
|
+
__decorate([
|
|
8096
|
+
Input()
|
|
8097
|
+
], ProgressBarComponent.prototype, "targetLabel", void 0);
|
|
8098
|
+
__decorate([
|
|
8099
|
+
Input()
|
|
8100
|
+
], ProgressBarComponent.prototype, "activeColor", void 0);
|
|
8101
|
+
__decorate([
|
|
8102
|
+
Input()
|
|
8103
|
+
], ProgressBarComponent.prototype, "showValue", void 0);
|
|
8104
|
+
__decorate([
|
|
8105
|
+
Input()
|
|
8106
|
+
], ProgressBarComponent.prototype, "mode", void 0);
|
|
8107
|
+
ProgressBarComponent = __decorate([
|
|
8108
|
+
Component({
|
|
8109
|
+
selector: "s-progressbar",
|
|
8110
|
+
template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [numberFormatOptions]=\"numberFormatOptions\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
|
|
8111
|
+
styles: [".progress-bar{position:relative}.progress-bar .progress-bar-all{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progress-bar .progress-bar-all .progress-bar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progress-bar .progress-bar-all .progress-bar-active--blue{background-color:#428bca}.progress-bar .progress-bar-all .progress-bar-active--green{background-color:#0c9348}.progress-bar .progress-bar-all .progress-bar-active--red{background-color:#c13018}.progress-bar .progress-bar-all .progress-bar-active--yellow{background-color:#fcbf10}.progress-bar .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progress-bar .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progress-bar .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
8112
|
+
})
|
|
8113
|
+
], ProgressBarComponent);
|
|
8114
|
+
|
|
8115
|
+
let ProgressBarDeterminateComponent = class ProgressBarDeterminateComponent {
|
|
8116
|
+
constructor(localeService) {
|
|
8117
|
+
this.localeService = localeService;
|
|
8118
|
+
this.showValue = true;
|
|
8119
|
+
}
|
|
8120
|
+
ngOnInit() {
|
|
8121
|
+
this.validateValues();
|
|
8122
|
+
this.onGetLocale();
|
|
8123
|
+
}
|
|
8124
|
+
onGetLocale() {
|
|
8125
|
+
this.localeService.getLocale().subscribe({
|
|
8126
|
+
next: (locale) => {
|
|
8127
|
+
this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", this.numberFormatOptions);
|
|
8128
|
+
},
|
|
8129
|
+
error: () => {
|
|
8130
|
+
this.numberFormat = new Intl.NumberFormat("pt-BR", this.numberFormatOptions);
|
|
8131
|
+
},
|
|
8132
|
+
});
|
|
8133
|
+
}
|
|
8134
|
+
validateValues() {
|
|
8135
|
+
if (this.value < 0 || this.value > 100) {
|
|
8136
|
+
throw new Error("Invalid value for value");
|
|
8137
|
+
}
|
|
8138
|
+
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
8139
|
+
throw new Error("Invalid value for targetValue");
|
|
8140
|
+
}
|
|
8141
|
+
}
|
|
8142
|
+
};
|
|
8143
|
+
ProgressBarDeterminateComponent.ctorParameters = () => [
|
|
8144
|
+
{ type: LocaleService }
|
|
8145
|
+
];
|
|
8146
|
+
__decorate([
|
|
8147
|
+
Input()
|
|
8148
|
+
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
8149
|
+
__decorate([
|
|
8150
|
+
Input()
|
|
8151
|
+
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
8152
|
+
__decorate([
|
|
8153
|
+
Input()
|
|
8154
|
+
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
8155
|
+
__decorate([
|
|
8156
|
+
Input()
|
|
8157
|
+
], ProgressBarDeterminateComponent.prototype, "targetLabel", void 0);
|
|
8158
|
+
__decorate([
|
|
8159
|
+
Input()
|
|
8160
|
+
], ProgressBarDeterminateComponent.prototype, "activeColor", void 0);
|
|
8161
|
+
__decorate([
|
|
8162
|
+
Input()
|
|
8163
|
+
], ProgressBarDeterminateComponent.prototype, "showValue", void 0);
|
|
8164
|
+
ProgressBarDeterminateComponent = __decorate([
|
|
8165
|
+
Component({
|
|
8166
|
+
selector: "s-progressbar-determinate",
|
|
8167
|
+
template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n\n {{ showValue && value ? numberFormat.format(value) + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || numberFormat.format(value) + '%' }}\n </span>\n </div>\n </div>\n",
|
|
8168
|
+
styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10;color:#212533}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
8169
|
+
})
|
|
8170
|
+
], ProgressBarDeterminateComponent);
|
|
8171
|
+
|
|
8172
|
+
let ProgressBarIndeterminateComponent = class ProgressBarIndeterminateComponent {
|
|
8173
|
+
};
|
|
8174
|
+
__decorate([
|
|
8175
|
+
Input()
|
|
8176
|
+
], ProgressBarIndeterminateComponent.prototype, "activeColor", void 0);
|
|
8177
|
+
__decorate([
|
|
8178
|
+
Input()
|
|
8179
|
+
], ProgressBarIndeterminateComponent.prototype, "label", void 0);
|
|
8180
|
+
ProgressBarIndeterminateComponent = __decorate([
|
|
8181
|
+
Component({
|
|
8182
|
+
selector: "s-progressbar-indeterminate",
|
|
8183
|
+
template: "<div class=\"progressbar-indeterminate\">\n <div class=\"progressbar-container\">\n <div class=\"indeterminate-bar\" [ngClass]=\"{\n 'indeterminate-bar--blue': activeColor === 'blue',\n 'indeterminate-bar--green': activeColor === 'green',\n 'indeterminate-bar--red': activeColor === 'red',\n 'indeterminate-bar--yellow': activeColor === 'yellow'\n }\"></div>\n </div>\n\n <span *ngIf=\"label\" class=\"progressbar-label\">{{ label }}</span>\n</div>\n",
|
|
8184
|
+
styles: [".progressbar-indeterminate{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.progressbar-indeterminate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;margin:8px 0;overflow:hidden;width:100%}.progressbar-indeterminate .indeterminate-bar{animation:5s infinite indeterminate-progress;background-color:#428bca;height:100%;width:40%}.progressbar-indeterminate .indeterminate-bar--blue{background-color:#428bca}.progressbar-indeterminate .indeterminate-bar--green{background-color:#0c9348}.progressbar-indeterminate .indeterminate-bar--red{background-color:#c13018}.progressbar-indeterminate .indeterminate-bar--yellow{background-color:#fcbf10}.progressbar-indeterminate .progressbar-label{font-family:\"Open Sans\" sans-serif;font-size:12px;line-height:150%;color:#212533}@keyframes indeterminate-progress{0%{transform:translateX(-250%)}100%{transform:translateX(250%)}}"]
|
|
8185
|
+
})
|
|
8186
|
+
], ProgressBarIndeterminateComponent);
|
|
8187
|
+
|
|
8188
|
+
let ProgressBarModule = class ProgressBarModule {
|
|
8189
|
+
};
|
|
8190
|
+
ProgressBarModule = __decorate([
|
|
8191
|
+
NgModule({
|
|
8192
|
+
imports: [CommonModule],
|
|
8193
|
+
declarations: [
|
|
8194
|
+
ProgressBarComponent,
|
|
8195
|
+
ProgressBarDeterminateComponent,
|
|
8196
|
+
ProgressBarIndeterminateComponent,
|
|
8197
|
+
],
|
|
8198
|
+
exports: [ProgressBarComponent],
|
|
8199
|
+
})
|
|
8200
|
+
], ProgressBarModule);
|
|
8201
|
+
|
|
8041
8202
|
let FileUploadService = class FileUploadService {
|
|
8042
8203
|
constructor() {
|
|
8043
8204
|
this.BASE_URL_FIELD_CUSTOMIZATION = "platform/field_customization";
|
|
@@ -8357,7 +8518,7 @@ __decorate([
|
|
|
8357
8518
|
FileUploadComponent = FileUploadComponent_1 = __decorate([
|
|
8358
8519
|
Component({
|
|
8359
8520
|
selector: "s-file-upload",
|
|
8360
|
-
template: "<div [id]=\"id\" class=\"s-fileupload\">\n <div class=\"s-fileupload-choose\">\n <input\n #inputUpload\n [id]=\"id + 'input-upload'\"\n type=\"file\"\n name=\"file\"\n [accept]=\"accept\"\n [multiple]=\"multiple\"\n (change)=\"onFileSelect($event.dataTransfer ? $event.dataTransfer.files : $event.target.files)\"\n />\n <s-button\n *ngIf=\"permissions.includes(ADD_PERMISSION)\"\n [id]=\"id + 'upload-button'\"\n [label]=\"chooseLabel || 'platform.angular_components.attach_files' | translate\"\n (onClick)=\"inputUpload.click()\"\n priority=\"primary\"\n [disabled]=\"disabled || !!formGroup?.disabled || fileLimit === files?.length\"\n [auxiliary]=\"false\"\n >\n </s-button>\n </div>\n\n <section *ngIf=\"files.length\" [id]=\"id + 'fileupload-list'\" class=\"s-fileupload-list\" role=\"grid\">\n <ng-container *ngFor=\"let file of files; let i = index\">\n <div class=\"s-fileupload-list-file\" role=\"row\">\n <div [id]=\"id + '-file-' + i + '-name'\" class=\"s-fileupload-list-file-name\" role=\"gridcell\">\n <div class=\"file-name-size\">\n <ng-container\n *ngTemplateOutlet=\"\n (permissions.includes(READ_PERMISSION) && file.savedFile) || file.progress === 100\n ? descriptionUrl\n : description;\n context: {\n $implicit: file,\n index: i\n }\n \"\n >\n </ng-container>\n \n <span>{{ formatFileSize(file.size) }}</span>\n </div>\n\n <span *ngIf=\"modifiedDate\" class=\"s-fileupload-list-file-name-date\">{{ modifiedDate }}</span>\n </div>\n <div class=\"s-fileupload-list-file-status\" role=\"gridcell\">\n <
|
|
8521
|
+
template: "<div [id]=\"id\" class=\"s-fileupload\">\n <div class=\"s-fileupload-choose\">\n <input\n #inputUpload\n [id]=\"id + 'input-upload'\"\n type=\"file\"\n name=\"file\"\n [accept]=\"accept\"\n [multiple]=\"multiple\"\n (change)=\"onFileSelect($event.dataTransfer ? $event.dataTransfer.files : $event.target.files)\"\n />\n <s-button\n *ngIf=\"permissions.includes(ADD_PERMISSION)\"\n [id]=\"id + 'upload-button'\"\n [label]=\"chooseLabel || 'platform.angular_components.attach_files' | translate\"\n (onClick)=\"inputUpload.click()\"\n priority=\"primary\"\n [disabled]=\"disabled || !!formGroup?.disabled || fileLimit === files?.length\"\n [auxiliary]=\"false\"\n >\n </s-button>\n </div>\n\n <section *ngIf=\"files.length\" [id]=\"id + 'fileupload-list'\" class=\"s-fileupload-list\" role=\"grid\">\n <ng-container *ngFor=\"let file of files; let i = index\">\n <div class=\"s-fileupload-list-file\" role=\"row\">\n <div [id]=\"id + '-file-' + i + '-name'\" class=\"s-fileupload-list-file-name\" role=\"gridcell\">\n <div class=\"file-name-size\">\n <ng-container\n *ngTemplateOutlet=\"\n (permissions.includes(READ_PERMISSION) && file.savedFile) || file.progress === 100\n ? descriptionUrl\n : description;\n context: {\n $implicit: file,\n index: i\n }\n \"\n >\n </ng-container>\n \n <span>{{ formatFileSize(file.size) }}</span>\n </div>\n\n <span *ngIf=\"modifiedDate\" class=\"s-fileupload-list-file-name-date\">{{ modifiedDate }}</span>\n </div>\n <div class=\"s-fileupload-list-file-status\" role=\"gridcell\">\n\n <div *ngIf=\"file.isUploading && !isSmallDevice\" style=\"width: 256px;\">\n <s-progressbar\n [value]=\"file.progress || 0\"\n [showValue]=\"false\"\n activeColor=\"blue\"\n ></s-progressbar>\n </div>\n <span\n *ngIf=\"file.isUploading && isSmallDevice\"\n [id]=\"id + '-file-' + i + '-spin'\"\n class=\"fas fa-circle-notch fa-spin\"\n [attr.aria-label]=\"ariaLabelProgress || 'platform.angular_components.loading_file' | translate\"\n >\n </span>\n <span\n *ngIf=\"!file.isUploading && !file.error && file.progress === 100\"\n [id]=\"id + '-file-' + i + '-check'\"\n class=\"fas fa-check\"\n role=\"alert\"\n [attr.aria-label]=\"\n ariaLabelSuccess || successTooltip || 'platform.angular_components.file_attached_successfully' | translate\n \"\n [pTooltip]=\"successTooltip || 'platform.angular_components.file_attached_successfully' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n [appendTo]=\"'body'\"\n >\n </span>\n <span\n *ngIf=\"file.error?.message\"\n [id]=\"id + '-file-' + i + '-error'\"\n class=\"fas fa-times\"\n role=\"alert\"\n [pTooltip]=\"file.error?.message\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n [appendTo]=\"'body'\"\n >\n </span>\n </div>\n <div class=\"s-fileupload-list-file-actions\" role=\"gridcell\">\n <a\n *ngIf=\"file.isUploading\"\n [id]=\"id + '-file-' + i + '-cancel'\"\n class=\"s-fileupload-list-file-actions-action\"\n (click)=\"onCancelUpload(i)\"\n >\n {{ cancelLabel || \"platform.angular_components.cancel\" | translate }}\n </a>\n <a\n *ngIf=\"permissions.includes(REMOVE_PERMISSION) && !file.isUploading && !(disabled || !!formGroup?.disabled)\"\n role=\"button\"\n tabindex=\"0\"\n [id]=\"id + '-file-' + i + '-remove'\"\n class=\"s-fileupload-list-file-actions-action\"\n (click)=\"onRemoveFile(file)\"\n [attr.aria-label]=\"ariaLabelRemove || removeLabel || 'platform.angular_components.remove' | translate\"\n >\n {{ removeLabel || \"platform.angular_components.remove\" | translate }}\n </a>\n </div>\n </div>\n </ng-container>\n </section>\n</div>\n\n<ng-template #descriptionUrl let-file let-i=\"index\">\n <a [id]=\"id + '-file-' + i + '-name-link'\" tabindex=\"0\" (click)=\"onDowloadFile(i)\" [attr.aria-label]=\"ariaLabelFileName || file.name\"\n >{{ file.name }}\n </a>\n <a style=\"display: none\" [href]=\"file.objectURL\" target=\"_blank\" download #anchor> </a>\n</ng-template>\n\n<ng-template #description let-file>\n <span tabindex=\"0\" [attr.aria-label]=\"ariaLabelFileName || file.name\">\n {{ file.name }}\n </span>\n</ng-template>\n",
|
|
8361
8522
|
styles: [".s-fileupload .s-fileupload-choose{position:relative;margin:15px 0;width:-webkit-max-content;width:max-content}.s-fileupload input[type=file]{display:none}.s-fileupload-list{border:1px solid #ccc}.s-fileupload-list-file:not(:first-child){border-top:1px solid #ccc}.s-fileupload-list .s-fileupload-list-file{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;padding:15px}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-name{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:center;align-self:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-name .file-name-size{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;gap:20px}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-name .s-fileupload-list-file-name-date{font-size:.75rem;color:#999}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-name>a{cursor:pointer;text-decoration:none}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-status{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.s-fileupload-list .s-fileupload-list-file .fas.fa-circle-notch{color:#d8d8d8;font-size:12px}.s-fileupload-list .s-fileupload-list-file .fas.fa-check{color:#0c9348;font-size:12px}.s-fileupload-list .s-fileupload-list-file .fas.fa-times{color:#c13018;font-size:12px}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions{margin-top:15px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;width:100%}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions a.s-fileupload-list-file-actions-action{text-decoration:none;color:#428bca}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions a.s-fileupload-list-file-actions-action :focus,.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions a.s-fileupload-list-file-actions-action :visited,.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions a.s-fileupload-list-file-actions-action:hover{text-decoration:none}@media (min-width:768px){.s-fileupload-list .s-fileupload-list-file{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-name{width:auto;-ms-flex-positive:2;flex-grow:2}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-status{margin:0 15px}.s-fileupload-list .s-fileupload-list-file .s-fileupload-list-file-actions{margin:0;width:auto}}"]
|
|
8362
8523
|
})
|
|
8363
8524
|
], FileUploadComponent);
|
|
@@ -8371,7 +8532,7 @@ FileUploadModule = __decorate([
|
|
|
8371
8532
|
CommonModule,
|
|
8372
8533
|
ButtonModule,
|
|
8373
8534
|
TooltipModule$1,
|
|
8374
|
-
ProgressBarModule
|
|
8535
|
+
ProgressBarModule,
|
|
8375
8536
|
TranslateModule,
|
|
8376
8537
|
],
|
|
8377
8538
|
providers: [FileUploadService],
|
|
@@ -18256,165 +18417,6 @@ ProductHeaderModule = __decorate([
|
|
|
18256
18417
|
})
|
|
18257
18418
|
], ProductHeaderModule);
|
|
18258
18419
|
|
|
18259
|
-
var ProgressBarColors;
|
|
18260
|
-
(function (ProgressBarColors) {
|
|
18261
|
-
ProgressBarColors["Blue"] = "blue";
|
|
18262
|
-
ProgressBarColors["Green"] = "green";
|
|
18263
|
-
ProgressBarColors["Red"] = "red";
|
|
18264
|
-
ProgressBarColors["Yellow"] = "yellow";
|
|
18265
|
-
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
18266
|
-
|
|
18267
|
-
var ProgressBarMode;
|
|
18268
|
-
(function (ProgressBarMode) {
|
|
18269
|
-
ProgressBarMode["Determinate"] = "determinate";
|
|
18270
|
-
ProgressBarMode["Indeterminate"] = "indeterminate";
|
|
18271
|
-
})(ProgressBarMode || (ProgressBarMode = {}));
|
|
18272
|
-
|
|
18273
|
-
let ProgressBarComponent = class ProgressBarComponent {
|
|
18274
|
-
constructor() {
|
|
18275
|
-
this.numberFormatOptions = {
|
|
18276
|
-
style: "decimal",
|
|
18277
|
-
minimumFractionDigits: 0,
|
|
18278
|
-
maximumFractionDigits: 2,
|
|
18279
|
-
roundingMode: "trunc",
|
|
18280
|
-
};
|
|
18281
|
-
this.showValue = true;
|
|
18282
|
-
this.mode = ProgressBarMode.Determinate;
|
|
18283
|
-
}
|
|
18284
|
-
ngOnInit() {
|
|
18285
|
-
this.validateInputs();
|
|
18286
|
-
}
|
|
18287
|
-
validateInputs() {
|
|
18288
|
-
if (this.value < 0 || this.value > 100) {
|
|
18289
|
-
throw new Error("Invalid value for value");
|
|
18290
|
-
}
|
|
18291
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
18292
|
-
throw new Error("Invalid value for targetValue");
|
|
18293
|
-
}
|
|
18294
|
-
if (this.mode === ProgressBarMode.Indeterminate && (this.value || this.targetValue || this.targetLabel)) {
|
|
18295
|
-
throw new Error("When the mode is indeterminate, the value, targetValue and targetLabel parameters are not expected.");
|
|
18296
|
-
}
|
|
18297
|
-
}
|
|
18298
|
-
};
|
|
18299
|
-
__decorate([
|
|
18300
|
-
Input()
|
|
18301
|
-
], ProgressBarComponent.prototype, "value", void 0);
|
|
18302
|
-
__decorate([
|
|
18303
|
-
Input()
|
|
18304
|
-
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
18305
|
-
__decorate([
|
|
18306
|
-
Input()
|
|
18307
|
-
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
18308
|
-
__decorate([
|
|
18309
|
-
Input()
|
|
18310
|
-
], ProgressBarComponent.prototype, "label", void 0);
|
|
18311
|
-
__decorate([
|
|
18312
|
-
Input()
|
|
18313
|
-
], ProgressBarComponent.prototype, "targetLabel", void 0);
|
|
18314
|
-
__decorate([
|
|
18315
|
-
Input()
|
|
18316
|
-
], ProgressBarComponent.prototype, "activeColor", void 0);
|
|
18317
|
-
__decorate([
|
|
18318
|
-
Input()
|
|
18319
|
-
], ProgressBarComponent.prototype, "showValue", void 0);
|
|
18320
|
-
__decorate([
|
|
18321
|
-
Input()
|
|
18322
|
-
], ProgressBarComponent.prototype, "mode", void 0);
|
|
18323
|
-
ProgressBarComponent = __decorate([
|
|
18324
|
-
Component({
|
|
18325
|
-
selector: "s-progressbar",
|
|
18326
|
-
template: "<ng-container *ngIf=\"mode === 'determinate'; then pbDeterminateTemplate else pbIndeterminateTemplate\"></ng-container>\n\n<ng-template #pbDeterminateTemplate>\n <s-progressbar-determinate\n [value]=\"value\"\n [numberFormatOptions]=\"numberFormatOptions\"\n [targetValue]=\"targetValue\"\n [targetLabel]=\"targetLabel\"\n [activeColor]=\"activeColor\"\n [showValue]=\"showValue\">\n </s-progressbar-determinate>\n</ng-template>\n\n<ng-template #pbIndeterminateTemplate>\n <s-progressbar-indeterminate\n [activeColor]=\"activeColor\"\n [label]=\"label\">\n </s-progressbar-indeterminate>\n</ng-template>",
|
|
18327
|
-
styles: [".progress-bar{position:relative}.progress-bar .progress-bar-all{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progress-bar .progress-bar-all .progress-bar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progress-bar .progress-bar-all .progress-bar-active--blue{background-color:#428bca}.progress-bar .progress-bar-all .progress-bar-active--green{background-color:#0c9348}.progress-bar .progress-bar-all .progress-bar-active--red{background-color:#c13018}.progress-bar .progress-bar-all .progress-bar-active--yellow{background-color:#fcbf10}.progress-bar .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progress-bar .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progress-bar .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
18328
|
-
})
|
|
18329
|
-
], ProgressBarComponent);
|
|
18330
|
-
|
|
18331
|
-
let ProgressBarDeterminateComponent = class ProgressBarDeterminateComponent {
|
|
18332
|
-
constructor(localeService) {
|
|
18333
|
-
this.localeService = localeService;
|
|
18334
|
-
this.showValue = true;
|
|
18335
|
-
}
|
|
18336
|
-
ngOnInit() {
|
|
18337
|
-
this.validateValues();
|
|
18338
|
-
this.onGetLocale();
|
|
18339
|
-
}
|
|
18340
|
-
onGetLocale() {
|
|
18341
|
-
this.localeService.getLocale().subscribe({
|
|
18342
|
-
next: (locale) => {
|
|
18343
|
-
this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", this.numberFormatOptions);
|
|
18344
|
-
},
|
|
18345
|
-
error: () => {
|
|
18346
|
-
this.numberFormat = new Intl.NumberFormat("pt-BR", this.numberFormatOptions);
|
|
18347
|
-
},
|
|
18348
|
-
});
|
|
18349
|
-
}
|
|
18350
|
-
validateValues() {
|
|
18351
|
-
if (this.value < 0 || this.value > 100) {
|
|
18352
|
-
throw new Error("Invalid value for value");
|
|
18353
|
-
}
|
|
18354
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
18355
|
-
throw new Error("Invalid value for targetValue");
|
|
18356
|
-
}
|
|
18357
|
-
}
|
|
18358
|
-
};
|
|
18359
|
-
ProgressBarDeterminateComponent.ctorParameters = () => [
|
|
18360
|
-
{ type: LocaleService }
|
|
18361
|
-
];
|
|
18362
|
-
__decorate([
|
|
18363
|
-
Input()
|
|
18364
|
-
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
18365
|
-
__decorate([
|
|
18366
|
-
Input()
|
|
18367
|
-
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
18368
|
-
__decorate([
|
|
18369
|
-
Input()
|
|
18370
|
-
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
18371
|
-
__decorate([
|
|
18372
|
-
Input()
|
|
18373
|
-
], ProgressBarDeterminateComponent.prototype, "targetLabel", void 0);
|
|
18374
|
-
__decorate([
|
|
18375
|
-
Input()
|
|
18376
|
-
], ProgressBarDeterminateComponent.prototype, "activeColor", void 0);
|
|
18377
|
-
__decorate([
|
|
18378
|
-
Input()
|
|
18379
|
-
], ProgressBarDeterminateComponent.prototype, "showValue", void 0);
|
|
18380
|
-
ProgressBarDeterminateComponent = __decorate([
|
|
18381
|
-
Component({
|
|
18382
|
-
selector: "s-progressbar-determinate",
|
|
18383
|
-
template: "<div class=\"progressbar-determinate\">\n <div class=\"progressbar-container\">\n <div\n class=\"progressbar-active\"\n [ngClass]=\"{\n 'progressbar-active--blue' : activeColor === 'blue',\n 'progressbar-active--green': activeColor === 'green',\n 'progressbar-active--red': activeColor === 'red',\n 'progressbar-active--yellow': activeColor === 'yellow'\n }\"\n [ngStyle]=\"{ 'width': value + '%' }\">\n\n {{ showValue && value ? numberFormat.format(value) + '%' : '' }}\n </div>\n </div>\n <div\n *ngIf=\"targetValue\"\n class=\"target\"\n [ngStyle]=\"{\n 'left': targetValue <= 50 ? targetValue + '%' : 'unset',\n 'right': targetValue > 50 ? 100 - targetValue + '%' : 'unset',\n 'align-items': targetValue > 50 ? 'flex-end' : 'flex-start'\n }\">\n <span class=\"target-line\"></span>\n <span class=\"target-label\">\n {{ targetLabel || numberFormat.format(value) + '%' }}\n </span>\n </div>\n </div>\n",
|
|
18384
|
-
styles: [".progressbar-determinate{position:relative}.progressbar-determinate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;overflow:hidden;width:100%}.progressbar-determinate .progressbar-container .progressbar-active{-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;height:100%;-ms-flex-pack:center;justify-content:center;line-height:150%;-webkit-user-select:none;-ms-user-select:none;user-select:none;width:80%}.progressbar-determinate .progressbar-container .progressbar-active--blue{background-color:#428bca}.progressbar-determinate .progressbar-container .progressbar-active--green{background-color:#0c9348}.progressbar-determinate .progressbar-container .progressbar-active--red{background-color:#c13018}.progressbar-determinate .progressbar-container .progressbar-active--yellow{background-color:#fcbf10;color:#212533}.progressbar-determinate .target{-ms-flex-align:start;align-items:flex-start;bottom:-38px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute}.progressbar-determinate .target .target-line{background-color:#333;height:40px;margin:8px 0;width:1px}.progressbar-determinate .target .target-label{background-color:#426e78;border-radius:10px;color:#e5eaea;font-family:\"Open Sans\",sans-serif;font-size:12px;line-height:150%;padding:2px 12px}"]
|
|
18385
|
-
})
|
|
18386
|
-
], ProgressBarDeterminateComponent);
|
|
18387
|
-
|
|
18388
|
-
let ProgressBarIndeterminateComponent = class ProgressBarIndeterminateComponent {
|
|
18389
|
-
};
|
|
18390
|
-
__decorate([
|
|
18391
|
-
Input()
|
|
18392
|
-
], ProgressBarIndeterminateComponent.prototype, "activeColor", void 0);
|
|
18393
|
-
__decorate([
|
|
18394
|
-
Input()
|
|
18395
|
-
], ProgressBarIndeterminateComponent.prototype, "label", void 0);
|
|
18396
|
-
ProgressBarIndeterminateComponent = __decorate([
|
|
18397
|
-
Component({
|
|
18398
|
-
selector: "s-progressbar-indeterminate",
|
|
18399
|
-
template: "<div class=\"progressbar-indeterminate\">\n <div class=\"progressbar-container\">\n <div class=\"indeterminate-bar\" [ngClass]=\"{\n 'indeterminate-bar--blue': activeColor === 'blue',\n 'indeterminate-bar--green': activeColor === 'green',\n 'indeterminate-bar--red': activeColor === 'red',\n 'indeterminate-bar--yellow': activeColor === 'yellow'\n }\"></div>\n </div>\n\n <span *ngIf=\"label\" class=\"progressbar-label\">{{ label }}</span>\n</div>\n",
|
|
18400
|
-
styles: [".progressbar-indeterminate{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.progressbar-indeterminate .progressbar-container{background-color:#d8d8d8;border-radius:4px;height:24px;margin:8px 0;overflow:hidden;width:100%}.progressbar-indeterminate .indeterminate-bar{animation:5s infinite indeterminate-progress;background-color:#428bca;height:100%;width:40%}.progressbar-indeterminate .indeterminate-bar--blue{background-color:#428bca}.progressbar-indeterminate .indeterminate-bar--green{background-color:#0c9348}.progressbar-indeterminate .indeterminate-bar--red{background-color:#c13018}.progressbar-indeterminate .indeterminate-bar--yellow{background-color:#fcbf10}.progressbar-indeterminate .progressbar-label{font-family:\"Open Sans\" sans-serif;font-size:12px;line-height:150%;color:#212533}@keyframes indeterminate-progress{0%{transform:translateX(-250%)}100%{transform:translateX(250%)}}"]
|
|
18401
|
-
})
|
|
18402
|
-
], ProgressBarIndeterminateComponent);
|
|
18403
|
-
|
|
18404
|
-
let ProgressBarModule = class ProgressBarModule {
|
|
18405
|
-
};
|
|
18406
|
-
ProgressBarModule = __decorate([
|
|
18407
|
-
NgModule({
|
|
18408
|
-
imports: [CommonModule],
|
|
18409
|
-
declarations: [
|
|
18410
|
-
ProgressBarComponent,
|
|
18411
|
-
ProgressBarDeterminateComponent,
|
|
18412
|
-
ProgressBarIndeterminateComponent,
|
|
18413
|
-
],
|
|
18414
|
-
exports: [ProgressBarComponent],
|
|
18415
|
-
})
|
|
18416
|
-
], ProgressBarModule);
|
|
18417
|
-
|
|
18418
18420
|
var RatingScaleComponent_1;
|
|
18419
18421
|
let RatingScaleComponent = RatingScaleComponent_1 = class RatingScaleComponent {
|
|
18420
18422
|
constructor() {
|
|
@@ -18718,7 +18720,7 @@ __decorate([
|
|
|
18718
18720
|
SidebarComponent = SidebarComponent_1 = __decorate([
|
|
18719
18721
|
Component({
|
|
18720
18722
|
selector: "s-sidebar",
|
|
18721
|
-
template: "<p-sidebar\n [id]=\"id\"\n [visible]=\"visible\"\n (visibleChange)=\"visibleChange.emit($event)\"\n [blockScroll]=\"true\"\n [baseZIndex]=\"baseZIndex\"\n [modal]=\"true\"\n [dismissible]=\"false\"\n [showCloseIcon]=\"false\"\n position=\"right\"\n appendTo=\"body\"\n [styleClass]=\"largeSized ? 's-sidebar-panel s-sidebar-panel-lg' : 's-sidebar-panel'\"\n (onShow)=\"onShow()\"\n (onHide)=\"onHide()\">\n <div\n [id]=\"id + '-container'\"\n class=\"s-sidebar-container\">\n <a\n href=\"#\"\n role=\"button\"\n class=\"s-sidebar-close\"\n (click)=\"close($event)\">\n <span\n class=\"fa fa-times\"\n aria-hidden=\"true\">\n </span></a>\n <div\n *ngIf=\"header && !headerSection\" \n [id]=\"id + '-header'\"\n class=\"s-sidebar-header\">\n <h2 class=\"sds-panel-title s-sidebar-header__title\">{{header}}</h2>\n </div>\n <div\n *ngIf=\"headerSection\" \n [id]=\"id + '-header'\"\n class=\"s-sidebar-header\">\n <ng-
|
|
18723
|
+
template: "<p-sidebar\n [id]=\"id\"\n [visible]=\"visible\"\n (visibleChange)=\"visibleChange.emit($event)\"\n [blockScroll]=\"true\"\n [baseZIndex]=\"baseZIndex\"\n [modal]=\"true\"\n [dismissible]=\"false\"\n [showCloseIcon]=\"false\"\n position=\"right\"\n appendTo=\"body\"\n [styleClass]=\"largeSized ? 's-sidebar-panel s-sidebar-panel-lg' : 's-sidebar-panel'\"\n (onShow)=\"onShow()\"\n (onHide)=\"onHide()\">\n <div\n [id]=\"id + '-container'\"\n class=\"s-sidebar-container\">\n <a\n href=\"#\"\n role=\"button\"\n class=\"s-sidebar-close\"\n (click)=\"close($event)\">\n <span\n class=\"fa fa-times\"\n aria-hidden=\"true\">\n </span></a>\n <div\n *ngIf=\"header && !headerSection\" \n [id]=\"id + '-header'\"\n class=\"s-sidebar-header\">\n <h2 class=\"sds-panel-title s-sidebar-header__title\">{{header}}</h2>\n </div>\n <div\n *ngIf=\"headerSection\" \n [id]=\"id + '-header'\"\n class=\"s-sidebar-header\">\n <ng-container *ngTemplateOutlet=\"headerSection.template\"></ng-container>\n </div>\n <p-scrollPanel\n [id]=\"id + '-content-container'\"\n class=\"s-sidebar-content-container\"\n styleClass=\"s-sidebar-content\">\n <ng-content></ng-content>\n </p-scrollPanel>\n <div\n *ngIf=\"footerSection\"\n [id]=\"id + '-footer'\"\n class=\"s-sidebar-footer\">\n <ng-content select=\"s-footer\"></ng-content>\n </div>\n </div>\n</p-sidebar>\n",
|
|
18722
18724
|
encapsulation: ViewEncapsulation.None,
|
|
18723
18725
|
styles: [".ui-overflow-hidden-sidebar{overflow:hidden}body .ui-sidebar.s-sidebar-panel{width:50%;padding:0}@media (max-width:767px){body .ui-sidebar.s-sidebar-panel{width:100%}}@media (min-width:768px){body .ui-sidebar.s-sidebar-panel{width:75%}}@media (min-width:992px){body .ui-sidebar.s-sidebar-panel{width:50%}body .ui-sidebar.s-sidebar-panel.s-sidebar-panel-lg{width:75%}}body .ui-sidebar.s-sidebar-panel .s-sidebar-container{height:100%;width:100%;padding:20px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column}body .ui-sidebar.s-sidebar-panel .s-sidebar-close{position:absolute;right:20px;top:20px;color:#333}body .ui-sidebar.s-sidebar-panel .s-sidebar-header{border-bottom:1px solid #ccc;padding-bottom:15px;padding-right:20px;margin-bottom:15px;-ms-flex-negative:0;flex-shrink:0}body .ui-sidebar.s-sidebar-panel .s-sidebar-content-container{-ms-flex:1;flex:1;overflow:hidden}body .ui-sidebar.s-sidebar-panel .s-sidebar-content{height:100%}body .ui-sidebar.s-sidebar-panel .s-sidebar-footer{border-top:1px solid #ccc;padding-top:15px;margin-top:15px;-ms-flex-negative:0;flex-shrink:0}body .ui-sidebar.s-sidebar-panel p-scrollpanel{padding-top:30px}body .ui-sidebar.s-sidebar-panel .s-sidebar-header+p-scrollpanel{padding-top:0}p-scrollPanel{display:block}.s-sidebar-header__title{font-weight:400}"]
|
|
18724
18726
|
})
|
|
@@ -22444,5 +22446,5 @@ const fallback = {
|
|
|
22444
22446
|
* Generated bundle index. Do not edit.
|
|
22445
22447
|
*/
|
|
22446
22448
|
|
|
22447
|
-
export { AccessibilityEventDirective, AccessibilityEventsModule, AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, ButtonComponent, ButtonField, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FieldsetComponent$1 as FieldsetComponent, FieldsetModule, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FooterComponent, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HeaderComponent, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, Row, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, StructureModule, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, ToastComponent, ToastModule, ToastService, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, TreeComponent, TreeModule, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, deepClone, fallback, getElementLeftoverContentAvailable, getElementPositionInfo, isMousePositionOutsideOfElement, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb,
|
|
22449
|
+
export { AccessibilityEventDirective, AccessibilityEventsModule, AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, ButtonComponent, ButtonField, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FieldsetComponent$1 as FieldsetComponent, FieldsetModule, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FooterComponent, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HeaderComponent, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, Row, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, StructureModule, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, ToastComponent, ToastModule, ToastService, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, TreeComponent, TreeModule, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, deepClone, fallback, getElementLeftoverContentAvailable, getElementPositionInfo, isMousePositionOutsideOfElement, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, ProgressBarDeterminateComponent as ɵba, ProgressBarIndeterminateComponent as ɵbb, TableColumnsComponent as ɵbc, TablePagingComponent as ɵbd, PasswordFieldModule as ɵbe, FieldLabelModule as ɵbf, FieldLabelComponent as ɵbg, PasswordFieldComponent as ɵbh, TextFieldModule as ɵbi, TextFieldComponent as ɵbj, NumberFieldModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberFieldComponent as ɵbp, CheckboxFieldModule as ɵbq, CheckboxFieldComponent as ɵbr, ProfilePictureModule as ɵbs, ThumbnailService as ɵbt, ProfilePictureFieldComponent as ɵbu, EditorFieldModule as ɵbv, EditorFieldComponent as ɵbw, SpeechRecognitionModule as ɵbx, SpeechRecognitionComponent as ɵby, SpeechRecognitionService as ɵbz, InfoSignComponent as ɵc, TextToSpeechService as ɵca, AutocompleteFieldComponent as ɵcb, BooleanFieldComponent as ɵcc, BooleanSwitchFieldComponent as ɵcd, CalendarFieldComponent as ɵce, ChipsFieldComponent as ɵcf, CountryPhonePickerFieldComponent as ɵcg, DynamicFieldComponent as ɵch, DynamicFormDirective as ɵci, FieldsetComponent as ɵcj, FileUploadComponent$1 as ɵck, LookupFieldComponent as ɵcl, RadioButtonComponent as ɵcm, RowComponent as ɵcn, SectionComponent as ɵco, SelectFieldComponent as ɵcp, SliderFieldComponent as ɵcq, TextAreaFieldComponent as ɵcr, TextAreaIAFieldComponent as ɵcs, IAssistService as ɵct, ButtonFieldComponent as ɵcu, DecimalField as ɵcw, SideTableComponent as ɵcx, InfiniteScrollModule as ɵcy, InfiniteScrollDirective as ɵcz, TieredMenuEventService as ɵd, IAInsightSidebarComponent as ɵda, IAInsightCardComponent as ɵdb, IAInsightCardLoaderComponent as ɵdc, GridMenuItemComponent as ɵdd, InlineEditItemComponent as ɵde, InlineEditCalendarComponent as ɵdf, InlineEditLookupComponent as ɵdg, InlineEditNumberComponent as ɵdh, InlineEditTextComponent as ɵdi, InlineEditTextAreaComponent as ɵdj, InlineEditTextAreaIAComponent as ɵdk, KanbanEventService as ɵdl, KanbanItemComponent as ɵdm, KanbanColumnComponent as ɵdn, KanbanItemDraggingComponent as ɵdo, NumberLocaleOptions as ɵdp, BorderButtonModule as ɵdq, BorderButtonComponent as ɵdr, SelectButtonItemComponent as ɵds, SlidePanelService as ɵdt, ThumbnailItemComponent as ɵdu, ThumbnailItemVideoComponent as ɵdv, ThumbnailItemImageComponent as ɵdw, TimelineItemModule as ɵdx, TimelineIconItemComponent as ɵdy, HorizontalTimelineModule as ɵdz, TieredMenuService as ɵe, HorizontalTimelineComponent as ɵea, VerticalTimelineModule as ɵeb, VerticalTimelineComponent as ɵec, RangeLineComponent as ɵed, CollapseOptionComponent as ɵee, CollapsedItemsComponent as ɵef, VerticalItemsComponent as ɵeg, ChipItemComponent as ɵeh, TreeNodeItemComponent as ɵei, TieredMenuGlobalService as ɵf, TieredMenuComponent as ɵg, TieredMenuNestedComponent as ɵh, TieredMenuItemComponent as ɵi, TieredMenuDividerComponent as ɵj, LocalizedCurrencyImpurePipe as ɵk, LocalizedBignumberPipe as ɵl, LocalizedBignumberImpurePipe as ɵm, NumericPipe as ɵn, ChatMessageComponent as ɵo, CustomTranslationsModule as ɵp, CodeEditorComponent as ɵq, CoreFacade as ɵr, CodeMirror6Core as ɵs, CountryPhonePickerService as ɵt, EmptyStateGoBackComponent as ɵu, IAssistIconComponent as ɵv, SeniorIconComponent as ɵw, DotsIndicatorComponent as ɵx, LoadingIndicatorComponent as ɵy, FileUploadService as ɵz };
|
|
22448
22450
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|