@gitlab/ui 99.0.0 → 99.0.1
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [99.0.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v99.0.0...v99.0.1) (2024-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **BvTransition:** Check whether Element is defined in DOM API ([b69838d](https://gitlab.com/gitlab-org/gitlab-ui/commit/b69838d1b72587cddafecf1f72d93bb9672beb2d))
|
|
7
|
+
|
|
1
8
|
# [99.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v98.5.2...v99.0.0) (2024-10-28)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -36,7 +36,7 @@ const props = {
|
|
|
36
36
|
// For user supplied transitions (if needed)
|
|
37
37
|
transProps: makeProp(PROP_TYPE_OBJECT)
|
|
38
38
|
};
|
|
39
|
-
const hasAnimateSupport = Boolean(Element.prototype.animate);
|
|
39
|
+
const hasAnimateSupport = typeof Element !== 'undefined' && Boolean(Element.prototype.animate);
|
|
40
40
|
|
|
41
41
|
// --- Main component ---
|
|
42
42
|
|
package/package.json
CHANGED
|
@@ -42,7 +42,7 @@ export const props = {
|
|
|
42
42
|
transProps: makeProp(PROP_TYPE_OBJECT)
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
const hasAnimateSupport = Boolean(Element.prototype.animate)
|
|
45
|
+
const hasAnimateSupport = typeof Element !== 'undefined' && Boolean(Element.prototype.animate)
|
|
46
46
|
|
|
47
47
|
// --- Main component ---
|
|
48
48
|
|