ember-attacher 2.0.4 → 2.0.6
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,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## v2.0.
|
|
3
|
+
## v2.0.6 (2023-06-27)
|
|
4
4
|
|
|
5
5
|
#### :rocket: Enhancement
|
|
6
6
|
* [#790](https://github.com/tylerturdenpants/ember-attacher/pull/790) Bump ember-maybe-in-element to supress build-time warning ([@pzubar](https://github.com/pzubar))
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* [#784](https://github.com/tylerturdenpants/ember-attacher/pull/784) Prevent overflow by default ([@pzubar](https://github.com/pzubar))
|
|
13
13
|
|
|
14
14
|
#### :house: Internal
|
|
15
|
+
* [#819](https://github.com/tylerturdenpants/ember-attacher/pull/819) [chore]: Bump eslint from 8.40.0 to 8.43.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
15
16
|
* [#811](https://github.com/tylerturdenpants/ember-attacher/pull/811) Remove the "beyond ember 3.24" support note ([@pzubar](https://github.com/pzubar))
|
|
16
17
|
* [#783](https://github.com/tylerturdenpants/ember-attacher/pull/783) Upgrade Ember to v4 ([@pzubar](https://github.com/pzubar))
|
|
17
18
|
|
|
@@ -832,6 +832,10 @@ export default class AttachPopover extends Component {
|
|
|
832
832
|
}
|
|
833
833
|
|
|
834
834
|
_cancelAnimation() {
|
|
835
|
+
if (typeof cancelAnimationFrame !== 'function') {
|
|
836
|
+
return;
|
|
837
|
+
}
|
|
838
|
+
|
|
835
839
|
cancelAnimationFrame(this._animationTimeout);
|
|
836
840
|
|
|
837
841
|
stripInProduction(() => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-attacher",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "Tooltips and popovers for Ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:all": "ember try:each"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@floating-ui/dom": "~1.2
|
|
32
|
+
"@floating-ui/dom": "~1.4.2",
|
|
33
33
|
"babel-plugin-filter-imports": "^4.0.0",
|
|
34
34
|
"broccoli-funnel": "~3.0.8",
|
|
35
35
|
"ember-auto-import": "~2.6.3",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"sass": "^1.62.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@babel/core": "^7.
|
|
45
|
-
"@babel/eslint-parser": "^7.
|
|
44
|
+
"@babel/core": "^7.22.5",
|
|
45
|
+
"@babel/eslint-parser": "^7.22.5",
|
|
46
46
|
"@ember/optional-features": "^2.0.0",
|
|
47
47
|
"@ember/render-modifiers": "^2.0.5",
|
|
48
48
|
"@ember/string": "^3.0.1",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"ember-svg-jar": "~2.4.2",
|
|
69
69
|
"ember-truth-helpers": "^3.1.1",
|
|
70
70
|
"ember-try": "~3.0.0-beta.1",
|
|
71
|
-
"eslint": "~8.
|
|
71
|
+
"eslint": "~8.43.0",
|
|
72
72
|
"eslint-plugin-decorator-position": "^5.0.2",
|
|
73
73
|
"eslint-plugin-ember": "~11.5.2",
|
|
74
74
|
"eslint-plugin-n": "^15.7.0",
|
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
"qunit": "~2.19.4",
|
|
78
78
|
"qunit-dom": "~2.0.0",
|
|
79
79
|
"release-it": "~15.11.0",
|
|
80
|
-
"webpack": "~5.
|
|
80
|
+
"webpack": "~5.88.0"
|
|
81
81
|
},
|
|
82
82
|
"resolutions": {
|
|
83
83
|
"ember-in-element-polyfill": "^1.0.1"
|
|
84
84
|
},
|
|
85
85
|
"engines": {
|
|
86
|
-
"node": "
|
|
86
|
+
"node": "16.* || >= 18"
|
|
87
87
|
},
|
|
88
88
|
"ember": {
|
|
89
89
|
"edition": "octane"
|