@kaizen/draft-illustration
Advanced tools
Comparing version 5.3.6 to 5.3.7
@@ -6,2 +6,13 @@ # Change Log | ||
## [5.3.7](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/draft-illustration@5.3.6...@kaizen/draft-illustration@5.3.7) (2022-11-08) | ||
### Bug Fixes | ||
* Ensure legacy safari and legacy edge users don't call missing methods ([#3067](https://github.com/cultureamp/kaizen-design-system/issues/3067)) ([bdcac56](https://github.com/cultureamp/kaizen-design-system/commit/bdcac567662c5b82fac937f8d1b2b830355267e8)) | ||
## [5.3.6](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/draft-illustration@5.3.5...@kaizen/draft-illustration@5.3.6) (2022-11-01) | ||
@@ -8,0 +19,0 @@ |
@@ -70,2 +70,6 @@ "use strict"; | ||
}; | ||
var isLegacyEdge = navigator.userAgent.match(/Edge/); | ||
var isUnsupportedSafari = window.matchMedia("").addEventListener === undefined; | ||
if (isLegacyEdge || isUnsupportedSafari) | ||
return; | ||
reducedMotionQuery.addEventListener("change", updateMotionPreferences, true); | ||
@@ -72,0 +76,0 @@ return function cleanup() { |
{ | ||
"name": "@kaizen/draft-illustration", | ||
"version": "5.3.6", | ||
"version": "5.3.7", | ||
"description": "The draft illustration component", | ||
@@ -47,3 +47,3 @@ "scripts": { | ||
}, | ||
"gitHead": "1c5602fa090e8c04ac264a60e9479ba2b225d2c3" | ||
"gitHead": "9b4eb5e4e920dc1fd4eb4e8437125af58e6a4d9d" | ||
} |
Sorry, the diff of this file is not supported yet
195355
1646