@skyux/grids 4.0.6 → 4.0.7
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/CHANGELOG.md +4 -0
- package/bundles/skyux-grids.umd.js +2 -2
- package/bundles/skyux-grids.umd.js.map +1 -1
- package/bundles/skyux-grids.umd.min.js.map +1 -1
- package/esm2015/modules/grid/grid-column.component.js +1 -1
- package/esm2015/polyfills.js +3 -3
- package/esm5/modules/grid/grid-column.component.js +1 -1
- package/esm5/polyfills.js +3 -3
- package/fesm2015/skyux-grids.js +2 -2
- package/fesm2015/skyux-grids.js.map +1 -1
- package/fesm5/skyux-grids.js +2 -2
- package/fesm5/skyux-grids.js.map +1 -1
- package/modules/grid/grid-column.component.d.ts +2 -1
- package/package.json +2 -2
- package/skyux-grids.metadata.json +1 -1
- package/src/assets/img/grid-annotated.png +0 -0
- package/src/assets/img/grid-dont-use-complex.png +0 -0
- package/src/assets/img/grid-fit-scroll.png +0 -0
- package/src/assets/img/grid-fit-width.png +0 -0
- package/src/assets/img/grid-option-context-menu.png +0 -0
- package/src/assets/img/grid-option-filter.png +0 -0
- package/src/assets/img/grid-option-multi-dont-tile.png +0 -0
- package/src/assets/img/grid-option-multi.png +0 -0
- package/src/assets/img/grid-option-sort.png +0 -0
- package/src/assets/img/grid-option-template-column.png +0 -0
- package/src/assets/img/grid-reorder.png +0 -0
- package/src/assets/img/grid-resize.png +0 -0
- package/src/assets/img/grid-use-when.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 4.0.7 (2021-02-11)
|
|
2
|
+
|
|
3
|
+
- Fixed a typo in the design guidelines. [#174](https://github.com/blackbaud/skyux-grids/pull/174)
|
|
4
|
+
|
|
1
5
|
# 4.0.6 (2020-09-11)
|
|
2
6
|
|
|
3
7
|
- Fixed the grid component's resize handle to have a proper accessibility role. [#158](https://github.com/blackbaud/skyux-grids/pull/158)
|
|
@@ -534,8 +534,8 @@
|
|
|
534
534
|
// https://developer.mozilla.org/en-US/docs/Web/API/Element/matches
|
|
535
535
|
// Returns true if the element would be selected by the specified selector string.
|
|
536
536
|
if (!Element.prototype.matches) {
|
|
537
|
-
|
|
538
|
-
|
|
537
|
+
/* istanbul ignore next */
|
|
538
|
+
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
|
|
539
539
|
}
|
|
540
540
|
|
|
541
541
|
var nextId = 0;
|