@sd-angular/core 1.3.183 → 1.3.185
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/sd-angular-core-grid-material.umd.js +14 -3
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.js +48 -28
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +1 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +16 -5
- package/esm2015/table/sd-angular-core-table.js +2 -2
- package/esm2015/table/src/lib/components/popup-configuration/popup-configuration.component.js +5 -5
- package/esm2015/table/src/lib/components/popup-filter/popup-filter.component.js +1 -1
- package/esm2015/table/src/lib/components/table-filter/table-filter.component.js +1 -1
- package/esm2015/table/src/lib/directives/sd-table-filter-def.directive.js +5 -5
- package/esm2015/table/src/lib/services/table-filter/table-filter.service.js +1 -1
- package/esm2015/table/src/lib/table.component.js +31 -10
- package/esm2015/table/src/lib/table.module.js +4 -4
- package/fesm2015/sd-angular-core-grid-material.js +15 -4
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-table.js +40 -19
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/desktop-cell/desktop-cell.component.d.ts +5 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.183.tgz → sd-angular-core-1.3.185.tgz} +0 -0
- package/table/sd-angular-core-table.d.ts +1 -1
- package/table/sd-angular-core-table.metadata.json +1 -1
- package/table/src/lib/components/popup-configuration/popup-configuration.component.d.ts +2 -2
- package/table/src/lib/components/popup-filter/popup-filter.component.d.ts +2 -2
- package/table/src/lib/components/table-filter/table-filter.component.d.ts +2 -2
- package/table/src/lib/directives/sd-table-filter-def.directive.d.ts +2 -2
- package/table/src/lib/services/table-filter/table-filter.service.d.ts +2 -2
- package/table/src/lib/table.component.d.ts +6 -4
|
@@ -18,6 +18,7 @@ import { SdQuickAction } from '@sd-angular/core/quick-action';
|
|
|
18
18
|
import * as hash from 'object-hash';
|
|
19
19
|
import hash__default from 'object-hash';
|
|
20
20
|
import { moveItemInArray, DragDropModule } from '@angular/cdk/drag-drop';
|
|
21
|
+
import { SdLoadingService } from '@sd-angular/core/loading';
|
|
21
22
|
import { MatTableModule } from '@angular/material/table';
|
|
22
23
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
23
24
|
import { CdkTableModule, CdkColumnDef } from '@angular/cdk/table';
|
|
@@ -225,7 +226,7 @@ SdTableFilter.propDecorators = {
|
|
|
225
226
|
_filterRegister: [{ type: Input, args: ['filterRegister',] }]
|
|
226
227
|
};
|
|
227
228
|
|
|
228
|
-
class
|
|
229
|
+
class SdTableFilterDefDirective {
|
|
229
230
|
constructor(templateRef) {
|
|
230
231
|
this.templateRef = templateRef;
|
|
231
232
|
}
|
|
@@ -233,15 +234,15 @@ class SdMaterialFilterDefDirective {
|
|
|
233
234
|
this.defaultShowing = (val === '') || val;
|
|
234
235
|
}
|
|
235
236
|
}
|
|
236
|
-
|
|
237
|
+
SdTableFilterDefDirective.decorators = [
|
|
237
238
|
{ type: Directive, args: [{
|
|
238
239
|
selector: '[sdTableFilterDef]'
|
|
239
240
|
},] }
|
|
240
241
|
];
|
|
241
|
-
|
|
242
|
+
SdTableFilterDefDirective.ctorParameters = () => [
|
|
242
243
|
{ type: TemplateRef }
|
|
243
244
|
];
|
|
244
|
-
|
|
245
|
+
SdTableFilterDefDirective.propDecorators = {
|
|
245
246
|
sdTableFilterDef: [{ type: Input }],
|
|
246
247
|
showing: [{ type: Input, args: ['defaultShowing',] }]
|
|
247
248
|
};
|
|
@@ -635,17 +636,17 @@ SdTableFilterService.ctorParameters = () => [
|
|
|
635
636
|
|
|
636
637
|
var _setting;
|
|
637
638
|
class SdPopupConfiguration {
|
|
638
|
-
constructor(ref, notifyService,
|
|
639
|
+
constructor(ref, notifyService, tableConfigurationService) {
|
|
639
640
|
this.ref = ref;
|
|
640
641
|
this.notifyService = notifyService;
|
|
641
|
-
this.
|
|
642
|
+
this.tableConfigurationService = tableConfigurationService;
|
|
642
643
|
this.changes = new EventEmitter();
|
|
643
644
|
_setting.set(this, void 0);
|
|
644
645
|
this.isCreatingColumn = false;
|
|
645
646
|
this.selected = {};
|
|
646
647
|
this.disabledDrag = true;
|
|
647
648
|
this.open = () => __awaiter(this, void 0, void 0, function* () {
|
|
648
|
-
__classPrivateFieldSet(this, _setting, this.
|
|
649
|
+
__classPrivateFieldSet(this, _setting, this.tableConfigurationService.init(this.tableOption));
|
|
649
650
|
this.configuration = __classPrivateFieldGet(this, _setting).get();
|
|
650
651
|
this.modal.open();
|
|
651
652
|
});
|
|
@@ -681,7 +682,7 @@ _setting = new WeakMap();
|
|
|
681
682
|
SdPopupConfiguration.decorators = [
|
|
682
683
|
{ type: Component, args: [{
|
|
683
684
|
selector: 'sd-popup-configuration',
|
|
684
|
-
template: "<sd-modal width=\"sm\" [title]=\"'Configuration' | sdTranslate\" #modal>\r\n <sd-modal-body *ngIf=\"configuration\">\r\n <div class=\"c-container\">\r\n <div class=\"c-table\" style=\"max-height: 70vh\">\r\n <table\r\n #table\r\n mat-table\r\n [dataSource]=\"configuration.columns\"\r\n cdkDropList\r\n [cdkDropListData]=\"configuration.columns\"\r\n (cdkDropListDropped)=\"dropTable($event)\">\r\n >\r\n <ng-container matColumnDef=\"stt\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 50px\">#</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item; let idx = index\">\r\n <div class=\"c-handle\" (mousedown)=\"handleMouseDown()\" (mouseup)=\"handleMouseUp()\">\r\n <svg width=\"24px\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\r\n <path\r\n d=\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\"></path>\r\n <path d=\"M0 0h24v24H0z\" fill=\"none\"></path>\r\n </svg>\r\n </div>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"title\">\r\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef>{{ 'Title' | sdTranslate }}</th>\r\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\r\n <sd-input [placeholder]=\"item?.origin?.title\" [(model)]=\"item.title\" disableErrorMessage></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"width\">\r\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Width' | sdTranslate }}</th>\r\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\r\n <sd-input [placeholder]=\"item?.origin?.width\" [(model)]=\"item.width\" disableErrorMessage></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"invisible\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Hidden' | sdTranslate }}</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item\">\r\n <mat-slide-toggle [(ngModel)]=\"item.invisible\" color=\"primary\"> </mat-slide-toggle>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"fixed\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Freeze' | sdTranslate }}</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item\">\r\n <mat-slide-toggle [(ngModel)]=\"item.fixed\" color=\"primary\"></mat-slide-toggle>\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"['stt', 'title', 'width', 'invisible', 'fixed']; sticky: true\"></tr>\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: ['stt', 'title', 'width', 'invisible', 'fixed']\"\r\n cdkDrag\r\n [cdkDragData]=\"row\"\r\n cdkDragLockAxis=\"y\"\r\n [cdkDragDisabled]=\"disabledDrag\"></tr>\r\n </table>\r\n </div>\r\n </div>\r\n </sd-modal-body>\r\n <sd-modal-footer>\r\n <sd-button class=\"mr-
|
|
685
|
+
template: "<sd-modal width=\"sm\" [title]=\"'Configuration' | sdTranslate\" #modal>\r\n <sd-modal-body *ngIf=\"configuration\">\r\n <div class=\"c-container\">\r\n <div class=\"c-table\" style=\"max-height: 70vh\">\r\n <table\r\n #table\r\n mat-table\r\n [dataSource]=\"configuration.columns\"\r\n cdkDropList\r\n [cdkDropListData]=\"configuration.columns\"\r\n (cdkDropListDropped)=\"dropTable($event)\">\r\n >\r\n <ng-container matColumnDef=\"stt\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 50px\">#</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item; let idx = index\">\r\n <div class=\"c-handle\" (mousedown)=\"handleMouseDown()\" (mouseup)=\"handleMouseUp()\">\r\n <svg width=\"24px\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\r\n <path\r\n d=\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\"></path>\r\n <path d=\"M0 0h24v24H0z\" fill=\"none\"></path>\r\n </svg>\r\n </div>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"title\">\r\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef>{{ 'Title' | sdTranslate }}</th>\r\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\r\n <sd-input [placeholder]=\"item?.origin?.title\" [(model)]=\"item.title\" disableErrorMessage></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"width\">\r\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Width' | sdTranslate }}</th>\r\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\r\n <sd-input [placeholder]=\"item?.origin?.width\" [(model)]=\"item.width\" disableErrorMessage></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"invisible\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Hidden' | sdTranslate }}</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item\">\r\n <mat-slide-toggle [(ngModel)]=\"item.invisible\" color=\"primary\"> </mat-slide-toggle>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"fixed\">\r\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 80px\">{{ 'Freeze' | sdTranslate }}</th>\r\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item\">\r\n <mat-slide-toggle [(ngModel)]=\"item.fixed\" color=\"primary\"></mat-slide-toggle>\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"['stt', 'title', 'width', 'invisible', 'fixed']; sticky: true\"></tr>\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: ['stt', 'title', 'width', 'invisible', 'fixed']\"\r\n cdkDrag\r\n [cdkDragData]=\"row\"\r\n cdkDragLockAxis=\"y\"\r\n [cdkDragDisabled]=\"disabledDrag\"></tr>\r\n </table>\r\n </div>\r\n </div>\r\n </sd-modal-body>\r\n <sd-modal-footer>\r\n <sd-button class=\"mr-8\" (action)=\"onReset()\" title=\"M\u1EB7c \u0111\u1ECBnh\" color=\"info\" size=\"sm\"> </sd-button>\r\n <sd-button (action)=\"onSave()\" title=\"L\u01B0u\" type=\"fill\" color=\"info\" size=\"sm\"> </sd-button>\r\n </sd-modal-footer>\r\n</sd-modal>\r\n",
|
|
685
686
|
styles: [".c-table{overflow:auto;position:relative}.c-table table{width:100%}.c-table .c-th{color:#000;font-size:14px;font-weight:500;line-height:20px}.c-container{min-height:200px;position:relative}.c-handle{color:#ccc;cursor:move}"]
|
|
686
687
|
},] }
|
|
687
688
|
];
|
|
@@ -699,8 +700,9 @@ SdPopupConfiguration.propDecorators = {
|
|
|
699
700
|
|
|
700
701
|
var _gridId, _optionChanges, _localItems, _paginator, _sort, _subscription$1, _reload, _loadCompleted, _cacheObjValues, _initCellDef, _initFilterDef, _initFooterDef, _filterExportInfo, _initConfiguration$1, _loadFilterRegister, _filterLocal, _getFilter, _load, _render, _exportedItems, _allColumns, _allExportedColumns, _onExport, _getExportColumns, _updateSelectedItems, _loadValues, _format;
|
|
701
702
|
class SdTable {
|
|
702
|
-
constructor(ref, tableConfiguration, tableConfigurationService, exportService, notifyService, gridFilterService) {
|
|
703
|
+
constructor(ref, loadingService, tableConfiguration, tableConfigurationService, exportService, notifyService, gridFilterService) {
|
|
703
704
|
this.ref = ref;
|
|
705
|
+
this.loadingService = loadingService;
|
|
704
706
|
this.tableConfiguration = tableConfiguration;
|
|
705
707
|
this.tableConfigurationService = tableConfigurationService;
|
|
706
708
|
this.exportService = exportService;
|
|
@@ -970,6 +972,7 @@ class SdTable {
|
|
|
970
972
|
});
|
|
971
973
|
_load.set(this, (filterReq, force = true) => __awaiter(this, void 0, void 0, function* () {
|
|
972
974
|
this.isLoading = true;
|
|
975
|
+
this.ref.detectChanges();
|
|
973
976
|
if (this.tableOption.type === 'server') {
|
|
974
977
|
const { items } = this.tableOption;
|
|
975
978
|
const data = yield items(filterReq).catch(err => {
|
|
@@ -980,9 +983,11 @@ class SdTable {
|
|
|
980
983
|
total: 0,
|
|
981
984
|
};
|
|
982
985
|
});
|
|
983
|
-
this.isLoading = false;
|
|
984
986
|
return {
|
|
985
|
-
items: yield __classPrivateFieldGet(this, _format).call(this, data === null || data === void 0 ? void 0 : data.items, this.tableOption.columns)
|
|
987
|
+
items: yield __classPrivateFieldGet(this, _format).call(this, data === null || data === void 0 ? void 0 : data.items, this.tableOption.columns).finally(() => {
|
|
988
|
+
this.isLoading = false;
|
|
989
|
+
this.ref.detectChanges();
|
|
990
|
+
}),
|
|
986
991
|
total: (data === null || data === void 0 ? void 0 : data.total) || 0,
|
|
987
992
|
};
|
|
988
993
|
}
|
|
@@ -1007,6 +1012,7 @@ class SdTable {
|
|
|
1007
1012
|
__classPrivateFieldSet(this, _localItems, yield __classPrivateFieldGet(this, _format).call(this, data, this.tableOption.columns));
|
|
1008
1013
|
}
|
|
1009
1014
|
this.isLoading = false;
|
|
1015
|
+
this.ref.detectChanges();
|
|
1010
1016
|
return __classPrivateFieldGet(this, _filterLocal).call(this, __classPrivateFieldGet(this, _localItems), filterReq);
|
|
1011
1017
|
}));
|
|
1012
1018
|
_render.set(this, (args) => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1565,12 +1571,19 @@ class SdTable {
|
|
|
1565
1571
|
__classPrivateFieldSet(this, _loadCompleted, false);
|
|
1566
1572
|
const setting = this.tableConfigurationService.init(this.tableOption);
|
|
1567
1573
|
if (setting) {
|
|
1568
|
-
__classPrivateFieldGet(this, _subscription$1).add(setting.observer.pipe(startWith(setting.subject.getValue())).subscribe(
|
|
1569
|
-
const configurationResult = this.tableConfigurationService.loadConfigurationResult(this.tableOption,
|
|
1574
|
+
__classPrivateFieldGet(this, _subscription$1).add(setting.observer.pipe(startWith(setting.subject.getValue())).subscribe(() => {
|
|
1575
|
+
const configurationResult = this.tableConfigurationService.loadConfigurationResult(this.tableOption, setting.get());
|
|
1570
1576
|
const displayColumns = configurationResult.displayedColumns || [];
|
|
1571
|
-
|
|
1577
|
+
this.loadingService.start();
|
|
1578
|
+
this.ref.detectChanges();
|
|
1579
|
+
__classPrivateFieldGet(this, _loadValues).call(this, this.tableOption.columns.filter(column => displayColumns.includes(column.field)))
|
|
1580
|
+
.then(() => {
|
|
1572
1581
|
this.configuration = configurationResult;
|
|
1573
1582
|
__classPrivateFieldGet(this, _optionChanges).next(this.tableOption);
|
|
1583
|
+
})
|
|
1584
|
+
.finally(() => {
|
|
1585
|
+
this.loadingService.stop();
|
|
1586
|
+
this.ref.detectChanges();
|
|
1574
1587
|
});
|
|
1575
1588
|
}));
|
|
1576
1589
|
}
|
|
@@ -1578,9 +1591,16 @@ class SdTable {
|
|
|
1578
1591
|
const configuration = this.tableConfigurationService.loadConfiguration(this.tableOption);
|
|
1579
1592
|
const configurationResult = this.tableConfigurationService.loadConfigurationResult(this.tableOption, configuration);
|
|
1580
1593
|
const displayColumns = configurationResult.displayedColumns || [];
|
|
1581
|
-
|
|
1594
|
+
this.loadingService.start();
|
|
1595
|
+
this.ref.detectChanges();
|
|
1596
|
+
__classPrivateFieldGet(this, _loadValues).call(this, this.tableOption.columns.filter(column => displayColumns.includes(column.field)))
|
|
1597
|
+
.then(() => {
|
|
1582
1598
|
this.configuration = configurationResult;
|
|
1583
1599
|
__classPrivateFieldGet(this, _optionChanges).next(this.tableOption);
|
|
1600
|
+
})
|
|
1601
|
+
.finally(() => {
|
|
1602
|
+
this.loadingService.stop();
|
|
1603
|
+
this.ref.detectChanges();
|
|
1584
1604
|
});
|
|
1585
1605
|
}
|
|
1586
1606
|
}
|
|
@@ -1666,6 +1686,7 @@ SdTable.decorators = [
|
|
|
1666
1686
|
];
|
|
1667
1687
|
SdTable.ctorParameters = () => [
|
|
1668
1688
|
{ type: ChangeDetectorRef },
|
|
1689
|
+
{ type: SdLoadingService },
|
|
1669
1690
|
{ type: undefined, decorators: [{ type: Inject, args: [TABLE_CONFIG,] }, { type: Optional }] },
|
|
1670
1691
|
{ type: SdTableConfigurationService },
|
|
1671
1692
|
{ type: SdExportService },
|
|
@@ -1683,7 +1704,7 @@ SdTable.propDecorators = {
|
|
|
1683
1704
|
sdSubInformation: [{ type: ContentChild, args: [SdMaterialSubInformationDefDirective,] }],
|
|
1684
1705
|
sdCellDefs: [{ type: ContentChildren, args: [SdTabelCellDefDirective,] }],
|
|
1685
1706
|
sdFooterDefs: [{ type: ContentChildren, args: [SdMaterialFooterDefDirective,] }],
|
|
1686
|
-
sdFilterDefs: [{ type: ContentChildren, args: [
|
|
1707
|
+
sdFilterDefs: [{ type: ContentChildren, args: [SdTableFilterDefDirective,] }]
|
|
1687
1708
|
};
|
|
1688
1709
|
|
|
1689
1710
|
class SdCommandFilterPipe {
|
|
@@ -2459,7 +2480,7 @@ SdTableModule.decorators = [
|
|
|
2459
2480
|
SdTable,
|
|
2460
2481
|
SdMaterialFooterDefDirective,
|
|
2461
2482
|
SdTabelCellDefDirective,
|
|
2462
|
-
|
|
2483
|
+
SdTableFilterDefDirective,
|
|
2463
2484
|
SdMaterialSubInformationDefDirective,
|
|
2464
2485
|
SdPopupConfiguration,
|
|
2465
2486
|
SdTableFilter,
|
|
@@ -2482,7 +2503,7 @@ SdTableModule.decorators = [
|
|
|
2482
2503
|
SdTable,
|
|
2483
2504
|
SdMaterialFooterDefDirective,
|
|
2484
2505
|
SdTabelCellDefDirective,
|
|
2485
|
-
|
|
2506
|
+
SdTableFilterDefDirective,
|
|
2486
2507
|
SdMaterialSubInformationDefDirective,
|
|
2487
2508
|
],
|
|
2488
2509
|
providers: [
|
|
@@ -2503,5 +2524,5 @@ SdTableModule.decorators = [
|
|
|
2503
2524
|
* Generated bundle index. Do not edit.
|
|
2504
2525
|
*/
|
|
2505
2526
|
|
|
2506
|
-
export { DEFAULT_TABLE_CONFIG, MatPaginatorIntlCro, SdFilterOperators, SdTable, SdTableModule, TABLE_CONFIG, SdTableQuickAction as ɵa, SdDesktopCell as ɵb, SdSelectionVisibleSelectAllPipe as ɵba, SdGroupPipe as ɵbb, SdDesktopCellView as ɵc, SdDesktopCommand as ɵd, SdColumnInlineFilter as ɵe, SdPopupConfiguration as ɵf, SdTableConfigurationService as ɵg, TABLE_CONFIG as ɵi, SdTableFilter as ɵj, SdPopupFilter as ɵk, SdMaterialSubInformationDefDirective as ɵl, SdTabelCellDefDirective as ɵm, SdMaterialFooterDefDirective as ɵn,
|
|
2527
|
+
export { DEFAULT_TABLE_CONFIG, MatPaginatorIntlCro, SdFilterOperators, SdTable, SdTableModule, TABLE_CONFIG, SdTableQuickAction as ɵa, SdDesktopCell as ɵb, SdSelectionVisibleSelectAllPipe as ɵba, SdGroupPipe as ɵbb, SdDesktopCellView as ɵc, SdDesktopCommand as ɵd, SdColumnInlineFilter as ɵe, SdPopupConfiguration as ɵf, SdTableConfigurationService as ɵg, TABLE_CONFIG as ɵi, SdTableFilter as ɵj, SdPopupFilter as ɵk, SdMaterialSubInformationDefDirective as ɵl, SdTabelCellDefDirective as ɵm, SdMaterialFooterDefDirective as ɵn, SdTableFilterDefDirective as ɵo, SdTableFilterService as ɵp, SdCommandFilterPipe as ɵq, SdCommandDisablePipe as ɵr, SdCommandIconPipe as ɵs, SdCommandTitlePipe as ɵt, SdColumnTooltipPipe as ɵu, SdFilterColumnPipe as ɵv, SdFilterExternalPipe as ɵw, SdSelectionActionFilterPipe as ɵx, SdSelectionVisiblePipe as ɵy, SdSelectionDisablePipe as ɵz };
|
|
2507
2528
|
//# sourceMappingURL=sd-angular-core-table.js.map
|