@sd-angular/core 0.0.1003 → 0.0.1004
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 +23 -7
- 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/quick-action/quick-action.component.js +7 -4
- package/esm2015/grid-material/src/lib/grid-material.component.js +13 -3
- package/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/selection-disable.pipe.js +3 -2
- package/esm2015/grid-material/src/lib/pipes/selection-visible.pipe.js +4 -3
- package/fesm2015/sd-angular-core-grid-material.js +22 -7
- 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/quick-action/quick-action.component.d.ts +2 -0
- package/grid-material/src/lib/grid-material.component.d.ts +1 -0
- package/grid-material/src/lib/models/grid.model.d.ts +1 -0
- package/package.json +1 -1
- package/{sd-angular-core-0.0.1003.tgz → sd-angular-core-0.0.1004.tgz} +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { SdGridMaterialOption } from '../../models/grid-option.model';
|
|
2
3
|
export declare class SdGridQuickAction {
|
|
3
4
|
gridOption: SdGridMaterialOption;
|
|
4
5
|
selectedItems: any[];
|
|
6
|
+
clear: EventEmitter<any>;
|
|
5
7
|
constructor();
|
|
6
8
|
onClear: () => void;
|
|
7
9
|
}
|
|
@@ -79,6 +79,7 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
|
|
|
79
79
|
onExpand: (rowData: SdGridMaterialItem) => Promise<void>;
|
|
80
80
|
onSelect: (rowData: SdGridMaterialItem) => void;
|
|
81
81
|
onSelectAll: () => void;
|
|
82
|
+
onClearSelection: () => void;
|
|
82
83
|
clearFilter: () => void;
|
|
83
84
|
setFilter: (args: {
|
|
84
85
|
columnFilter: any;
|
package/package.json
CHANGED
|
index 14aa7c0..10c79c3 100644
|
|
|
Binary file
|