@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';
|
|
@@ -7367,7 +7366,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
7367
7366
|
this.autocompleteForceSelection = true;
|
|
7368
7367
|
this.disabled = false;
|
|
7369
7368
|
this.showSearch = true;
|
|
7370
|
-
this.
|
|
7369
|
+
this._lookupAppendTo = "body";
|
|
7371
7370
|
this.searchFields = [];
|
|
7372
7371
|
this.showAddOption = false;
|
|
7373
7372
|
this.showEditOption = false;
|
|
@@ -7393,6 +7392,16 @@ var LookupComponent = /** @class */ (function () {
|
|
|
7393
7392
|
this.ngUnsubscribe = new Subject();
|
|
7394
7393
|
}
|
|
7395
7394
|
LookupComponent_1 = LookupComponent;
|
|
7395
|
+
Object.defineProperty(LookupComponent.prototype, "lookupAppendTo", {
|
|
7396
|
+
get: function () {
|
|
7397
|
+
return this._lookupAppendTo;
|
|
7398
|
+
},
|
|
7399
|
+
set: function (value) {
|
|
7400
|
+
this._lookupAppendTo = value !== null && value !== void 0 ? value : 'body';
|
|
7401
|
+
},
|
|
7402
|
+
enumerable: true,
|
|
7403
|
+
configurable: true
|
|
7404
|
+
});
|
|
7396
7405
|
LookupComponent.prototype.ngOnInit = function () {
|
|
7397
7406
|
var _this = this;
|
|
7398
7407
|
if (!this.searchGridFields) {
|
|
@@ -7545,10 +7554,13 @@ var LookupComponent = /** @class */ (function () {
|
|
|
7545
7554
|
this.dialogVisible = false;
|
|
7546
7555
|
this.collapsed = false;
|
|
7547
7556
|
this.hotkeysService.unpause(__spread(this.hotkeysService.pausedHotkeys));
|
|
7548
|
-
if (this.multiple)
|
|
7557
|
+
if (this.multiple) {
|
|
7549
7558
|
multiInputEL.nativeElement.focus();
|
|
7550
|
-
|
|
7559
|
+
}
|
|
7560
|
+
else {
|
|
7551
7561
|
inputEL.nativeElement.focus();
|
|
7562
|
+
}
|
|
7563
|
+
this.formGroupDialog.reset(this.originalFormValues);
|
|
7552
7564
|
};
|
|
7553
7565
|
LookupComponent.prototype.search = function () {
|
|
7554
7566
|
this.resetTable();
|
|
@@ -7784,7 +7796,7 @@ var LookupComponent = /** @class */ (function () {
|
|
|
7784
7796
|
], LookupComponent.prototype, "lookupEmptyMessage", void 0);
|
|
7785
7797
|
__decorate([
|
|
7786
7798
|
Input()
|
|
7787
|
-
], LookupComponent.prototype, "lookupAppendTo",
|
|
7799
|
+
], LookupComponent.prototype, "lookupAppendTo", null);
|
|
7788
7800
|
__decorate([
|
|
7789
7801
|
Input()
|
|
7790
7802
|
], LookupComponent.prototype, "searchEmptyDescription", void 0);
|
|
@@ -8502,6 +8514,174 @@ var EmptyStateModule = /** @class */ (function () {
|
|
|
8502
8514
|
return EmptyStateModule;
|
|
8503
8515
|
}());
|
|
8504
8516
|
|
|
8517
|
+
var ProgressBarColors;
|
|
8518
|
+
(function (ProgressBarColors) {
|
|
8519
|
+
ProgressBarColors["Blue"] = "blue";
|
|
8520
|
+
ProgressBarColors["Green"] = "green";
|
|
8521
|
+
ProgressBarColors["Red"] = "red";
|
|
8522
|
+
ProgressBarColors["Yellow"] = "yellow";
|
|
8523
|
+
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
8524
|
+
|
|
8525
|
+
var ProgressBarMode;
|
|
8526
|
+
(function (ProgressBarMode) {
|
|
8527
|
+
ProgressBarMode["Determinate"] = "determinate";
|
|
8528
|
+
ProgressBarMode["Indeterminate"] = "indeterminate";
|
|
8529
|
+
})(ProgressBarMode || (ProgressBarMode = {}));
|
|
8530
|
+
|
|
8531
|
+
var ProgressBarComponent = /** @class */ (function () {
|
|
8532
|
+
function ProgressBarComponent() {
|
|
8533
|
+
this.numberFormatOptions = {
|
|
8534
|
+
style: "decimal",
|
|
8535
|
+
minimumFractionDigits: 0,
|
|
8536
|
+
maximumFractionDigits: 2,
|
|
8537
|
+
roundingMode: "trunc",
|
|
8538
|
+
};
|
|
8539
|
+
this.showValue = true;
|
|
8540
|
+
this.mode = ProgressBarMode.Determinate;
|
|
8541
|
+
}
|
|
8542
|
+
ProgressBarComponent.prototype.ngOnInit = function () {
|
|
8543
|
+
this.validateInputs();
|
|
8544
|
+
};
|
|
8545
|
+
ProgressBarComponent.prototype.validateInputs = function () {
|
|
8546
|
+
if (this.value < 0 || this.value > 100) {
|
|
8547
|
+
throw new Error("Invalid value for value");
|
|
8548
|
+
}
|
|
8549
|
+
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
8550
|
+
throw new Error("Invalid value for targetValue");
|
|
8551
|
+
}
|
|
8552
|
+
if (this.mode === ProgressBarMode.Indeterminate && (this.value || this.targetValue || this.targetLabel)) {
|
|
8553
|
+
throw new Error("When the mode is indeterminate, the value, targetValue and targetLabel parameters are not expected.");
|
|
8554
|
+
}
|
|
8555
|
+
};
|
|
8556
|
+
__decorate([
|
|
8557
|
+
Input()
|
|
8558
|
+
], ProgressBarComponent.prototype, "value", void 0);
|
|
8559
|
+
__decorate([
|
|
8560
|
+
Input()
|
|
8561
|
+
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
8562
|
+
__decorate([
|
|
8563
|
+
Input()
|
|
8564
|
+
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
8565
|
+
__decorate([
|
|
8566
|
+
Input()
|
|
8567
|
+
], ProgressBarComponent.prototype, "label", void 0);
|
|
8568
|
+
__decorate([
|
|
8569
|
+
Input()
|
|
8570
|
+
], ProgressBarComponent.prototype, "targetLabel", void 0);
|
|
8571
|
+
__decorate([
|
|
8572
|
+
Input()
|
|
8573
|
+
], ProgressBarComponent.prototype, "activeColor", void 0);
|
|
8574
|
+
__decorate([
|
|
8575
|
+
Input()
|
|
8576
|
+
], ProgressBarComponent.prototype, "showValue", void 0);
|
|
8577
|
+
__decorate([
|
|
8578
|
+
Input()
|
|
8579
|
+
], ProgressBarComponent.prototype, "mode", void 0);
|
|
8580
|
+
ProgressBarComponent = __decorate([
|
|
8581
|
+
Component({
|
|
8582
|
+
selector: "s-progressbar",
|
|
8583
|
+
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>",
|
|
8584
|
+
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}"]
|
|
8585
|
+
})
|
|
8586
|
+
], ProgressBarComponent);
|
|
8587
|
+
return ProgressBarComponent;
|
|
8588
|
+
}());
|
|
8589
|
+
|
|
8590
|
+
var ProgressBarDeterminateComponent = /** @class */ (function () {
|
|
8591
|
+
function ProgressBarDeterminateComponent(localeService) {
|
|
8592
|
+
this.localeService = localeService;
|
|
8593
|
+
this.showValue = true;
|
|
8594
|
+
}
|
|
8595
|
+
ProgressBarDeterminateComponent.prototype.ngOnInit = function () {
|
|
8596
|
+
this.validateValues();
|
|
8597
|
+
this.onGetLocale();
|
|
8598
|
+
};
|
|
8599
|
+
ProgressBarDeterminateComponent.prototype.onGetLocale = function () {
|
|
8600
|
+
var _this = this;
|
|
8601
|
+
this.localeService.getLocale().subscribe({
|
|
8602
|
+
next: function (locale) {
|
|
8603
|
+
_this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", _this.numberFormatOptions);
|
|
8604
|
+
},
|
|
8605
|
+
error: function () {
|
|
8606
|
+
_this.numberFormat = new Intl.NumberFormat("pt-BR", _this.numberFormatOptions);
|
|
8607
|
+
},
|
|
8608
|
+
});
|
|
8609
|
+
};
|
|
8610
|
+
ProgressBarDeterminateComponent.prototype.validateValues = function () {
|
|
8611
|
+
if (this.value < 0 || this.value > 100) {
|
|
8612
|
+
throw new Error("Invalid value for value");
|
|
8613
|
+
}
|
|
8614
|
+
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
8615
|
+
throw new Error("Invalid value for targetValue");
|
|
8616
|
+
}
|
|
8617
|
+
};
|
|
8618
|
+
ProgressBarDeterminateComponent.ctorParameters = function () { return [
|
|
8619
|
+
{ type: LocaleService }
|
|
8620
|
+
]; };
|
|
8621
|
+
__decorate([
|
|
8622
|
+
Input()
|
|
8623
|
+
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
8624
|
+
__decorate([
|
|
8625
|
+
Input()
|
|
8626
|
+
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
8627
|
+
__decorate([
|
|
8628
|
+
Input()
|
|
8629
|
+
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
8630
|
+
__decorate([
|
|
8631
|
+
Input()
|
|
8632
|
+
], ProgressBarDeterminateComponent.prototype, "targetLabel", void 0);
|
|
8633
|
+
__decorate([
|
|
8634
|
+
Input()
|
|
8635
|
+
], ProgressBarDeterminateComponent.prototype, "activeColor", void 0);
|
|
8636
|
+
__decorate([
|
|
8637
|
+
Input()
|
|
8638
|
+
], ProgressBarDeterminateComponent.prototype, "showValue", void 0);
|
|
8639
|
+
ProgressBarDeterminateComponent = __decorate([
|
|
8640
|
+
Component({
|
|
8641
|
+
selector: "s-progressbar-determinate",
|
|
8642
|
+
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",
|
|
8643
|
+
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}"]
|
|
8644
|
+
})
|
|
8645
|
+
], ProgressBarDeterminateComponent);
|
|
8646
|
+
return ProgressBarDeterminateComponent;
|
|
8647
|
+
}());
|
|
8648
|
+
|
|
8649
|
+
var ProgressBarIndeterminateComponent = /** @class */ (function () {
|
|
8650
|
+
function ProgressBarIndeterminateComponent() {
|
|
8651
|
+
}
|
|
8652
|
+
__decorate([
|
|
8653
|
+
Input()
|
|
8654
|
+
], ProgressBarIndeterminateComponent.prototype, "activeColor", void 0);
|
|
8655
|
+
__decorate([
|
|
8656
|
+
Input()
|
|
8657
|
+
], ProgressBarIndeterminateComponent.prototype, "label", void 0);
|
|
8658
|
+
ProgressBarIndeterminateComponent = __decorate([
|
|
8659
|
+
Component({
|
|
8660
|
+
selector: "s-progressbar-indeterminate",
|
|
8661
|
+
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",
|
|
8662
|
+
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%)}}"]
|
|
8663
|
+
})
|
|
8664
|
+
], ProgressBarIndeterminateComponent);
|
|
8665
|
+
return ProgressBarIndeterminateComponent;
|
|
8666
|
+
}());
|
|
8667
|
+
|
|
8668
|
+
var ProgressBarModule = /** @class */ (function () {
|
|
8669
|
+
function ProgressBarModule() {
|
|
8670
|
+
}
|
|
8671
|
+
ProgressBarModule = __decorate([
|
|
8672
|
+
NgModule({
|
|
8673
|
+
imports: [CommonModule],
|
|
8674
|
+
declarations: [
|
|
8675
|
+
ProgressBarComponent,
|
|
8676
|
+
ProgressBarDeterminateComponent,
|
|
8677
|
+
ProgressBarIndeterminateComponent,
|
|
8678
|
+
],
|
|
8679
|
+
exports: [ProgressBarComponent],
|
|
8680
|
+
})
|
|
8681
|
+
], ProgressBarModule);
|
|
8682
|
+
return ProgressBarModule;
|
|
8683
|
+
}());
|
|
8684
|
+
|
|
8505
8685
|
var FileUploadService = /** @class */ (function () {
|
|
8506
8686
|
function FileUploadService() {
|
|
8507
8687
|
this.BASE_URL_FIELD_CUSTOMIZATION = "platform/field_customization";
|
|
@@ -8841,7 +9021,7 @@ var FileUploadComponent = /** @class */ (function () {
|
|
|
8841
9021
|
FileUploadComponent = FileUploadComponent_1 = __decorate([
|
|
8842
9022
|
Component({
|
|
8843
9023
|
selector: "s-file-upload",
|
|
8844
|
-
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 <
|
|
9024
|
+
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",
|
|
8845
9025
|
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}}"]
|
|
8846
9026
|
})
|
|
8847
9027
|
], FileUploadComponent);
|
|
@@ -8858,7 +9038,7 @@ var FileUploadModule = /** @class */ (function () {
|
|
|
8858
9038
|
CommonModule,
|
|
8859
9039
|
ButtonModule,
|
|
8860
9040
|
TooltipModule$1,
|
|
8861
|
-
ProgressBarModule
|
|
9041
|
+
ProgressBarModule,
|
|
8862
9042
|
TranslateModule,
|
|
8863
9043
|
],
|
|
8864
9044
|
providers: [FileUploadService],
|
|
@@ -10959,7 +11139,7 @@ var AutocompleteFieldComponent = /** @class */ (function () {
|
|
|
10959
11139
|
this.changeDetectorRef.detectChanges();
|
|
10960
11140
|
};
|
|
10961
11141
|
AutocompleteFieldComponent.prototype.setInputRef = function () {
|
|
10962
|
-
this.inputRef = this.elementRef.nativeElement.querySelector(
|
|
11142
|
+
this.inputRef = this.elementRef.nativeElement.querySelector("input");
|
|
10963
11143
|
};
|
|
10964
11144
|
AutocompleteFieldComponent.ctorParameters = function () { return [
|
|
10965
11145
|
{ type: ChangeDetectorRef },
|
|
@@ -10973,7 +11153,7 @@ var AutocompleteFieldComponent = /** @class */ (function () {
|
|
|
10973
11153
|
], AutocompleteFieldComponent.prototype, "formControl", void 0);
|
|
10974
11154
|
AutocompleteFieldComponent = __decorate([
|
|
10975
11155
|
Component({
|
|
10976
|
-
template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"
|
|
11156
|
+
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"
|
|
10977
11157
|
})
|
|
10978
11158
|
], AutocompleteFieldComponent);
|
|
10979
11159
|
return AutocompleteFieldComponent;
|
|
@@ -19519,174 +19699,6 @@ var ProductHeaderModule = /** @class */ (function () {
|
|
|
19519
19699
|
return ProductHeaderModule;
|
|
19520
19700
|
}());
|
|
19521
19701
|
|
|
19522
|
-
var ProgressBarColors;
|
|
19523
|
-
(function (ProgressBarColors) {
|
|
19524
|
-
ProgressBarColors["Blue"] = "blue";
|
|
19525
|
-
ProgressBarColors["Green"] = "green";
|
|
19526
|
-
ProgressBarColors["Red"] = "red";
|
|
19527
|
-
ProgressBarColors["Yellow"] = "yellow";
|
|
19528
|
-
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
19529
|
-
|
|
19530
|
-
var ProgressBarMode;
|
|
19531
|
-
(function (ProgressBarMode) {
|
|
19532
|
-
ProgressBarMode["Determinate"] = "determinate";
|
|
19533
|
-
ProgressBarMode["Indeterminate"] = "indeterminate";
|
|
19534
|
-
})(ProgressBarMode || (ProgressBarMode = {}));
|
|
19535
|
-
|
|
19536
|
-
var ProgressBarComponent = /** @class */ (function () {
|
|
19537
|
-
function ProgressBarComponent() {
|
|
19538
|
-
this.numberFormatOptions = {
|
|
19539
|
-
style: "decimal",
|
|
19540
|
-
minimumFractionDigits: 0,
|
|
19541
|
-
maximumFractionDigits: 2,
|
|
19542
|
-
roundingMode: "trunc",
|
|
19543
|
-
};
|
|
19544
|
-
this.showValue = true;
|
|
19545
|
-
this.mode = ProgressBarMode.Determinate;
|
|
19546
|
-
}
|
|
19547
|
-
ProgressBarComponent.prototype.ngOnInit = function () {
|
|
19548
|
-
this.validateInputs();
|
|
19549
|
-
};
|
|
19550
|
-
ProgressBarComponent.prototype.validateInputs = function () {
|
|
19551
|
-
if (this.value < 0 || this.value > 100) {
|
|
19552
|
-
throw new Error("Invalid value for value");
|
|
19553
|
-
}
|
|
19554
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
19555
|
-
throw new Error("Invalid value for targetValue");
|
|
19556
|
-
}
|
|
19557
|
-
if (this.mode === ProgressBarMode.Indeterminate && (this.value || this.targetValue || this.targetLabel)) {
|
|
19558
|
-
throw new Error("When the mode is indeterminate, the value, targetValue and targetLabel parameters are not expected.");
|
|
19559
|
-
}
|
|
19560
|
-
};
|
|
19561
|
-
__decorate([
|
|
19562
|
-
Input()
|
|
19563
|
-
], ProgressBarComponent.prototype, "value", void 0);
|
|
19564
|
-
__decorate([
|
|
19565
|
-
Input()
|
|
19566
|
-
], ProgressBarComponent.prototype, "numberFormatOptions", void 0);
|
|
19567
|
-
__decorate([
|
|
19568
|
-
Input()
|
|
19569
|
-
], ProgressBarComponent.prototype, "targetValue", void 0);
|
|
19570
|
-
__decorate([
|
|
19571
|
-
Input()
|
|
19572
|
-
], ProgressBarComponent.prototype, "label", void 0);
|
|
19573
|
-
__decorate([
|
|
19574
|
-
Input()
|
|
19575
|
-
], ProgressBarComponent.prototype, "targetLabel", void 0);
|
|
19576
|
-
__decorate([
|
|
19577
|
-
Input()
|
|
19578
|
-
], ProgressBarComponent.prototype, "activeColor", void 0);
|
|
19579
|
-
__decorate([
|
|
19580
|
-
Input()
|
|
19581
|
-
], ProgressBarComponent.prototype, "showValue", void 0);
|
|
19582
|
-
__decorate([
|
|
19583
|
-
Input()
|
|
19584
|
-
], ProgressBarComponent.prototype, "mode", void 0);
|
|
19585
|
-
ProgressBarComponent = __decorate([
|
|
19586
|
-
Component({
|
|
19587
|
-
selector: "s-progressbar",
|
|
19588
|
-
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>",
|
|
19589
|
-
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}"]
|
|
19590
|
-
})
|
|
19591
|
-
], ProgressBarComponent);
|
|
19592
|
-
return ProgressBarComponent;
|
|
19593
|
-
}());
|
|
19594
|
-
|
|
19595
|
-
var ProgressBarDeterminateComponent = /** @class */ (function () {
|
|
19596
|
-
function ProgressBarDeterminateComponent(localeService) {
|
|
19597
|
-
this.localeService = localeService;
|
|
19598
|
-
this.showValue = true;
|
|
19599
|
-
}
|
|
19600
|
-
ProgressBarDeterminateComponent.prototype.ngOnInit = function () {
|
|
19601
|
-
this.validateValues();
|
|
19602
|
-
this.onGetLocale();
|
|
19603
|
-
};
|
|
19604
|
-
ProgressBarDeterminateComponent.prototype.onGetLocale = function () {
|
|
19605
|
-
var _this = this;
|
|
19606
|
-
this.localeService.getLocale().subscribe({
|
|
19607
|
-
next: function (locale) {
|
|
19608
|
-
_this.numberFormat = new Intl.NumberFormat(locale !== null && locale !== void 0 ? locale : "pt-BR", _this.numberFormatOptions);
|
|
19609
|
-
},
|
|
19610
|
-
error: function () {
|
|
19611
|
-
_this.numberFormat = new Intl.NumberFormat("pt-BR", _this.numberFormatOptions);
|
|
19612
|
-
},
|
|
19613
|
-
});
|
|
19614
|
-
};
|
|
19615
|
-
ProgressBarDeterminateComponent.prototype.validateValues = function () {
|
|
19616
|
-
if (this.value < 0 || this.value > 100) {
|
|
19617
|
-
throw new Error("Invalid value for value");
|
|
19618
|
-
}
|
|
19619
|
-
if (this.targetValue < 0 || this.targetValue > 100) {
|
|
19620
|
-
throw new Error("Invalid value for targetValue");
|
|
19621
|
-
}
|
|
19622
|
-
};
|
|
19623
|
-
ProgressBarDeterminateComponent.ctorParameters = function () { return [
|
|
19624
|
-
{ type: LocaleService }
|
|
19625
|
-
]; };
|
|
19626
|
-
__decorate([
|
|
19627
|
-
Input()
|
|
19628
|
-
], ProgressBarDeterminateComponent.prototype, "value", void 0);
|
|
19629
|
-
__decorate([
|
|
19630
|
-
Input()
|
|
19631
|
-
], ProgressBarDeterminateComponent.prototype, "numberFormatOptions", void 0);
|
|
19632
|
-
__decorate([
|
|
19633
|
-
Input()
|
|
19634
|
-
], ProgressBarDeterminateComponent.prototype, "targetValue", void 0);
|
|
19635
|
-
__decorate([
|
|
19636
|
-
Input()
|
|
19637
|
-
], ProgressBarDeterminateComponent.prototype, "targetLabel", void 0);
|
|
19638
|
-
__decorate([
|
|
19639
|
-
Input()
|
|
19640
|
-
], ProgressBarDeterminateComponent.prototype, "activeColor", void 0);
|
|
19641
|
-
__decorate([
|
|
19642
|
-
Input()
|
|
19643
|
-
], ProgressBarDeterminateComponent.prototype, "showValue", void 0);
|
|
19644
|
-
ProgressBarDeterminateComponent = __decorate([
|
|
19645
|
-
Component({
|
|
19646
|
-
selector: "s-progressbar-determinate",
|
|
19647
|
-
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",
|
|
19648
|
-
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}"]
|
|
19649
|
-
})
|
|
19650
|
-
], ProgressBarDeterminateComponent);
|
|
19651
|
-
return ProgressBarDeterminateComponent;
|
|
19652
|
-
}());
|
|
19653
|
-
|
|
19654
|
-
var ProgressBarIndeterminateComponent = /** @class */ (function () {
|
|
19655
|
-
function ProgressBarIndeterminateComponent() {
|
|
19656
|
-
}
|
|
19657
|
-
__decorate([
|
|
19658
|
-
Input()
|
|
19659
|
-
], ProgressBarIndeterminateComponent.prototype, "activeColor", void 0);
|
|
19660
|
-
__decorate([
|
|
19661
|
-
Input()
|
|
19662
|
-
], ProgressBarIndeterminateComponent.prototype, "label", void 0);
|
|
19663
|
-
ProgressBarIndeterminateComponent = __decorate([
|
|
19664
|
-
Component({
|
|
19665
|
-
selector: "s-progressbar-indeterminate",
|
|
19666
|
-
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",
|
|
19667
|
-
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%)}}"]
|
|
19668
|
-
})
|
|
19669
|
-
], ProgressBarIndeterminateComponent);
|
|
19670
|
-
return ProgressBarIndeterminateComponent;
|
|
19671
|
-
}());
|
|
19672
|
-
|
|
19673
|
-
var ProgressBarModule = /** @class */ (function () {
|
|
19674
|
-
function ProgressBarModule() {
|
|
19675
|
-
}
|
|
19676
|
-
ProgressBarModule = __decorate([
|
|
19677
|
-
NgModule({
|
|
19678
|
-
imports: [CommonModule],
|
|
19679
|
-
declarations: [
|
|
19680
|
-
ProgressBarComponent,
|
|
19681
|
-
ProgressBarDeterminateComponent,
|
|
19682
|
-
ProgressBarIndeterminateComponent,
|
|
19683
|
-
],
|
|
19684
|
-
exports: [ProgressBarComponent],
|
|
19685
|
-
})
|
|
19686
|
-
], ProgressBarModule);
|
|
19687
|
-
return ProgressBarModule;
|
|
19688
|
-
}());
|
|
19689
|
-
|
|
19690
19702
|
var RatingScaleComponent = /** @class */ (function () {
|
|
19691
19703
|
function RatingScaleComponent() {
|
|
19692
19704
|
this.disabled = false;
|
|
@@ -24049,5 +24061,5 @@ var fallback = {
|
|
|
24049
24061
|
* Generated bundle index. Do not edit.
|
|
24050
24062
|
*/
|
|
24051
24063
|
|
|
24052
|
-
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,
|
|
24064
|
+
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 };
|
|
24053
24065
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|