svelte-common 6.17.0 → 6.17.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-common",
3
- "version": "6.17.0",
3
+ "version": "6.17.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -66,14 +66,14 @@
66
66
  "semantic-release": "^24.2.2",
67
67
  "stylelint": "^16.14.1",
68
68
  "stylelint-config-standard": "^37.0.0",
69
- "svelte": "^5.19.10",
69
+ "svelte": "^5.20.0",
70
70
  "testcafe": "^3.7.1",
71
71
  "typescript": "^5.7.3",
72
72
  "vite": "^6.1.0",
73
73
  "vite-plugin-compression2": "^1.3.3"
74
74
  },
75
75
  "peerDependencies": {
76
- "svelte": "^5.19.0"
76
+ "svelte": "^5.20.0"
77
77
  },
78
78
  "optionalDependencies": {
79
79
  "mf-hosting-cloudflare": "^1.0.7",
@@ -224,7 +224,7 @@ export class Pagination {
224
224
  nav.setAttribute("tabindex", "0");
225
225
  nav.setAttribute("aria-label", "pagination");
226
226
 
227
- nav.onkeyup = event => {
227
+ nav.onkeydown = event => {
228
228
  const step = event.altKey ? 10 : 1;
229
229
 
230
230
  switch (event.key) {