@seniorsistemas/angular-components 17.31.4 → 17.31.6
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 +262 -249
- 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 +3 -1
- package/esm2015/components/dynamic-form/components/fields/autocomplete/autocomplete-field.component.js +4 -4
- package/esm2015/components/dynamic-form/components/lookup/lookup.component.js +14 -5
- package/esm2015/components/file-upload/file-upload.component.js +2 -2
- package/esm2015/components/file-upload/file-upload.module.js +3 -3
- package/esm2015/seniorsistemas-angular-components.js +70 -70
- package/esm5/components/dynamic-form/components/fields/autocomplete/autocomplete-field.component.js +4 -4
- package/esm5/components/dynamic-form/components/lookup/lookup.component.js +18 -5
- package/esm5/components/file-upload/file-upload.component.js +2 -2
- package/esm5/components/file-upload/file-upload.module.js +3 -3
- package/esm5/seniorsistemas-angular-components.js +70 -70
- package/fesm2015/seniorsistemas-angular-components.js +177 -169
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +190 -178
- 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';
|
|
@@ -6924,7 +6923,7 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
6924
6923
|
this.autocompleteForceSelection = true;
|
|
6925
6924
|
this.disabled = false;
|
|
6926
6925
|
this.showSearch = true;
|
|
6927
|
-
this.
|
|
6926
|
+
this._lookupAppendTo = "body";
|
|
6928
6927
|
this.searchFields = [];
|
|
6929
6928
|
this.showAddOption = false;
|
|
6930
6929
|
this.showEditOption = false;
|
|
@@ -6949,6 +6948,12 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
6949
6948
|
this.originalFormValues = {};
|
|
6950
6949
|
this.ngUnsubscribe = new Subject();
|
|
6951
6950
|
}
|
|
6951
|
+
get lookupAppendTo() {
|
|
6952
|
+
return this._lookupAppendTo;
|
|
6953
|
+
}
|
|
6954
|
+
set lookupAppendTo(value) {
|
|
6955
|
+
this._lookupAppendTo = value !== null && value !== void 0 ? value : 'body';
|
|
6956
|
+
}
|
|
6952
6957
|
ngOnInit() {
|
|
6953
6958
|
if (!this.searchGridFields) {
|
|
6954
6959
|
this.searchGridFields = this.searchFields
|
|
@@ -7093,10 +7098,13 @@ let LookupComponent = LookupComponent_1 = class LookupComponent {
|
|
|
7093
7098
|
this.dialogVisible = false;
|
|
7094
7099
|
this.collapsed = false;
|
|
7095
7100
|
this.hotkeysService.unpause([...this.hotkeysService.pausedHotkeys]);
|
|
7096
|
-
if (this.multiple)
|
|
7101
|
+
if (this.multiple) {
|
|
7097
7102
|
multiInputEL.nativeElement.focus();
|
|
7098
|
-
|
|
7103
|
+
}
|
|
7104
|
+
else {
|
|
7099
7105
|
inputEL.nativeElement.focus();
|
|
7106
|
+
}
|
|
7107
|
+
this.formGroupDialog.reset(this.originalFormValues);
|
|
7100
7108
|
}
|
|
7101
7109
|
search() {
|
|
7102
7110
|
this.resetTable();
|
|
@@ -7329,7 +7337,7 @@ __decorate([
|
|
|
7329
7337
|
], LookupComponent.prototype, "lookupEmptyMessage", void 0);
|
|
7330
7338
|
__decorate([
|
|
7331
7339
|
Input()
|
|
7332
|
-
], LookupComponent.prototype, "lookupAppendTo",
|
|
7340
|
+
], LookupComponent.prototype, "lookupAppendTo", null);
|
|
7333
7341
|
__decorate([
|
|
7334
7342
|
Input()
|
|
7335
7343
|
], LookupComponent.prototype, "searchEmptyDescription", void 0);
|
|
@@ -8032,6 +8040,165 @@ EmptyStateModule = __decorate([
|
|
|
8032
8040
|
})
|
|
8033
8041
|
], EmptyStateModule);
|
|
8034
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
|
+
|
|
8035
8202
|
let FileUploadService = class FileUploadService {
|
|
8036
8203
|
constructor() {
|
|
8037
8204
|
this.BASE_URL_FIELD_CUSTOMIZATION = "platform/field_customization";
|
|
@@ -8351,7 +8518,7 @@ __decorate([
|
|
|
8351
8518
|
FileUploadComponent = FileUploadComponent_1 = __decorate([
|
|
8352
8519
|
Component({
|
|
8353
8520
|
selector: "s-file-upload",
|
|
8354
|
-
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",
|
|
8355
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}}"]
|
|
8356
8523
|
})
|
|
8357
8524
|
], FileUploadComponent);
|
|
@@ -8365,7 +8532,7 @@ FileUploadModule = __decorate([
|
|
|
8365
8532
|
CommonModule,
|
|
8366
8533
|
ButtonModule,
|
|
8367
8534
|
TooltipModule$1,
|
|
8368
|
-
ProgressBarModule
|
|
8535
|
+
ProgressBarModule,
|
|
8369
8536
|
TranslateModule,
|
|
8370
8537
|
],
|
|
8371
8538
|
providers: [FileUploadService],
|
|
@@ -10276,7 +10443,7 @@ let AutocompleteFieldComponent = class AutocompleteFieldComponent {
|
|
|
10276
10443
|
this.changeDetectorRef.detectChanges();
|
|
10277
10444
|
}
|
|
10278
10445
|
setInputRef() {
|
|
10279
|
-
this.inputRef = this.elementRef.nativeElement.querySelector(
|
|
10446
|
+
this.inputRef = this.elementRef.nativeElement.querySelector("input");
|
|
10280
10447
|
}
|
|
10281
10448
|
};
|
|
10282
10449
|
AutocompleteFieldComponent.ctorParameters = () => [
|
|
@@ -10291,7 +10458,7 @@ __decorate([
|
|
|
10291
10458
|
], AutocompleteFieldComponent.prototype, "formControl", void 0);
|
|
10292
10459
|
AutocompleteFieldComponent = __decorate([
|
|
10293
10460
|
Component({
|
|
10294
|
-
template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"
|
|
10461
|
+
template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\" [fieldContainerRef]=\"inputRef\"></s-field-label>\n\n<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 [placeholder]=\"field.placeholder\"\n [lookupSuggestions]=\"field.suggestions\"\n [dataKey]=\"field.dataKey\"\n (onLookupRequest)=\"field.onSearch($event)\"\n [lookupDisplayField]=\"field.displayField\"\n [showSearch]=\"false\"\n [lookupAppendTo]=\"field.appendTo\"\n (onSelect)=\"field.onSelect ? field.onSelect($event) : null\"\n (onUnselect)=\"field.onUnselect ? field.onUnselect($event) : null\"\n (onClear)=\"field.onClear ? field.onClear($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [lookupEmptyMessage]=\"field.emptyMessage\"\n >\n </s-lookup>\n</div>\n"
|
|
10295
10462
|
})
|
|
10296
10463
|
], AutocompleteFieldComponent);
|
|
10297
10464
|
|
|
@@ -18250,165 +18417,6 @@ ProductHeaderModule = __decorate([
|
|
|
18250
18417
|
})
|
|
18251
18418
|
], ProductHeaderModule);
|
|
18252
18419
|
|
|
18253
|
-
var ProgressBarColors;
|
|
18254
|
-
(function (ProgressBarColors) {
|
|
18255
|
-
ProgressBarColors["Blue"] = "blue";
|
|
18256
|
-
ProgressBarColors["Green"] = "green";
|
|
18257
|
-
ProgressBarColors["Red"] = "red";
|
|
18258
|
-
ProgressBarColors["Yellow"] = "yellow";
|
|
18259
|
-
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
18260
|
-
|
|
18261
|
-
var ProgressBarMode;
|
|
18262
|
-
(function (ProgressBarMode) {
|
|
18263
|
-
ProgressBarMode["Determinate"] = "determinate";
|
|
18264
|
-
ProgressBarMode["Indeterminate"] = "indeterminate";
|
|
18265
|
-
})(ProgressBarMode || (ProgressBarMode = {}));
|
|
18266
|
-
|
|
18267
|
-
let ProgressBarComponent = class ProgressBarComponent {
|
|
18268
|
-
constructor() {
|
|
18269
|
-
this.numberFormatOptions = {
|
|
18270
|
-
style: "decimal",
|
|
18271
|
-
minimumFractionDigits: 0,
|
|
18272
|
-
maximumFractionDigits: 2,
|
|
18273
|
-
roundingMode: "trunc",
|
|
18274
|
-
};
|
|
18275
|
-
this.showValue = true;
|
|
18276
|
-
this.mode = ProgressBarMode.Determinate;
|
|
18277
|
-
}
|
|
18278
|
-
ngOnInit() {
|
|
18279
|
-
this.validateInputs();
|
|
18280
|
-
}
|
|
18281
|
-
validateInputs() {
|
|
18282
|
-
if (this.value < 0 || this.value > 100) {
|
|
18283
|
-
throw new Error("Invalid value for value");
|
|
18284
|
-
}
|
|
18285
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
18286
|
-
throw new Error("Invalid value for targetValue");
|
|
18287
|
-
}
|
|
18288
|
-
if (this.mode === ProgressBarMode.Indeterminate && (this.value || this.targetValue || this.targetLabel)) {
|
|
18289
|
-
throw new Error("When the mode is indeterminate, the value, targetValue and targetLabel parameters are not expected.");
|
|
18290
|
-
}
|
|
18291
|
-
}
|
|
18292
|
-
};
|
|
18293
|
-
__decorate([
|
|
18294
|
-
Input()
|
|
18295
|
-
], ProgressBarComponent.prototype, "value", void 0);
|
|
18296
|
-
__decorate([
|
|
18297
|
-
Input()
|
|
18298
|
-
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
18299
|
-
__decorate([
|
|
18300
|
-
Input()
|
|
18301
|
-
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
18302
|
-
__decorate([
|
|
18303
|
-
Input()
|
|
18304
|
-
], ProgressBarComponent.prototype, "label", void 0);
|
|
18305
|
-
__decorate([
|
|
18306
|
-
Input()
|
|
18307
|
-
], ProgressBarComponent.prototype, "targetLabel", void 0);
|
|
18308
|
-
__decorate([
|
|
18309
|
-
Input()
|
|
18310
|
-
], ProgressBarComponent.prototype, "activeColor", void 0);
|
|
18311
|
-
__decorate([
|
|
18312
|
-
Input()
|
|
18313
|
-
], ProgressBarComponent.prototype, "showValue", void 0);
|
|
18314
|
-
__decorate([
|
|
18315
|
-
Input()
|
|
18316
|
-
], ProgressBarComponent.prototype, "mode", void 0);
|
|
18317
|
-
ProgressBarComponent = __decorate([
|
|
18318
|
-
Component({
|
|
18319
|
-
selector: "s-progressbar",
|
|
18320
|
-
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>",
|
|
18321
|
-
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}"]
|
|
18322
|
-
})
|
|
18323
|
-
], ProgressBarComponent);
|
|
18324
|
-
|
|
18325
|
-
let ProgressBarDeterminateComponent = class ProgressBarDeterminateComponent {
|
|
18326
|
-
constructor(localeService) {
|
|
18327
|
-
this.localeService = localeService;
|
|
18328
|
-
this.showValue = true;
|
|
18329
|
-
}
|
|
18330
|
-
ngOnInit() {
|
|
18331
|
-
this.validateValues();
|
|
18332
|
-
this.onGetLocale();
|
|
18333
|
-
}
|
|
18334
|
-
onGetLocale() {
|
|
18335
|
-
this.localeService.getLocale().subscribe({
|
|
18336
|
-
next: (locale) => {
|
|
18337
|
-
this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", this.numberFormatOptions);
|
|
18338
|
-
},
|
|
18339
|
-
error: () => {
|
|
18340
|
-
this.numberFormat = new Intl.NumberFormat("pt-BR", this.numberFormatOptions);
|
|
18341
|
-
},
|
|
18342
|
-
});
|
|
18343
|
-
}
|
|
18344
|
-
validateValues() {
|
|
18345
|
-
if (this.value < 0 || this.value > 100) {
|
|
18346
|
-
throw new Error("Invalid value for value");
|
|
18347
|
-
}
|
|
18348
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
18349
|
-
throw new Error("Invalid value for targetValue");
|
|
18350
|
-
}
|
|
18351
|
-
}
|
|
18352
|
-
};
|
|
18353
|
-
ProgressBarDeterminateComponent.ctorParameters = () => [
|
|
18354
|
-
{ type: LocaleService }
|
|
18355
|
-
];
|
|
18356
|
-
__decorate([
|
|
18357
|
-
Input()
|
|
18358
|
-
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
18359
|
-
__decorate([
|
|
18360
|
-
Input()
|
|
18361
|
-
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
18362
|
-
__decorate([
|
|
18363
|
-
Input()
|
|
18364
|
-
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
18365
|
-
__decorate([
|
|
18366
|
-
Input()
|
|
18367
|
-
], ProgressBarDeterminateComponent.prototype, "targetLabel", void 0);
|
|
18368
|
-
__decorate([
|
|
18369
|
-
Input()
|
|
18370
|
-
], ProgressBarDeterminateComponent.prototype, "activeColor", void 0);
|
|
18371
|
-
__decorate([
|
|
18372
|
-
Input()
|
|
18373
|
-
], ProgressBarDeterminateComponent.prototype, "showValue", void 0);
|
|
18374
|
-
ProgressBarDeterminateComponent = __decorate([
|
|
18375
|
-
Component({
|
|
18376
|
-
selector: "s-progressbar-determinate",
|
|
18377
|
-
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",
|
|
18378
|
-
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}"]
|
|
18379
|
-
})
|
|
18380
|
-
], ProgressBarDeterminateComponent);
|
|
18381
|
-
|
|
18382
|
-
let ProgressBarIndeterminateComponent = class ProgressBarIndeterminateComponent {
|
|
18383
|
-
};
|
|
18384
|
-
__decorate([
|
|
18385
|
-
Input()
|
|
18386
|
-
], ProgressBarIndeterminateComponent.prototype, "activeColor", void 0);
|
|
18387
|
-
__decorate([
|
|
18388
|
-
Input()
|
|
18389
|
-
], ProgressBarIndeterminateComponent.prototype, "label", void 0);
|
|
18390
|
-
ProgressBarIndeterminateComponent = __decorate([
|
|
18391
|
-
Component({
|
|
18392
|
-
selector: "s-progressbar-indeterminate",
|
|
18393
|
-
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",
|
|
18394
|
-
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%)}}"]
|
|
18395
|
-
})
|
|
18396
|
-
], ProgressBarIndeterminateComponent);
|
|
18397
|
-
|
|
18398
|
-
let ProgressBarModule = class ProgressBarModule {
|
|
18399
|
-
};
|
|
18400
|
-
ProgressBarModule = __decorate([
|
|
18401
|
-
NgModule({
|
|
18402
|
-
imports: [CommonModule],
|
|
18403
|
-
declarations: [
|
|
18404
|
-
ProgressBarComponent,
|
|
18405
|
-
ProgressBarDeterminateComponent,
|
|
18406
|
-
ProgressBarIndeterminateComponent,
|
|
18407
|
-
],
|
|
18408
|
-
exports: [ProgressBarComponent],
|
|
18409
|
-
})
|
|
18410
|
-
], ProgressBarModule);
|
|
18411
|
-
|
|
18412
18420
|
var RatingScaleComponent_1;
|
|
18413
18421
|
let RatingScaleComponent = RatingScaleComponent_1 = class RatingScaleComponent {
|
|
18414
18422
|
constructor() {
|
|
@@ -22438,5 +22446,5 @@ const fallback = {
|
|
|
22438
22446
|
* Generated bundle index. Do not edit.
|
|
22439
22447
|
*/
|
|
22440
22448
|
|
|
22441
|
-
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 };
|
|
22442
22450
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|