@nemigo/svelte 2.4.0 → 2.6.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.
@@ -64,8 +64,6 @@ const css_boost = (t, v = 1 / 3) => {
64
64
  export const slide = (node, { delay = 0, duration = 325, easing, axis = "y", classic } = {}) => {
65
65
  if (classic)
66
66
  return svelte_slide(node, { delay, duration, easing, axis });
67
- // oxlint-disable-next-line no-param-reassign
68
- // eslint-disable-next-line no-param-reassign
69
67
  if (!easing)
70
68
  easing = quadInOut;
71
69
  const style = getComputedStyle(node);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nemigo/svelte",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "private": false,
5
5
  "license": "MPL-2.0",
6
6
  "author": {
@@ -36,7 +36,7 @@
36
36
  }
37
37
  },
38
38
  "peerDependencies": {
39
- "@nemigo/helpers": ">=2.4.0",
39
+ "@nemigo/helpers": ">=2.6.0",
40
40
  "@sveltejs/kit": ">=2.49.0",
41
41
  "svelte": ">=5.46.0"
42
42
  },
@@ -49,7 +49,7 @@
49
49
  "csstype": ">=3.2.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@nemigo/configs": "2.4.0",
53
- "@nemigo/helpers": "2.4.0"
52
+ "@nemigo/configs": "2.6.0",
53
+ "@nemigo/helpers": "2.6.0"
54
54
  }
55
55
  }