svelte-common 5.0.2 → 5.0.3

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/README.md CHANGED
@@ -130,6 +130,7 @@ Returns **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference
130
130
  ## Pagination
131
131
 
132
132
  Pagination support store.
133
+ Pages go from 1 ... numberOfPages
133
134
 
134
135
  ### Parameters
135
136
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-common",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "svelte-command": "^1.1.42",
37
- "svelte-entitlement": "^1.2.53"
37
+ "svelte-entitlement": "^1.2.54"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@semantic-release/commit-analyzer": "^10.0.1",
@@ -44,7 +44,7 @@
44
44
  "ava": "^5.3.1",
45
45
  "c8": "^8.0.0",
46
46
  "documentation": "^14.0.2",
47
- "mf-styling": "^1.8.1",
47
+ "mf-styling": "^2.0.0",
48
48
  "npm-pkgbuild": "^11.8.9",
49
49
  "semantic-release": "^21.0.5",
50
50
  "stylelint": "^15.9.0",
@@ -79,7 +79,6 @@ export class Pagination {
79
79
  a.onclick = () => (this.page = targetPage);
80
80
  }
81
81
  items.push(a);
82
- return a;
83
82
  };
84
83
 
85
84
  add("<<", 1, "First Page");