@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.
- package/autocomplete/sd-angular-core-autocomplete.metadata.json +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.js +31 -31
- package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.min.js +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.js +119 -112
- 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/esm2015/autocomplete/src/lib/autocomplete.component.js +28 -28
- package/esm2015/grid-material/sd-angular-core-grid-material.js +31 -31
- package/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +2 -2
- package/esm2015/grid-material/src/lib/grid-material.component.js +15 -6
- package/esm2015/grid-material/src/lib/grid-material.module.js +2 -1
- package/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/editor-handler-column.pipe.js +5 -7
- package/fesm2015/sd-angular-core-autocomplete.js +27 -27
- package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
- package/fesm2015/sd-angular-core-grid-material.js +68 -61
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.d.ts +30 -30
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/grid-material.component.d.ts +4 -1
- package/grid-material/src/lib/models/grid.model.d.ts +1 -0
- package/grid-material/src/lib/pipes/editor-handler-column.pipe.d.ts +1 -2
- package/package.json +1 -1
- 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
|
})[];
|
|
@@ -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,
|
|
6
|
+
transform(value: any, item: SdItem, gridOption: SdGridMaterialOption): boolean;
|
|
8
7
|
}
|
package/package.json
CHANGED
|
index 94b564d..5290663 100644
|
|
|
Binary file
|