@seniorsistemas/angular-components 17.3.16 → 17.3.18
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 +159 -95
- 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/components/file-item/file-item.component.d.ts +7 -1
- package/components/file-upload/file-upload.component.d.ts +4 -2
- package/components/file-upload/models/validate-errors.d.ts +1 -0
- package/components/table/table-column/models/column.interface.d.ts +1 -0
- package/components/table/table-paging/table-paging.component.d.ts +2 -0
- package/esm2015/components/file-upload/components/file-item/file-item.component.js +23 -6
- package/esm2015/components/file-upload/file-upload.component.js +23 -7
- package/esm2015/components/file-upload/file-upload.module.js +8 -2
- package/esm2015/components/file-upload/models/validate-errors.js +2 -1
- package/esm2015/components/table/table-column/models/column.interface.js +1 -1
- package/esm2015/components/table/table-paging/table-paging.component.js +28 -3
- package/esm2015/seniorsistemas-angular-components.js +62 -61
- package/esm5/components/file-upload/components/file-item/file-item.component.js +24 -6
- package/esm5/components/file-upload/file-upload.component.js +24 -8
- package/esm5/components/file-upload/file-upload.module.js +8 -2
- package/esm5/components/file-upload/models/validate-errors.js +2 -1
- package/esm5/components/table/table-column/models/column.interface.js +1 -1
- package/esm5/components/table/table-paging/table-paging.component.js +28 -2
- package/esm5/seniorsistemas-angular-components.js +62 -61
- package/fesm2015/seniorsistemas-angular-components.js +100 -39
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +101 -38
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +61 -60
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -6366,31 +6366,6 @@
|
|
|
6366
6366
|
return ProgressBarModule;
|
|
6367
6367
|
}());
|
|
6368
6368
|
|
|
6369
|
-
|
|
6370
|
-
(function (ValidateErrors) {
|
|
6371
|
-
ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
|
|
6372
|
-
ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
|
|
6373
|
-
ValidateErrors["UNSUPPORTED_EXTENSION"] = "UNSUPPORTED_EXTENSION";
|
|
6374
|
-
})(exports.ValidateErrors || (exports.ValidateErrors = {}));
|
|
6375
|
-
|
|
6376
|
-
var FileUploadPermissions;
|
|
6377
|
-
(function (FileUploadPermissions) {
|
|
6378
|
-
FileUploadPermissions["Add"] = "add";
|
|
6379
|
-
FileUploadPermissions["Read"] = "read";
|
|
6380
|
-
FileUploadPermissions["Remove"] = "remove";
|
|
6381
|
-
})(FileUploadPermissions || (FileUploadPermissions = {}));
|
|
6382
|
-
var ALL_PERMISSIONS = [
|
|
6383
|
-
FileUploadPermissions.Add,
|
|
6384
|
-
FileUploadPermissions.Read,
|
|
6385
|
-
FileUploadPermissions.Remove,
|
|
6386
|
-
];
|
|
6387
|
-
|
|
6388
|
-
var StorageUnits = {
|
|
6389
|
-
KB: 1024,
|
|
6390
|
-
MB: Math.pow(1024, 2),
|
|
6391
|
-
GB: Math.pow(1024, 3),
|
|
6392
|
-
};
|
|
6393
|
-
|
|
6394
6369
|
var Breakpoints = {
|
|
6395
6370
|
SM_MIN: 0,
|
|
6396
6371
|
SM_MAX: 767,
|
|
@@ -6497,13 +6472,43 @@
|
|
|
6497
6472
|
return ExportUtils;
|
|
6498
6473
|
}());
|
|
6499
6474
|
|
|
6475
|
+
|
|
6476
|
+
(function (ValidateErrors) {
|
|
6477
|
+
ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
|
|
6478
|
+
ValidateErrors["MAX_COMBINED_FILE_SIZE"] = "MAX_COMBINED_FILE_SIZE";
|
|
6479
|
+
ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
|
|
6480
|
+
ValidateErrors["UNSUPPORTED_EXTENSION"] = "UNSUPPORTED_EXTENSION";
|
|
6481
|
+
})(exports.ValidateErrors || (exports.ValidateErrors = {}));
|
|
6482
|
+
|
|
6483
|
+
var FileUploadPermissions;
|
|
6484
|
+
(function (FileUploadPermissions) {
|
|
6485
|
+
FileUploadPermissions["Add"] = "add";
|
|
6486
|
+
FileUploadPermissions["Read"] = "read";
|
|
6487
|
+
FileUploadPermissions["Remove"] = "remove";
|
|
6488
|
+
})(FileUploadPermissions || (FileUploadPermissions = {}));
|
|
6489
|
+
var ALL_PERMISSIONS = [
|
|
6490
|
+
FileUploadPermissions.Add,
|
|
6491
|
+
FileUploadPermissions.Read,
|
|
6492
|
+
FileUploadPermissions.Remove,
|
|
6493
|
+
];
|
|
6494
|
+
|
|
6495
|
+
var StorageUnits = {
|
|
6496
|
+
KB: 1024,
|
|
6497
|
+
MB: Math.pow(1024, 2),
|
|
6498
|
+
GB: Math.pow(1024, 3),
|
|
6499
|
+
};
|
|
6500
|
+
|
|
6500
6501
|
var FileItemComponent = /** @class */ (function () {
|
|
6501
|
-
function FileItemComponent() {
|
|
6502
|
+
function FileItemComponent(localeService) {
|
|
6503
|
+
this.localeService = localeService;
|
|
6502
6504
|
this.canReadFiles = true;
|
|
6503
6505
|
this.canRemoveFiles = true;
|
|
6504
6506
|
this.cancelUpload = new core.EventEmitter();
|
|
6505
6507
|
this.removeFile = new core.EventEmitter();
|
|
6506
6508
|
}
|
|
6509
|
+
FileItemComponent.prototype.ngOnInit = function () {
|
|
6510
|
+
this._getLocale();
|
|
6511
|
+
};
|
|
6507
6512
|
FileItemComponent.prototype.ngAfterContentInit = function () {
|
|
6508
6513
|
this._update();
|
|
6509
6514
|
};
|
|
@@ -6533,8 +6538,20 @@
|
|
|
6533
6538
|
convertedSize = size / StorageUnits.GB;
|
|
6534
6539
|
unit = "GB";
|
|
6535
6540
|
}
|
|
6536
|
-
return convertedSize + " " + unit;
|
|
6541
|
+
return convertedSize.toLocaleString(this._locale, { maximumFractionDigits: 2 }) + " " + unit;
|
|
6537
6542
|
};
|
|
6543
|
+
FileItemComponent.prototype._getLocale = function () {
|
|
6544
|
+
var _this = this;
|
|
6545
|
+
this.localeService
|
|
6546
|
+
.getLocale()
|
|
6547
|
+
.pipe(operators.first())
|
|
6548
|
+
.subscribe(function (locale) {
|
|
6549
|
+
_this._locale = locale;
|
|
6550
|
+
});
|
|
6551
|
+
};
|
|
6552
|
+
FileItemComponent.ctorParameters = function () { return [
|
|
6553
|
+
{ type: LocaleService }
|
|
6554
|
+
]; };
|
|
6538
6555
|
__decorate([
|
|
6539
6556
|
core.Input()
|
|
6540
6557
|
], FileItemComponent.prototype, "id", void 0);
|
|
@@ -6575,7 +6592,7 @@
|
|
|
6575
6592
|
core.Component({
|
|
6576
6593
|
selector: "s-file-item",
|
|
6577
6594
|
template: "<div [id]=\"id\" class=\"file-item-container\">\n <div class=\"file-info\">\n <ng-container *ngIf=\"canReadFiles; then fileNameUrl; else fileName\"></ng-container>\n <ng-template #fileNameUrl>\n <a\n class=\"file-name file-name--link\"\n tabindex=\"0\"\n [href]=\"file.objectURL\"\n download>\n {{ file.name }}\n </a>\n </ng-template>\n <ng-template #fileName>\n <span\n *ngIf=\"!canReadFiles\"\n class=\"file-name\">\n {{ file.name }}\n </span>\n </ng-template>\n <span class=\"file-size\">\n {{ simplifySize(file.size) }}\n </span>\n <div\n *ngIf=\"file.isUploading && !isSmallDevice\"\n class=\"progressbar\"\n [attr.aria-label]=\"ariaLabelProgress || 'platform.angular_components.loading_file' | translate\">\n <s-progressbar\n [value]=\"file.progress\"\n activeColor=\"blue\"\n [showValue]=\"true\">\n </s-progressbar>\n </div>\n <span\n *ngIf=\"file.isUploading && isSmallDevice\" \n class=\"fas fa-circle-notch fa-spin\"\n [attr.aria-label]=\"ariaLabelProgress || 'platform.angular_components.loading_file' | translate\">\n </span>\n\n <span\n *ngIf=\"!file.isUploading && !file.error\"\n class=\"status-icon status-icon--success fas fa-check\"\n [attr.aria-label]=\"ariaLabelSuccess || successTooltip || 'platform.angular_components.file_attached_successfully' | translate\"\n [sTooltip]=\"successTooltip || 'platform.angular_components.file_attached_successfully' | translate\">\n </span>\n <span\n *ngIf=\"!file.isUploading && file.error\"\n class=\"status-icon status-icon--fail fas fa-times\"\n [attr.aria-label]=\"file.error?.message\"\n [sTooltip]=\"file.error?.message\">\n </span>\n </div>\n <button\n *ngIf=\"file.isUploading\"\n class=\"file-option file-option--cancel\"\n (click)=\"cancelUpload.emit(file)\">\n {{ cancelLabel || \"platform.angular_components.cancel\" | translate }}\n </button>\n <button\n *ngIf=\"canRemoveFiles && !file.isUploading\"\n class=\"file-option file-option--remove\"\n (click)=\"removeFile.emit(file)\">\n {{ removeLabel || \"platform.angular_components.remove\" | translate }}\n </button>\n</div>\n",
|
|
6578
|
-
styles: [".file-item-container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;gap:16px;padding:16px}.file-item-container .file-info{color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;gap:16px;
|
|
6595
|
+
styles: [".file-item-container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;gap:16px;padding:16px}.file-item-container .file-info{color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;gap:16px;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.file-item-container .file-info .file-name{-ms-flex-positive:1;flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .file-info .file-name--link{color:#428bca;text-decoration:none}.file-item-container .file-info .file-size{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .progressbar{width:20%}.file-item-container .status-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:12px}.file-item-container .status-icon--success{color:#0c9348}.file-item-container .status-icon--fail{color:#c13018}.file-item-container .file-option{background-color:transparent;border:none;color:#428bca;cursor:pointer;font-family:\"Open Sans\",sans-serif;font-size:14px;overflow:hidden;text-overflow:ellipsis;max-width:100%}@media screen and (max-width:600px){.file-item-container{-ms-flex-align:start;align-items:flex-start;-ms-flex-direction:column;flex-direction:column}}"]
|
|
6579
6596
|
})
|
|
6580
6597
|
], FileItemComponent);
|
|
6581
6598
|
return FileItemComponent;
|
|
@@ -6619,9 +6636,9 @@
|
|
|
6619
6636
|
this.cancelUpload = new core.EventEmitter();
|
|
6620
6637
|
this.downloadFile = new core.EventEmitter();
|
|
6621
6638
|
this.validateErrors = new core.EventEmitter();
|
|
6639
|
+
this.inputValue = "";
|
|
6622
6640
|
this._files = [];
|
|
6623
6641
|
this.ngUsubscribe = new rxjs.Subject();
|
|
6624
|
-
this.inputValue = "";
|
|
6625
6642
|
}
|
|
6626
6643
|
FileUploadComponent_1 = FileUploadComponent;
|
|
6627
6644
|
Object.defineProperty(FileUploadComponent.prototype, "files", {
|
|
@@ -6645,10 +6662,7 @@
|
|
|
6645
6662
|
configurable: true
|
|
6646
6663
|
});
|
|
6647
6664
|
FileUploadComponent.prototype.ngOnInit = function () {
|
|
6648
|
-
this.supportedExtensions = this.supportedExtensions
|
|
6649
|
-
.map(function (extension) { return extension
|
|
6650
|
-
.replace(".", "")
|
|
6651
|
-
.toLowerCase(); });
|
|
6665
|
+
this.supportedExtensions = this.supportedExtensions.map(function (extension) { return extension.replace(".", "").toLowerCase(); });
|
|
6652
6666
|
};
|
|
6653
6667
|
FileUploadComponent.prototype.ngOnDestroy = function () {
|
|
6654
6668
|
this.ngUsubscribe.next();
|
|
@@ -6668,6 +6682,14 @@
|
|
|
6668
6682
|
this._clearFileInput();
|
|
6669
6683
|
return;
|
|
6670
6684
|
}
|
|
6685
|
+
if (this._isFileCombinedSizeExceeded(files)) {
|
|
6686
|
+
this.validateErrors.emit({
|
|
6687
|
+
files: files,
|
|
6688
|
+
validation: exports.ValidateErrors.MAX_COMBINED_FILE_SIZE,
|
|
6689
|
+
});
|
|
6690
|
+
this._clearFileInput();
|
|
6691
|
+
return;
|
|
6692
|
+
}
|
|
6671
6693
|
try {
|
|
6672
6694
|
for (var files_1 = __values(files), files_1_1 = files_1.next(); !files_1_1.done; files_1_1 = files_1.next()) {
|
|
6673
6695
|
var file = files_1_1.value;
|
|
@@ -6733,6 +6755,14 @@
|
|
|
6733
6755
|
}
|
|
6734
6756
|
return this.files.length + files.length > this.fileLimit;
|
|
6735
6757
|
};
|
|
6758
|
+
FileUploadComponent.prototype._isFileCombinedSizeExceeded = function (files) {
|
|
6759
|
+
if (!this.maxCombinedFileSize) {
|
|
6760
|
+
return false;
|
|
6761
|
+
}
|
|
6762
|
+
var filesList = __spread(files, this.files);
|
|
6763
|
+
var combinedSize = filesList.reduce(function (combinedSize, file) { return combinedSize + file.size; }, 0);
|
|
6764
|
+
return combinedSize > this.maxCombinedFileSize;
|
|
6765
|
+
};
|
|
6736
6766
|
FileUploadComponent.prototype._isFileSizeExceeded = function (file) {
|
|
6737
6767
|
if (!this.maxFileSize) {
|
|
6738
6768
|
return false;
|
|
@@ -6819,6 +6849,9 @@
|
|
|
6819
6849
|
__decorate([
|
|
6820
6850
|
core.Input()
|
|
6821
6851
|
], FileUploadComponent.prototype, "maxFileSize", void 0);
|
|
6852
|
+
__decorate([
|
|
6853
|
+
core.Input()
|
|
6854
|
+
], FileUploadComponent.prototype, "maxCombinedFileSize", void 0);
|
|
6822
6855
|
__decorate([
|
|
6823
6856
|
core.Input()
|
|
6824
6857
|
], FileUploadComponent.prototype, "fileLimit", void 0);
|
|
@@ -6881,6 +6914,7 @@
|
|
|
6881
6914
|
core.NgModule({
|
|
6882
6915
|
imports: [
|
|
6883
6916
|
common.CommonModule,
|
|
6917
|
+
http.HttpClientModule,
|
|
6884
6918
|
ButtonModule,
|
|
6885
6919
|
TooltipModule,
|
|
6886
6920
|
ProgressBarModule,
|
|
@@ -6890,7 +6924,10 @@
|
|
|
6890
6924
|
FileUploadComponent,
|
|
6891
6925
|
FileItemComponent,
|
|
6892
6926
|
],
|
|
6893
|
-
providers: [
|
|
6927
|
+
providers: [
|
|
6928
|
+
FileUploadService,
|
|
6929
|
+
LocaleService,
|
|
6930
|
+
],
|
|
6894
6931
|
exports: [FileUploadComponent],
|
|
6895
6932
|
})
|
|
6896
6933
|
], FileUploadModule);
|
|
@@ -8368,7 +8405,8 @@
|
|
|
8368
8405
|
exportable: true,
|
|
8369
8406
|
field: column.field,
|
|
8370
8407
|
separator: (_a = column.separator) !== null && _a !== void 0 ? _a : " - ",
|
|
8371
|
-
enumPrefix: column.enumPrefix
|
|
8408
|
+
enumPrefix: column.enumPrefix,
|
|
8409
|
+
customExport: column.customExport
|
|
8372
8410
|
};
|
|
8373
8411
|
if (column.exportable === false) {
|
|
8374
8412
|
exportColumn.exportable = false;
|
|
@@ -8389,6 +8427,7 @@
|
|
|
8389
8427
|
if (this.loadCurrentPageRecords) {
|
|
8390
8428
|
tableData = this.loadCurrentPageRecords();
|
|
8391
8429
|
}
|
|
8430
|
+
tableData = this.mapCustomExport(columns, tableData);
|
|
8392
8431
|
return this.mapColumnsTranslations(columns, tableData);
|
|
8393
8432
|
};
|
|
8394
8433
|
TablePagingComponent.prototype.getSelectedRowsToExport = function (columns) {
|
|
@@ -8396,6 +8435,7 @@
|
|
|
8396
8435
|
if (this.loadSelectedRecords) {
|
|
8397
8436
|
tableData = this.loadSelectedRecords();
|
|
8398
8437
|
}
|
|
8438
|
+
tableData = this.mapCustomExport(columns, tableData);
|
|
8399
8439
|
return this.mapColumnsTranslations(columns, tableData);
|
|
8400
8440
|
};
|
|
8401
8441
|
TablePagingComponent.prototype.getPropertyValue = function (obj, path) {
|
|
@@ -8435,6 +8475,28 @@
|
|
|
8435
8475
|
return newRow;
|
|
8436
8476
|
});
|
|
8437
8477
|
};
|
|
8478
|
+
TablePagingComponent.prototype.mapCustomExport = function (columns, rows) {
|
|
8479
|
+
var _this = this;
|
|
8480
|
+
var customColumns = columns.filter(function (p) { return p.customExport; });
|
|
8481
|
+
if (!customColumns.length) {
|
|
8482
|
+
return rows;
|
|
8483
|
+
}
|
|
8484
|
+
return __spread(rows).map(function (row) {
|
|
8485
|
+
var newRow = __assign({}, row);
|
|
8486
|
+
customColumns.forEach(function (column) {
|
|
8487
|
+
var fields = !Array.isArray(column.field) ? [column.field] : column.field;
|
|
8488
|
+
fields.forEach(function (fieldName) {
|
|
8489
|
+
var columnData = _this.getPropertyValue(row, fieldName);
|
|
8490
|
+
if (columnData === null || columnData === undefined) {
|
|
8491
|
+
return;
|
|
8492
|
+
}
|
|
8493
|
+
var newValue = column.customExport(columnData);
|
|
8494
|
+
_this.setPropertyValue(newRow, fieldName, newValue);
|
|
8495
|
+
});
|
|
8496
|
+
});
|
|
8497
|
+
return newRow;
|
|
8498
|
+
});
|
|
8499
|
+
};
|
|
8438
8500
|
TablePagingComponent.prototype.translateValue = function (column, columnData) {
|
|
8439
8501
|
// Default usage: ENUM_VALUE -> domain.service.enum_value
|
|
8440
8502
|
var enumValue = columnData.toString().toLowerCase();
|
|
@@ -8489,6 +8551,7 @@
|
|
|
8489
8551
|
case 1:
|
|
8490
8552
|
serverData = _a.sent();
|
|
8491
8553
|
columns = this.getColumnsToExport();
|
|
8554
|
+
serverData = this.mapCustomExport(columns, serverData);
|
|
8492
8555
|
dataToExport = this.mapColumnsTranslations(columns, serverData);
|
|
8493
8556
|
ExportUtils.exportCSV(columns, dataToExport, undefined, this.getExportFileName());
|
|
8494
8557
|
return [2 /*return*/];
|
|
@@ -17051,56 +17114,57 @@
|
|
|
17051
17114
|
exports.fallback = fallback;
|
|
17052
17115
|
exports.ɵa = TooltipComponent;
|
|
17053
17116
|
exports.ɵb = TooltipDirective;
|
|
17054
|
-
exports.ɵba =
|
|
17055
|
-
exports.ɵbb =
|
|
17056
|
-
exports.ɵbc =
|
|
17057
|
-
exports.ɵbd =
|
|
17058
|
-
exports.ɵbe =
|
|
17059
|
-
exports.ɵbf =
|
|
17060
|
-
exports.ɵbg =
|
|
17061
|
-
exports.ɵbh =
|
|
17062
|
-
exports.ɵbi =
|
|
17063
|
-
exports.ɵbj =
|
|
17064
|
-
exports.ɵbk =
|
|
17065
|
-
exports.ɵbl =
|
|
17066
|
-
exports.ɵbm =
|
|
17067
|
-
exports.ɵbn =
|
|
17068
|
-
exports.ɵbo =
|
|
17069
|
-
exports.ɵbp =
|
|
17070
|
-
exports.ɵ
|
|
17071
|
-
exports.ɵbs =
|
|
17072
|
-
exports.ɵbt =
|
|
17073
|
-
exports.ɵbu =
|
|
17074
|
-
exports.ɵbv =
|
|
17075
|
-
exports.ɵbw =
|
|
17076
|
-
exports.ɵbx =
|
|
17077
|
-
exports.ɵby =
|
|
17078
|
-
exports.ɵbz =
|
|
17117
|
+
exports.ɵba = CurrencyFieldComponent;
|
|
17118
|
+
exports.ɵbb = DynamicFieldComponent;
|
|
17119
|
+
exports.ɵbc = DynamicFormDirective;
|
|
17120
|
+
exports.ɵbd = FieldsetComponent;
|
|
17121
|
+
exports.ɵbe = FileUploadComponent$1;
|
|
17122
|
+
exports.ɵbf = LookupFieldComponent;
|
|
17123
|
+
exports.ɵbg = NumberFieldComponent;
|
|
17124
|
+
exports.ɵbh = PasswordFieldComponent;
|
|
17125
|
+
exports.ɵbi = RadioButtonComponent;
|
|
17126
|
+
exports.ɵbj = RowComponent;
|
|
17127
|
+
exports.ɵbk = SectionComponent;
|
|
17128
|
+
exports.ɵbl = SelectFieldComponent;
|
|
17129
|
+
exports.ɵbm = SliderFieldComponent;
|
|
17130
|
+
exports.ɵbn = TextAreaFieldComponent;
|
|
17131
|
+
exports.ɵbo = TextAreaIAFieldComponent;
|
|
17132
|
+
exports.ɵbp = IAssistService;
|
|
17133
|
+
exports.ɵbq = TextFieldComponent;
|
|
17134
|
+
exports.ɵbs = DecimalField;
|
|
17135
|
+
exports.ɵbt = SideTableComponent;
|
|
17136
|
+
exports.ɵbu = ThumbnailService;
|
|
17137
|
+
exports.ɵbv = InfiniteScrollModule;
|
|
17138
|
+
exports.ɵbw = InfiniteScrollDirective;
|
|
17139
|
+
exports.ɵbx = StructureModule;
|
|
17140
|
+
exports.ɵby = HeaderComponent;
|
|
17141
|
+
exports.ɵbz = FooterComponent;
|
|
17079
17142
|
exports.ɵc = CustomTranslationsModule;
|
|
17080
|
-
exports.ɵca =
|
|
17081
|
-
exports.ɵcb =
|
|
17082
|
-
exports.ɵcc =
|
|
17083
|
-
exports.ɵcd =
|
|
17084
|
-
exports.ɵce =
|
|
17085
|
-
exports.ɵcf =
|
|
17086
|
-
exports.ɵcg =
|
|
17087
|
-
exports.ɵch =
|
|
17088
|
-
exports.ɵci =
|
|
17089
|
-
exports.ɵcj =
|
|
17090
|
-
exports.ɵck =
|
|
17091
|
-
exports.ɵcl =
|
|
17092
|
-
exports.ɵcm =
|
|
17093
|
-
exports.ɵcn =
|
|
17094
|
-
exports.ɵco =
|
|
17095
|
-
exports.ɵcp =
|
|
17096
|
-
exports.ɵcq =
|
|
17097
|
-
exports.ɵcr =
|
|
17098
|
-
exports.ɵcs =
|
|
17099
|
-
exports.ɵct =
|
|
17100
|
-
exports.ɵcu =
|
|
17101
|
-
exports.ɵcv =
|
|
17102
|
-
exports.ɵcw =
|
|
17103
|
-
exports.ɵcx =
|
|
17143
|
+
exports.ɵca = KanbanEventService;
|
|
17144
|
+
exports.ɵcb = KanbanItemComponent;
|
|
17145
|
+
exports.ɵcc = KanbanColumnComponent;
|
|
17146
|
+
exports.ɵcd = KanbanItemDraggingComponent;
|
|
17147
|
+
exports.ɵce = NumberLocaleOptions;
|
|
17148
|
+
exports.ɵcf = BorderButtonModule;
|
|
17149
|
+
exports.ɵcg = BorderButtonComponent;
|
|
17150
|
+
exports.ɵch = SelectButtonItemComponent;
|
|
17151
|
+
exports.ɵci = SlidePanelService;
|
|
17152
|
+
exports.ɵcj = TieredMenuEventService;
|
|
17153
|
+
exports.ɵck = TieredMenuService;
|
|
17154
|
+
exports.ɵcl = TieredMenuComponent;
|
|
17155
|
+
exports.ɵcm = TieredMenuNestedComponent;
|
|
17156
|
+
exports.ɵcn = TieredMenuItemComponent;
|
|
17157
|
+
exports.ɵco = TieredMenuDividerComponent;
|
|
17158
|
+
exports.ɵcp = TimelineItemModule;
|
|
17159
|
+
exports.ɵcq = TimelineIconItemComponent;
|
|
17160
|
+
exports.ɵcr = HorizontalTimelineModule;
|
|
17161
|
+
exports.ɵcs = HorizontalTimelineComponent;
|
|
17162
|
+
exports.ɵct = VerticalTimelineModule;
|
|
17163
|
+
exports.ɵcu = VerticalTimelineComponent;
|
|
17164
|
+
exports.ɵcv = RangeLineComponent;
|
|
17165
|
+
exports.ɵcw = CollapseOptionComponent;
|
|
17166
|
+
exports.ɵcx = CollapsedItemsComponent;
|
|
17167
|
+
exports.ɵcy = VerticalItemsComponent;
|
|
17104
17168
|
exports.ɵd = CodeEditorComponent;
|
|
17105
17169
|
exports.ɵe = CoreFacade;
|
|
17106
17170
|
exports.ɵf = CodeMirror6Core;
|
|
@@ -17113,17 +17177,17 @@
|
|
|
17113
17177
|
exports.ɵm = ProgressBarIndeterminateComponent;
|
|
17114
17178
|
exports.ɵn = FileUploadService;
|
|
17115
17179
|
exports.ɵo = FileItemComponent;
|
|
17116
|
-
exports.ɵp =
|
|
17117
|
-
exports.ɵq =
|
|
17118
|
-
exports.ɵr =
|
|
17119
|
-
exports.ɵs =
|
|
17120
|
-
exports.ɵt =
|
|
17121
|
-
exports.ɵu =
|
|
17122
|
-
exports.ɵv =
|
|
17123
|
-
exports.ɵw =
|
|
17124
|
-
exports.ɵx =
|
|
17125
|
-
exports.ɵy =
|
|
17126
|
-
exports.ɵz =
|
|
17180
|
+
exports.ɵp = LocaleService;
|
|
17181
|
+
exports.ɵq = InfoSignComponent;
|
|
17182
|
+
exports.ɵr = TableColumnsComponent;
|
|
17183
|
+
exports.ɵs = TablePagingComponent;
|
|
17184
|
+
exports.ɵt = AutocompleteFieldComponent;
|
|
17185
|
+
exports.ɵu = BignumberFieldComponent;
|
|
17186
|
+
exports.ɵv = BooleanFieldComponent;
|
|
17187
|
+
exports.ɵw = BooleanSwitchFieldComponent;
|
|
17188
|
+
exports.ɵx = CalendarFieldComponent;
|
|
17189
|
+
exports.ɵy = ChipsFieldComponent;
|
|
17190
|
+
exports.ɵz = CountryPhonePickerFieldComponent;
|
|
17127
17191
|
|
|
17128
17192
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17129
17193
|
|