react-router-pagination 3.2.1 → 3.2.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 +6 -6
- package/package.json +9 -9
- package/src/.babelrc +1 -0
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ Generates:
|
|
|
73
73
|
</li>
|
|
74
74
|
<li class="forward-page">
|
|
75
75
|
<a href="/6">
|
|
76
|
-
<span class="forward"
|
|
76
|
+
<span class="forward">›</span>
|
|
77
77
|
</a>
|
|
78
78
|
</li>
|
|
79
79
|
<li class="last-page">
|
|
@@ -289,7 +289,7 @@ Given a `totalPages` of 12 and a `spread` of 5 then *React Router Pagination* wi
|
|
|
289
289
|
</li>
|
|
290
290
|
<li class="forward-page">
|
|
291
291
|
<a href="/catalogue/products/ABCDEF/stores/6">
|
|
292
|
-
<span class="forward"
|
|
292
|
+
<span class="forward">›</span>
|
|
293
293
|
</a>
|
|
294
294
|
</li>
|
|
295
295
|
<li class="last-page">
|
|
@@ -344,7 +344,7 @@ Class names indicate the `current-page`, the `forward-page`, and the `last-page`
|
|
|
344
344
|
</li>
|
|
345
345
|
<li class="forward-page">
|
|
346
346
|
<a href="/6">
|
|
347
|
-
<span class="forward"
|
|
347
|
+
<span class="forward">›</span>
|
|
348
348
|
</a>
|
|
349
349
|
</li>
|
|
350
350
|
<li class="last-page">
|
|
@@ -393,7 +393,7 @@ Class names indicate the `zero-page`, the `current-page`, the `forward-page`, an
|
|
|
393
393
|
</li>
|
|
394
394
|
<li class="forward-page">
|
|
395
395
|
<a href="/7">
|
|
396
|
-
<span class="forward"
|
|
396
|
+
<span class="forward">›</span>
|
|
397
397
|
</a>
|
|
398
398
|
</li>
|
|
399
399
|
<li class="last-page">
|
|
@@ -417,7 +417,7 @@ Class names indicate the `zero-page`, the `reverse-page`, the `current-page`, th
|
|
|
417
417
|
</li>
|
|
418
418
|
<li class="reverse-page">
|
|
419
419
|
<a href="/5">
|
|
420
|
-
<span class="reverse"
|
|
420
|
+
<span class="reverse">‹</span>
|
|
421
421
|
</a>
|
|
422
422
|
</li>
|
|
423
423
|
<li class="page">
|
|
@@ -447,7 +447,7 @@ Class names indicate the `zero-page`, the `reverse-page`, the `current-page`, th
|
|
|
447
447
|
</li>
|
|
448
448
|
<li class="forward-page">
|
|
449
449
|
<a href="/11">
|
|
450
|
-
<span class="forward"
|
|
450
|
+
<span class="forward">›</span>
|
|
451
451
|
</a>
|
|
452
452
|
</li>
|
|
453
453
|
<li class="last-page">
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-router-pagination",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "A React Router Pagination component",
|
|
5
5
|
"main": "./src/index.mjs",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Jonathan Perry for Sequence Media Limited",
|
|
9
9
|
"email": "sequencemedia@sequencemedia.net",
|
|
10
|
-
"url": "
|
|
10
|
+
"url": "https://www.sequencemedia.net"
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"engines": {
|
|
@@ -38,23 +38,23 @@
|
|
|
38
38
|
"@babel/preset-typescript": "^7.22.15",
|
|
39
39
|
"@babel/register": "^7.22.15",
|
|
40
40
|
"@sequencemedia/hooks": "^1.0.454",
|
|
41
|
-
"@storybook/addon-essentials": "^7.4.
|
|
42
|
-
"@storybook/react": "^7.4.
|
|
43
|
-
"@storybook/react-webpack5": "^7.4.
|
|
41
|
+
"@storybook/addon-essentials": "^7.4.5",
|
|
42
|
+
"@storybook/react": "^7.4.5",
|
|
43
|
+
"@storybook/react-webpack5": "^7.4.5",
|
|
44
44
|
"@types/debug": "^4.1.9",
|
|
45
45
|
"@types/jest": "^29.5.5",
|
|
46
46
|
"@types/react": "^18.2.22",
|
|
47
47
|
"@types/react-router": "^5.1.20",
|
|
48
48
|
"@types/react-router-dom": "^5.3.3",
|
|
49
49
|
"@types/react-test-renderer": "^18.0.2",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "
|
|
51
|
-
"@typescript-eslint/parser": "
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
|
51
|
+
"@typescript-eslint/parser": "^6.7.2",
|
|
52
52
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
53
53
|
"core-js": "^3.32.2",
|
|
54
54
|
"cross-env": "^7.0.3",
|
|
55
55
|
"eslint": "^8.50.0",
|
|
56
56
|
"eslint-config-standard": "^17.1.0",
|
|
57
|
-
"eslint-config-standard-with-typescript": "
|
|
57
|
+
"eslint-config-standard-with-typescript": "^39.1.0",
|
|
58
58
|
"eslint-import-resolver-babel-module": "^5.3.2",
|
|
59
59
|
"eslint-plugin-react": "^7.33.2",
|
|
60
60
|
"eslint-plugin-storybook": "^0.6.14",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"react-router": "^6.16.0",
|
|
67
67
|
"react-router-dom": "^6.16.0",
|
|
68
68
|
"react-test-renderer": "^18.2.0",
|
|
69
|
-
"storybook": "^7.4.
|
|
69
|
+
"storybook": "^7.4.5",
|
|
70
70
|
"typescript": "^5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"imports": {
|