@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.
- package/bundles/seniorsistemas-angular-components.umd.js +436 -133
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/file-upload/file-upload.component.d.ts +17 -33
- package/components/file-upload/index.d.ts +3 -2
- package/components/file-upload/models/file-dto.d.ts +11 -0
- package/components/file-upload/models/index.d.ts +2 -0
- package/components/file-upload/models/validate-errors.d.ts +4 -0
- package/components/timeline/components/horizontal-timeline/horizontal-timeline.component.d.ts +5 -0
- package/components/timeline/components/horizontal-timeline/horizontal-timeline.module.d.ts +2 -0
- package/components/timeline/components/timeline-icon-item/timeline-icon-item.component.d.ts +6 -0
- package/components/timeline/components/timeline-icon-item/timeline-icon-item.module.d.ts +2 -0
- package/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.d.ts +6 -0
- package/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.d.ts +10 -0
- package/components/timeline/components/vertical-timeline/components/range-line/range-line.component.d.ts +2 -0
- package/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.d.ts +7 -0
- package/components/timeline/components/vertical-timeline/vertical-timeline.component.d.ts +20 -0
- package/components/timeline/components/vertical-timeline/vertical-timeline.module.d.ts +2 -0
- package/components/timeline/index.d.ts +3 -2
- package/components/timeline/models/index.d.ts +3 -0
- package/components/timeline/models/timeline-item-severity.d.ts +5 -0
- package/components/timeline/models/timeline-item-size.d.ts +4 -0
- package/components/timeline/models/timeline-item.d.ts +25 -0
- package/components/timeline/timeline.component.d.ts +17 -17
- package/esm2015/components/file-upload/file-upload.component.js +49 -63
- package/esm2015/components/file-upload/file-upload.module.js +7 -2
- package/esm2015/components/file-upload/index.js +4 -3
- package/esm2015/components/file-upload/models/file-dto.js +1 -0
- package/esm2015/components/file-upload/models/index.js +2 -0
- package/esm2015/components/file-upload/models/validate-errors.js +6 -0
- package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +22 -0
- package/esm2015/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +21 -0
- package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +22 -0
- package/esm2015/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +19 -0
- package/esm2015/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +26 -0
- package/esm2015/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +35 -0
- package/esm2015/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +13 -0
- package/esm2015/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +25 -0
- package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.component.js +50 -0
- package/esm2015/components/timeline/components/vertical-timeline/vertical-timeline.module.js +29 -0
- package/esm2015/components/timeline/index.js +4 -3
- package/esm2015/components/timeline/models/index.js +4 -0
- package/esm2015/components/timeline/models/timeline-item-severity.js +7 -0
- package/esm2015/components/timeline/models/timeline-item-size.js +6 -0
- package/esm2015/components/timeline/models/timeline-item.js +36 -0
- package/esm2015/components/timeline/timeline.component.js +44 -61
- package/esm2015/components/timeline/timeline.module.js +17 -6
- package/esm2015/seniorsistemas-angular-components.js +17 -7
- package/esm5/components/file-upload/file-upload.component.js +65 -67
- package/esm5/components/file-upload/file-upload.module.js +7 -2
- package/esm5/components/file-upload/index.js +4 -3
- package/esm5/components/file-upload/models/file-dto.js +1 -0
- package/esm5/components/file-upload/models/index.js +2 -0
- package/esm5/components/file-upload/models/validate-errors.js +6 -0
- package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.component.js +23 -0
- package/esm5/components/timeline/components/horizontal-timeline/horizontal-timeline.module.js +24 -0
- package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.component.js +25 -0
- package/esm5/components/timeline/components/timeline-icon-item/timeline-icon-item.module.js +22 -0
- package/esm5/components/timeline/components/vertical-timeline/components/collapse-option/collapse-option.component.js +27 -0
- package/esm5/components/timeline/components/vertical-timeline/components/collapsed-items/collapsed-items.component.js +36 -0
- package/esm5/components/timeline/components/vertical-timeline/components/range-line/range-line.component.js +16 -0
- package/esm5/components/timeline/components/vertical-timeline/components/vertical-items/vertical-items.component.js +28 -0
- package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.component.js +55 -0
- package/esm5/components/timeline/components/vertical-timeline/vertical-timeline.module.js +32 -0
- package/esm5/components/timeline/index.js +4 -3
- package/esm5/components/timeline/models/index.js +4 -0
- package/esm5/components/timeline/models/timeline-item-severity.js +7 -0
- package/esm5/components/timeline/models/timeline-item-size.js +6 -0
- package/esm5/components/timeline/models/timeline-item.js +38 -0
- package/esm5/components/timeline/timeline.component.js +45 -63
- package/esm5/components/timeline/timeline.module.js +17 -6
- package/esm5/seniorsistemas-angular-components.js +17 -7
- package/fesm2015/seniorsistemas-angular-components.js +377 -123
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +420 -128
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +16 -6
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -2875,6 +2875,12 @@
|
|
|
2875
2875
|
return EmptyStateModule;
|
|
2876
2876
|
}());
|
|
2877
2877
|
|
|
2878
|
+
|
|
2879
|
+
(function (ValidateErrors) {
|
|
2880
|
+
ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
|
|
2881
|
+
ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
|
|
2882
|
+
})(exports.ValidateErrors || (exports.ValidateErrors = {}));
|
|
2883
|
+
|
|
2878
2884
|
var Breakpoints = {
|
|
2879
2885
|
SM_MIN: 0,
|
|
2880
2886
|
SM_MAX: 767,
|
|
@@ -2981,14 +2987,10 @@
|
|
|
2981
2987
|
return ExportUtils;
|
|
2982
2988
|
}());
|
|
2983
2989
|
|
|
2984
|
-
|
|
2985
|
-
(function (ValidateErrors) {
|
|
2986
|
-
ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
|
|
2987
|
-
ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
|
|
2988
|
-
})(exports.ValidateErrors || (exports.ValidateErrors = {}));
|
|
2989
2990
|
var FileUploadComponent = /** @class */ (function () {
|
|
2990
2991
|
function FileUploadComponent(sanitizer) {
|
|
2991
2992
|
this.sanitizer = sanitizer;
|
|
2993
|
+
this.inputValue = "";
|
|
2992
2994
|
this.id = "s-file-upload-" + FileUploadComponent_1.nextId++;
|
|
2993
2995
|
this.chooseLabel = "Anexar arquivos";
|
|
2994
2996
|
this.removeLabel = "Remover";
|
|
@@ -3001,12 +3003,10 @@
|
|
|
3001
3003
|
this.cancelUpload = new core.EventEmitter();
|
|
3002
3004
|
this.downloadFile = new core.EventEmitter();
|
|
3003
3005
|
this.validateErros = new core.EventEmitter();
|
|
3004
|
-
this.uploadedFileCount = 0;
|
|
3005
3006
|
this._files = [];
|
|
3006
3007
|
this.ngUsubscribe = new rxjs.Subject();
|
|
3007
3008
|
}
|
|
3008
3009
|
FileUploadComponent_1 = FileUploadComponent;
|
|
3009
|
-
FileUploadComponent.prototype.ngOnInit = function () { };
|
|
3010
3010
|
FileUploadComponent.prototype.ngOnDestroy = function () {
|
|
3011
3011
|
this.ngUsubscribe.next();
|
|
3012
3012
|
this.ngUsubscribe.complete();
|
|
@@ -3017,91 +3017,94 @@
|
|
|
3017
3017
|
FileUploadComponent.prototype.onResize = function () {
|
|
3018
3018
|
this.update();
|
|
3019
3019
|
};
|
|
3020
|
-
FileUploadComponent.prototype.update = function () {
|
|
3021
|
-
var windowWidth = window.innerWidth;
|
|
3022
|
-
this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
|
|
3023
|
-
};
|
|
3024
3020
|
FileUploadComponent.prototype.onFileSelect = function (files) {
|
|
3025
|
-
var
|
|
3021
|
+
var e_1, _a;
|
|
3022
|
+
var newFiles = [];
|
|
3026
3023
|
if (!this.multiple) {
|
|
3027
3024
|
this.files = [];
|
|
3028
3025
|
}
|
|
3029
|
-
if (this.
|
|
3030
|
-
this.
|
|
3031
|
-
|
|
3032
|
-
this.uploadedFileCount -= this.files.length;
|
|
3033
|
-
this.validateErros.emit(exports.ValidateErrors.MAX_FILE_LIMIT);
|
|
3034
|
-
return;
|
|
3035
|
-
}
|
|
3026
|
+
if (this.isFileLimitExceeded(files)) {
|
|
3027
|
+
this.validateErros.emit(exports.ValidateErrors.MAX_FILE_LIMIT);
|
|
3028
|
+
return;
|
|
3036
3029
|
}
|
|
3037
|
-
|
|
3038
|
-
var
|
|
3039
|
-
|
|
3040
|
-
this.
|
|
3041
|
-
|
|
3042
|
-
|
|
3030
|
+
try {
|
|
3031
|
+
for (var files_1 = __values(files), files_1_1 = files_1.next(); !files_1_1.done; files_1_1 = files_1.next()) {
|
|
3032
|
+
var file = files_1_1.value;
|
|
3033
|
+
if (this.isFileSizeExceeded(file)) {
|
|
3034
|
+
this.validateErros.emit(exports.ValidateErrors.MAX_FILE_SIZE);
|
|
3035
|
+
return;
|
|
3036
|
+
}
|
|
3037
|
+
newFiles.push(file);
|
|
3043
3038
|
}
|
|
3044
|
-
|
|
3045
|
-
|
|
3039
|
+
}
|
|
3040
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
3041
|
+
finally {
|
|
3042
|
+
try {
|
|
3043
|
+
if (files_1_1 && !files_1_1.done && (_a = files_1.return)) _a.call(files_1);
|
|
3046
3044
|
}
|
|
3045
|
+
finally { if (e_1) throw e_1.error; }
|
|
3047
3046
|
}
|
|
3048
|
-
if (
|
|
3049
|
-
this.
|
|
3047
|
+
if (newFiles.length) {
|
|
3048
|
+
this.files = this.files.concat(newFiles);
|
|
3049
|
+
this.uploadHandler.emit({
|
|
3050
|
+
files: newFiles,
|
|
3051
|
+
});
|
|
3050
3052
|
this.inputUpload.nativeElement.value = "";
|
|
3051
3053
|
}
|
|
3052
3054
|
};
|
|
3053
|
-
FileUploadComponent.prototype.onRemoveFile = function (
|
|
3054
|
-
this.files.
|
|
3055
|
-
this.
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
FileUploadComponent.prototype.onCancelUpload = function (event, index) {
|
|
3060
|
-
this.uploadedFileCount -= 1;
|
|
3061
|
-
this.files.splice(index, 1);
|
|
3062
|
-
this.cancelUpload.emit(index);
|
|
3063
|
-
event.preventDefault();
|
|
3055
|
+
FileUploadComponent.prototype.onRemoveFile = function (file) {
|
|
3056
|
+
var fileIndex = this.files.indexOf(file);
|
|
3057
|
+
var removedFiles = this.files.splice(fileIndex, 1);
|
|
3058
|
+
if (removedFiles.length) {
|
|
3059
|
+
this.removeFile.emit({ file: file });
|
|
3060
|
+
}
|
|
3064
3061
|
};
|
|
3065
|
-
FileUploadComponent.prototype.
|
|
3066
|
-
this.
|
|
3067
|
-
|
|
3062
|
+
FileUploadComponent.prototype.onCancelUpload = function (index) {
|
|
3063
|
+
var removedFiles = this.files.splice(index, 1);
|
|
3064
|
+
if (removedFiles.length) {
|
|
3065
|
+
this.cancelUpload.emit(index);
|
|
3066
|
+
}
|
|
3068
3067
|
};
|
|
3069
|
-
FileUploadComponent.prototype.
|
|
3070
|
-
|
|
3068
|
+
FileUploadComponent.prototype.onDowloadFile = function (index) {
|
|
3069
|
+
this.downloadFile.emit({
|
|
3070
|
+
index: index,
|
|
3071
|
+
anchor: this.anchor,
|
|
3072
|
+
});
|
|
3071
3073
|
};
|
|
3072
3074
|
Object.defineProperty(FileUploadComponent.prototype, "files", {
|
|
3073
3075
|
get: function () {
|
|
3074
3076
|
return this._files;
|
|
3075
3077
|
},
|
|
3076
3078
|
set: function (files) {
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
file.objectURL = this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(files[i]));
|
|
3079
|
+
var _this = this;
|
|
3080
|
+
this._files = files.map(function (file) {
|
|
3081
|
+
if (_this.isImage(file)) {
|
|
3082
|
+
file.objectURL = _this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(file));
|
|
3082
3083
|
}
|
|
3083
|
-
|
|
3084
|
-
}
|
|
3084
|
+
return file;
|
|
3085
|
+
});
|
|
3085
3086
|
},
|
|
3086
3087
|
enumerable: true,
|
|
3087
3088
|
configurable: true
|
|
3088
3089
|
});
|
|
3089
|
-
FileUploadComponent.prototype.
|
|
3090
|
-
|
|
3090
|
+
FileUploadComponent.prototype.update = function () {
|
|
3091
|
+
var windowWidth = window.innerWidth;
|
|
3092
|
+
this.isSmallDevice = windowWidth <= Breakpoints.SM_MAX;
|
|
3091
3093
|
};
|
|
3092
3094
|
FileUploadComponent.prototype.isImage = function (file) {
|
|
3093
3095
|
return /^image\//.test(file.type);
|
|
3094
3096
|
};
|
|
3095
|
-
FileUploadComponent.prototype.
|
|
3096
|
-
this.
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
FileUploadComponent.prototype.isFileLimitExceeded = function () {
|
|
3101
|
-
return this.fileLimit && this.fileLimit < this.files.length + this.uploadedFileCount;
|
|
3097
|
+
FileUploadComponent.prototype.isFileLimitExceeded = function (files) {
|
|
3098
|
+
if (!this.fileLimit) {
|
|
3099
|
+
return false;
|
|
3100
|
+
}
|
|
3101
|
+
return this.files.length + files.length > this.fileLimit;
|
|
3102
3102
|
};
|
|
3103
3103
|
FileUploadComponent.prototype.isFileSizeExceeded = function (file) {
|
|
3104
|
-
|
|
3104
|
+
if (!this.maxFileSize) {
|
|
3105
|
+
return false;
|
|
3106
|
+
}
|
|
3107
|
+
return file.size > this.maxFileSize;
|
|
3105
3108
|
};
|
|
3106
3109
|
var FileUploadComponent_1;
|
|
3107
3110
|
FileUploadComponent.nextId = 0;
|
|
@@ -3186,7 +3189,7 @@
|
|
|
3186
3189
|
FileUploadComponent = FileUploadComponent_1 = __decorate([
|
|
3187
3190
|
core.Component({
|
|
3188
3191
|
selector: "s-file-upload",
|
|
3189
|
-
template: "<div
|
|
3192
|
+
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",
|
|
3190
3193
|
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}}"]
|
|
3191
3194
|
})
|
|
3192
3195
|
], FileUploadComponent);
|
|
@@ -3199,7 +3202,12 @@
|
|
|
3199
3202
|
FileUploadModule = __decorate([
|
|
3200
3203
|
core.NgModule({
|
|
3201
3204
|
declarations: [FileUploadComponent],
|
|
3202
|
-
imports: [
|
|
3205
|
+
imports: [
|
|
3206
|
+
common.CommonModule,
|
|
3207
|
+
ButtonModule,
|
|
3208
|
+
tooltip.TooltipModule,
|
|
3209
|
+
progressbar.ProgressBarModule,
|
|
3210
|
+
],
|
|
3203
3211
|
exports: [FileUploadComponent],
|
|
3204
3212
|
})
|
|
3205
3213
|
], FileUploadModule);
|
|
@@ -7543,100 +7551,384 @@
|
|
|
7543
7551
|
return StepsModule;
|
|
7544
7552
|
}());
|
|
7545
7553
|
|
|
7554
|
+
var HORIZONTAL = "horizontal";
|
|
7555
|
+
var VERTICAL = "vertical";
|
|
7556
|
+
var MIN_ITEM_SIZE = 200;
|
|
7546
7557
|
var TimelineComponent = /** @class */ (function () {
|
|
7547
7558
|
function TimelineComponent() {
|
|
7548
|
-
this.
|
|
7549
|
-
this.
|
|
7559
|
+
this.direction = HORIZONTAL;
|
|
7560
|
+
this.collapsable = true;
|
|
7561
|
+
this.counterLabel = "items";
|
|
7550
7562
|
}
|
|
7551
|
-
|
|
7552
|
-
TimelineComponent.prototype.barAnimation = function (index, activeIndex) {
|
|
7553
|
-
var visited = index < activeIndex;
|
|
7554
|
-
var activated = index === activeIndex;
|
|
7555
|
-
return visited || activated;
|
|
7556
|
-
};
|
|
7557
|
-
TimelineComponent.prototype.afterBarAnimation = function (index, activeIndex) {
|
|
7558
|
-
var visited = index < activeIndex;
|
|
7559
|
-
var activated = index === activeIndex - 1;
|
|
7560
|
-
return visited || activated;
|
|
7561
|
-
};
|
|
7562
|
-
Object.defineProperty(TimelineComponent.prototype, "visibledStep", {
|
|
7563
|
+
Object.defineProperty(TimelineComponent.prototype, "items", {
|
|
7563
7564
|
get: function () {
|
|
7564
|
-
return this.
|
|
7565
|
+
return this._items;
|
|
7566
|
+
},
|
|
7567
|
+
set: function (items) {
|
|
7568
|
+
this._items = items;
|
|
7569
|
+
this.checkDuplicateIds();
|
|
7565
7570
|
},
|
|
7566
7571
|
enumerable: true,
|
|
7567
7572
|
configurable: true
|
|
7568
7573
|
});
|
|
7569
|
-
|
|
7570
|
-
|
|
7574
|
+
TimelineComponent.prototype.ngOnInit = function () {
|
|
7575
|
+
this._innerWidth = window.innerWidth;
|
|
7576
|
+
};
|
|
7577
|
+
TimelineComponent.prototype.onResize = function (_) {
|
|
7578
|
+
this._innerWidth = window.innerWidth;
|
|
7579
|
+
};
|
|
7580
|
+
TimelineComponent.prototype.changeToVertical = function () {
|
|
7581
|
+
return this.direction === VERTICAL || this._innerWidth / this.items.length < MIN_ITEM_SIZE;
|
|
7582
|
+
};
|
|
7583
|
+
TimelineComponent.prototype.checkDuplicateIds = function () {
|
|
7584
|
+
var ids = this.items.map(function (item) {
|
|
7585
|
+
return item.id;
|
|
7586
|
+
});
|
|
7587
|
+
if ((new Set(ids)).size !== ids.length) {
|
|
7588
|
+
throw new Error("A duplicate id was found in the items list");
|
|
7589
|
+
}
|
|
7590
|
+
};
|
|
7571
7591
|
__decorate([
|
|
7572
7592
|
core.Input()
|
|
7573
|
-
], TimelineComponent.prototype, "
|
|
7593
|
+
], TimelineComponent.prototype, "items", null);
|
|
7574
7594
|
__decorate([
|
|
7575
7595
|
core.Input()
|
|
7576
|
-
], TimelineComponent.prototype, "
|
|
7596
|
+
], TimelineComponent.prototype, "activeIndex", void 0);
|
|
7577
7597
|
__decorate([
|
|
7578
7598
|
core.Input()
|
|
7579
|
-
], TimelineComponent.prototype, "
|
|
7580
|
-
|
|
7599
|
+
], TimelineComponent.prototype, "direction", void 0);
|
|
7600
|
+
__decorate([
|
|
7601
|
+
core.Input()
|
|
7602
|
+
], TimelineComponent.prototype, "collapsable", void 0);
|
|
7603
|
+
__decorate([
|
|
7604
|
+
core.Input()
|
|
7605
|
+
], TimelineComponent.prototype, "counterLabel", void 0);
|
|
7606
|
+
__decorate([
|
|
7607
|
+
core.HostListener("window:resize", ["$event"])
|
|
7608
|
+
], TimelineComponent.prototype, "onResize", null);
|
|
7609
|
+
TimelineComponent = __decorate([
|
|
7581
7610
|
core.Component({
|
|
7582
7611
|
selector: "s-timeline",
|
|
7583
|
-
template: "<div
|
|
7584
|
-
host: {
|
|
7585
|
-
"aria-orientation": "horizontal",
|
|
7586
|
-
role: "tablist",
|
|
7587
|
-
"tab-index": "0",
|
|
7588
|
-
},
|
|
7589
|
-
animations: [
|
|
7590
|
-
animations.trigger("beforeActiveDesative", [
|
|
7591
|
-
animations.state("active", animations.style({
|
|
7592
|
-
"background-position": "left bottom",
|
|
7593
|
-
})),
|
|
7594
|
-
animations.state("desactive", animations.style({
|
|
7595
|
-
"background-position": "right bottom",
|
|
7596
|
-
})),
|
|
7597
|
-
animations.transition("active => desactive", [animations.animate("50ms 100ms linear")]),
|
|
7598
|
-
animations.transition("desactive => active", [animations.animate("50ms 250ms linear")]),
|
|
7599
|
-
]),
|
|
7600
|
-
animations.trigger("activeDesative", [
|
|
7601
|
-
animations.state("active", animations.style({
|
|
7602
|
-
"background-position": "left bottom",
|
|
7603
|
-
})),
|
|
7604
|
-
animations.state("desactive", animations.style({
|
|
7605
|
-
"background-position": "right bottom",
|
|
7606
|
-
})),
|
|
7607
|
-
animations.transition("active => desactive", [animations.animate("100ms 150ms linear")]),
|
|
7608
|
-
animations.transition("desactive => active", [animations.animate("100ms 150ms linear")]),
|
|
7609
|
-
]),
|
|
7610
|
-
animations.trigger("afterActiveDesative", [
|
|
7611
|
-
animations.state("active", animations.style({
|
|
7612
|
-
"background-position": "left bottom",
|
|
7613
|
-
})),
|
|
7614
|
-
animations.state("desactive", animations.style({
|
|
7615
|
-
"background-position": "right bottom",
|
|
7616
|
-
})),
|
|
7617
|
-
animations.transition("active => desactive", [animations.animate("50ms 250ms linear")]),
|
|
7618
|
-
animations.transition("desactive => active", [animations.animate("50ms 100ms linear")]),
|
|
7619
|
-
]),
|
|
7620
|
-
],
|
|
7621
|
-
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}}"]
|
|
7612
|
+
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>"
|
|
7622
7613
|
})
|
|
7623
7614
|
], TimelineComponent);
|
|
7624
7615
|
return TimelineComponent;
|
|
7625
7616
|
}());
|
|
7626
7617
|
|
|
7618
|
+
var TimelineIconItemComponent = /** @class */ (function () {
|
|
7619
|
+
function TimelineIconItemComponent() {
|
|
7620
|
+
}
|
|
7621
|
+
__decorate([
|
|
7622
|
+
core.Input()
|
|
7623
|
+
], TimelineIconItemComponent.prototype, "item", void 0);
|
|
7624
|
+
__decorate([
|
|
7625
|
+
core.Input()
|
|
7626
|
+
], TimelineIconItemComponent.prototype, "isActive", void 0);
|
|
7627
|
+
__decorate([
|
|
7628
|
+
core.Input()
|
|
7629
|
+
], TimelineIconItemComponent.prototype, "isComplete", void 0);
|
|
7630
|
+
TimelineIconItemComponent = __decorate([
|
|
7631
|
+
core.Component({
|
|
7632
|
+
selector: "s-timeline-icon-item",
|
|
7633
|
+
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",
|
|
7634
|
+
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}"]
|
|
7635
|
+
})
|
|
7636
|
+
], TimelineIconItemComponent);
|
|
7637
|
+
return TimelineIconItemComponent;
|
|
7638
|
+
}());
|
|
7639
|
+
|
|
7640
|
+
var TimelineItemModule = /** @class */ (function () {
|
|
7641
|
+
function TimelineItemModule() {
|
|
7642
|
+
}
|
|
7643
|
+
TimelineItemModule = __decorate([
|
|
7644
|
+
core.NgModule({
|
|
7645
|
+
imports: [
|
|
7646
|
+
common.CommonModule,
|
|
7647
|
+
tooltip.TooltipModule,
|
|
7648
|
+
],
|
|
7649
|
+
declarations: [TimelineIconItemComponent],
|
|
7650
|
+
exports: [TimelineIconItemComponent],
|
|
7651
|
+
})
|
|
7652
|
+
], TimelineItemModule);
|
|
7653
|
+
return TimelineItemModule;
|
|
7654
|
+
}());
|
|
7655
|
+
|
|
7656
|
+
var HorizontalTimelineComponent = /** @class */ (function () {
|
|
7657
|
+
function HorizontalTimelineComponent() {
|
|
7658
|
+
this.activeIndex = 0;
|
|
7659
|
+
}
|
|
7660
|
+
__decorate([
|
|
7661
|
+
core.Input()
|
|
7662
|
+
], HorizontalTimelineComponent.prototype, "items", void 0);
|
|
7663
|
+
__decorate([
|
|
7664
|
+
core.Input()
|
|
7665
|
+
], HorizontalTimelineComponent.prototype, "activeIndex", void 0);
|
|
7666
|
+
HorizontalTimelineComponent = __decorate([
|
|
7667
|
+
core.Component({
|
|
7668
|
+
selector: "s-horizontal-timeline",
|
|
7669
|
+
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>",
|
|
7670
|
+
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}"]
|
|
7671
|
+
})
|
|
7672
|
+
], HorizontalTimelineComponent);
|
|
7673
|
+
return HorizontalTimelineComponent;
|
|
7674
|
+
}());
|
|
7675
|
+
|
|
7676
|
+
var HorizontalTimelineModule = /** @class */ (function () {
|
|
7677
|
+
function HorizontalTimelineModule() {
|
|
7678
|
+
}
|
|
7679
|
+
HorizontalTimelineModule = __decorate([
|
|
7680
|
+
core.NgModule({
|
|
7681
|
+
imports: [
|
|
7682
|
+
common.CommonModule,
|
|
7683
|
+
tooltip.TooltipModule,
|
|
7684
|
+
TimelineItemModule,
|
|
7685
|
+
],
|
|
7686
|
+
declarations: [HorizontalTimelineComponent],
|
|
7687
|
+
exports: [HorizontalTimelineComponent],
|
|
7688
|
+
})
|
|
7689
|
+
], HorizontalTimelineModule);
|
|
7690
|
+
return HorizontalTimelineModule;
|
|
7691
|
+
}());
|
|
7692
|
+
|
|
7693
|
+
var VerticalTimelineComponent = /** @class */ (function () {
|
|
7694
|
+
function VerticalTimelineComponent() {
|
|
7695
|
+
this.isG1Collapsed = true;
|
|
7696
|
+
this.isG2Collapsed = true;
|
|
7697
|
+
}
|
|
7698
|
+
Object.defineProperty(VerticalTimelineComponent.prototype, "activeIndex", {
|
|
7699
|
+
get: function () {
|
|
7700
|
+
return this._activeIndex;
|
|
7701
|
+
},
|
|
7702
|
+
set: function (index) {
|
|
7703
|
+
this._activeIndex = index;
|
|
7704
|
+
this.groupItems();
|
|
7705
|
+
},
|
|
7706
|
+
enumerable: true,
|
|
7707
|
+
configurable: true
|
|
7708
|
+
});
|
|
7709
|
+
VerticalTimelineComponent.prototype.onChangeG1 = function (event) {
|
|
7710
|
+
this.isG1Collapsed = event;
|
|
7711
|
+
};
|
|
7712
|
+
VerticalTimelineComponent.prototype.onChangeG2 = function (event) {
|
|
7713
|
+
this.isG2Collapsed = event;
|
|
7714
|
+
};
|
|
7715
|
+
VerticalTimelineComponent.prototype.groupItems = function () {
|
|
7716
|
+
this.firstItem = this.activeIndex === 0 ? [] : [this.items[0]];
|
|
7717
|
+
this.g1Items = this.items.slice(1, this.activeIndex);
|
|
7718
|
+
this.activeItem = [this.items[this.activeIndex]];
|
|
7719
|
+
this.g2Items = this.items.slice(this.activeIndex + 1, this.items.length - 1);
|
|
7720
|
+
this.lastItem = this.activeIndex === this.items.length - 1 ? [] : [this.items[this.items.length - 1]];
|
|
7721
|
+
};
|
|
7722
|
+
VerticalTimelineComponent.nextId = 0;
|
|
7723
|
+
__decorate([
|
|
7724
|
+
core.Input()
|
|
7725
|
+
], VerticalTimelineComponent.prototype, "activeIndex", null);
|
|
7726
|
+
__decorate([
|
|
7727
|
+
core.Input()
|
|
7728
|
+
], VerticalTimelineComponent.prototype, "items", void 0);
|
|
7729
|
+
__decorate([
|
|
7730
|
+
core.Input()
|
|
7731
|
+
], VerticalTimelineComponent.prototype, "counterLabel", void 0);
|
|
7732
|
+
__decorate([
|
|
7733
|
+
core.Input()
|
|
7734
|
+
], VerticalTimelineComponent.prototype, "collapsable", void 0);
|
|
7735
|
+
VerticalTimelineComponent = __decorate([
|
|
7736
|
+
core.Component({
|
|
7737
|
+
selector: "s-vertical-timeline",
|
|
7738
|
+
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>",
|
|
7739
|
+
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%}"]
|
|
7740
|
+
})
|
|
7741
|
+
], VerticalTimelineComponent);
|
|
7742
|
+
return VerticalTimelineComponent;
|
|
7743
|
+
}());
|
|
7744
|
+
|
|
7745
|
+
var RangeLineComponent = /** @class */ (function () {
|
|
7746
|
+
function RangeLineComponent() {
|
|
7747
|
+
}
|
|
7748
|
+
RangeLineComponent = __decorate([
|
|
7749
|
+
core.Component({
|
|
7750
|
+
selector: "s-range-line",
|
|
7751
|
+
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",
|
|
7752
|
+
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}"]
|
|
7753
|
+
})
|
|
7754
|
+
], RangeLineComponent);
|
|
7755
|
+
return RangeLineComponent;
|
|
7756
|
+
}());
|
|
7757
|
+
|
|
7758
|
+
var CollapseOptionComponent = /** @class */ (function () {
|
|
7759
|
+
function CollapseOptionComponent() {
|
|
7760
|
+
this.isCollapsed = false;
|
|
7761
|
+
this.change = new core.EventEmitter();
|
|
7762
|
+
}
|
|
7763
|
+
CollapseOptionComponent.prototype.onClick = function () {
|
|
7764
|
+
this.change.emit(!this.isCollapsed);
|
|
7765
|
+
};
|
|
7766
|
+
__decorate([
|
|
7767
|
+
core.Input()
|
|
7768
|
+
], CollapseOptionComponent.prototype, "isCollapsed", void 0);
|
|
7769
|
+
__decorate([
|
|
7770
|
+
core.Output()
|
|
7771
|
+
], CollapseOptionComponent.prototype, "change", void 0);
|
|
7772
|
+
CollapseOptionComponent = __decorate([
|
|
7773
|
+
core.Component({
|
|
7774
|
+
selector: "s-collapse-option",
|
|
7775
|
+
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>",
|
|
7776
|
+
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}"]
|
|
7777
|
+
})
|
|
7778
|
+
], CollapseOptionComponent);
|
|
7779
|
+
return CollapseOptionComponent;
|
|
7780
|
+
}());
|
|
7781
|
+
|
|
7782
|
+
var CollapsedItemsComponent = /** @class */ (function () {
|
|
7783
|
+
function CollapsedItemsComponent() {
|
|
7784
|
+
this.isCollapsedChange = new core.EventEmitter();
|
|
7785
|
+
}
|
|
7786
|
+
CollapsedItemsComponent.prototype.onChange = function (event) {
|
|
7787
|
+
this.isCollapsed = !this.isCollapsed;
|
|
7788
|
+
this.isCollapsedChange.emit(this.isCollapsed);
|
|
7789
|
+
};
|
|
7790
|
+
__decorate([
|
|
7791
|
+
core.Input()
|
|
7792
|
+
], CollapsedItemsComponent.prototype, "items", void 0);
|
|
7793
|
+
__decorate([
|
|
7794
|
+
core.Input()
|
|
7795
|
+
], CollapsedItemsComponent.prototype, "isCollapsed", void 0);
|
|
7796
|
+
__decorate([
|
|
7797
|
+
core.Input()
|
|
7798
|
+
], CollapsedItemsComponent.prototype, "isCompleted", void 0);
|
|
7799
|
+
__decorate([
|
|
7800
|
+
core.Input()
|
|
7801
|
+
], CollapsedItemsComponent.prototype, "counterLabel", void 0);
|
|
7802
|
+
__decorate([
|
|
7803
|
+
core.Output()
|
|
7804
|
+
], CollapsedItemsComponent.prototype, "isCollapsedChange", void 0);
|
|
7805
|
+
CollapsedItemsComponent = __decorate([
|
|
7806
|
+
core.Component({
|
|
7807
|
+
selector: "s-collapsed-items",
|
|
7808
|
+
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>",
|
|
7809
|
+
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}"]
|
|
7810
|
+
})
|
|
7811
|
+
], CollapsedItemsComponent);
|
|
7812
|
+
return CollapsedItemsComponent;
|
|
7813
|
+
}());
|
|
7814
|
+
|
|
7815
|
+
var VerticalItemsComponent = /** @class */ (function () {
|
|
7816
|
+
function VerticalItemsComponent() {
|
|
7817
|
+
}
|
|
7818
|
+
__decorate([
|
|
7819
|
+
core.Input()
|
|
7820
|
+
], VerticalItemsComponent.prototype, "items", void 0);
|
|
7821
|
+
__decorate([
|
|
7822
|
+
core.Input()
|
|
7823
|
+
], VerticalItemsComponent.prototype, "isLast", void 0);
|
|
7824
|
+
__decorate([
|
|
7825
|
+
core.Input()
|
|
7826
|
+
], VerticalItemsComponent.prototype, "isActive", void 0);
|
|
7827
|
+
__decorate([
|
|
7828
|
+
core.Input()
|
|
7829
|
+
], VerticalItemsComponent.prototype, "isCompleted", void 0);
|
|
7830
|
+
VerticalItemsComponent = __decorate([
|
|
7831
|
+
core.Component({
|
|
7832
|
+
selector: "s-vertical-items",
|
|
7833
|
+
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>",
|
|
7834
|
+
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}"]
|
|
7835
|
+
})
|
|
7836
|
+
], VerticalItemsComponent);
|
|
7837
|
+
return VerticalItemsComponent;
|
|
7838
|
+
}());
|
|
7839
|
+
|
|
7840
|
+
var VerticalTimelineModule = /** @class */ (function () {
|
|
7841
|
+
function VerticalTimelineModule() {
|
|
7842
|
+
}
|
|
7843
|
+
VerticalTimelineModule = __decorate([
|
|
7844
|
+
core.NgModule({
|
|
7845
|
+
imports: [
|
|
7846
|
+
common.CommonModule,
|
|
7847
|
+
TimelineItemModule,
|
|
7848
|
+
],
|
|
7849
|
+
declarations: [
|
|
7850
|
+
VerticalTimelineComponent,
|
|
7851
|
+
RangeLineComponent,
|
|
7852
|
+
CollapseOptionComponent,
|
|
7853
|
+
CollapsedItemsComponent,
|
|
7854
|
+
VerticalItemsComponent,
|
|
7855
|
+
],
|
|
7856
|
+
exports: [VerticalTimelineComponent],
|
|
7857
|
+
})
|
|
7858
|
+
], VerticalTimelineModule);
|
|
7859
|
+
return VerticalTimelineModule;
|
|
7860
|
+
}());
|
|
7861
|
+
|
|
7627
7862
|
var TimelineModule = /** @class */ (function () {
|
|
7628
7863
|
function TimelineModule() {
|
|
7629
7864
|
}
|
|
7630
7865
|
TimelineModule = __decorate([
|
|
7631
7866
|
core.NgModule({
|
|
7632
|
-
imports: [
|
|
7633
|
-
|
|
7634
|
-
|
|
7867
|
+
imports: [
|
|
7868
|
+
common.CommonModule,
|
|
7869
|
+
TimelineItemModule,
|
|
7870
|
+
HorizontalTimelineModule,
|
|
7871
|
+
VerticalTimelineModule,
|
|
7872
|
+
],
|
|
7873
|
+
declarations: [
|
|
7874
|
+
TimelineComponent,
|
|
7875
|
+
],
|
|
7876
|
+
exports: [
|
|
7877
|
+
TimelineComponent,
|
|
7878
|
+
],
|
|
7635
7879
|
})
|
|
7636
7880
|
], TimelineModule);
|
|
7637
7881
|
return TimelineModule;
|
|
7638
7882
|
}());
|
|
7639
7883
|
|
|
7884
|
+
|
|
7885
|
+
(function (TimelineItemSeverity) {
|
|
7886
|
+
TimelineItemSeverity["Normal"] = "normal";
|
|
7887
|
+
TimelineItemSeverity["Warning"] = "warning";
|
|
7888
|
+
TimelineItemSeverity["Error"] = "error";
|
|
7889
|
+
})(exports.TimelineItemSeverity || (exports.TimelineItemSeverity = {}));
|
|
7890
|
+
|
|
7891
|
+
|
|
7892
|
+
(function (TimelineItemSize) {
|
|
7893
|
+
TimelineItemSize["Normal"] = "normal";
|
|
7894
|
+
TimelineItemSize["Small"] = "small";
|
|
7895
|
+
})(exports.TimelineItemSize || (exports.TimelineItemSize = {}));
|
|
7896
|
+
|
|
7897
|
+
var LABEL_MAX_LENGTH = 2;
|
|
7898
|
+
var TimelineItem = /** @class */ (function () {
|
|
7899
|
+
function TimelineItem(params) {
|
|
7900
|
+
this.id = params.id;
|
|
7901
|
+
this.title = params.title;
|
|
7902
|
+
this.description = params.description;
|
|
7903
|
+
this.icon = params.icon;
|
|
7904
|
+
this.label = params.label;
|
|
7905
|
+
this.tooltip = params.tooltip;
|
|
7906
|
+
this.size = params.size || exports.TimelineItemSize.Normal;
|
|
7907
|
+
this.severity = params.severity || exports.TimelineItemSeverity.Normal;
|
|
7908
|
+
this.checkItemIconContent();
|
|
7909
|
+
}
|
|
7910
|
+
TimelineItem.prototype.checkItemIconContent = function () {
|
|
7911
|
+
var _a;
|
|
7912
|
+
if (!this.icon && !this.label) {
|
|
7913
|
+
throw new Error("No icon or label string was passed for the item. Enter an icon or label text");
|
|
7914
|
+
}
|
|
7915
|
+
if (this.icon && this.label) {
|
|
7916
|
+
throw new Error("An icon and label string were passed to the item. Enter an icon or label text");
|
|
7917
|
+
}
|
|
7918
|
+
if (((_a = this.label) === null || _a === void 0 ? void 0 : _a.length) > LABEL_MAX_LENGTH) {
|
|
7919
|
+
throw new Error("Label text is expected to be a maximum of two characters long");
|
|
7920
|
+
}
|
|
7921
|
+
};
|
|
7922
|
+
TimelineItem.prototype.testSize = function (value) {
|
|
7923
|
+
return this.size.valueOf() === value;
|
|
7924
|
+
};
|
|
7925
|
+
TimelineItem.prototype.testSeverity = function (value) {
|
|
7926
|
+
var _a;
|
|
7927
|
+
return ((_a = this.severity) === null || _a === void 0 ? void 0 : _a.valueOf()) === value;
|
|
7928
|
+
};
|
|
7929
|
+
return TimelineItem;
|
|
7930
|
+
}());
|
|
7931
|
+
|
|
7640
7932
|
var TileComponent = /** @class */ (function () {
|
|
7641
7933
|
function TileComponent() {
|
|
7642
7934
|
this.id = "s-tile-" + TileComponent_1.nextId++;
|
|
@@ -9613,6 +9905,7 @@
|
|
|
9613
9905
|
exports.TileComponent = TileComponent;
|
|
9614
9906
|
exports.TileModule = TileModule;
|
|
9615
9907
|
exports.TimelineComponent = TimelineComponent;
|
|
9908
|
+
exports.TimelineItem = TimelineItem;
|
|
9616
9909
|
exports.TimelineModule = TimelineModule;
|
|
9617
9910
|
exports.TokenListComponent = TokenListComponent;
|
|
9618
9911
|
exports.TokenListModule = TokenListModule;
|
|
@@ -9624,12 +9917,22 @@
|
|
|
9624
9917
|
exports.ɵbe = FooterComponent;
|
|
9625
9918
|
exports.ɵbf = NumberLocaleOptions;
|
|
9626
9919
|
exports.ɵbg = ThumbnailService;
|
|
9627
|
-
exports.ɵbh =
|
|
9628
|
-
exports.ɵbi =
|
|
9629
|
-
exports.ɵbj =
|
|
9630
|
-
exports.ɵbk =
|
|
9631
|
-
exports.ɵbl =
|
|
9632
|
-
exports.ɵbm =
|
|
9920
|
+
exports.ɵbh = TimelineItemModule;
|
|
9921
|
+
exports.ɵbi = TimelineIconItemComponent;
|
|
9922
|
+
exports.ɵbj = HorizontalTimelineModule;
|
|
9923
|
+
exports.ɵbk = HorizontalTimelineComponent;
|
|
9924
|
+
exports.ɵbl = VerticalTimelineModule;
|
|
9925
|
+
exports.ɵbm = VerticalTimelineComponent;
|
|
9926
|
+
exports.ɵbn = RangeLineComponent;
|
|
9927
|
+
exports.ɵbo = CollapseOptionComponent;
|
|
9928
|
+
exports.ɵbp = CollapsedItemsComponent;
|
|
9929
|
+
exports.ɵbq = VerticalItemsComponent;
|
|
9930
|
+
exports.ɵbr = InfiniteScrollModule;
|
|
9931
|
+
exports.ɵbs = InfiniteScrollDirective;
|
|
9932
|
+
exports.ɵbt = CustomTranslationsModule;
|
|
9933
|
+
exports.ɵbu = CodeEditorComponent;
|
|
9934
|
+
exports.ɵbv = CoreFacade;
|
|
9935
|
+
exports.ɵbw = CodeMirror6Core;
|
|
9633
9936
|
exports.ɵc = LocalizedBignumberImpurePipe;
|
|
9634
9937
|
exports.ɵd = EmptyStateGoBackComponent;
|
|
9635
9938
|
exports.ɵe = TableColumnsComponent;
|