@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
@@ -2702,6 +2702,12 @@ var EmptyStateModule = /** @class */ (function () {
2702
2702
  return EmptyStateModule;
2703
2703
  }());
2704
2704
 
2705
+ var ValidateErrors;
2706
+ (function (ValidateErrors) {
2707
+ ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
2708
+ ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
2709
+ })(ValidateErrors || (ValidateErrors = {}));
2710
+
2705
2711
  var Breakpoints = {
2706
2712
  SM_MIN: 0,
2707
2713
  SM_MAX: 767,
@@ -2808,14 +2814,10 @@ var ExportUtils = /** @class */ (function () {
2808
2814
  return ExportUtils;
2809
2815
  }());
2810
2816
 
2811
- var ValidateErrors;
2812
- (function (ValidateErrors) {
2813
- ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
2814
- ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
2815
- })(ValidateErrors || (ValidateErrors = {}));
2816
2817
  var FileUploadComponent = /** @class */ (function () {
2817
2818
  function FileUploadComponent(sanitizer) {
2818
2819
  this.sanitizer = sanitizer;
2820
+ this.inputValue = "";
2819
2821
  this.id = "s-file-upload-" + FileUploadComponent_1.nextId++;
2820
2822
  this.chooseLabel = "Anexar arquivos";
2821
2823
  this.removeLabel = "Remover";
@@ -2828,12 +2830,10 @@ var FileUploadComponent = /** @class */ (function () {
2828
2830
  this.cancelUpload = new EventEmitter();
2829
2831
  this.downloadFile = new EventEmitter();
2830
2832
  this.validateErros = new EventEmitter();
2831
- this.uploadedFileCount = 0;
2832
2833
  this._files = [];
2833
2834
  this.ngUsubscribe = new Subject();
2834
2835
  }
2835
2836
  FileUploadComponent_1 = FileUploadComponent;
2836
- FileUploadComponent.prototype.ngOnInit = function () { };
2837
2837
  FileUploadComponent.prototype.ngOnDestroy = function () {
2838
2838
  this.ngUsubscribe.next();
2839
2839
  this.ngUsubscribe.complete();
@@ -2844,91 +2844,94 @@ var FileUploadComponent = /** @class */ (function () {
2844
2844
  FileUploadComponent.prototype.onResize = function () {
2845
2845
  this.update();
2846
2846
  };
2847
- FileUploadComponent.prototype.update = function () {
2848
- var windowWidth = window.innerWidth;
2849
- this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
2850
- };
2851
2847
  FileUploadComponent.prototype.onFileSelect = function (files) {
2852
- var previousFiles = __spread(this.files);
2848
+ var e_1, _a;
2849
+ var newFiles = [];
2853
2850
  if (!this.multiple) {
2854
2851
  this.files = [];
2855
2852
  }
2856
- if (this.fileLimit) {
2857
- this.uploadedFileCount += files.length;
2858
- if (this.isFileLimitExceeded()) {
2859
- this.uploadedFileCount -= this.files.length;
2860
- this.validateErros.emit(ValidateErrors.MAX_FILE_LIMIT);
2861
- return;
2862
- }
2853
+ if (this.isFileLimitExceeded(files)) {
2854
+ this.validateErros.emit(ValidateErrors.MAX_FILE_LIMIT);
2855
+ return;
2863
2856
  }
2864
- for (var i = 0; i < files.length; i++) {
2865
- var file = files[i];
2866
- if (this.isFileSizeExceeded(file)) {
2867
- this.validateErros.emit(ValidateErrors.MAX_FILE_SIZE);
2868
- this.files = previousFiles;
2869
- return;
2857
+ try {
2858
+ for (var files_1 = __values(files), files_1_1 = files_1.next(); !files_1_1.done; files_1_1 = files_1.next()) {
2859
+ var file = files_1_1.value;
2860
+ if (this.isFileSizeExceeded(file)) {
2861
+ this.validateErros.emit(ValidateErrors.MAX_FILE_SIZE);
2862
+ return;
2863
+ }
2864
+ newFiles.push(file);
2870
2865
  }
2871
- else {
2872
- this.files.push(file);
2866
+ }
2867
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
2868
+ finally {
2869
+ try {
2870
+ if (files_1_1 && !files_1_1.done && (_a = files_1.return)) _a.call(files_1);
2873
2871
  }
2872
+ finally { if (e_1) throw e_1.error; }
2874
2873
  }
2875
- if (this.hasFiles()) {
2876
- this.uploadHandler.emit({ files: this.files });
2874
+ if (newFiles.length) {
2875
+ this.files = this.files.concat(newFiles);
2876
+ this.uploadHandler.emit({
2877
+ files: newFiles,
2878
+ });
2877
2879
  this.inputUpload.nativeElement.value = "";
2878
2880
  }
2879
2881
  };
2880
- FileUploadComponent.prototype.onRemoveFile = function (event, file) {
2881
- this.files.splice(this.files.indexOf(file), 1);
2882
- this.uploadedFileCount -= 1;
2883
- this.removeFile.emit({ file: file });
2884
- event.preventDefault();
2885
- };
2886
- FileUploadComponent.prototype.onCancelUpload = function (event, index) {
2887
- this.uploadedFileCount -= 1;
2888
- this.files.splice(index, 1);
2889
- this.cancelUpload.emit(index);
2890
- event.preventDefault();
2882
+ FileUploadComponent.prototype.onRemoveFile = function (file) {
2883
+ var fileIndex = this.files.indexOf(file);
2884
+ var removedFiles = this.files.splice(fileIndex, 1);
2885
+ if (removedFiles.length) {
2886
+ this.removeFile.emit({ file: file });
2887
+ }
2891
2888
  };
2892
- FileUploadComponent.prototype.onDowloadFile = function (event, index) {
2893
- this.downloadFile.emit({ index: index, anchor: this.anchor });
2894
- event.preventDefault();
2889
+ FileUploadComponent.prototype.onCancelUpload = function (index) {
2890
+ var removedFiles = this.files.splice(index, 1);
2891
+ if (removedFiles.length) {
2892
+ this.cancelUpload.emit(index);
2893
+ }
2895
2894
  };
2896
- FileUploadComponent.prototype.hasFiles = function () {
2897
- return this.files && this.files.length > 0;
2895
+ FileUploadComponent.prototype.onDowloadFile = function (index) {
2896
+ this.downloadFile.emit({
2897
+ index: index,
2898
+ anchor: this.anchor,
2899
+ });
2898
2900
  };
2899
2901
  Object.defineProperty(FileUploadComponent.prototype, "files", {
2900
2902
  get: function () {
2901
2903
  return this._files;
2902
2904
  },
2903
2905
  set: function (files) {
2904
- this._files = [];
2905
- for (var i = 0; i < files.length; i++) {
2906
- var file = files[i];
2907
- if (this.isImage(file)) {
2908
- file.objectURL = this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(files[i]));
2906
+ var _this = this;
2907
+ this._files = files.map(function (file) {
2908
+ if (_this.isImage(file)) {
2909
+ file.objectURL = _this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(file));
2909
2910
  }
2910
- this._files.push(files[i]);
2911
- }
2911
+ return file;
2912
+ });
2912
2913
  },
2913
2914
  enumerable: true,
2914
2915
  configurable: true
2915
2916
  });
2916
- FileUploadComponent.prototype.getFileSize = function (size) {
2917
- return (size / 1024).toFixed(2);
2917
+ FileUploadComponent.prototype.update = function () {
2918
+ var windowWidth = window.innerWidth;
2919
+ this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
2918
2920
  };
2919
2921
  FileUploadComponent.prototype.isImage = function (file) {
2920
2922
  return /^image\//.test(file.type);
2921
2923
  };
2922
- FileUploadComponent.prototype.defaltCatchError = function (err, index) {
2923
- this.files[index].error = err;
2924
- this.files[index].isUploading = false;
2925
- throw new Error("error in upload file. Details: " + err.message);
2926
- };
2927
- FileUploadComponent.prototype.isFileLimitExceeded = function () {
2928
- return this.fileLimit && this.fileLimit < this.files.length + this.uploadedFileCount;
2924
+ FileUploadComponent.prototype.isFileLimitExceeded = function (files) {
2925
+ if (!this.fileLimit) {
2926
+ return false;
2927
+ }
2928
+ return this.files.length + files.length > this.fileLimit;
2929
2929
  };
2930
2930
  FileUploadComponent.prototype.isFileSizeExceeded = function (file) {
2931
- return this.maxFileSize && file.size > this.maxFileSize;
2931
+ if (!this.maxFileSize) {
2932
+ return false;
2933
+ }
2934
+ return file.size > this.maxFileSize;
2932
2935
  };
2933
2936
  var FileUploadComponent_1;
2934
2937
  FileUploadComponent.nextId = 0;
@@ -3013,7 +3016,7 @@ var FileUploadComponent = /** @class */ (function () {
3013
3016
  FileUploadComponent = FileUploadComponent_1 = __decorate([
3014
3017
  Component({
3015
3018
  selector: "s-file-upload",
3016
- 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",
3019
+ 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",
3017
3020
  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}}"]
3018
3021
  })
3019
3022
  ], FileUploadComponent);
@@ -3026,7 +3029,12 @@ var FileUploadModule = /** @class */ (function () {
3026
3029
  FileUploadModule = __decorate([
3027
3030
  NgModule({
3028
3031
  declarations: [FileUploadComponent],
3029
- imports: [CommonModule, ButtonModule, TooltipModule, ProgressBarModule],
3032
+ imports: [
3033
+ CommonModule,
3034
+ ButtonModule,
3035
+ TooltipModule,
3036
+ ProgressBarModule,
3037
+ ],
3030
3038
  exports: [FileUploadComponent],
3031
3039
  })
3032
3040
  ], FileUploadModule);
@@ -7370,100 +7378,384 @@ var StepsModule = /** @class */ (function () {
7370
7378
  return StepsModule;
7371
7379
  }());
7372
7380
 
7381
+ var HORIZONTAL = "horizontal";
7382
+ var VERTICAL = "vertical";
7383
+ var MIN_ITEM_SIZE = 200;
7373
7384
  var TimelineComponent = /** @class */ (function () {
7374
7385
  function TimelineComponent() {
7375
- this.id = "s-timeline-" + TimelineComponent_1.nextId++;
7376
- this.activeIndex = 0;
7386
+ this.direction = HORIZONTAL;
7387
+ this.collapsable = true;
7388
+ this.counterLabel = "items";
7377
7389
  }
7378
- TimelineComponent_1 = TimelineComponent;
7379
- TimelineComponent.prototype.barAnimation = function (index, activeIndex) {
7380
- var visited = index < activeIndex;
7381
- var activated = index === activeIndex;
7382
- return visited || activated;
7383
- };
7384
- TimelineComponent.prototype.afterBarAnimation = function (index, activeIndex) {
7385
- var visited = index < activeIndex;
7386
- var activated = index === activeIndex - 1;
7387
- return visited || activated;
7388
- };
7389
- Object.defineProperty(TimelineComponent.prototype, "visibledStep", {
7390
+ Object.defineProperty(TimelineComponent.prototype, "items", {
7390
7391
  get: function () {
7391
- return this.steps.filter(function (step) { return !step.hidden; });
7392
+ return this._items;
7393
+ },
7394
+ set: function (items) {
7395
+ this._items = items;
7396
+ this.checkDuplicateIds();
7392
7397
  },
7393
7398
  enumerable: true,
7394
7399
  configurable: true
7395
7400
  });
7396
- var TimelineComponent_1;
7397
- TimelineComponent.nextId = 0;
7401
+ TimelineComponent.prototype.ngOnInit = function () {
7402
+ this._innerWidth = window.innerWidth;
7403
+ };
7404
+ TimelineComponent.prototype.onResize = function (_) {
7405
+ this._innerWidth = window.innerWidth;
7406
+ };
7407
+ TimelineComponent.prototype.changeToVertical = function () {
7408
+ return this.direction === VERTICAL || this._innerWidth / this.items.length < MIN_ITEM_SIZE;
7409
+ };
7410
+ TimelineComponent.prototype.checkDuplicateIds = function () {
7411
+ var ids = this.items.map(function (item) {
7412
+ return item.id;
7413
+ });
7414
+ if ((new Set(ids)).size !== ids.length) {
7415
+ throw new Error("A duplicate id was found in the items list");
7416
+ }
7417
+ };
7398
7418
  __decorate([
7399
7419
  Input()
7400
- ], TimelineComponent.prototype, "id", void 0);
7420
+ ], TimelineComponent.prototype, "items", null);
7401
7421
  __decorate([
7402
7422
  Input()
7403
- ], TimelineComponent.prototype, "steps", void 0);
7423
+ ], TimelineComponent.prototype, "activeIndex", void 0);
7404
7424
  __decorate([
7405
7425
  Input()
7406
- ], TimelineComponent.prototype, "activeIndex", void 0);
7407
- TimelineComponent = TimelineComponent_1 = __decorate([
7426
+ ], TimelineComponent.prototype, "direction", void 0);
7427
+ __decorate([
7428
+ Input()
7429
+ ], TimelineComponent.prototype, "collapsable", void 0);
7430
+ __decorate([
7431
+ Input()
7432
+ ], TimelineComponent.prototype, "counterLabel", void 0);
7433
+ __decorate([
7434
+ HostListener("window:resize", ["$event"])
7435
+ ], TimelineComponent.prototype, "onResize", null);
7436
+ TimelineComponent = __decorate([
7408
7437
  Component({
7409
7438
  selector: "s-timeline",
7410
- 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",
7411
- host: {
7412
- "aria-orientation": "horizontal",
7413
- role: "tablist",
7414
- "tab-index": "0",
7415
- },
7416
- animations: [
7417
- trigger("beforeActiveDesative", [
7418
- state("active", style$7({
7419
- "background-position": "left bottom",
7420
- })),
7421
- state("desactive", style$7({
7422
- "background-position": "right bottom",
7423
- })),
7424
- transition("active => desactive", [animate("50ms 100ms linear")]),
7425
- transition("desactive => active", [animate("50ms 250ms linear")]),
7426
- ]),
7427
- trigger("activeDesative", [
7428
- state("active", style$7({
7429
- "background-position": "left bottom",
7430
- })),
7431
- state("desactive", style$7({
7432
- "background-position": "right bottom",
7433
- })),
7434
- transition("active => desactive", [animate("100ms 150ms linear")]),
7435
- transition("desactive => active", [animate("100ms 150ms linear")]),
7436
- ]),
7437
- trigger("afterActiveDesative", [
7438
- state("active", style$7({
7439
- "background-position": "left bottom",
7440
- })),
7441
- state("desactive", style$7({
7442
- "background-position": "right bottom",
7443
- })),
7444
- transition("active => desactive", [animate("50ms 250ms linear")]),
7445
- transition("desactive => active", [animate("50ms 100ms linear")]),
7446
- ]),
7447
- ],
7448
- 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}}"]
7439
+ 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>"
7449
7440
  })
7450
7441
  ], TimelineComponent);
7451
7442
  return TimelineComponent;
7452
7443
  }());
7453
7444
 
7445
+ var TimelineIconItemComponent = /** @class */ (function () {
7446
+ function TimelineIconItemComponent() {
7447
+ }
7448
+ __decorate([
7449
+ Input()
7450
+ ], TimelineIconItemComponent.prototype, "item", void 0);
7451
+ __decorate([
7452
+ Input()
7453
+ ], TimelineIconItemComponent.prototype, "isActive", void 0);
7454
+ __decorate([
7455
+ Input()
7456
+ ], TimelineIconItemComponent.prototype, "isComplete", void 0);
7457
+ TimelineIconItemComponent = __decorate([
7458
+ Component({
7459
+ selector: "s-timeline-icon-item",
7460
+ 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",
7461
+ 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}"]
7462
+ })
7463
+ ], TimelineIconItemComponent);
7464
+ return TimelineIconItemComponent;
7465
+ }());
7466
+
7467
+ var TimelineItemModule = /** @class */ (function () {
7468
+ function TimelineItemModule() {
7469
+ }
7470
+ TimelineItemModule = __decorate([
7471
+ NgModule({
7472
+ imports: [
7473
+ CommonModule,
7474
+ TooltipModule,
7475
+ ],
7476
+ declarations: [TimelineIconItemComponent],
7477
+ exports: [TimelineIconItemComponent],
7478
+ })
7479
+ ], TimelineItemModule);
7480
+ return TimelineItemModule;
7481
+ }());
7482
+
7483
+ var HorizontalTimelineComponent = /** @class */ (function () {
7484
+ function HorizontalTimelineComponent() {
7485
+ this.activeIndex = 0;
7486
+ }
7487
+ __decorate([
7488
+ Input()
7489
+ ], HorizontalTimelineComponent.prototype, "items", void 0);
7490
+ __decorate([
7491
+ Input()
7492
+ ], HorizontalTimelineComponent.prototype, "activeIndex", void 0);
7493
+ HorizontalTimelineComponent = __decorate([
7494
+ Component({
7495
+ selector: "s-horizontal-timeline",
7496
+ 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>",
7497
+ 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}"]
7498
+ })
7499
+ ], HorizontalTimelineComponent);
7500
+ return HorizontalTimelineComponent;
7501
+ }());
7502
+
7503
+ var HorizontalTimelineModule = /** @class */ (function () {
7504
+ function HorizontalTimelineModule() {
7505
+ }
7506
+ HorizontalTimelineModule = __decorate([
7507
+ NgModule({
7508
+ imports: [
7509
+ CommonModule,
7510
+ TooltipModule,
7511
+ TimelineItemModule,
7512
+ ],
7513
+ declarations: [HorizontalTimelineComponent],
7514
+ exports: [HorizontalTimelineComponent],
7515
+ })
7516
+ ], HorizontalTimelineModule);
7517
+ return HorizontalTimelineModule;
7518
+ }());
7519
+
7520
+ var VerticalTimelineComponent = /** @class */ (function () {
7521
+ function VerticalTimelineComponent() {
7522
+ this.isG1Collapsed = true;
7523
+ this.isG2Collapsed = true;
7524
+ }
7525
+ Object.defineProperty(VerticalTimelineComponent.prototype, "activeIndex", {
7526
+ get: function () {
7527
+ return this._activeIndex;
7528
+ },
7529
+ set: function (index) {
7530
+ this._activeIndex = index;
7531
+ this.groupItems();
7532
+ },
7533
+ enumerable: true,
7534
+ configurable: true
7535
+ });
7536
+ VerticalTimelineComponent.prototype.onChangeG1 = function (event) {
7537
+ this.isG1Collapsed = event;
7538
+ };
7539
+ VerticalTimelineComponent.prototype.onChangeG2 = function (event) {
7540
+ this.isG2Collapsed = event;
7541
+ };
7542
+ VerticalTimelineComponent.prototype.groupItems = function () {
7543
+ this.firstItem = this.activeIndex === 0 ? [] : [this.items[0]];
7544
+ this.g1Items = this.items.slice(1, this.activeIndex);
7545
+ this.activeItem = [this.items[this.activeIndex]];
7546
+ this.g2Items = this.items.slice(this.activeIndex + 1, this.items.length - 1);
7547
+ this.lastItem = this.activeIndex === this.items.length - 1 ? [] : [this.items[this.items.length - 1]];
7548
+ };
7549
+ VerticalTimelineComponent.nextId = 0;
7550
+ __decorate([
7551
+ Input()
7552
+ ], VerticalTimelineComponent.prototype, "activeIndex", null);
7553
+ __decorate([
7554
+ Input()
7555
+ ], VerticalTimelineComponent.prototype, "items", void 0);
7556
+ __decorate([
7557
+ Input()
7558
+ ], VerticalTimelineComponent.prototype, "counterLabel", void 0);
7559
+ __decorate([
7560
+ Input()
7561
+ ], VerticalTimelineComponent.prototype, "collapsable", void 0);
7562
+ VerticalTimelineComponent = __decorate([
7563
+ Component({
7564
+ selector: "s-vertical-timeline",
7565
+ 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>",
7566
+ 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%}"]
7567
+ })
7568
+ ], VerticalTimelineComponent);
7569
+ return VerticalTimelineComponent;
7570
+ }());
7571
+
7572
+ var RangeLineComponent = /** @class */ (function () {
7573
+ function RangeLineComponent() {
7574
+ }
7575
+ RangeLineComponent = __decorate([
7576
+ Component({
7577
+ selector: "s-range-line",
7578
+ 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",
7579
+ 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}"]
7580
+ })
7581
+ ], RangeLineComponent);
7582
+ return RangeLineComponent;
7583
+ }());
7584
+
7585
+ var CollapseOptionComponent = /** @class */ (function () {
7586
+ function CollapseOptionComponent() {
7587
+ this.isCollapsed = false;
7588
+ this.change = new EventEmitter();
7589
+ }
7590
+ CollapseOptionComponent.prototype.onClick = function () {
7591
+ this.change.emit(!this.isCollapsed);
7592
+ };
7593
+ __decorate([
7594
+ Input()
7595
+ ], CollapseOptionComponent.prototype, "isCollapsed", void 0);
7596
+ __decorate([
7597
+ Output()
7598
+ ], CollapseOptionComponent.prototype, "change", void 0);
7599
+ CollapseOptionComponent = __decorate([
7600
+ Component({
7601
+ selector: "s-collapse-option",
7602
+ 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>",
7603
+ 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}"]
7604
+ })
7605
+ ], CollapseOptionComponent);
7606
+ return CollapseOptionComponent;
7607
+ }());
7608
+
7609
+ var CollapsedItemsComponent = /** @class */ (function () {
7610
+ function CollapsedItemsComponent() {
7611
+ this.isCollapsedChange = new EventEmitter();
7612
+ }
7613
+ CollapsedItemsComponent.prototype.onChange = function (event) {
7614
+ this.isCollapsed = !this.isCollapsed;
7615
+ this.isCollapsedChange.emit(this.isCollapsed);
7616
+ };
7617
+ __decorate([
7618
+ Input()
7619
+ ], CollapsedItemsComponent.prototype, "items", void 0);
7620
+ __decorate([
7621
+ Input()
7622
+ ], CollapsedItemsComponent.prototype, "isCollapsed", void 0);
7623
+ __decorate([
7624
+ Input()
7625
+ ], CollapsedItemsComponent.prototype, "isCompleted", void 0);
7626
+ __decorate([
7627
+ Input()
7628
+ ], CollapsedItemsComponent.prototype, "counterLabel", void 0);
7629
+ __decorate([
7630
+ Output()
7631
+ ], CollapsedItemsComponent.prototype, "isCollapsedChange", void 0);
7632
+ CollapsedItemsComponent = __decorate([
7633
+ Component({
7634
+ selector: "s-collapsed-items",
7635
+ 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>",
7636
+ 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}"]
7637
+ })
7638
+ ], CollapsedItemsComponent);
7639
+ return CollapsedItemsComponent;
7640
+ }());
7641
+
7642
+ var VerticalItemsComponent = /** @class */ (function () {
7643
+ function VerticalItemsComponent() {
7644
+ }
7645
+ __decorate([
7646
+ Input()
7647
+ ], VerticalItemsComponent.prototype, "items", void 0);
7648
+ __decorate([
7649
+ Input()
7650
+ ], VerticalItemsComponent.prototype, "isLast", void 0);
7651
+ __decorate([
7652
+ Input()
7653
+ ], VerticalItemsComponent.prototype, "isActive", void 0);
7654
+ __decorate([
7655
+ Input()
7656
+ ], VerticalItemsComponent.prototype, "isCompleted", void 0);
7657
+ VerticalItemsComponent = __decorate([
7658
+ Component({
7659
+ selector: "s-vertical-items",
7660
+ 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>",
7661
+ 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}"]
7662
+ })
7663
+ ], VerticalItemsComponent);
7664
+ return VerticalItemsComponent;
7665
+ }());
7666
+
7667
+ var VerticalTimelineModule = /** @class */ (function () {
7668
+ function VerticalTimelineModule() {
7669
+ }
7670
+ VerticalTimelineModule = __decorate([
7671
+ NgModule({
7672
+ imports: [
7673
+ CommonModule,
7674
+ TimelineItemModule,
7675
+ ],
7676
+ declarations: [
7677
+ VerticalTimelineComponent,
7678
+ RangeLineComponent,
7679
+ CollapseOptionComponent,
7680
+ CollapsedItemsComponent,
7681
+ VerticalItemsComponent,
7682
+ ],
7683
+ exports: [VerticalTimelineComponent],
7684
+ })
7685
+ ], VerticalTimelineModule);
7686
+ return VerticalTimelineModule;
7687
+ }());
7688
+
7454
7689
  var TimelineModule = /** @class */ (function () {
7455
7690
  function TimelineModule() {
7456
7691
  }
7457
7692
  TimelineModule = __decorate([
7458
7693
  NgModule({
7459
- imports: [CommonModule, TooltipModule],
7460
- declarations: [TimelineComponent],
7461
- exports: [TimelineComponent],
7694
+ imports: [
7695
+ CommonModule,
7696
+ TimelineItemModule,
7697
+ HorizontalTimelineModule,
7698
+ VerticalTimelineModule,
7699
+ ],
7700
+ declarations: [
7701
+ TimelineComponent,
7702
+ ],
7703
+ exports: [
7704
+ TimelineComponent,
7705
+ ],
7462
7706
  })
7463
7707
  ], TimelineModule);
7464
7708
  return TimelineModule;
7465
7709
  }());
7466
7710
 
7711
+ var TimelineItemSeverity;
7712
+ (function (TimelineItemSeverity) {
7713
+ TimelineItemSeverity["Normal"] = "normal";
7714
+ TimelineItemSeverity["Warning"] = "warning";
7715
+ TimelineItemSeverity["Error"] = "error";
7716
+ })(TimelineItemSeverity || (TimelineItemSeverity = {}));
7717
+
7718
+ var TimelineItemSize;
7719
+ (function (TimelineItemSize) {
7720
+ TimelineItemSize["Normal"] = "normal";
7721
+ TimelineItemSize["Small"] = "small";
7722
+ })(TimelineItemSize || (TimelineItemSize = {}));
7723
+
7724
+ var LABEL_MAX_LENGTH = 2;
7725
+ var TimelineItem = /** @class */ (function () {
7726
+ function TimelineItem(params) {
7727
+ this.id = params.id;
7728
+ this.title = params.title;
7729
+ this.description = params.description;
7730
+ this.icon = params.icon;
7731
+ this.label = params.label;
7732
+ this.tooltip = params.tooltip;
7733
+ this.size = params.size || TimelineItemSize.Normal;
7734
+ this.severity = params.severity || TimelineItemSeverity.Normal;
7735
+ this.checkItemIconContent();
7736
+ }
7737
+ TimelineItem.prototype.checkItemIconContent = function () {
7738
+ var _a;
7739
+ if (!this.icon && !this.label) {
7740
+ throw new Error("No icon or label string was passed for the item. Enter an icon or label text");
7741
+ }
7742
+ if (this.icon && this.label) {
7743
+ throw new Error("An icon and label string were passed to the item. Enter an icon or label text");
7744
+ }
7745
+ if (((_a = this.label) === null || _a === void 0 ? void 0 : _a.length) > LABEL_MAX_LENGTH) {
7746
+ throw new Error("Label text is expected to be a maximum of two characters long");
7747
+ }
7748
+ };
7749
+ TimelineItem.prototype.testSize = function (value) {
7750
+ return this.size.valueOf() === value;
7751
+ };
7752
+ TimelineItem.prototype.testSeverity = function (value) {
7753
+ var _a;
7754
+ return ((_a = this.severity) === null || _a === void 0 ? void 0 : _a.valueOf()) === value;
7755
+ };
7756
+ return TimelineItem;
7757
+ }());
7758
+
7467
7759
  var TileComponent = /** @class */ (function () {
7468
7760
  function TileComponent() {
7469
7761
  this.id = "s-tile-" + TileComponent_1.nextId++;
@@ -9333,5 +9625,5 @@ var CodeEditorModule = /** @class */ (function () {
9333
9625
  * Generated bundle index. Do not edit.
9334
9626
  */
9335
9627
 
9336
- 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 };
9628
+ 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 };
9337
9629
  //# sourceMappingURL=seniorsistemas-angular-components.js.map