svelte-common 6.10.22 → 6.10.23
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 +5 -5
- package/src/pagination.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-common",
|
|
3
|
-
"version": "6.10.
|
|
3
|
+
"version": "6.10.23",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -56,20 +56,20 @@
|
|
|
56
56
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
57
57
|
"@semantic-release/exec": "^6.0.3",
|
|
58
58
|
"@semantic-release/github": "^10.0.6",
|
|
59
|
-
"@semantic-release/release-notes-generator": "^14.0.
|
|
59
|
+
"@semantic-release/release-notes-generator": "^14.0.1",
|
|
60
60
|
"@sveltejs/vite-plugin-svelte": "^3.1.1",
|
|
61
61
|
"ava": "^6.1.3",
|
|
62
62
|
"c8": "^10.1.2",
|
|
63
63
|
"documentation": "^14.0.3",
|
|
64
64
|
"mf-styling": "^3.1.6",
|
|
65
|
-
"npm-pkgbuild": "^15.3.
|
|
65
|
+
"npm-pkgbuild": "^15.3.22",
|
|
66
66
|
"semantic-release": "^24.0.0",
|
|
67
67
|
"stylelint": "^16.6.1",
|
|
68
68
|
"stylelint-config-standard": "^36.0.1",
|
|
69
|
-
"svelte": "^5.0.0-next.
|
|
69
|
+
"svelte": "^5.0.0-next.166",
|
|
70
70
|
"testcafe": "^3.6.1",
|
|
71
71
|
"typescript": "^5.5.2",
|
|
72
|
-
"vite": "^5.3.
|
|
72
|
+
"vite": "^5.3.2",
|
|
73
73
|
"vite-plugin-compression2": "^1.1.1"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
package/src/pagination.mjs
CHANGED
|
@@ -123,7 +123,7 @@ export class Pagination {
|
|
|
123
123
|
*/
|
|
124
124
|
get numberOfItems() {
|
|
125
125
|
if (this.filter) {
|
|
126
|
-
const data = Array.isArray(this
|
|
126
|
+
const data = Array.isArray(this.#data)
|
|
127
127
|
? this.#data
|
|
128
128
|
: [...this.#data.values()];
|
|
129
129
|
return data.filter(this.filter).length;
|