@firestitch/list 9.9.9 → 9.10.0
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/app/classes/actions-controller.d.ts +20 -20
- package/app/classes/columns-controller.d.ts +65 -65
- package/app/classes/data-controller.d.ts +89 -89
- package/app/classes/external-params-controller.d.ts +31 -31
- package/app/classes/index.d.ts +2 -2
- package/app/classes/list-controller.d.ts +166 -166
- package/app/classes/pagination-controller.d.ts +185 -185
- package/app/classes/persistance-controller.d.ts +7 -7
- package/app/classes/reorder-controller.d.ts +56 -56
- package/app/classes/selection-controller.d.ts +141 -141
- package/app/classes/sorting-controller.d.ts +64 -63
- package/app/components/body/body.component.d.ts +29 -29
- package/app/components/body/row/actions/actions.component.d.ts +32 -32
- package/app/components/body/row/cell/cell.component.d.ts +20 -20
- package/app/components/body/row/inline-action/inline-action.component.d.ts +10 -10
- package/app/components/body/row/row.component.d.ts +66 -66
- package/app/components/customize-cols/customize-cols.component.d.ts +14 -14
- package/app/components/footer/footer-row/footer-cell/footer-cell.component.d.ts +7 -4
- package/app/components/footer/footer-row/footer-row.component.d.ts +10 -8
- package/app/components/footer/footer.component.d.ts +10 -8
- package/app/components/head/head-cell/head-cell.component.d.ts +11 -11
- package/app/components/head/head.component.d.ts +40 -40
- package/app/components/list/list.component.d.ts +108 -108
- package/app/components/loader/loader.component.d.ts +11 -11
- package/app/components/manage-saved-filters/manage-saved-filters.component.d.ts +10 -10
- package/app/components/pagination/pagination.component.d.ts +11 -11
- package/app/components/saved-filters/saved-filters.component.d.ts +12 -12
- package/app/components/status/status.component.d.ts +18 -18
- package/app/directives/cell/cell.directive.d.ts +5 -5
- package/app/directives/column/column.directive.d.ts +24 -23
- package/app/directives/draggable-list/draggable-list.directive.d.ts +77 -77
- package/app/directives/draggable-row/draggable-row.directive.d.ts +18 -18
- package/app/directives/empty-state/empty-state.directive.d.ts +2 -2
- package/app/directives/footer/footer.directive.d.ts +5 -5
- package/app/directives/group-cell/group-cell.directive.d.ts +3 -3
- package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +7 -7
- package/app/directives/header/header.directive.d.ts +5 -5
- package/app/enums/button-type.enum.d.ts +7 -7
- package/app/enums/page-change-type.enum.d.ts +4 -4
- package/app/enums/pagination-strategy.enum.d.ts +5 -5
- package/app/enums/row-type.enum.d.ts +5 -5
- package/app/enums/state.enum.d.ts +9 -9
- package/app/fs-list.module.d.ts +6 -6
- package/app/fs-list.providers.d.ts +3 -3
- package/app/interfaces/cellconfig.interface.d.ts +5 -5
- package/app/interfaces/draggable-list.interface.d.ts +7 -7
- package/app/interfaces/external-params.interface.d.ts +13 -13
- package/app/interfaces/index.d.ts +3 -3
- package/app/interfaces/listconfig.interface.d.ts +220 -220
- package/app/interfaces/pagination.interface.d.ts +13 -13
- package/app/models/column.model.d.ts +48 -46
- package/app/models/row/base-row.d.ts +13 -13
- package/app/models/row/child-row.d.ts +12 -12
- package/app/models/row/group-row.d.ts +14 -14
- package/app/models/row/simple-row.d.ts +5 -5
- package/app/models/row-action.model.d.ts +29 -29
- package/app/models/row.d.ts +28 -28
- package/app/models/styleConfig.model.d.ts +31 -31
- package/app/services/group-expand-notifier.service.d.ts +8 -8
- package/bundles/firestitch-list.umd.js +5832 -5783
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/bundles/firestitch-list.umd.min.js +1 -1
- package/bundles/firestitch-list.umd.min.js.map +1 -1
- package/esm2015/app/classes/actions-controller.js +55 -55
- package/esm2015/app/classes/columns-controller.js +185 -185
- package/esm2015/app/classes/data-controller.js +318 -311
- package/esm2015/app/classes/external-params-controller.js +155 -155
- package/esm2015/app/classes/index.js +3 -3
- package/esm2015/app/classes/list-controller.js +730 -730
- package/esm2015/app/classes/pagination-controller.js +461 -461
- package/esm2015/app/classes/persistance-controller.js +22 -22
- package/esm2015/app/classes/reorder-controller.js +161 -161
- package/esm2015/app/classes/selection-controller.js +444 -444
- package/esm2015/app/classes/sorting-controller.js +177 -167
- package/esm2015/app/components/body/body.component.js +103 -103
- package/esm2015/app/components/body/row/actions/actions.component.js +110 -110
- package/esm2015/app/components/body/row/cell/cell.component.js +93 -93
- package/esm2015/app/components/body/row/inline-action/inline-action.component.js +34 -34
- package/esm2015/app/components/body/row/row.component.js +267 -267
- package/esm2015/app/components/customize-cols/customize-cols.component.js +67 -67
- package/esm2015/app/components/footer/footer-row/footer-cell/footer-cell.component.js +27 -18
- package/esm2015/app/components/footer/footer-row/footer-row.component.js +39 -35
- package/esm2015/app/components/footer/footer.component.js +34 -30
- package/esm2015/app/components/head/head-cell/head-cell.component.js +35 -35
- package/esm2015/app/components/head/head.component.js +99 -99
- package/esm2015/app/components/list/list.component.js +357 -357
- package/esm2015/app/components/loader/loader.component.js +46 -46
- package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +75 -75
- package/esm2015/app/components/pagination/pagination.component.js +44 -44
- package/esm2015/app/components/saved-filters/saved-filters.component.js +36 -36
- package/esm2015/app/components/status/status.component.js +77 -77
- package/esm2015/app/directives/cell/cell.directive.js +21 -21
- package/esm2015/app/directives/column/column.directive.js +97 -93
- package/esm2015/app/directives/draggable-list/draggable-list.directive.js +264 -264
- package/esm2015/app/directives/draggable-row/draggable-row.directive.js +81 -81
- package/esm2015/app/directives/empty-state/empty-state.directive.js +11 -11
- package/esm2015/app/directives/footer/footer.directive.js +21 -21
- package/esm2015/app/directives/group-cell/group-cell.directive.js +12 -12
- package/esm2015/app/directives/group-expand-trigger/group-expand-trigger.directive.js +32 -32
- package/esm2015/app/directives/header/header.directive.js +21 -21
- package/esm2015/app/enums/button-type.enum.js +9 -9
- package/esm2015/app/enums/page-change-type.enum.js +6 -6
- package/esm2015/app/enums/pagination-strategy.enum.js +7 -7
- package/esm2015/app/enums/row-type.enum.js +7 -7
- package/esm2015/app/enums/state.enum.js +11 -11
- package/esm2015/app/fs-list.module.js +140 -140
- package/esm2015/app/fs-list.providers.js +4 -4
- package/esm2015/app/interfaces/cellconfig.interface.js +1 -1
- package/esm2015/app/interfaces/draggable-list.interface.js +1 -1
- package/esm2015/app/interfaces/external-params.interface.js +1 -1
- package/esm2015/app/interfaces/index.js +1 -1
- package/esm2015/app/interfaces/listconfig.interface.js +1 -1
- package/esm2015/app/interfaces/pagination.interface.js +1 -1
- package/esm2015/app/models/column.model.js +185 -175
- package/esm2015/app/models/row/base-row.js +23 -23
- package/esm2015/app/models/row/child-row.js +28 -28
- package/esm2015/app/models/row/group-row.js +41 -41
- package/esm2015/app/models/row/simple-row.js +10 -10
- package/esm2015/app/models/row-action.model.js +115 -115
- package/esm2015/app/models/row.js +77 -77
- package/esm2015/app/models/styleConfig.model.js +86 -86
- package/esm2015/app/services/group-expand-notifier.service.js +25 -25
- package/esm2015/firestitch-list.js +17 -17
- package/esm2015/public_api.js +40 -40
- package/esm5/app/classes/actions-controller.js +71 -71
- package/esm5/app/classes/columns-controller.js +236 -236
- package/esm5/app/classes/data-controller.js +374 -365
- package/esm5/app/classes/external-params-controller.js +185 -185
- package/esm5/app/classes/index.js +3 -3
- package/esm5/app/classes/list-controller.js +749 -749
- package/esm5/app/classes/pagination-controller.js +568 -568
- package/esm5/app/classes/persistance-controller.js +25 -25
- package/esm5/app/classes/reorder-controller.js +195 -195
- package/esm5/app/classes/selection-controller.js +465 -465
- package/esm5/app/classes/sorting-controller.js +204 -194
- package/esm5/app/components/body/body.component.js +104 -104
- package/esm5/app/components/body/row/actions/actions.component.js +113 -113
- package/esm5/app/components/body/row/cell/cell.component.js +95 -95
- package/esm5/app/components/body/row/inline-action/inline-action.component.js +35 -35
- package/esm5/app/components/body/row/row.component.js +295 -295
- package/esm5/app/components/customize-cols/customize-cols.component.js +69 -69
- package/esm5/app/components/footer/footer-row/footer-cell/footer-cell.component.js +29 -20
- package/esm5/app/components/footer/footer-row/footer-row.component.js +42 -38
- package/esm5/app/components/footer/footer.component.js +35 -31
- package/esm5/app/components/head/head-cell/head-cell.component.js +38 -38
- package/esm5/app/components/head/head.component.js +106 -106
- package/esm5/app/components/list/list.component.js +391 -391
- package/esm5/app/components/loader/loader.component.js +47 -47
- package/esm5/app/components/manage-saved-filters/manage-saved-filters.component.js +81 -81
- package/esm5/app/components/pagination/pagination.component.js +46 -46
- package/esm5/app/components/saved-filters/saved-filters.component.js +41 -41
- package/esm5/app/components/status/status.component.js +79 -79
- package/esm5/app/directives/cell/cell.directive.js +24 -24
- package/esm5/app/directives/column/column.directive.js +98 -94
- package/esm5/app/directives/draggable-list/draggable-list.directive.js +281 -281
- package/esm5/app/directives/draggable-row/draggable-row.directive.js +83 -83
- package/esm5/app/directives/empty-state/empty-state.directive.js +14 -14
- package/esm5/app/directives/footer/footer.directive.js +24 -24
- package/esm5/app/directives/group-cell/group-cell.directive.js +17 -17
- package/esm5/app/directives/group-expand-trigger/group-expand-trigger.directive.js +33 -33
- package/esm5/app/directives/header/header.directive.js +24 -24
- package/esm5/app/enums/button-type.enum.js +9 -9
- package/esm5/app/enums/page-change-type.enum.js +6 -6
- package/esm5/app/enums/pagination-strategy.enum.js +7 -7
- package/esm5/app/enums/row-type.enum.js +7 -7
- package/esm5/app/enums/state.enum.js +11 -11
- package/esm5/app/fs-list.module.js +145 -145
- package/esm5/app/fs-list.providers.js +4 -4
- package/esm5/app/interfaces/cellconfig.interface.js +1 -1
- package/esm5/app/interfaces/draggable-list.interface.js +1 -1
- package/esm5/app/interfaces/external-params.interface.js +1 -1
- package/esm5/app/interfaces/index.js +1 -1
- package/esm5/app/interfaces/listconfig.interface.js +1 -1
- package/esm5/app/interfaces/pagination.interface.js +1 -1
- package/esm5/app/models/column.model.js +204 -194
- package/esm5/app/models/row/base-row.js +35 -35
- package/esm5/app/models/row/child-row.js +43 -43
- package/esm5/app/models/row/group-row.js +61 -61
- package/esm5/app/models/row/simple-row.js +15 -15
- package/esm5/app/models/row-action.model.js +126 -126
- package/esm5/app/models/row.js +126 -126
- package/esm5/app/models/styleConfig.model.js +91 -91
- package/esm5/app/services/group-expand-notifier.service.js +30 -30
- package/esm5/firestitch-list.js +17 -17
- package/esm5/public_api.js +40 -40
- package/fesm2015/firestitch-list.js +5188 -5141
- package/fesm2015/firestitch-list.js.map +1 -1
- package/fesm5/firestitch-list.js +5817 -5768
- package/fesm5/firestitch-list.js.map +1 -1
- package/firestitch-list.d.ts +18 -18
- package/firestitch-list.metadata.json +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +33 -33
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, HostBinding, Input, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import { takeUntil } from 'rxjs/operators';
|
|
5
|
-
import { SortingController } from '../../classes/sorting-controller';
|
|
6
|
-
import { PaginationController } from '../../classes/pagination-controller';
|
|
7
|
-
import { SortingDirection } from '../../models/column.model';
|
|
8
|
-
let FsStatusComponent = class FsStatusComponent {
|
|
9
|
-
constructor(_cdRef) {
|
|
10
|
-
this._cdRef = _cdRef;
|
|
11
|
-
this._destroy$ = new Subject();
|
|
12
|
-
}
|
|
13
|
-
ngOnInit() {
|
|
14
|
-
this.sorting.sortingChanged$
|
|
15
|
-
.pipe(takeUntil(this._destroy$))
|
|
16
|
-
.subscribe(() => {
|
|
17
|
-
this._cdRef.markForCheck();
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
ngOnDestroy() {
|
|
21
|
-
this._destroy$.next();
|
|
22
|
-
this._destroy$.complete();
|
|
23
|
-
}
|
|
24
|
-
toggleDirection() {
|
|
25
|
-
if (this.sorting.sortingColumn.direction === 'asc') {
|
|
26
|
-
this.sorting.sortDirection(SortingDirection.desc);
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
this.sorting.sortDirection(SortingDirection.asc);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
setSortableColumn(column) {
|
|
33
|
-
if (this.sorting.sortingColumn !== column) {
|
|
34
|
-
this.sorting.sortBy(column);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
setLimit(limit) {
|
|
38
|
-
this.paging.setLimit(limit);
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
FsStatusComponent.ctorParameters = () => [
|
|
42
|
-
{ type: ChangeDetectorRef }
|
|
43
|
-
];
|
|
44
|
-
__decorate([
|
|
45
|
-
Input(),
|
|
46
|
-
__metadata("design:type", PaginationController)
|
|
47
|
-
], FsStatusComponent.prototype, "paging", void 0);
|
|
48
|
-
__decorate([
|
|
49
|
-
Input(),
|
|
50
|
-
__metadata("design:type", SortingController)
|
|
51
|
-
], FsStatusComponent.prototype, "sorting", void 0);
|
|
52
|
-
__decorate([
|
|
53
|
-
Input(),
|
|
54
|
-
__metadata("design:type", Object)
|
|
55
|
-
], FsStatusComponent.prototype, "rows", void 0);
|
|
56
|
-
__decorate([
|
|
57
|
-
Input(),
|
|
58
|
-
__metadata("design:type", Object)
|
|
59
|
-
], FsStatusComponent.prototype, "scrollable", void 0);
|
|
60
|
-
__decorate([
|
|
61
|
-
Input(),
|
|
62
|
-
HostBinding('class.first-load'),
|
|
63
|
-
HostBinding('class.fs-skeleton-placeholder'),
|
|
64
|
-
__metadata("design:type", Boolean)
|
|
65
|
-
], FsStatusComponent.prototype, "firstLoad", void 0);
|
|
66
|
-
FsStatusComponent = __decorate([
|
|
67
|
-
Component({
|
|
68
|
-
selector: 'fs-list-status',
|
|
69
|
-
template: "<div class=\"status\">\
|
|
70
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
71
|
-
preserveWhitespaces: true,
|
|
72
|
-
styles: [":host{display:inline-block}:host.first-load .status{visibility:hidden}.order-toggle{white-space:nowrap}a{cursor:pointer}"]
|
|
73
|
-
}),
|
|
74
|
-
__metadata("design:paramtypes", [ChangeDetectorRef])
|
|
75
|
-
], FsStatusComponent);
|
|
76
|
-
export { FsStatusComponent };
|
|
77
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, HostBinding, Input, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import { takeUntil } from 'rxjs/operators';
|
|
5
|
+
import { SortingController } from '../../classes/sorting-controller';
|
|
6
|
+
import { PaginationController } from '../../classes/pagination-controller';
|
|
7
|
+
import { SortingDirection } from '../../models/column.model';
|
|
8
|
+
let FsStatusComponent = class FsStatusComponent {
|
|
9
|
+
constructor(_cdRef) {
|
|
10
|
+
this._cdRef = _cdRef;
|
|
11
|
+
this._destroy$ = new Subject();
|
|
12
|
+
}
|
|
13
|
+
ngOnInit() {
|
|
14
|
+
this.sorting.sortingChanged$
|
|
15
|
+
.pipe(takeUntil(this._destroy$))
|
|
16
|
+
.subscribe(() => {
|
|
17
|
+
this._cdRef.markForCheck();
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
ngOnDestroy() {
|
|
21
|
+
this._destroy$.next();
|
|
22
|
+
this._destroy$.complete();
|
|
23
|
+
}
|
|
24
|
+
toggleDirection() {
|
|
25
|
+
if (this.sorting.sortingColumn.direction === 'asc') {
|
|
26
|
+
this.sorting.sortDirection(SortingDirection.desc);
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
this.sorting.sortDirection(SortingDirection.asc);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
setSortableColumn(column) {
|
|
33
|
+
if (this.sorting.sortingColumn !== column) {
|
|
34
|
+
this.sorting.sortBy(column);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
setLimit(limit) {
|
|
38
|
+
this.paging.setLimit(limit);
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
FsStatusComponent.ctorParameters = () => [
|
|
42
|
+
{ type: ChangeDetectorRef }
|
|
43
|
+
];
|
|
44
|
+
__decorate([
|
|
45
|
+
Input(),
|
|
46
|
+
__metadata("design:type", PaginationController)
|
|
47
|
+
], FsStatusComponent.prototype, "paging", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
Input(),
|
|
50
|
+
__metadata("design:type", SortingController)
|
|
51
|
+
], FsStatusComponent.prototype, "sorting", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
Input(),
|
|
54
|
+
__metadata("design:type", Object)
|
|
55
|
+
], FsStatusComponent.prototype, "rows", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
Input(),
|
|
58
|
+
__metadata("design:type", Object)
|
|
59
|
+
], FsStatusComponent.prototype, "scrollable", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
Input(),
|
|
62
|
+
HostBinding('class.first-load'),
|
|
63
|
+
HostBinding('class.fs-skeleton-placeholder'),
|
|
64
|
+
__metadata("design:type", Boolean)
|
|
65
|
+
], FsStatusComponent.prototype, "firstLoad", void 0);
|
|
66
|
+
FsStatusComponent = __decorate([
|
|
67
|
+
Component({
|
|
68
|
+
selector: 'fs-list-status',
|
|
69
|
+
template: "<div class=\"status\">\n <ng-container *ngIf=\"paging.enabled && !scrollable\">\n <ng-container *ngIf=\"paging.records > 0; else emptyResults\">\n Showing <a [fsMenuTriggerFor]=\"limitsMenu\">{{ paging.statusLabel }}</a> of {{ paging.records | number:'1.0':'en-US' }} results\n </ng-container>\n <ng-template #emptyResults>\n Showing <a [fsMenuTriggerFor]=\"limitsMenu\">0</a> results\n </ng-template>\n <ng-container *ngTemplateOutlet=\"sortedBy\"></ng-container><!--\n--></ng-container><!--\n\n--><ng-container *ngIf=\"(!paging.enabled || scrollable) && paging.displayed > 0\">\n <ng-container *ngIf=\"!scrollable; else scrollable\">\n Showing\n <span *ngIf=\"paging.displayed == 1\">{{ paging.displayed }} result </span>\n <span *ngIf=\"paging.displayed > 1\">{{ paging.displayed | number:'1.0':'en-US' }} results </span>\n </ng-container>\n\n <ng-template #scrollable>\n <span *ngIf=\"paging.records == 1\">{{ paging.records }} result </span>\n <span *ngIf=\"paging.records > 1\">{{ paging.records | number:'1.0':'en-US' }} results </span>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"sortedBy\"></ng-container><!--\n--></ng-container><!--\n\n--><fs-list-saved-filters class=\"saved-filters\"></fs-list-saved-filters>\n\n <fs-menu [hidden]=\"!paging.enabled || scrollable\" #limitsMenu>\n <ng-template\n ngFor\n let-limit\n [ngForOf]=\"paging.limits\"\n >\n <ng-template fs-menu-item (click)=\"setLimit(limit)\">\n {{ limit }}\n </ng-template>\n </ng-template>\n </fs-menu>\n\n <fs-menu [hidden]=\"!sorting.sortingColumn || paging.displayed === 0\" #orderColumnsMenu>\n <!-- Real sorting columns -->\n <ng-template\n ngFor\n let-column\n [ngForOf]=\"sorting.sortingColumns\"\n >\n <ng-template fs-menu-item (click)=\"setSortableColumn(column)\">\n <ng-container *ngIf=\"column.title; else sortByTemplate\">\n {{ column.title }}\n </ng-container>\n <ng-template #sortByTemplate>\n <ng-template [ngTemplateOutlet]=\"column.headerTemplate\"></ng-template>\n </ng-template>\n </ng-template>\n </ng-template>\n\n <!-- Fake sorting columns -->\n <ng-template\n ngFor\n let-column\n [ngForOf]=\"sorting.fakeSortingColumns\"\n >\n <ng-template fs-menu-item (click)=\"setSortableColumn(column)\">\n {{ column.title }}\n </ng-template>\n </ng-template>\n </fs-menu>\n\n <ng-template #sortedBy>\n <ng-container *ngIf=\"sorting.sortingColumn\">\n sorted by\n <ng-container *ngIf=\"sorting.sortingColumn.title; else sortByTemplate\">\n <a class=\"order-toggle\" [fsMenuTriggerFor]=\"orderColumnsMenu\">{{ sorting.sortingColumn.title }}</a>,\n </ng-container>\n <ng-template #sortByTemplate>\n <a class=\"order-toggle\" [fsMenuTriggerFor]=\"orderColumnsMenu\">\n <ng-template [ngTemplateOutlet]=\"sorting.sortingColumn.headerTemplate\"></ng-template>\n </a>,\n </ng-template>\n <a class=\"order-toggle\" (click)=\"toggleDirection()\">{{ sorting.sortingColumn.fullNameDirection }}</a><!--\n --></ng-container><!--\n--></ng-template>\n</div>\n",
|
|
70
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
71
|
+
preserveWhitespaces: true,
|
|
72
|
+
styles: [":host{display:inline-block}:host.first-load .status{visibility:hidden}.order-toggle{white-space:nowrap}a{cursor:pointer}"]
|
|
73
|
+
}),
|
|
74
|
+
__metadata("design:paramtypes", [ChangeDetectorRef])
|
|
75
|
+
], FsStatusComponent);
|
|
76
|
+
export { FsStatusComponent };
|
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdHVzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BmaXJlc3RpdGNoL2xpc3QvIiwic291cmNlcyI6WyJhcHAvY29tcG9uZW50cy9zdGF0dXMvc3RhdHVzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixpQkFBaUIsRUFDakIsU0FBUyxFQUNULFdBQVcsRUFDWCxLQUFLLEVBQ0wsU0FBUyxFQUNULE1BQU0sRUFDUCxNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUUzQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQVk3RCxJQUFhLGlCQUFpQixHQUE5QixNQUFhLGlCQUFpQjtJQWE1QixZQUFvQixNQUF5QjtRQUF6QixXQUFNLEdBQU4sTUFBTSxDQUFtQjtRQUZyQyxjQUFTLEdBQUcsSUFBSSxPQUFPLEVBQVEsQ0FBQztJQUd4QyxDQUFDO0lBRU0sUUFBUTtRQUNiLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZTthQUN6QixJQUFJLENBQ0gsU0FBUyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FDMUI7YUFDQSxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQ2QsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUM3QixDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDdEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBRU0sZUFBZTtRQUNwQixJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLFNBQVMsS0FBSyxLQUFLLEVBQUU7WUFDbEQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDbkQ7YUFBTTtZQUNMLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDO1NBQ2xEO0lBQ0gsQ0FBQztJQUVNLGlCQUFpQixDQUFDLE1BQU07UUFDN0IsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsS0FBSyxNQUFNLEVBQUU7WUFDekMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7U0FDN0I7SUFDSCxDQUFDO0lBRU0sUUFBUSxDQUFDLEtBQUs7UUFDbkIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDOUIsQ0FBQztDQUNGLENBQUE7O1lBbkM2QixpQkFBaUI7O0FBWnBDO0lBQVIsS0FBSyxFQUFFOzhCQUFnQixvQkFBb0I7aURBQUM7QUFDcEM7SUFBUixLQUFLLEVBQUU7OEJBQWlCLGlCQUFpQjtrREFBQztBQUNsQztJQUFSLEtBQUssRUFBRTs7K0NBQWE7QUFDWjtJQUFSLEtBQUssRUFBRTs7cURBQW1CO0FBSzNCO0lBSEMsS0FBSyxFQUFFO0lBQ1AsV0FBVyxDQUFDLGtCQUFrQixDQUFDO0lBQy9CLFdBQVcsQ0FBQywrQkFBK0IsQ0FBQzs7b0RBQ25CO0FBVGYsaUJBQWlCO0lBVDdCLFNBQVMsQ0FBQztRQUNULFFBQVEsRUFBRSxnQkFBZ0I7UUFDMUIsa3FHQUFvQztRQUlwQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtRQUMvQyxtQkFBbUIsRUFBRSxJQUFJOztLQUMxQixDQUFDO3FDQWM0QixpQkFBaUI7R0FibEMsaUJBQWlCLENBZ0Q3QjtTQWhEWSxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgSG9zdEJpbmRpbmcsXG4gIElucHV0LFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgdGFrZVVudGlsIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5pbXBvcnQgeyBTb3J0aW5nQ29udHJvbGxlciB9IGZyb20gJy4uLy4uL2NsYXNzZXMvc29ydGluZy1jb250cm9sbGVyJztcbmltcG9ydCB7IFBhZ2luYXRpb25Db250cm9sbGVyIH0gZnJvbSAnLi4vLi4vY2xhc3Nlcy9wYWdpbmF0aW9uLWNvbnRyb2xsZXInO1xuaW1wb3J0IHsgU29ydGluZ0RpcmVjdGlvbiB9IGZyb20gJy4uLy4uL21vZGVscy9jb2x1bW4ubW9kZWwnO1xuXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2ZzLWxpc3Qtc3RhdHVzJyxcbiAgdGVtcGxhdGVVcmw6ICdzdGF0dXMuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFtcbiAgICAnLi9zdGF0dXMuY29tcG9uZW50LnNjc3MnLFxuICBdLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBGc1N0YXR1c0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgQElucHV0KCkgcHVibGljIHBhZ2luZzogUGFnaW5hdGlvbkNvbnRyb2xsZXI7XG4gIEBJbnB1dCgpIHB1YmxpYyBzb3J0aW5nOiBTb3J0aW5nQ29udHJvbGxlcjtcbiAgQElucHV0KCkgcHVibGljIHJvd3M7XG4gIEBJbnB1dCgpIHB1YmxpYyBzY3JvbGxhYmxlO1xuXG4gIEBJbnB1dCgpXG4gIEBIb3N0QmluZGluZygnY2xhc3MuZmlyc3QtbG9hZCcpXG4gIEBIb3N0QmluZGluZygnY2xhc3MuZnMtc2tlbGV0b24tcGxhY2Vob2xkZXInKVxuICBwdWJsaWMgZmlyc3RMb2FkOiBib29sZWFuO1xuXG4gIHByaXZhdGUgX2Rlc3Ryb3kkID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9jZFJlZjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLnNvcnRpbmcuc29ydGluZ0NoYW5nZWQkXG4gICAgICAucGlwZShcbiAgICAgICAgdGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kkKSxcbiAgICAgIClcbiAgICAgIC5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICB0aGlzLl9jZFJlZi5tYXJrRm9yQ2hlY2soKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuX2Rlc3Ryb3kkLm5leHQoKTtcbiAgICB0aGlzLl9kZXN0cm95JC5jb21wbGV0ZSgpO1xuICB9XG5cbiAgcHVibGljIHRvZ2dsZURpcmVjdGlvbigpIHtcbiAgICBpZiAodGhpcy5zb3J0aW5nLnNvcnRpbmdDb2x1bW4uZGlyZWN0aW9uID09PSAnYXNjJykge1xuICAgICAgdGhpcy5zb3J0aW5nLnNvcnREaXJlY3Rpb24oU29ydGluZ0RpcmVjdGlvbi5kZXNjKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5zb3J0aW5nLnNvcnREaXJlY3Rpb24oU29ydGluZ0RpcmVjdGlvbi5hc2MpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBzZXRTb3J0YWJsZUNvbHVtbihjb2x1bW4pIHtcbiAgICBpZiAodGhpcy5zb3J0aW5nLnNvcnRpbmdDb2x1bW4gIT09IGNvbHVtbikge1xuICAgICAgdGhpcy5zb3J0aW5nLnNvcnRCeShjb2x1bW4pO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBzZXRMaW1pdChsaW1pdCkge1xuICAgIHRoaXMucGFnaW5nLnNldExpbWl0KGxpbWl0KTtcbiAgfVxufVxuIl19
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { Directive, Input } from '@angular/core';
|
|
3
|
-
let FsListCellDirective = class FsListCellDirective {
|
|
4
|
-
};
|
|
5
|
-
__decorate([
|
|
6
|
-
Input(),
|
|
7
|
-
__metadata("design:type", Object)
|
|
8
|
-
], FsListCellDirective.prototype, "colspan", void 0);
|
|
9
|
-
__decorate([
|
|
10
|
-
Input(),
|
|
11
|
-
__metadata("design:type", String)
|
|
12
|
-
], FsListCellDirective.prototype, "align", void 0);
|
|
13
|
-
__decorate([
|
|
14
|
-
Input('class'),
|
|
15
|
-
__metadata("design:type", Object)
|
|
16
|
-
], FsListCellDirective.prototype, "className", void 0);
|
|
17
|
-
FsListCellDirective = __decorate([
|
|
18
|
-
Directive({ selector: '[fs-list-cell]' })
|
|
19
|
-
], FsListCellDirective);
|
|
20
|
-
export { FsListCellDirective };
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { Directive, Input } from '@angular/core';
|
|
3
|
+
let FsListCellDirective = class FsListCellDirective {
|
|
4
|
+
};
|
|
5
|
+
__decorate([
|
|
6
|
+
Input(),
|
|
7
|
+
__metadata("design:type", Object)
|
|
8
|
+
], FsListCellDirective.prototype, "colspan", void 0);
|
|
9
|
+
__decorate([
|
|
10
|
+
Input(),
|
|
11
|
+
__metadata("design:type", String)
|
|
12
|
+
], FsListCellDirective.prototype, "align", void 0);
|
|
13
|
+
__decorate([
|
|
14
|
+
Input('class'),
|
|
15
|
+
__metadata("design:type", Object)
|
|
16
|
+
], FsListCellDirective.prototype, "className", void 0);
|
|
17
|
+
FsListCellDirective = __decorate([
|
|
18
|
+
Directive({ selector: '[fs-list-cell]' })
|
|
19
|
+
], FsListCellDirective);
|
|
20
|
+
export { FsListCellDirective };
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2VsbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AZmlyZXN0aXRjaC9saXN0LyIsInNvdXJjZXMiOlsiYXBwL2RpcmVjdGl2ZXMvY2VsbC9jZWxsLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHakQsSUFBYSxtQkFBbUIsR0FBaEMsTUFBYSxtQkFBbUI7Q0FJL0IsQ0FBQTtBQUhVO0lBQVIsS0FBSyxFQUFFOztvREFBZ0I7QUFDZjtJQUFSLEtBQUssRUFBRTs7a0RBQXNCO0FBQ2Q7SUFBZixLQUFLLENBQUMsT0FBTyxDQUFDOztzREFBcUM7QUFIekMsbUJBQW1CO0lBRC9CLFNBQVMsQ0FBQyxFQUFFLFFBQVEsRUFBRSxnQkFBZ0IsRUFBRSxDQUFDO0dBQzdCLG1CQUFtQixDQUkvQjtTQUpZLG1CQUFtQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7IHNlbGVjdG9yOiAnW2ZzLWxpc3QtY2VsbF0nIH0pXG5leHBvcnQgY2xhc3MgRnNMaXN0Q2VsbERpcmVjdGl2ZSB7XG4gIEBJbnB1dCgpIHB1YmxpYyBjb2xzcGFuO1xuICBASW5wdXQoKSBwdWJsaWMgYWxpZ246IHN0cmluZztcbiAgQElucHV0KCdjbGFzcycpIHB1YmxpYyBjbGFzc05hbWU6IHN0cmluZyB8IHN0cmluZ1tdO1xufVxuIl19
|
|
@@ -1,93 +1,97 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { ContentChild, ContentChildren, Directive, Input, QueryList, TemplateRef } from '@angular/core';
|
|
3
|
-
// Directives
|
|
4
|
-
import { FsListHeaderDirective } from '../header/header.directive';
|
|
5
|
-
import { FsListCellDirective } from '../cell/cell.directive';
|
|
6
|
-
import { FsListFooterDirective } from '../footer/footer.directive';
|
|
7
|
-
import { FsListGroupCellDirective } from '../group-cell/group-cell.directive';
|
|
8
|
-
import { FsListGroupExpandTriggerDirective } from '../group-expand-trigger/group-expand-trigger.directive';
|
|
9
|
-
let FsListColumnDirective = class FsListColumnDirective {
|
|
10
|
-
constructor() {
|
|
11
|
-
this.show = true;
|
|
12
|
-
this.customize = true;
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
__decorate([
|
|
16
|
-
Input(),
|
|
17
|
-
__metadata("design:type", String)
|
|
18
|
-
], FsListColumnDirective.prototype, "title", void 0);
|
|
19
|
-
__decorate([
|
|
20
|
-
Input(),
|
|
21
|
-
__metadata("design:type", String)
|
|
22
|
-
], FsListColumnDirective.prototype, "name", void 0);
|
|
23
|
-
__decorate([
|
|
24
|
-
Input(),
|
|
25
|
-
__metadata("design:type", Object)
|
|
26
|
-
], FsListColumnDirective.prototype, "show", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
Input(),
|
|
29
|
-
__metadata("design:type", Object)
|
|
30
|
-
], FsListColumnDirective.prototype, "customize", void 0);
|
|
31
|
-
__decorate([
|
|
32
|
-
Input(),
|
|
33
|
-
__metadata("design:type", Boolean)
|
|
34
|
-
], FsListColumnDirective.prototype, "sortable", void 0);
|
|
35
|
-
__decorate([
|
|
36
|
-
Input(),
|
|
37
|
-
__metadata("design:type",
|
|
38
|
-
], FsListColumnDirective.prototype, "
|
|
39
|
-
__decorate([
|
|
40
|
-
Input(),
|
|
41
|
-
__metadata("design:type", String)
|
|
42
|
-
], FsListColumnDirective.prototype, "
|
|
43
|
-
__decorate([
|
|
44
|
-
Input(),
|
|
45
|
-
__metadata("design:type", String)
|
|
46
|
-
], FsListColumnDirective.prototype, "
|
|
47
|
-
__decorate([
|
|
48
|
-
Input(
|
|
49
|
-
__metadata("design:type",
|
|
50
|
-
], FsListColumnDirective.prototype, "
|
|
51
|
-
__decorate([
|
|
52
|
-
|
|
53
|
-
__metadata("design:type",
|
|
54
|
-
], FsListColumnDirective.prototype, "
|
|
55
|
-
__decorate([
|
|
56
|
-
ContentChild(FsListHeaderDirective, { static: true }),
|
|
57
|
-
__metadata("design:type",
|
|
58
|
-
], FsListColumnDirective.prototype, "
|
|
59
|
-
__decorate([
|
|
60
|
-
ContentChild(
|
|
61
|
-
__metadata("design:type",
|
|
62
|
-
], FsListColumnDirective.prototype, "
|
|
63
|
-
__decorate([
|
|
64
|
-
ContentChild(FsListGroupCellDirective, { static: true }),
|
|
65
|
-
__metadata("design:type",
|
|
66
|
-
], FsListColumnDirective.prototype, "
|
|
67
|
-
__decorate([
|
|
68
|
-
|
|
69
|
-
__metadata("design:type",
|
|
70
|
-
], FsListColumnDirective.prototype, "
|
|
71
|
-
__decorate([
|
|
72
|
-
|
|
73
|
-
__metadata("design:type",
|
|
74
|
-
], FsListColumnDirective.prototype, "
|
|
75
|
-
__decorate([
|
|
76
|
-
ContentChild(FsListCellDirective, { static: true }),
|
|
77
|
-
__metadata("design:type",
|
|
78
|
-
], FsListColumnDirective.prototype, "
|
|
79
|
-
__decorate([
|
|
80
|
-
ContentChild(
|
|
81
|
-
__metadata("design:type",
|
|
82
|
-
], FsListColumnDirective.prototype, "
|
|
83
|
-
__decorate([
|
|
84
|
-
ContentChild(FsListFooterDirective, { static: true }),
|
|
85
|
-
__metadata("design:type",
|
|
86
|
-
], FsListColumnDirective.prototype, "
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { ContentChild, ContentChildren, Directive, Input, QueryList, TemplateRef } from '@angular/core';
|
|
3
|
+
// Directives
|
|
4
|
+
import { FsListHeaderDirective } from '../header/header.directive';
|
|
5
|
+
import { FsListCellDirective } from '../cell/cell.directive';
|
|
6
|
+
import { FsListFooterDirective } from '../footer/footer.directive';
|
|
7
|
+
import { FsListGroupCellDirective } from '../group-cell/group-cell.directive';
|
|
8
|
+
import { FsListGroupExpandTriggerDirective } from '../group-expand-trigger/group-expand-trigger.directive';
|
|
9
|
+
let FsListColumnDirective = class FsListColumnDirective {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.show = true;
|
|
12
|
+
this.customize = true;
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
__decorate([
|
|
16
|
+
Input(),
|
|
17
|
+
__metadata("design:type", String)
|
|
18
|
+
], FsListColumnDirective.prototype, "title", void 0);
|
|
19
|
+
__decorate([
|
|
20
|
+
Input(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], FsListColumnDirective.prototype, "name", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
Input(),
|
|
25
|
+
__metadata("design:type", Object)
|
|
26
|
+
], FsListColumnDirective.prototype, "show", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
Input(),
|
|
29
|
+
__metadata("design:type", Object)
|
|
30
|
+
], FsListColumnDirective.prototype, "customize", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
Input(),
|
|
33
|
+
__metadata("design:type", Boolean)
|
|
34
|
+
], FsListColumnDirective.prototype, "sortable", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
Input(),
|
|
37
|
+
__metadata("design:type", Boolean)
|
|
38
|
+
], FsListColumnDirective.prototype, "sortableDefault", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
Input(),
|
|
41
|
+
__metadata("design:type", String)
|
|
42
|
+
], FsListColumnDirective.prototype, "direction", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
Input(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], FsListColumnDirective.prototype, "align", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
Input(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], FsListColumnDirective.prototype, "width", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
Input('class'),
|
|
53
|
+
__metadata("design:type", Object)
|
|
54
|
+
], FsListColumnDirective.prototype, "className", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
ContentChild(FsListHeaderDirective, { read: TemplateRef, static: true }),
|
|
57
|
+
__metadata("design:type", TemplateRef)
|
|
58
|
+
], FsListColumnDirective.prototype, "headerTemplate", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
ContentChild(FsListHeaderDirective, { static: true }),
|
|
61
|
+
__metadata("design:type", Object)
|
|
62
|
+
], FsListColumnDirective.prototype, "headerConfigs", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
ContentChild(FsListGroupCellDirective, { read: TemplateRef, static: true }),
|
|
65
|
+
__metadata("design:type", TemplateRef)
|
|
66
|
+
], FsListColumnDirective.prototype, "groupCellTemplate", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
ContentChild(FsListGroupCellDirective, { static: true }),
|
|
69
|
+
__metadata("design:type", Object)
|
|
70
|
+
], FsListColumnDirective.prototype, "groupCellConfigs", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
ContentChildren(FsListGroupExpandTriggerDirective, { descendants: true }),
|
|
73
|
+
__metadata("design:type", QueryList)
|
|
74
|
+
], FsListColumnDirective.prototype, "expandTrigger", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
ContentChild(FsListCellDirective, { read: TemplateRef, static: true }),
|
|
77
|
+
__metadata("design:type", TemplateRef)
|
|
78
|
+
], FsListColumnDirective.prototype, "cellTemplate", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
ContentChild(FsListCellDirective, { static: true }),
|
|
81
|
+
__metadata("design:type", Object)
|
|
82
|
+
], FsListColumnDirective.prototype, "cellConfigs", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
ContentChild(FsListFooterDirective, { read: TemplateRef, static: true }),
|
|
85
|
+
__metadata("design:type", TemplateRef)
|
|
86
|
+
], FsListColumnDirective.prototype, "footerTemplate", void 0);
|
|
87
|
+
__decorate([
|
|
88
|
+
ContentChild(FsListFooterDirective, { static: true }),
|
|
89
|
+
__metadata("design:type", Object)
|
|
90
|
+
], FsListColumnDirective.prototype, "footerConfigs", void 0);
|
|
91
|
+
FsListColumnDirective = __decorate([
|
|
92
|
+
Directive({
|
|
93
|
+
selector: 'fs-list-column'
|
|
94
|
+
})
|
|
95
|
+
], FsListColumnDirective);
|
|
96
|
+
export { FsListColumnDirective };
|
|
97
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BmaXJlc3RpdGNoL2xpc3QvIiwic291cmNlcyI6WyJhcHAvZGlyZWN0aXZlcy9jb2x1bW4vY29sdW1uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUNMLFlBQVksRUFDWixlQUFlLEVBQ2YsU0FBUyxFQUNULEtBQUssRUFDTCxTQUFTLEVBQ1QsV0FBVyxFQUNaLE1BQU0sZUFBZSxDQUFDO0FBRXZCLGFBQWE7QUFDYixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUNuRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUM3RCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUduRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUM5RSxPQUFPLEVBQUUsaUNBQWlDLEVBQUUsTUFBTSx3REFBd0QsQ0FBQztBQU0zRyxJQUFhLHFCQUFxQixHQUFsQyxNQUFhLHFCQUFxQjtJQUFsQztRQUdrQixTQUFJLEdBQUcsSUFBSSxDQUFDO1FBQ1osY0FBUyxHQUFHLElBQUksQ0FBQztJQXVDbkMsQ0FBQztDQUFBLENBQUE7QUExQ1U7SUFBUixLQUFLLEVBQUU7O29EQUFzQjtBQUNyQjtJQUFSLEtBQUssRUFBRTs7bURBQXFCO0FBQ3BCO0lBQVIsS0FBSyxFQUFFOzttREFBb0I7QUFDbkI7SUFBUixLQUFLLEVBQUU7O3dEQUF5QjtBQUN4QjtJQUFSLEtBQUssRUFBRTs7dURBQTBCO0FBQ3pCO0lBQVIsS0FBSyxFQUFFOzs4REFBaUM7QUFDaEM7SUFBUixLQUFLLEVBQUU7O3dEQUFrQztBQUNqQztJQUFSLEtBQUssRUFBRTs7b0RBQXNCO0FBQ3JCO0lBQVIsS0FBSyxFQUFFOztvREFBc0I7QUFDZDtJQUFmLEtBQUssQ0FBQyxPQUFPLENBQUM7O3dEQUFxQztBQUlwRDtJQURDLFlBQVksQ0FBQyxxQkFBcUIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxDQUFDOzhCQUNsRCxXQUFXOzZEQUFNO0FBR3hDO0lBREMsWUFBWSxDQUFDLHFCQUFxQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxDQUFDOzs0REFDckI7QUFJakM7SUFEQyxZQUFZLENBQUMsd0JBQXdCLEVBQUUsRUFBRSxJQUFJLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsQ0FBQzs4QkFDbEQsV0FBVztnRUFBTTtBQUczQztJQURDLFlBQVksQ0FBQyx3QkFBd0IsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsQ0FBQzs7K0RBQ3JCO0FBSXBDO0lBREMsZUFBZSxDQUFDLGlDQUFpQyxFQUFFLEVBQUUsV0FBVyxFQUFFLElBQUksRUFBRSxDQUFDOzhCQUNwRCxTQUFTOzREQUFvQztBQUluRTtJQURDLFlBQVksQ0FBQyxtQkFBbUIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxDQUFDOzhCQUNsRCxXQUFXOzJEQUFNO0FBR3RDO0lBREMsWUFBWSxDQUFDLG1CQUFtQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxDQUFDOzswREFDckI7QUFJL0I7SUFEQyxZQUFZLENBQUMscUJBQXFCLEVBQUUsRUFBRSxJQUFJLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsQ0FBQzs4QkFDbEQsV0FBVzs2REFBTTtBQUd4QztJQURDLFlBQVksQ0FBQyxxQkFBcUIsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsQ0FBQzs7NERBQ3JCO0FBMUN0QixxQkFBcUI7SUFIakMsU0FBUyxDQUFDO1FBQ1QsUUFBUSxFQUFFLGdCQUFnQjtLQUMzQixDQUFDO0dBQ1cscUJBQXFCLENBMkNqQztTQTNDWSxxQkFBcUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb250ZW50Q2hpbGQsXG4gIENvbnRlbnRDaGlsZHJlbixcbiAgRGlyZWN0aXZlLFxuICBJbnB1dCxcbiAgUXVlcnlMaXN0LFxuICBUZW1wbGF0ZVJlZlxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuLy8gRGlyZWN0aXZlc1xuaW1wb3J0IHsgRnNMaXN0SGVhZGVyRGlyZWN0aXZlIH0gZnJvbSAnLi4vaGVhZGVyL2hlYWRlci5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgRnNMaXN0Q2VsbERpcmVjdGl2ZSB9IGZyb20gJy4uL2NlbGwvY2VsbC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgRnNMaXN0Rm9vdGVyRGlyZWN0aXZlIH0gZnJvbSAnLi4vZm9vdGVyL2Zvb3Rlci5kaXJlY3RpdmUnO1xuXG5pbXBvcnQgeyBDZWxsQ29uZmlnIH0gZnJvbSAnLi4vLi4vaW50ZXJmYWNlcyc7XG5pbXBvcnQgeyBGc0xpc3RHcm91cENlbGxEaXJlY3RpdmUgfSBmcm9tICcuLi9ncm91cC1jZWxsL2dyb3VwLWNlbGwuZGlyZWN0aXZlJztcbmltcG9ydCB7IEZzTGlzdEdyb3VwRXhwYW5kVHJpZ2dlckRpcmVjdGl2ZSB9IGZyb20gJy4uL2dyb3VwLWV4cGFuZC10cmlnZ2VyL2dyb3VwLWV4cGFuZC10cmlnZ2VyLmRpcmVjdGl2ZSc7XG5cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnZnMtbGlzdC1jb2x1bW4nXG59KVxuZXhwb3J0IGNsYXNzIEZzTGlzdENvbHVtbkRpcmVjdGl2ZSB7XG4gIEBJbnB1dCgpIHB1YmxpYyB0aXRsZTogc3RyaW5nO1xuICBASW5wdXQoKSBwdWJsaWMgbmFtZTogc3RyaW5nO1xuICBASW5wdXQoKSBwdWJsaWMgc2hvdyA9IHRydWU7XG4gIEBJbnB1dCgpIHB1YmxpYyBjdXN0b21pemUgPSB0cnVlO1xuICBASW5wdXQoKSBwdWJsaWMgc29ydGFibGU6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyBzb3J0YWJsZURlZmF1bHQ6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHB1YmxpYyBkaXJlY3Rpb246ICdhc2MnIHwgJ2Rlc2MnO1xuICBASW5wdXQoKSBwdWJsaWMgYWxpZ246IHN0cmluZztcbiAgQElucHV0KCkgcHVibGljIHdpZHRoOiBzdHJpbmc7XG4gIEBJbnB1dCgnY2xhc3MnKSBwdWJsaWMgY2xhc3NOYW1lOiBzdHJpbmcgfCBzdHJpbmdbXTtcblxuICAvLyBIZWFkZXJcbiAgQENvbnRlbnRDaGlsZChGc0xpc3RIZWFkZXJEaXJlY3RpdmUsIHsgcmVhZDogVGVtcGxhdGVSZWYsIHN0YXRpYzogdHJ1ZSB9KVxuICBwdWJsaWMgaGVhZGVyVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgQENvbnRlbnRDaGlsZChGc0xpc3RIZWFkZXJEaXJlY3RpdmUsIHsgc3RhdGljOiB0cnVlIH0pXG4gIHB1YmxpYyBoZWFkZXJDb25maWdzOiBDZWxsQ29uZmlnO1xuXG4gIC8vIEdyb3VwXG4gIEBDb250ZW50Q2hpbGQoRnNMaXN0R3JvdXBDZWxsRGlyZWN0aXZlLCB7IHJlYWQ6IFRlbXBsYXRlUmVmLCBzdGF0aWM6IHRydWUgfSlcbiAgcHVibGljIGdyb3VwQ2VsbFRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gIEBDb250ZW50Q2hpbGQoRnNMaXN0R3JvdXBDZWxsRGlyZWN0aXZlLCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBwdWJsaWMgZ3JvdXBDZWxsQ29uZmlnczogQ2VsbENvbmZpZztcblxuICAvLyBUcmlnZ2VyXG4gIEBDb250ZW50Q2hpbGRyZW4oRnNMaXN0R3JvdXBFeHBhbmRUcmlnZ2VyRGlyZWN0aXZlLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pXG4gIHB1YmxpYyBleHBhbmRUcmlnZ2VyOiBRdWVyeUxpc3Q8RnNMaXN0R3JvdXBFeHBhbmRUcmlnZ2VyRGlyZWN0aXZlPjtcblxuICAvLyBDZWxsXG4gIEBDb250ZW50Q2hpbGQoRnNMaXN0Q2VsbERpcmVjdGl2ZSwgeyByZWFkOiBUZW1wbGF0ZVJlZiwgc3RhdGljOiB0cnVlIH0pXG4gIHB1YmxpYyBjZWxsVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG5cbiAgQENvbnRlbnRDaGlsZChGc0xpc3RDZWxsRGlyZWN0aXZlLCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBwdWJsaWMgY2VsbENvbmZpZ3M6IENlbGxDb25maWc7XG5cbiAgLy8gRm9vdGVyXG4gIEBDb250ZW50Q2hpbGQoRnNMaXN0Rm9vdGVyRGlyZWN0aXZlLCB7IHJlYWQ6IFRlbXBsYXRlUmVmLCBzdGF0aWM6IHRydWUgfSlcbiAgcHVibGljIGZvb3RlclRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxhbnk+O1xuXG4gIEBDb250ZW50Q2hpbGQoRnNMaXN0Rm9vdGVyRGlyZWN0aXZlLCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBwdWJsaWMgZm9vdGVyQ29uZmlnczogQ2VsbENvbmZpZztcbn1cbiJdfQ==
|