@seniorsistemas/angular-components 14.16.33 → 15.0.1

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.
Files changed (80) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +436 -133
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/file-upload/file-upload.component.d.ts +17 -33
  6. package/components/file-upload/index.d.ts +3 -2
  7. package/components/file-upload/models/file-dto.d.ts +11 -0
  8. package/components/file-upload/models/index.d.ts +2 -0
  9. package/components/file-upload/models/validate-errors.d.ts +4 -0
  10. package/components/timeline/components/horizontal-timeline/horizontal-timeline.component.d.ts +5 -0
  11. package/components/timeline/components/horizontal-timeline/horizontal-timeline.module.d.ts +2 -0
  12. package/components/timeline/components/timeline-icon-item/timeline-icon-item.component.d.ts +6 -0
  13. package/components/timeline/components/timeline-icon-item/timeline-icon-item.module.d.ts +2 -0
  14. package/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.d.ts +6 -0
  15. package/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.d.ts +10 -0
  16. package/components/timeline/components/vertical-timeline/components/range-line/range-line.component.d.ts +2 -0
  17. package/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.d.ts +7 -0
  18. package/components/timeline/components/vertical-timeline/vertical-timeline.component.d.ts +20 -0
  19. package/components/timeline/components/vertical-timeline/vertical-timeline.module.d.ts +2 -0
  20. package/components/timeline/index.d.ts +3 -2
  21. package/components/timeline/models/index.d.ts +3 -0
  22. package/components/timeline/models/timeline-item-severity.d.ts +5 -0
  23. package/components/timeline/models/timeline-item-size.d.ts +4 -0
  24. package/components/timeline/models/timeline-item.d.ts +25 -0
  25. package/components/timeline/timeline.component.d.ts +17 -17
  26. package/esm2015/components/file-upload/file-upload.component.js +49 -63
  27. package/esm2015/components/file-upload/file-upload.module.js +7 -2
  28. package/esm2015/components/file-upload/index.js +4 -3
  29. package/esm2015/components/file-upload/models/file-dto.js +1 -0
  30. package/esm2015/components/file-upload/models/index.js +2 -0
  31. package/esm2015/components/file-upload/models/validate-errors.js +6 -0
  32. package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +22 -0
  33. package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +21 -0
  34. package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +22 -0
  35. package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +19 -0
  36. package/esm2015/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +26 -0
  37. package/esm2015/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +35 -0
  38. package/esm2015/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +13 -0
  39. package/esm2015/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +25 -0
  40. package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.component.js +50 -0
  41. package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.module.js +29 -0
  42. package/esm2015/components/timeline/index.js +4 -3
  43. package/esm2015/components/timeline/models/index.js +4 -0
  44. package/esm2015/components/timeline/models/timeline-item-severity.js +7 -0
  45. package/esm2015/components/timeline/models/timeline-item-size.js +6 -0
  46. package/esm2015/components/timeline/models/timeline-item.js +36 -0
  47. package/esm2015/components/timeline/timeline.component.js +44 -61
  48. package/esm2015/components/timeline/timeline.module.js +17 -6
  49. package/esm2015/seniorsistemas-angular-components.js +17 -7
  50. package/esm5/components/file-upload/file-upload.component.js +65 -67
  51. package/esm5/components/file-upload/file-upload.module.js +7 -2
  52. package/esm5/components/file-upload/index.js +4 -3
  53. package/esm5/components/file-upload/models/file-dto.js +1 -0
  54. package/esm5/components/file-upload/models/index.js +2 -0
  55. package/esm5/components/file-upload/models/validate-errors.js +6 -0
  56. package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +23 -0
  57. package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +24 -0
  58. package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +25 -0
  59. package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +22 -0
  60. package/esm5/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +27 -0
  61. package/esm5/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +36 -0
  62. package/esm5/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +16 -0
  63. package/esm5/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +28 -0
  64. package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.component.js +55 -0
  65. package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.module.js +32 -0
  66. package/esm5/components/timeline/index.js +4 -3
  67. package/esm5/components/timeline/models/index.js +4 -0
  68. package/esm5/components/timeline/models/timeline-item-severity.js +7 -0
  69. package/esm5/components/timeline/models/timeline-item-size.js +6 -0
  70. package/esm5/components/timeline/models/timeline-item.js +38 -0
  71. package/esm5/components/timeline/timeline.component.js +45 -63
  72. package/esm5/components/timeline/timeline.module.js +17 -6
  73. package/esm5/seniorsistemas-angular-components.js +17 -7
  74. package/fesm2015/seniorsistemas-angular-components.js +377 -123
  75. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  76. package/fesm5/seniorsistemas-angular-components.js +420 -128
  77. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  78. package/package.json +1 -1
  79. package/seniorsistemas-angular-components.d.ts +16 -6
  80. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -2516,6 +2516,12 @@ EmptyStateModule = __decorate([
2516
2516
  })
2517
2517
  ], EmptyStateModule);
2518
2518
 
2519
+ var ValidateErrors;
2520
+ (function (ValidateErrors) {
2521
+ ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
2522
+ ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
2523
+ })(ValidateErrors || (ValidateErrors = {}));
2524
+
2519
2525
  const Breakpoints = {
2520
2526
  SM_MIN: 0,
2521
2527
  SM_MAX: 767,
@@ -2617,14 +2623,10 @@ class ExportUtils {
2617
2623
  }
2618
2624
 
2619
2625
  var FileUploadComponent_1;
2620
- var ValidateErrors;
2621
- (function (ValidateErrors) {
2622
- ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
2623
- ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
2624
- })(ValidateErrors || (ValidateErrors = {}));
2625
2626
  let FileUploadComponent = FileUploadComponent_1 = class FileUploadComponent {
2626
2627
  constructor(sanitizer) {
2627
2628
  this.sanitizer = sanitizer;
2629
+ this.inputValue = "";
2628
2630
  this.id = `s-file-upload-${FileUploadComponent_1.nextId++}`;
2629
2631
  this.chooseLabel = "Anexar arquivos";
2630
2632
  this.removeLabel = "Remover";
@@ -2637,11 +2639,9 @@ let FileUploadComponent = FileUploadComponent_1 = class FileUploadComponent {
2637
2639
  this.cancelUpload = new EventEmitter();
2638
2640
  this.downloadFile = new EventEmitter();
2639
2641
  this.validateErros = new EventEmitter();
2640
- this.uploadedFileCount = 0;
2641
2642
  this._files = [];
2642
2643
  this.ngUsubscribe = new Subject();
2643
2644
  }
2644
- ngOnInit() { }
2645
2645
  ngOnDestroy() {
2646
2646
  this.ngUsubscribe.next();
2647
2647
  this.ngUsubscribe.complete();
@@ -2652,87 +2652,78 @@ let FileUploadComponent = FileUploadComponent_1 = class FileUploadComponent {
2652
2652
  onResize() {
2653
2653
  this.update();
2654
2654
  }
2655
- update() {
2656
- const windowWidth = window.innerWidth;
2657
- this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
2658
- }
2659
2655
  onFileSelect(files) {
2660
- const previousFiles = [...this.files];
2656
+ const newFiles = [];
2661
2657
  if (!this.multiple) {
2662
2658
  this.files = [];
2663
2659
  }
2664
- if (this.fileLimit) {
2665
- this.uploadedFileCount += files.length;
2666
- if (this.isFileLimitExceeded()) {
2667
- this.uploadedFileCount -= this.files.length;
2668
- this.validateErros.emit(ValidateErrors.MAX_FILE_LIMIT);
2669
- return;
2670
- }
2660
+ if (this.isFileLimitExceeded(files)) {
2661
+ this.validateErros.emit(ValidateErrors.MAX_FILE_LIMIT);
2662
+ return;
2671
2663
  }
2672
- for (let i = 0; i < files.length; i++) {
2673
- const file = files[i];
2664
+ for (const file of files) {
2674
2665
  if (this.isFileSizeExceeded(file)) {
2675
2666
  this.validateErros.emit(ValidateErrors.MAX_FILE_SIZE);
2676
- this.files = previousFiles;
2677
2667
  return;
2678
2668
  }
2679
- else {
2680
- this.files.push(file);
2681
- }
2669
+ newFiles.push(file);
2682
2670
  }
2683
- if (this.hasFiles()) {
2684
- this.uploadHandler.emit({ files: this.files });
2671
+ if (newFiles.length) {
2672
+ this.files = this.files.concat(newFiles);
2673
+ this.uploadHandler.emit({
2674
+ files: newFiles,
2675
+ });
2685
2676
  this.inputUpload.nativeElement.value = "";
2686
2677
  }
2687
2678
  }
2688
- onRemoveFile(event, file) {
2689
- this.files.splice(this.files.indexOf(file), 1);
2690
- this.uploadedFileCount -= 1;
2691
- this.removeFile.emit({ file });
2692
- event.preventDefault();
2693
- }
2694
- onCancelUpload(event, index) {
2695
- this.uploadedFileCount -= 1;
2696
- this.files.splice(index, 1);
2697
- this.cancelUpload.emit(index);
2698
- event.preventDefault();
2679
+ onRemoveFile(file) {
2680
+ const fileIndex = this.files.indexOf(file);
2681
+ const removedFiles = this.files.splice(fileIndex, 1);
2682
+ if (removedFiles.length) {
2683
+ this.removeFile.emit({ file });
2684
+ }
2699
2685
  }
2700
- onDowloadFile(event, index) {
2701
- this.downloadFile.emit({ index, anchor: this.anchor });
2702
- event.preventDefault();
2686
+ onCancelUpload(index) {
2687
+ const removedFiles = this.files.splice(index, 1);
2688
+ if (removedFiles.length) {
2689
+ this.cancelUpload.emit(index);
2690
+ }
2703
2691
  }
2704
- hasFiles() {
2705
- return this.files && this.files.length > 0;
2692
+ onDowloadFile(index) {
2693
+ this.downloadFile.emit({
2694
+ index,
2695
+ anchor: this.anchor,
2696
+ });
2706
2697
  }
2707
2698
  set files(files) {
2708
- this._files = [];
2709
- for (let i = 0; i < files.length; i++) {
2710
- const file = files[i];
2699
+ this._files = files.map(file => {
2711
2700
  if (this.isImage(file)) {
2712
- file.objectURL = this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(files[i]));
2701
+ file.objectURL = this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(file));
2713
2702
  }
2714
- this._files.push(files[i]);
2715
- }
2703
+ return file;
2704
+ });
2716
2705
  }
2717
2706
  get files() {
2718
2707
  return this._files;
2719
2708
  }
2720
- getFileSize(size) {
2721
- return (size / 1024).toFixed(2);
2709
+ update() {
2710
+ const windowWidth = window.innerWidth;
2711
+ this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
2722
2712
  }
2723
2713
  isImage(file) {
2724
2714
  return /^image\//.test(file.type);
2725
2715
  }
2726
- defaltCatchError(err, index) {
2727
- this.files[index].error = err;
2728
- this.files[index].isUploading = false;
2729
- throw new Error("error in upload file. Details: " + err.message);
2730
- }
2731
- isFileLimitExceeded() {
2732
- return this.fileLimit && this.fileLimit < this.files.length + this.uploadedFileCount;
2716
+ isFileLimitExceeded(files) {
2717
+ if (!this.fileLimit) {
2718
+ return false;
2719
+ }
2720
+ return this.files.length + files.length > this.fileLimit;
2733
2721
  }
2734
2722
  isFileSizeExceeded(file) {
2735
- return this.maxFileSize && file.size > this.maxFileSize;
2723
+ if (!this.maxFileSize) {
2724
+ return false;
2725
+ }
2726
+ return file.size > this.maxFileSize;
2736
2727
  }
2737
2728
  };
2738
2729
  FileUploadComponent.nextId = 0;
@@ -2817,7 +2808,7 @@ __decorate([
2817
2808
  FileUploadComponent = FileUploadComponent_1 = __decorate([
2818
2809
  Component({
2819
2810
  selector: "s-file-upload",
2820
- template: "<div class=\"s-fileupload\" [id]=\"id\">\n <div class=\"s-fileupload-choose\">\n <input type=\"file\" name=\"file\" [accept]=\"accept\" [multiple]=\"multiple\"\n (change)=\"onFileSelect($event.dataTransfer ? $event.dataTransfer.files : $event.target.files)\" #inputUpload>\n <s-button [id]=\"id + 'upload-button'\" [label]=\"chooseLabel\" (onClick)=\"inputUpload.click()\" priority=\"primary\"\n [disabled]=\"disabled || !!formGroup?.disabled\" [auxiliary]=\"false\"></s-button>\n </div>\n\n <section [id]=\"id + 'fileupload-list'\" class=\"s-fileupload-list\" *ngIf=\"files.length\" 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 <ng-container\n *ngTemplateOutlet=\"file.savedFile || file.progress === 100 ? descriptionUrl : description; context: { $implicit: file, index: i }\">\n </ng-container>\n </div>\n <div class=\"s-fileupload-list-file-status\" role=\"gridcell\">\n <p-progressBar *ngIf=\"file.isUploading && !isSmallDevice\"\n [style]=\"{ 'width': '250px', 'background-color': '#d8d8d8', 'border-radius': '0px', 'height': '14px'}\"\n [value]=\"file.progress\" [showValue]=\"false\" role=\"alert\" [attr.aria-label]=\"ariaLabelProgress\">\n </p-progressBar>\n <span [id]=\"id + '-file-' + i + '-spin'\" class=\"fas fa-circle-notch fa-spin\"\n *ngIf=\"file.isUploading && isSmallDevice\" [attr.aria-label]=\"ariaLabelProgress\"></span>\n <span [id]=\"id + '-file-' + i + '-check'\" class=\"fas fa-check\" role=\"alert\"\n *ngIf=\"!file.isUploading && !file.error && file.progress === 100\"\n [attr.aria-label]=\"ariaLabelSuccess || successTooltip\" [pTooltip]=\"successTooltip\"\n tooltipPosition=\"top\" showDelay=\"500\" [appendTo]=\"'body'\"></span>\n <span [id]=\"id + '-file-' + i + '-error'\" class=\"fas fa-times\" role=\"alert\"\n *ngIf=\"file.error?.message\" [pTooltip]=\"file.error?.message\" tooltipPosition=\"top\"\n showDelay=\"500\" [appendTo]=\"'body'\"></span>\n </div>\n <div class=\"s-fileupload-list-file-actions\" role=\"gridcell\">\n <a [id]=\"id + '-file-' + i + '-cancel'\" class=\"s-fileupload-list-file-actions-action\"\n (click)=\"onCancelUpload($event, i)\" *ngIf=\"file.isUploading\">{{cancelLabel}}</a>\n <a role=\"button\" tabindex=\"0\" [id]=\"id + '-file-' + i + '-remove'\"\n class=\"s-fileupload-list-file-actions-action\" (click)=\"onRemoveFile($event, file)\"\n *ngIf=\"!file.isUploading && !(disabled || !!formGroup?.disabled)\" [attr.aria-label]=\"ariaLabelRemove || removeLabel\">{{removeLabel}}</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($event, i)\"\n [attr.aria-label]=\"ariaLabelFileName || file.name\">{{file.name}}</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",
2811
+ template: "<div\n [id]=\"id\"\n 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\n ? $event.dataTransfer.files\n : $event.target.files)\"> \n <s-button\n [id]=\"id + 'upload-button'\"\n [label]=\"chooseLabel\"\n (onClick)=\"inputUpload.click()\"\n priority=\"primary\"\n [disabled]=\"disabled || !!formGroup?.disabled\"\n [auxiliary]=\"false\">\n </s-button>\n </div>\n\n <section\n *ngIf=\"files.length\" \n [id]=\"id + 'fileupload-list'\"\n class=\"s-fileupload-list\"\n role=\"grid\">\n <ng-container *ngFor=\"let file of files; let i = index\">\n <div\n class=\"s-fileupload-list-file\"\n role=\"row\">\n <div\n [id]=\"id + '-file-' + i + '-name'\"\n class=\"s-fileupload-list-file-name\"\n role=\"gridcell\">\n <ng-container *ngTemplateOutlet=\"file.savedFile || file.progress === 100\n ? descriptionUrl\n : description; context: {\n $implicit: file,\n index: i\n }\">\n </ng-container>\n </div>\n <div\n class=\"s-fileupload-list-file-status\"\n role=\"gridcell\">\n <p-progressBar\n *ngIf=\"file.isUploading && !isSmallDevice\"\n [style]=\"{ 'width': '250px', 'background-color': '#d8d8d8', 'border-radius': '0px', 'height': '14px'}\"\n [value]=\"file.progress\"\n [showValue]=\"false\"\n role=\"alert\"\n [attr.aria-label]=\"ariaLabelProgress\">\n </p-progressBar>\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\">\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]=\"ariaLabelSuccess || successTooltip\"\n [pTooltip]=\"successTooltip\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n [appendTo]=\"'body'\">\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 </span>\n </div>\n <div\n class=\"s-fileupload-list-file-actions\"\n 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 {{cancelLabel}}\n </a>\n <a\n *ngIf=\"!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\">\n {{removeLabel}}\n </a>\n </div>\n </div>\n </ng-container>\n </section>\n</div>\n\n<ng-template\n #descriptionUrl\n let-file\n let-i = index>\n <a\n [id]=\"id + '-file-' + i + '-name-link'\"\n tabindex=\"0\"\n (click)=\"onDowloadFile(i)\"\n [attr.aria-label]=\"ariaLabelFileName || file.name\">{{file.name}}\n </a>\n <a\n style=\"display: none;\"\n [href]=\"file.objectURL\"\n target=\"_blank\"\n download\n #anchor>\n </a>\n</ng-template>\n\n<ng-template\n #description\n let-file>\n <span\n tabindex=\"0\"\n [attr.aria-label]=\"ariaLabelFileName || file.name\">\n {{file.name}}\n </span>\n</ng-template>\n",
2821
2812
  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{-ms-flex-item-align:center;-ms-grid-row-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>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}}"]
2822
2813
  })
2823
2814
  ], FileUploadComponent);
@@ -2827,7 +2818,12 @@ let FileUploadModule = class FileUploadModule {
2827
2818
  FileUploadModule = __decorate([
2828
2819
  NgModule({
2829
2820
  declarations: [FileUploadComponent],
2830
- imports: [CommonModule, ButtonModule, TooltipModule, ProgressBarModule],
2821
+ imports: [
2822
+ CommonModule,
2823
+ ButtonModule,
2824
+ TooltipModule,
2825
+ ProgressBarModule,
2826
+ ],
2831
2827
  exports: [FileUploadComponent],
2832
2828
  })
2833
2829
  ], FileUploadModule);
@@ -6835,91 +6831,349 @@ StepsModule = __decorate([
6835
6831
  })
6836
6832
  ], StepsModule);
6837
6833
 
6838
- var TimelineComponent_1;
6839
- let TimelineComponent = TimelineComponent_1 = class TimelineComponent {
6834
+ const HORIZONTAL = "horizontal";
6835
+ const VERTICAL = "vertical";
6836
+ const MIN_ITEM_SIZE = 200;
6837
+ let TimelineComponent = class TimelineComponent {
6840
6838
  constructor() {
6841
- this.id = `s-timeline-${TimelineComponent_1.nextId++}`;
6842
- this.activeIndex = 0;
6839
+ this.direction = HORIZONTAL;
6840
+ this.collapsable = true;
6841
+ this.counterLabel = "items";
6843
6842
  }
6844
- barAnimation(index, activeIndex) {
6845
- const visited = index < activeIndex;
6846
- const activated = index === activeIndex;
6847
- return visited || activated;
6843
+ get items() {
6844
+ return this._items;
6848
6845
  }
6849
- afterBarAnimation(index, activeIndex) {
6850
- const visited = index < activeIndex;
6851
- const activated = index === activeIndex - 1;
6852
- return visited || activated;
6846
+ set items(items) {
6847
+ this._items = items;
6848
+ this.checkDuplicateIds();
6853
6849
  }
6854
- get visibledStep() {
6855
- return this.steps.filter((step) => !step.hidden);
6850
+ ngOnInit() {
6851
+ this._innerWidth = window.innerWidth;
6852
+ }
6853
+ onResize(_) {
6854
+ this._innerWidth = window.innerWidth;
6855
+ }
6856
+ changeToVertical() {
6857
+ return this.direction === VERTICAL || this._innerWidth / this.items.length < MIN_ITEM_SIZE;
6858
+ }
6859
+ checkDuplicateIds() {
6860
+ const ids = this.items.map(item => {
6861
+ return item.id;
6862
+ });
6863
+ if ((new Set(ids)).size !== ids.length) {
6864
+ throw new Error("A duplicate id was found in the items list");
6865
+ }
6856
6866
  }
6857
6867
  };
6858
- TimelineComponent.nextId = 0;
6859
6868
  __decorate([
6860
6869
  Input()
6861
- ], TimelineComponent.prototype, "id", void 0);
6870
+ ], TimelineComponent.prototype, "items", null);
6862
6871
  __decorate([
6863
6872
  Input()
6864
- ], TimelineComponent.prototype, "steps", void 0);
6873
+ ], TimelineComponent.prototype, "activeIndex", void 0);
6865
6874
  __decorate([
6866
6875
  Input()
6867
- ], TimelineComponent.prototype, "activeIndex", void 0);
6868
- TimelineComponent = TimelineComponent_1 = __decorate([
6876
+ ], TimelineComponent.prototype, "direction", void 0);
6877
+ __decorate([
6878
+ Input()
6879
+ ], TimelineComponent.prototype, "collapsable", void 0);
6880
+ __decorate([
6881
+ Input()
6882
+ ], TimelineComponent.prototype, "counterLabel", void 0);
6883
+ __decorate([
6884
+ HostListener("window:resize", ["$event"])
6885
+ ], TimelineComponent.prototype, "onResize", null);
6886
+ TimelineComponent = __decorate([
6869
6887
  Component({
6870
6888
  selector: "s-timeline",
6871
- template: "<div [id]=\"id\" class=\"s-timeline-container\">\n <ng-container *ngFor=\"let step of visibledStep; let i = index; let isFirst = first; let isLast = last\">\n <div *ngIf=\"!isFirst\" class=\"s-timeline-progress-bar\"\n [@activeDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div [id]=\"id + '-step-' + (step.id || i)\" class=\"s-timeline-step-header\" role=\"tab\"\n tabindex=\"0\" [attr.aria-label]=\"step.ariaLabel || null\" [attr.aria-controls]=\"step.ariaControls\"\n [attr.aria-labelledby]=\"!step.ariaLabel ? 'step-label-' + i : null\" [attr.aria-posinset]=\"i + 1\"\n [attr.aria-setsize]=\"visibledStep.length\" [attr.aria-selected]=\"activeIndex == i\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\">\n <div *ngIf=\"!isFirst\"\n [@beforeActiveDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-before\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div *ngIf=\"!isLast\"\n [@afterActiveDesative]=\"afterBarAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-after\" [ngClass]=\"{\n 's-timeline-step-completed': ((i + 1) < activeIndex),\n 's-timeline-step-active': (i === (activeIndex - 1))\n }\"></div>\n <div\n class=\"s-timeline-index\"\n [pTooltip]=\"step.tooltip\"\n tooltipPosition=\"top\">\n <div class=\"s-timeline-index-content\">\n <span\n class=\"fas\"\n [ngClass]=\"step.stepIcon\"\n aria-hidden=\"true\"\n [attr.aria-label]=\"i + 1\"></span>\n </div>\n </div>\n <div\n [id]=\"'step-label-' + i\"\n class=\"s-timeline-label\">\n <span>\n {{step.label}}\n </span>\n </div>\n <div\n [id]=\"'step-help-label-' + i\"\n class=\"s-timeline-help-label\">\n <span>\n {{step.helpLabel}}\n </span>\n </div>\n </div>\n </ng-container>\n</div>\n",
6872
- host: {
6873
- "aria-orientation": "horizontal",
6874
- role: "tablist",
6875
- "tab-index": "0",
6876
- },
6877
- animations: [
6878
- trigger("beforeActiveDesative", [
6879
- state("active", style$7({
6880
- "background-position": "left bottom",
6881
- })),
6882
- state("desactive", style$7({
6883
- "background-position": "right bottom",
6884
- })),
6885
- transition("active => desactive", [animate("50ms 100ms linear")]),
6886
- transition("desactive => active", [animate("50ms 250ms linear")]),
6887
- ]),
6888
- trigger("activeDesative", [
6889
- state("active", style$7({
6890
- "background-position": "left bottom",
6891
- })),
6892
- state("desactive", style$7({
6893
- "background-position": "right bottom",
6894
- })),
6895
- transition("active => desactive", [animate("100ms 150ms linear")]),
6896
- transition("desactive => active", [animate("100ms 150ms linear")]),
6897
- ]),
6898
- trigger("afterActiveDesative", [
6899
- state("active", style$7({
6900
- "background-position": "left bottom",
6901
- })),
6902
- state("desactive", style$7({
6903
- "background-position": "right bottom",
6904
- })),
6905
- transition("active => desactive", [animate("50ms 250ms linear")]),
6906
- transition("desactive => active", [animate("50ms 100ms linear")]),
6907
- ]),
6908
- ],
6909
- styles: ["@keyframes scale-up-center{0%{transform:scale(.5)}100%{transform:scale(1)}}.s-timeline-container{display:-ms-flexbox;display:flex;white-space:nowrap;-ms-flex-align:start;align-items:flex-start;overflow:hidden;padding:15px 10px}.s-timeline-step-header{box-sizing:border-box;-ms-flex-direction:column;flex-direction:column;height:auto;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:72px;max-height:98px;min-width:60px;width:100%}.s-timeline-step-header .s-timeline-help-label,.s-timeline-step-header .s-timeline-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all;color:#999;font-size:14px;font-weight:400;padding-top:5px}.s-timeline-step-header .s-timeline-progress-bar-before{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;left:-10px}.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-completed{background-position:left bottom}.s-timeline-step-header .s-timeline-progress-bar-after{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;right:-10px}.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-completed{background-position:left bottom}.s-timeline-progress-bar{margin:0;position:relative;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:100%;background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%}.s-timeline-index{background-color:#697882;border:3px solid #697882;border-radius:50%;color:#fff;display:inline-block;font-weight:700;position:relative;transition:background-color .2s ease-out;height:46px;width:46px;-ms-flex:none;flex:none}.s-timeline-index .s-timeline-index-content{line-height:18px;font-size:18px;padding-top:8.5px;text-align:center;position:relative}.s-timeline-step-active .s-timeline-index,.s-timeline-step-completed .s-timeline-index{border-color:#0c9348;animation:.1s ease-out alternate scale-up-center;background-color:#0c9348}.s-timeline-step-active.s-timeline-progress-bar,.s-timeline-step-completed.s-timeline-progress-bar{background-position:left bottom}.s-timeline-step-active .s-timeline-label,.s-timeline-step-completed .s-timeline-label{color:#333;font-weight:700}@media (max-width:767px){.s-timeline-help-label,.s-timeline-label{display:none}}"]
6889
+ template: "<div *ngIf=\"changeToVertical(); then vertical else horizontal\"></div>\n\n<ng-template #horizontal>\n <s-horizontal-timeline\n [items]=\"items\"\n [activeIndex]=\"activeIndex\">\n </s-horizontal-timeline>\n</ng-template>\n\n<ng-template #vertical>\n <s-vertical-timeline\n [items]=\"items\"\n [activeIndex]=\"activeIndex\"\n [counterLabel]=\"counterLabel\"\n [collapsable]=\"collapsable\">\n </s-vertical-timeline>\n</ng-template>"
6910
6890
  })
6911
6891
  ], TimelineComponent);
6912
6892
 
6893
+ let TimelineIconItemComponent = class TimelineIconItemComponent {
6894
+ };
6895
+ __decorate([
6896
+ Input()
6897
+ ], TimelineIconItemComponent.prototype, "item", void 0);
6898
+ __decorate([
6899
+ Input()
6900
+ ], TimelineIconItemComponent.prototype, "isActive", void 0);
6901
+ __decorate([
6902
+ Input()
6903
+ ], TimelineIconItemComponent.prototype, "isComplete", void 0);
6904
+ TimelineIconItemComponent = __decorate([
6905
+ Component({
6906
+ selector: "s-timeline-icon-item",
6907
+ template: "<ng-container *ngIf=\"item\">\n <div\n class=\"timeline__icon-item\"\n [ngClass]=\"{\n 'timeline__icon-item--small': item.testSize('small'),\n 'timeline__icon-item--normal': item.testSize('normal'),\n 'timeline__icon-item--warning': item.testSeverity('warning'),\n 'timeline__icon-item--error': item.testSeverity('error'),\n 'timeline__icon-item--completed': isComplete,\n 'timeline__icon-item--active': isActive\n }\">\n <div\n class=\"timeline__icon-item__icon\"\n [pTooltip]=\"item.tooltip\"\n tooltipPosition=\"top\">\n <ng-content *ngIf=\"item.icon; then icon_content; else label_text_content\"></ng-content>\n <ng-template #icon_content>\n <span\n class=\"fas\"\n [ngClass]=\"item.icon\">\n </span>\n </ng-template>\n <ng-template #label_text_content>\n <span class=\"timeline__icon-item__icon__label\">\n {{ item.label }}\n </span>\n </ng-template>\n </div>\n </div>\n</ng-container>\n",
6908
+ styles: [".timeline__icon-item .timeline__icon-item__icon{-ms-flex-align:center;align-items:center;background-color:#697882;border-radius:50%;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;margin:4px;-webkit-user-select:none;-ms-user-select:none;user-select:none}.timeline__icon-item .timeline__icon-item__icon .timeline__icon-item__icon__label{font-family:\"Open Sans\",sans-serif}.timeline__icon-item.timeline__icon-item--small .timeline__icon-item__icon{font-size:0;height:16px;width:16px}.timeline__icon-item.timeline__icon-item--normal .timeline__icon-item__icon{font-size:10px;height:24px;padding:8px;width:24px}.timeline__icon-item.timeline__icon-item--normal .timeline__icon-item__icon .timeline__icon-item__icon__label{font-size:14px}.timeline__icon-item.timeline__icon-item--active .timeline__icon-item__icon{font-size:20px;height:40px;padding:10px;width:40px}.timeline__icon-item.timeline__icon-item--active .timeline__icon-item__icon .timeline__icon-item__icon__label{font-size:22px}.timeline__icon-item.timeline__icon-item--active .timeline__icon-item__icon,.timeline__icon-item.timeline__icon-item--completed .timeline__icon-item__icon{background-color:#0c9348}.timeline__icon-item.timeline__icon-item--warning.timeline__icon-item--active .timeline__icon-item__icon{background-color:#fcbf10;color:#333}.timeline__icon-item.timeline__icon-item--danger.timeline__icon-item--active .timeline__icon-item__icon{background-color:#f8931f;color:#333}.timeline__icon-item.timeline__icon-item--error.timeline__icon-item--active .timeline__icon-item__icon{background-color:#c13018}"]
6909
+ })
6910
+ ], TimelineIconItemComponent);
6911
+
6912
+ let TimelineItemModule = class TimelineItemModule {
6913
+ };
6914
+ TimelineItemModule = __decorate([
6915
+ NgModule({
6916
+ imports: [
6917
+ CommonModule,
6918
+ TooltipModule,
6919
+ ],
6920
+ declarations: [TimelineIconItemComponent],
6921
+ exports: [TimelineIconItemComponent],
6922
+ })
6923
+ ], TimelineItemModule);
6924
+
6925
+ let HorizontalTimelineComponent = class HorizontalTimelineComponent {
6926
+ constructor() {
6927
+ this.activeIndex = 0;
6928
+ }
6929
+ };
6930
+ __decorate([
6931
+ Input()
6932
+ ], HorizontalTimelineComponent.prototype, "items", void 0);
6933
+ __decorate([
6934
+ Input()
6935
+ ], HorizontalTimelineComponent.prototype, "activeIndex", void 0);
6936
+ HorizontalTimelineComponent = __decorate([
6937
+ Component({
6938
+ selector: "s-horizontal-timeline",
6939
+ template: "<div class=\"horizontal-timeline\">\n <ng-container\n *ngFor=\"let item of items;\n let i = index;\n let isFirst = first;\n let isLast = last\">\n <div\n class=\"horizontal-timeline__item\"\n [ngClass]=\"{\n 'horizontal-timeline__item--small': item.testSize('small'),\n 'horizontal-timeline__item--normal': item.testSize('normal'),\n 'horizontal-timeline__item--warning': item.testSeverity('warning'),\n 'horizontal-timeline__item--error': item.testSeverity('error'),\n 'horizontal-timeline__item--completed': i < activeIndex,\n 'horizontal-timeline__item--active': i === activeIndex\n }\">\n <div class=\"horizontal-timeline__item__icon-wrapper\">\n <div\n class=\"horizontal-timeline__item__icon-wrapper__line horizontal-timeline__item__icon-wrapper__line--before\"\n [ngStyle]=\"{ 'visibility': isFirst ? 'hidden' : 'visible' }\">\n </div>\n <s-timeline-icon-item\n [item]=\"item\"\n [isActive]=\"i === activeIndex\"\n [isComplete]=\"i < activeIndex\">\n </s-timeline-icon-item>\n <div\n class=\"horizontal-timeline__item__icon-wrapper__line horizontal-timeline__item__icon-wrapper__line--after\"\n [ngStyle]=\"{ 'visibility': isLast ? 'hidden' : 'visible' }\">\n </div>\n </div>\n <div class=\"horizontal-timeline__item__info\">\n <div\n class=\"horizontal-timeline__item__info__title\"\n [pTooltip]=\"item.title\"\n tooltipPosition=\"top\"\n [showDelay]=\"1000\">\n {{ item.title }}\n </div>\n <div\n class=\"horizontal-timeline__item__info__description\"\n [pTooltip]=\"item.description\"\n tooltipPosition=\"top\"\n [showDelay]=\"1000\">\n {{ item.description }}\n </div>\n </div>\n </div>\n </ng-container>\n</div>",
6940
+ styles: ["@keyframes scale-up-center{0%{transform:scale(.5)}100%{transform:scale(1)}}.horizontal-timeline{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.horizontal-timeline .horizontal-timeline__item{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;width:100%}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__icon-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:56px;-ms-flex-pack:start;justify-content:flex-start;width:100%}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line{background-color:#697882;height:3px}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line--before{border-radius:0 2px 2px 0}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line--after{border-radius:2px 0 0 2px}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__info{width:20ch}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__info .horizontal-timeline__item__info__title{color:#333;font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:700;line-height:150%;max-width:100%;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.horizontal-timeline .horizontal-timeline__item .horizontal-timeline__item__info .horizontal-timeline__item__info__description{color:#999;display:-webkit-box;font-family:\"Open Sans\",sans-serif;font-size:12px;font-weight:400;line-height:150%;max-height:calc(12px * 1.5 * 4);overflow:hidden;text-align:center;text-overflow:ellipsis;-webkit-line-clamp:4;-webkit-box-orient:vertical}.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--small .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line{width:calc(50% - 4px - 8px)}.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--normal .horizontal-timeline__item__icon-wrapper__line{width:calc(50% - 4px - 12px)}.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--active .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line{width:calc(50% - 4px - 20px)}.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--active .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line--before,.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--completed .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line--after,.horizontal-timeline .horizontal-timeline__item.horizontal-timeline__item--completed .horizontal-timeline__item__icon-wrapper .horizontal-timeline__item__icon-wrapper__line--before{background-color:#0c9348}"]
6941
+ })
6942
+ ], HorizontalTimelineComponent);
6943
+
6944
+ let HorizontalTimelineModule = class HorizontalTimelineModule {
6945
+ };
6946
+ HorizontalTimelineModule = __decorate([
6947
+ NgModule({
6948
+ imports: [
6949
+ CommonModule,
6950
+ TooltipModule,
6951
+ TimelineItemModule,
6952
+ ],
6953
+ declarations: [HorizontalTimelineComponent],
6954
+ exports: [HorizontalTimelineComponent],
6955
+ })
6956
+ ], HorizontalTimelineModule);
6957
+
6958
+ let VerticalTimelineComponent = class VerticalTimelineComponent {
6959
+ constructor() {
6960
+ this.isG1Collapsed = true;
6961
+ this.isG2Collapsed = true;
6962
+ }
6963
+ set activeIndex(index) {
6964
+ this._activeIndex = index;
6965
+ this.groupItems();
6966
+ }
6967
+ get activeIndex() {
6968
+ return this._activeIndex;
6969
+ }
6970
+ onChangeG1(event) {
6971
+ this.isG1Collapsed = event;
6972
+ }
6973
+ onChangeG2(event) {
6974
+ this.isG2Collapsed = event;
6975
+ }
6976
+ groupItems() {
6977
+ this.firstItem = this.activeIndex === 0 ? [] : [this.items[0]];
6978
+ this.g1Items = this.items.slice(1, this.activeIndex);
6979
+ this.activeItem = [this.items[this.activeIndex]];
6980
+ this.g2Items = this.items.slice(this.activeIndex + 1, this.items.length - 1);
6981
+ this.lastItem = this.activeIndex === this.items.length - 1 ? [] : [this.items[this.items.length - 1]];
6982
+ }
6983
+ };
6984
+ VerticalTimelineComponent.nextId = 0;
6985
+ __decorate([
6986
+ Input()
6987
+ ], VerticalTimelineComponent.prototype, "activeIndex", null);
6988
+ __decorate([
6989
+ Input()
6990
+ ], VerticalTimelineComponent.prototype, "items", void 0);
6991
+ __decorate([
6992
+ Input()
6993
+ ], VerticalTimelineComponent.prototype, "counterLabel", void 0);
6994
+ __decorate([
6995
+ Input()
6996
+ ], VerticalTimelineComponent.prototype, "collapsable", void 0);
6997
+ VerticalTimelineComponent = __decorate([
6998
+ Component({
6999
+ selector: "s-vertical-timeline",
7000
+ template: "<div class=\"vertical-timeline\">\n <div\n *ngIf=\"firstItem.length\"\n class=\"vertical-timeline__block\">\n <div class=\"vertical-timeline__block__prefix\"></div>\n <s-vertical-items\n [items]=\"firstItem\"\n [isLast]=\"false\"\n [isActive]=\"false\"\n [isCompleted]=\"true\">\n </s-vertical-items>\n </div>\n\n <div\n *ngIf=\"g1Items.length\"\n class=\"vertical-timeline__block\">\n <div class=\"vertical-timeline__block__prefix\">\n <ng-container *ngIf=\"g1Items.length > 1 && !isG1Collapsed\">\n <s-collapse-option\n *ngIf=\"collapsable\"\n [isCollapsed]=\"isG1Collapsed\"\n (change)=\"onChangeG1($event)\">\n </s-collapse-option>\n <s-range-line class=\"vertical-timeline__block__prefix__line\"></s-range-line>\n </ng-container>\n </div>\n\n <div *ngIf=\"isG1Collapsed && g1Items.length > 1 && collapsable; then g1_collapsed; else g1_items\"></div>\n\n <ng-template #g1_collapsed>\n <s-collapsed-items\n [items]=\"g1Items\"\n [(isCollapsed)]=\"isG1Collapsed\"\n [isCompleted]=\"true\"\n [counterLabel]=\"counterLabel\">\n </s-collapsed-items>\n </ng-template>\n\n <ng-template #g1_items>\n <s-vertical-items\n [items]=\"g1Items\"\n [isLast]=\"false\"\n [isActive]=\"false\"\n [isCompleted]=\"true\">\n </s-vertical-items>\n </ng-template>\n </div>\n\n <div\n *ngIf=\"activeItem.length\"\n class=\"vertical-timeline__block\">\n <div class=\"vertical-timeline__block__prefix\"></div>\n <s-vertical-items\n [items]=\"activeItem\"\n [isLast]=\"!lastItem.length\"\n [isActive]=\"true\"\n [isCompleted]=\"false\">\n </s-vertical-items>\n </div>\n\n <div\n *ngIf=\"g2Items.length\"\n class=\"vertical-timeline__block\">\n <div class=\"vertical-timeline__block__prefix\">\n <ng-container *ngIf=\"g2Items.length > 1 && !isG2Collapsed\">\n <s-collapse-option\n *ngIf=\"collapsable\"\n [isCollapsed]=\"isG2Collapsed\"\n (change)=\"onChangeG2($event)\">\n </s-collapse-option>\n <s-range-line class=\"vertical-timeline__block__prefix__line\"></s-range-line>\n </ng-container>\n </div>\n\n <div *ngIf=\"isG2Collapsed && g2Items.length > 1 && collapsable; then g2_collapsed; else g2_items\"></div>\n\n <ng-template #g2_collapsed>\n <s-collapsed-items\n [items]=\"g2Items\"\n [(isCollapsed)]=\"isG2Collapsed\"\n [isCompleted]=\"false\"\n [counterLabel]=\"counterLabel\">\n </s-collapsed-items>\n </ng-template>\n\n <ng-template #g2_items>\n <s-vertical-items\n [items]=\"g2Items\"\n [isLast]=\"false\"\n [isActive]=\"false\"\n [isCompleted]=\"false\">\n </s-vertical-items>\n </ng-template>\n </div>\n\n <div\n *ngIf=\"lastItem.length\"\n class=\"vertical-timeline__block\">\n <div class=\"vertical-timeline__block__prefix\"></div>\n <s-vertical-items\n [items]=\"lastItem\"\n [isLast]=\"true\"\n [isActive]=\"false\"\n [isCompleted]=\"false\">\n </s-vertical-items>\n </div>\n</div>",
7001
+ styles: [".vertical-timeline{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.vertical-timeline .vertical-timeline__block{display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch}.vertical-timeline .vertical-timeline__block .vertical-timeline__block__prefix{width:60px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0}.vertical-timeline .vertical-timeline__block .vertical-timeline__block__prefix .vertical-timeline__block__prefix__line{height:100%}"]
7002
+ })
7003
+ ], VerticalTimelineComponent);
7004
+
7005
+ let RangeLineComponent = class RangeLineComponent {
7006
+ };
7007
+ RangeLineComponent = __decorate([
7008
+ Component({
7009
+ selector: "s-range-line",
7010
+ template: "<div class=\"range-line\">\n <div class=\"range-line__horizontal\"></div>\n <div class=\"range-line__vertical\"></div>\n <div class=\"range-line__horizontal\"></div>\n</div>\n",
7011
+ styles: [".range-line{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:20px;height:100%}.range-line .range-line__horizontal{background-color:#ccc;height:3px;width:100%}.range-line .range-line__vertical{background-color:#ccc;height:100%;width:3px}s-range-line{background-color:#add8e6}"]
7012
+ })
7013
+ ], RangeLineComponent);
7014
+
7015
+ let CollapseOptionComponent = class CollapseOptionComponent {
7016
+ constructor() {
7017
+ this.isCollapsed = false;
7018
+ this.change = new EventEmitter();
7019
+ }
7020
+ onClick() {
7021
+ this.change.emit(!this.isCollapsed);
7022
+ }
7023
+ };
7024
+ __decorate([
7025
+ Input()
7026
+ ], CollapseOptionComponent.prototype, "isCollapsed", void 0);
7027
+ __decorate([
7028
+ Output()
7029
+ ], CollapseOptionComponent.prototype, "change", void 0);
7030
+ CollapseOptionComponent = __decorate([
7031
+ Component({
7032
+ selector: "s-collapse-option",
7033
+ template: "<div\n class=\"collapse-option\"\n (click)=\"onClick()\">\n <div class=\"collapse-option__icon\">\n <span\n class=\"fas\"\n [ngClass]=\"{\n 'fa-minus': !isCollapsed,\n 'fa-plus': isCollapsed\n }\">\n </span>\n </div>\n</div>",
7034
+ styles: [".collapse-option{-ms-flex-align:center;align-items:center;background-color:#428bca;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:24px;-ms-flex-pack:center;justify-content:center;margin:4px;width:24px}.collapse-option .collapse-option__icon{color:#fff}"]
7035
+ })
7036
+ ], CollapseOptionComponent);
7037
+
7038
+ let CollapsedItemsComponent = class CollapsedItemsComponent {
7039
+ constructor() {
7040
+ this.isCollapsedChange = new EventEmitter();
7041
+ }
7042
+ onChange(event) {
7043
+ this.isCollapsed = !this.isCollapsed;
7044
+ this.isCollapsedChange.emit(this.isCollapsed);
7045
+ }
7046
+ };
7047
+ __decorate([
7048
+ Input()
7049
+ ], CollapsedItemsComponent.prototype, "items", void 0);
7050
+ __decorate([
7051
+ Input()
7052
+ ], CollapsedItemsComponent.prototype, "isCollapsed", void 0);
7053
+ __decorate([
7054
+ Input()
7055
+ ], CollapsedItemsComponent.prototype, "isCompleted", void 0);
7056
+ __decorate([
7057
+ Input()
7058
+ ], CollapsedItemsComponent.prototype, "counterLabel", void 0);
7059
+ __decorate([
7060
+ Output()
7061
+ ], CollapsedItemsComponent.prototype, "isCollapsedChange", void 0);
7062
+ CollapsedItemsComponent = __decorate([
7063
+ Component({
7064
+ selector: "s-collapsed-items",
7065
+ template: "<div class=\"collapsed-items\">\n <div\n class=\"collapsed-items__item\"\n [ngClass]=\"{ 'collapsed-items__item--completed' : isCompleted }\">\n <div class=\"collapsed-items__item__icon-wrapper\">\n <s-collapse-option\n [isCollapsed]=\"isCollapsed\"\n (change)=\"onChange($event)\">\n </s-collapse-option>\n <div class=\"collapsed-items__item__icon-wrapper__line\"></div>\n </div>\n <div\n class=\"collapsed-items__item__info\"\n (click)=\"onChange(!isCollapsed)\">\n <div\n class=\"collapsed-items__item__info__description\">\n {{ items.length }} {{ counterLabel }}\n </div>\n </div>\n </div>\n</div>",
7066
+ styles: [".collapsed-items .collapsed-items__item{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex}.collapsed-items .collapsed-items__item .collapsed-items__item__icon-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-negative:0;flex-shrink:0;-ms-flex-pack:center;justify-content:center;width:56px}.collapsed-items .collapsed-items__item .collapsed-items__item__icon-wrapper .collapsed-items__item__icon-wrapper__line{background-color:#697882;border-radius:2px;-ms-flex-positive:1;flex-grow:1;min-height:20px;width:3px}.collapsed-items .collapsed-items__item .collapsed-items__item__info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;margin-bottom:20px;-webkit-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.collapsed-items .collapsed-items__item .collapsed-items__item__info .collapsed-items__item__info__description{color:#428bca;font-family:\"Open Sans\",sans-serif;font-size:12px;font-weight:400;line-height:150%}.collapsed-items .collapsed-items__item.collapsed-items__item--completed .collapsed-items__item__icon-wrapper .collapsed-items__item__icon-wrapper__line{background-color:#0c9348}"]
7067
+ })
7068
+ ], CollapsedItemsComponent);
7069
+
7070
+ let VerticalItemsComponent = class VerticalItemsComponent {
7071
+ };
7072
+ __decorate([
7073
+ Input()
7074
+ ], VerticalItemsComponent.prototype, "items", void 0);
7075
+ __decorate([
7076
+ Input()
7077
+ ], VerticalItemsComponent.prototype, "isLast", void 0);
7078
+ __decorate([
7079
+ Input()
7080
+ ], VerticalItemsComponent.prototype, "isActive", void 0);
7081
+ __decorate([
7082
+ Input()
7083
+ ], VerticalItemsComponent.prototype, "isCompleted", void 0);
7084
+ VerticalItemsComponent = __decorate([
7085
+ Component({
7086
+ selector: "s-vertical-items",
7087
+ template: "<div class=\"vertical-items\">\n <ng-container *ngFor=\"let item of items; let index = index;\">\n <div\n class=\"vertical-items__item\"\n [ngClass]=\"{\n 'vertical-items__item--small': item.testSize('small'),\n 'vertical-items__item--normal': item.testSize('normal'),\n 'vertical-items__item--completed': isCompleted,\n 'vertical-items__item--active': isActive\n }\">\n <div class=\"vertical-items__item__icon-wrapper\">\n <s-timeline-icon-item\n [item]=\"item\"\n [isComplete]=\"isCompleted\"\n [isActive]=\"isActive\">\n </s-timeline-icon-item>\n <div\n class=\"vertical-items__item__icon-wrapper__line\"\n [ngStyle]=\"{ 'visibility': isLast ? 'hidden' : 'visible' }\">\n </div>\n </div>\n <div class=\"vertical-items__item__info\">\n <div class=\"vertical-timeline__item__info__title\">\n {{ item.title }}\n </div>\n <div class=\"vertical-items__item__info__description\">\n {{ item.description }}\n </div>\n </div>\n </div>\n </ng-container>\n</div>",
7088
+ styles: [".vertical-items .vertical-items__item{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;margin-right:50px}.vertical-items .vertical-items__item .vertical-items__item__collapsed-option{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.vertical-items .vertical-items__item .vertical-items__item__collapsed-option .vertical-items__item__collapsed-option__line{width:3px;height:50px;background-color:#ccc}.vertical-items .vertical-items__item .vertical-items__item__icon-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-negative:0;flex-shrink:0;-ms-flex-pack:center;justify-content:center;width:56px}.vertical-items .vertical-items__item .vertical-items__item__icon-wrapper .vertical-items__item__icon-wrapper__line{background-color:#697882;border-radius:2px;-ms-flex-positive:1;flex-grow:1;min-height:20px;width:3px}.vertical-items .vertical-items__item .vertical-items__item__info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;margin-bottom:12px}.vertical-items .vertical-items__item .vertical-items__item__info .vertical-items__item__info__title{color:#333;font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:700;line-height:150%}.vertical-items .vertical-items__item .vertical-items__item__info .vertical-items__item__info__description{color:#999;font-family:\"Open Sans\",sans-serif;font-size:12px;font-weight:400;line-height:150%}.vertical-items .vertical-items__item .vertical-items__item__info .vertical-items__item__info__description.vertical-items__item__info__description--link{color:#428bca}.vertical-items .vertical-items__item.vertical-items__item--small .vertical-items__item__icon-wrapper__line{height:calc(100% - 4px - 8px)}.vertical-items .vertical-items__item.vertical-items__item--medium .vertical-items__item__icon-wrapper__line{height:calc(100% - 4px - 12px)}.vertical-items .vertical-items__item.vertical-items__item--big .vertical-items__item__icon-wrapper__line{height:calc(50% - 4px - 20px)}.vertical-items .vertical-items__item.vertical-items__item--completed .vertical-items__item__icon-wrapper .vertical-items__item__icon-wrapper__line{background-color:#0c9348}"]
7089
+ })
7090
+ ], VerticalItemsComponent);
7091
+
7092
+ let VerticalTimelineModule = class VerticalTimelineModule {
7093
+ };
7094
+ VerticalTimelineModule = __decorate([
7095
+ NgModule({
7096
+ imports: [
7097
+ CommonModule,
7098
+ TimelineItemModule,
7099
+ ],
7100
+ declarations: [
7101
+ VerticalTimelineComponent,
7102
+ RangeLineComponent,
7103
+ CollapseOptionComponent,
7104
+ CollapsedItemsComponent,
7105
+ VerticalItemsComponent,
7106
+ ],
7107
+ exports: [VerticalTimelineComponent],
7108
+ })
7109
+ ], VerticalTimelineModule);
7110
+
6913
7111
  let TimelineModule = class TimelineModule {
6914
7112
  };
6915
7113
  TimelineModule = __decorate([
6916
7114
  NgModule({
6917
- imports: [CommonModule, TooltipModule],
6918
- declarations: [TimelineComponent],
6919
- exports: [TimelineComponent],
7115
+ imports: [
7116
+ CommonModule,
7117
+ TimelineItemModule,
7118
+ HorizontalTimelineModule,
7119
+ VerticalTimelineModule,
7120
+ ],
7121
+ declarations: [
7122
+ TimelineComponent,
7123
+ ],
7124
+ exports: [
7125
+ TimelineComponent,
7126
+ ],
6920
7127
  })
6921
7128
  ], TimelineModule);
6922
7129
 
7130
+ var TimelineItemSeverity;
7131
+ (function (TimelineItemSeverity) {
7132
+ TimelineItemSeverity["Normal"] = "normal";
7133
+ TimelineItemSeverity["Warning"] = "warning";
7134
+ TimelineItemSeverity["Error"] = "error";
7135
+ })(TimelineItemSeverity || (TimelineItemSeverity = {}));
7136
+
7137
+ var TimelineItemSize;
7138
+ (function (TimelineItemSize) {
7139
+ TimelineItemSize["Normal"] = "normal";
7140
+ TimelineItemSize["Small"] = "small";
7141
+ })(TimelineItemSize || (TimelineItemSize = {}));
7142
+
7143
+ const LABEL_MAX_LENGTH = 2;
7144
+ class TimelineItem {
7145
+ constructor(params) {
7146
+ this.id = params.id;
7147
+ this.title = params.title;
7148
+ this.description = params.description;
7149
+ this.icon = params.icon;
7150
+ this.label = params.label;
7151
+ this.tooltip = params.tooltip;
7152
+ this.size = params.size || TimelineItemSize.Normal;
7153
+ this.severity = params.severity || TimelineItemSeverity.Normal;
7154
+ this.checkItemIconContent();
7155
+ }
7156
+ checkItemIconContent() {
7157
+ var _a;
7158
+ if (!this.icon && !this.label) {
7159
+ throw new Error("No icon or label string was passed for the item. Enter an icon or label text");
7160
+ }
7161
+ if (this.icon && this.label) {
7162
+ throw new Error("An icon and label string were passed to the item. Enter an icon or label text");
7163
+ }
7164
+ if (((_a = this.label) === null || _a === void 0 ? void 0 : _a.length) > LABEL_MAX_LENGTH) {
7165
+ throw new Error("Label text is expected to be a maximum of two characters long");
7166
+ }
7167
+ }
7168
+ testSize(value) {
7169
+ return this.size.valueOf() === value;
7170
+ }
7171
+ testSeverity(value) {
7172
+ var _a;
7173
+ return ((_a = this.severity) === null || _a === void 0 ? void 0 : _a.valueOf()) === value;
7174
+ }
7175
+ }
7176
+
6923
7177
  var TileComponent_1;
6924
7178
  let TileComponent = TileComponent_1 = class TileComponent {
6925
7179
  constructor() {
@@ -8670,5 +8924,5 @@ CodeEditorModule = __decorate([
8670
8924
  * Generated bundle index. Do not edit.
8671
8925
  */
8672
8926
 
8673
- export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵbb, StructureModule as ɵbc, HeaderComponent as ɵbd, FooterComponent as ɵbe, NumberLocaleOptions as ɵbf, ThumbnailService as ɵbg, InfiniteScrollModule as ɵbh, InfiniteScrollDirective as ɵbi, CustomTranslationsModule as ɵbj, CodeEditorComponent as ɵbk, CoreFacade as ɵbl, CodeMirror6Core as ɵbm, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy, BooleanSwitchFieldComponent as ɵz };
8927
+ export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵbb, StructureModule as ɵbc, HeaderComponent as ɵbd, FooterComponent as ɵbe, NumberLocaleOptions as ɵbf, ThumbnailService as ɵbg, TimelineItemModule as ɵbh, TimelineIconItemComponent as ɵbi, HorizontalTimelineModule as ɵbj, HorizontalTimelineComponent as ɵbk, VerticalTimelineModule as ɵbl, VerticalTimelineComponent as ɵbm, RangeLineComponent as ɵbn, CollapseOptionComponent as ɵbo, CollapsedItemsComponent as ɵbp, VerticalItemsComponent as ɵbq, InfiniteScrollModule as ɵbr, InfiniteScrollDirective as ɵbs, CustomTranslationsModule as ɵbt, CodeEditorComponent as ɵbu, CoreFacade as ɵbv, CodeMirror6Core as ɵbw, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy, BooleanSwitchFieldComponent as ɵz };
8674
8928
  //# sourceMappingURL=seniorsistemas-angular-components.js.map