@synerise/ds-pagination 1.0.51 → 1.0.52
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/CHANGELOG.md +4 -0
- package/README.md +5 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.52](https://github.com/synerise/synerise-design/compare/@synerise/ds-pagination@1.0.51...@synerise/ds-pagination@1.0.52) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-pagination
|
|
9
|
+
|
|
6
10
|
## [1.0.51](https://github.com/synerise/synerise-design/compare/@synerise/ds-pagination@1.0.50...@synerise/ds-pagination@1.0.51) (2026-03-09)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @synerise/ds-pagination
|
package/README.md
CHANGED
|
@@ -11,5 +11,10 @@ Pagination UI Component
|
|
|
11
11
|
|
|
12
12
|
## API
|
|
13
13
|
|
|
14
|
+
All [Ant Design Pagination props](https://4x.ant.design/components/pagination/#API) are supported. The component spreads all props onto the underlying `antd` Pagination. The following prop has custom handling:
|
|
15
|
+
|
|
14
16
|
| Property | Description | Type | Default |
|
|
15
17
|
| -------- | ----------- | ---- | ------- |
|
|
18
|
+
| `locale` | Pagination locale. Merged with `{ page: '' }` so the Ant default page label is suppressed. Consumer-supplied keys take precedence. | `PaginationLocale` | `{ page: '' }` |
|
|
19
|
+
|
|
20
|
+
> **Note:** `itemRender` is always overridden internally to render DS-styled ghost icon buttons for prev, next, jump-prev, and jump-next controls. Passing a custom `itemRender` has no effect.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-pagination",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "Pagination UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-button": "^1.5.
|
|
39
|
-
"@synerise/ds-icon": "^1.
|
|
40
|
-
"@synerise/ds-select": "^1.3.
|
|
38
|
+
"@synerise/ds-button": "^1.5.17",
|
|
39
|
+
"@synerise/ds-icon": "^1.15.0",
|
|
40
|
+
"@synerise/ds-select": "^1.3.19"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@synerise/ds-core": "*",
|
|
44
44
|
"antd": "4.24.16",
|
|
45
45
|
"react": ">=16.9.0 <= 18.3.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
48
48
|
}
|