@sd-angular/core 0.0.903 → 0.0.904
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 +25 -8
- 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/grid-material/src/lib/components/popup-grid-configuration/popup-grid-configuration.component.js +23 -5
- package/esm2015/grid-material/src/lib/grid-material.module.js +4 -2
- package/fesm2015/sd-angular-core-grid-material.js +23 -5
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/popup-grid-configuration/popup-grid-configuration.component.d.ts +9 -0
- package/package.json +1 -1
- package/{sd-angular-core-0.0.903.tgz → sd-angular-core-0.0.904.tgz} +0 -0
|
@@ -5,6 +5,9 @@ import { SdTranslateService } from '@sd-angular/core/translate';
|
|
|
5
5
|
import { SdGridMaterialOption } from '../../models/grid-option.model';
|
|
6
6
|
import { SdGridConfigurationResult, SdGridConfiguration } from '../../models/grid-config.model';
|
|
7
7
|
import { SdGridConfigurationService } from '../../services/grid-configuration.service';
|
|
8
|
+
import { MatTable } from '@angular/material/table';
|
|
9
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
10
|
+
import { SdGridMaterialColumn } from '../../models/grid-column.model';
|
|
8
11
|
export declare class SdPopupGridConfiguration implements OnInit {
|
|
9
12
|
#private;
|
|
10
13
|
private ref;
|
|
@@ -14,17 +17,23 @@ export declare class SdPopupGridConfiguration implements OnInit {
|
|
|
14
17
|
gridOption: SdGridMaterialOption;
|
|
15
18
|
key: string;
|
|
16
19
|
modal: SdModal;
|
|
20
|
+
table: MatTable<SdGridMaterialColumn>;
|
|
17
21
|
readonly changes: EventEmitter<SdGridConfigurationResult>;
|
|
18
22
|
configuration: SdGridConfiguration;
|
|
19
23
|
isCreatingColumn: boolean;
|
|
20
24
|
selected: {
|
|
21
25
|
[key: string]: boolean;
|
|
22
26
|
};
|
|
27
|
+
disabledDrag: boolean;
|
|
23
28
|
constructor(ref: ChangeDetectorRef, notifyService: SdNotifyService, translateService: SdTranslateService, gridConfigurationService: SdGridConfigurationService);
|
|
24
29
|
ngOnInit(): void;
|
|
30
|
+
mouseUp(event: any): void;
|
|
25
31
|
open: () => Promise<void>;
|
|
26
32
|
onSave: () => void;
|
|
27
33
|
onReset: () => Promise<void>;
|
|
28
34
|
createColumn: () => Promise<void>;
|
|
29
35
|
confirm: () => Promise<void>;
|
|
36
|
+
dropTable(event: CdkDragDrop<SdGridMaterialColumn[]>): void;
|
|
37
|
+
handleMouseDown(): void;
|
|
38
|
+
handleMouseUp(): void;
|
|
30
39
|
}
|
package/package.json
CHANGED
|
index eff24da..bf4de63 100644
|
|
|
Binary file
|