@skyux/grids 6.13.0 → 6.16.0
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/documentation.json +177 -95
- package/esm2020/lib/modules/grid/grid-cell.component.mjs +1 -1
- package/esm2020/lib/modules/grid/grid.component.mjs +4 -4
- package/fesm2015/skyux-grids.mjs +3 -3
- package/fesm2015/skyux-grids.mjs.map +1 -1
- package/fesm2020/skyux-grids.mjs +3 -3
- package/fesm2020/skyux-grids.mjs.map +1 -1
- package/lib/modules/grid/grid-cell.component.d.ts +3 -3
- package/lib/modules/grid/grid.component.d.ts +7 -3
- package/package.json +8 -8
|
@@ -195,12 +195,16 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
|
|
|
195
195
|
updateColumnHeading(change: SkyGridColumnHeadingModelChange): void;
|
|
196
196
|
updateInlineHelpPopover(change: SkyGridColumnInlineHelpPopoverModelChange): void;
|
|
197
197
|
updateColumnDescription(change: SkyGridColumnDescriptionModelChange): void;
|
|
198
|
-
onResizeColumnStart(event:
|
|
198
|
+
onResizeColumnStart(event: {
|
|
199
|
+
stopPropagation: () => void;
|
|
200
|
+
preventDefault: () => void;
|
|
201
|
+
pageX?: number;
|
|
202
|
+
}): void;
|
|
199
203
|
onKeydownResizeCol(event: KeyboardEvent): void;
|
|
200
204
|
onInputChangeResizeCol(event: Event): void;
|
|
201
205
|
onResizeHandleMove(event: MouseEvent): void;
|
|
202
|
-
onResizeHandleBlur(
|
|
203
|
-
onResizeHandleFocus(event:
|
|
206
|
+
onResizeHandleBlur(): void;
|
|
207
|
+
onResizeHandleFocus(event: FocusEvent): void;
|
|
204
208
|
onResizeHandleRelease(event: MouseEvent): void;
|
|
205
209
|
onRowClick(event: any, selectedItem: ListItemModel): void;
|
|
206
210
|
isRowHighlighted(id: string): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/grids",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.16.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"@angular/common": "^13.3.2",
|
|
36
36
|
"@angular/core": "^13.3.2",
|
|
37
37
|
"@angular/forms": "^13.3.2",
|
|
38
|
-
"@skyux/core": "6.
|
|
39
|
-
"@skyux/forms": "6.
|
|
40
|
-
"@skyux/i18n": "6.
|
|
41
|
-
"@skyux/indicators": "6.
|
|
42
|
-
"@skyux/layout": "6.
|
|
43
|
-
"@skyux/list-builder-common": "6.
|
|
44
|
-
"@skyux/popovers": "6.
|
|
38
|
+
"@skyux/core": "6.16.0",
|
|
39
|
+
"@skyux/forms": "6.16.0",
|
|
40
|
+
"@skyux/i18n": "6.16.0",
|
|
41
|
+
"@skyux/indicators": "6.16.0",
|
|
42
|
+
"@skyux/layout": "6.16.0",
|
|
43
|
+
"@skyux/list-builder-common": "6.16.0",
|
|
44
|
+
"@skyux/popovers": "6.16.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"dragula": "3.7.3",
|