@sd-angular/core 1.1.79 → 1.1.82

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.
Files changed (27) hide show
  1. package/autocomplete/sd-angular-core-autocomplete.metadata.json +1 -1
  2. package/bundles/sd-angular-core-autocomplete.umd.js +31 -31
  3. package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
  4. package/bundles/sd-angular-core-autocomplete.umd.min.js +1 -1
  5. package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
  6. package/bundles/sd-angular-core-grid-material.umd.js +119 -112
  7. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  8. package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
  9. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  10. package/esm2015/autocomplete/src/lib/autocomplete.component.js +28 -28
  11. package/esm2015/grid-material/sd-angular-core-grid-material.js +31 -31
  12. package/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +2 -2
  13. package/esm2015/grid-material/src/lib/grid-material.component.js +15 -6
  14. package/esm2015/grid-material/src/lib/grid-material.module.js +2 -1
  15. package/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
  16. package/esm2015/grid-material/src/lib/pipes/editor-handler-column.pipe.js +5 -7
  17. package/fesm2015/sd-angular-core-autocomplete.js +27 -27
  18. package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
  19. package/fesm2015/sd-angular-core-grid-material.js +68 -61
  20. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  21. package/grid-material/sd-angular-core-grid-material.d.ts +30 -30
  22. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  23. package/grid-material/src/lib/grid-material.component.d.ts +4 -1
  24. package/grid-material/src/lib/models/grid.model.d.ts +1 -0
  25. package/grid-material/src/lib/pipes/editor-handler-column.pipe.d.ts +1 -2
  26. package/package.json +1 -1
  27. package/{sd-angular-core-1.1.79.tgz → sd-angular-core-1.1.82.tgz} +0 -0
@@ -20,6 +20,7 @@ import { SdTranslateService } from '@sd-angular/core/translate';
20
20
  import { SdQuickAction } from '@sd-angular/core/quick-action';
21
21
  import { SdGridMaterialItem, SdItem } from './models/grid.model';
22
22
  import { SdColumnValuesPipe } from './pipes/column-values.pipe';
23
+ import { SdEditorHandlerColumnPipe } from './pipes/editor-handler-column.pipe';
23
24
  export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, OnDestroy {
24
25
  #private;
25
26
  private ref;
@@ -29,6 +30,7 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
29
30
  private notifyService;
30
31
  private translateService;
31
32
  private columnValuesPipe;
33
+ private editorHandlerColumnPipe;
32
34
  key: string;
33
35
  gridConfigurationObserver: Observable<SdGridConfiguration>;
34
36
  gridFilter: SdGridFilter;
@@ -64,7 +66,7 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
64
66
  isExporting: boolean;
65
67
  isSelectAll: boolean;
66
68
  exportTitle: string;
67
- constructor(ref: ChangeDetectorRef, configuration: ISdGridMaterialConfiguration, gridConfigurationService: SdGridConfigurationService, exportService: SdExportService, notifyService: SdNotifyService, translateService: SdTranslateService, columnValuesPipe: SdColumnValuesPipe);
69
+ constructor(ref: ChangeDetectorRef, configuration: ISdGridMaterialConfiguration, gridConfigurationService: SdGridConfigurationService, exportService: SdExportService, notifyService: SdNotifyService, translateService: SdTranslateService, columnValuesPipe: SdColumnValuesPipe, editorHandlerColumnPipe: SdEditorHandlerColumnPipe);
68
70
  ngOnInit(): void;
69
71
  ngAfterViewInit(): void;
70
72
  ngOnDestroy(): void;
@@ -94,6 +96,7 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
94
96
  add: (idx: number, item: T) => void;
95
97
  update: (idx: number, item: T) => void;
96
98
  remove: (idx: number) => void;
99
+ refreshItem: (idx: number) => void;
97
100
  get editedItems(): (T & {
98
101
  editorErrorMessage: string;
99
102
  })[];
@@ -28,6 +28,7 @@ export interface SdItem<T = any> {
28
28
  htmlTemplate: string;
29
29
  items: (T & SdItem<T>)[];
30
30
  };
31
+ sdVersion?: string;
31
32
  }
32
33
  export interface EditorHandlerRow {
33
34
  status?: 'create' | 'update';
@@ -1,8 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { SdGridMaterialColumn } from '../models/grid-column.model';
3
2
  import { SdGridMaterialOption } from '../models/grid-option.model';
4
3
  import { SdItem } from '../models/grid.model';
5
4
  export declare class SdEditorHandlerColumnPipe implements PipeTransform {
6
5
  #private;
7
- transform(value: any, item: SdItem, column: SdGridMaterialColumn, gridOption: SdGridMaterialOption): boolean;
6
+ transform(value: any, item: SdItem, gridOption: SdGridMaterialOption): boolean;
8
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "1.1.79",
3
+ "version": "1.1.82",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index 94b564d..5290663 100644
Binary file