@sd-angular/core 1.3.161 → 1.3.162

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.
@@ -6,12 +6,11 @@ import { SdTableOption } from './models/table-option.model';
6
6
  import { ISdTableConfiguration } from './models/table-configuration.model';
7
7
  import { SdNotifyService } from '@sd-angular/core/notify';
8
8
  import { SdFilterOperator } from './models/table-column.model';
9
- import { SdMaterialCellDefDirective } from './directives/sd-material-cell-def.directive';
9
+ import { SdTabelCellDefDirective } from './directives/sd-table-cell-def.directive';
10
10
  import { SdTableFilter } from './components/table-filter/table-filter.component';
11
11
  import { SdMaterialFilterDefDirective } from './directives/sd-material-filter-def.directive';
12
12
  import { SdMaterialSubInformationDefDirective } from './directives/sd-material-sub-information-def.directive';
13
13
  import { SdMaterialFooterDefDirective } from './directives/sd-material-footer-def.directive';
14
- import { SdMaterialEmptyDataDefDirective } from './directives/sd-material-empty-data-def.directive';
15
14
  import { SdExportService } from '@sd-angular/core/export';
16
15
  import { SdTableConfigurationResult } from './models/table-option-config.model';
17
16
  import { SdTableConfigurationService } from './services/table-configuration.service';
@@ -45,10 +44,9 @@ export declare class SdTable<T = any> implements OnInit, AfterViewInit, OnDestro
45
44
  set paginator(paginator: MatPaginator);
46
45
  set sort(sort: MatSort);
47
46
  sdSubInformation: SdMaterialSubInformationDefDirective;
48
- sdEmptyData: SdMaterialEmptyDataDefDirective;
49
- sdCellDefs: QueryList<SdMaterialCellDefDirective>;
47
+ sdCellDefs: QueryList<SdTabelCellDefDirective>;
50
48
  cellDef: {
51
- [column: string]: SdMaterialCellDefDirective;
49
+ [column: string]: SdTabelCellDefDirective;
52
50
  };
53
51
  sdFooterDefs: QueryList<SdMaterialFooterDefDirective>;
54
52
  footerDef: {
@@ -1,18 +0,0 @@
1
- import { Directive, Input, TemplateRef } from '@angular/core';
2
- export class SdMaterialCellDefDirective {
3
- constructor(templateRef) {
4
- this.templateRef = templateRef;
5
- }
6
- }
7
- SdMaterialCellDefDirective.decorators = [
8
- { type: Directive, args: [{
9
- selector: '[sdMaterialCellDef]'
10
- },] }
11
- ];
12
- SdMaterialCellDefDirective.ctorParameters = () => [
13
- { type: TemplateRef }
14
- ];
15
- SdMaterialCellDefDirective.propDecorators = {
16
- sdMaterialCellDef: [{ type: Input }]
17
- };
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2QtbWF0ZXJpYWwtY2VsbC1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IkM6L1VzZXJzL3VzZXIvRG9jdW1lbnRzL2xpYi1jb3JlLXVpL3Byb2plY3RzL3NkLWNvcmUvdGFibGUvIiwic291cmNlcyI6WyJzcmMvbGliL2RpcmVjdGl2ZXMvc2QtbWF0ZXJpYWwtY2VsbC1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUs5RCxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDLFlBQW1CLFdBQTZCO1FBQTdCLGdCQUFXLEdBQVgsV0FBVyxDQUFrQjtJQUFJLENBQUM7OztZQUx0RCxTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHFCQUFxQjthQUNoQzs7O1lBSjBCLFdBQVc7OztnQ0FNbkMsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tzZE1hdGVyaWFsQ2VsbERlZl0nXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTZE1hdGVyaWFsQ2VsbERlZkRpcmVjdGl2ZSB7XHJcbiAgQElucHV0KCkgc2RNYXRlcmlhbENlbGxEZWY6IHN0cmluZztcclxuICBjb25zdHJ1Y3RvcihwdWJsaWMgdGVtcGxhdGVSZWY6IFRlbXBsYXRlUmVmPGFueT4pIHsgfVxyXG59XHJcbiJdfQ==
@@ -1,15 +0,0 @@
1
- import { Directive, TemplateRef } from '@angular/core';
2
- export class SdMaterialEmptyDataDefDirective {
3
- constructor(templateRef) {
4
- this.templateRef = templateRef;
5
- }
6
- }
7
- SdMaterialEmptyDataDefDirective.decorators = [
8
- { type: Directive, args: [{
9
- selector: '[sdMaterialEmptyDataDef]'
10
- },] }
11
- ];
12
- SdMaterialEmptyDataDefDirective.ctorParameters = () => [
13
- { type: TemplateRef }
14
- ];
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2QtbWF0ZXJpYWwtZW1wdHktZGF0YS1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IkM6L1VzZXJzL3VzZXIvRG9jdW1lbnRzL2xpYi1jb3JlLXVpL3Byb2plY3RzL3NkLWNvcmUvdGFibGUvIiwic291cmNlcyI6WyJzcmMvbGliL2RpcmVjdGl2ZXMvc2QtbWF0ZXJpYWwtZW1wdHktZGF0YS1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBS3ZELE1BQU0sT0FBTywrQkFBK0I7SUFDMUMsWUFBbUIsV0FBNkI7UUFBN0IsZ0JBQVcsR0FBWCxXQUFXLENBQWtCO0lBQUksQ0FBQzs7O1lBSnRELFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsMEJBQTBCO2FBQ3JDOzs7WUFKbUIsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBEaXJlY3RpdmUoe1xyXG4gIHNlbGVjdG9yOiAnW3NkTWF0ZXJpYWxFbXB0eURhdGFEZWZdJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgU2RNYXRlcmlhbEVtcHR5RGF0YURlZkRpcmVjdGl2ZSB7XHJcbiAgY29uc3RydWN0b3IocHVibGljIHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjxhbnk+KSB7IH1cclxufVxyXG4iXX0=
@@ -1,6 +0,0 @@
1
- import { TemplateRef } from '@angular/core';
2
- export declare class SdMaterialCellDefDirective {
3
- templateRef: TemplateRef<any>;
4
- sdMaterialCellDef: string;
5
- constructor(templateRef: TemplateRef<any>);
6
- }