@synerise/ds-pagination 1.0.60 → 1.0.62

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 CHANGED
@@ -3,6 +3,16 @@
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.62](https://github.com/synerise/synerise-design/compare/@synerise/ds-pagination@1.0.61...@synerise/ds-pagination@1.0.62) (2026-05-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-pagination
9
+
10
+ ## [1.0.61](https://github.com/synerise/synerise-design/compare/@synerise/ds-pagination@1.0.60...@synerise/ds-pagination@1.0.61) (2026-05-04)
11
+
12
+ ### Bug Fixes
13
+
14
+ - add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
15
+
6
16
  ## [1.0.60](https://github.com/synerise/synerise-design/compare/@synerise/ds-pagination@1.0.59...@synerise/ds-pagination@1.0.60) (2026-04-29)
7
17
 
8
18
  **Note:** Version bump only for package @synerise/ds-pagination
@@ -1,4 +1,4 @@
1
- import { PaginationProps } from 'antd/lib/pagination';
1
+ import { PaginationProps } from 'antd';
2
2
  import { default as React } from 'react';
3
3
  declare const Pagination: ({ locale, ...props }: PaginationProps) => React.JSX.Element;
4
4
  export default Pagination;
@@ -1,5 +1,5 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
- import AntPagination from "antd/lib/pagination";
2
+ import { Pagination as Pagination$1 } from "antd";
3
3
  import { useCallback } from "react";
4
4
  import Button from "@synerise/ds-button";
5
5
  import Icon, { OptionHorizontalM, DoubleAngleRightS, DoubleAngleLeftS, AngleRightS, AngleLeftS } from "@synerise/ds-icon";
@@ -39,7 +39,7 @@ const Pagination = ({
39
39
  }
40
40
  }
41
41
  }, []);
42
- return /* @__PURE__ */ jsx(AntPagination, { ...props, locale: {
42
+ return /* @__PURE__ */ jsx(Pagination$1, { ...props, locale: {
43
43
  page: "",
44
44
  ...locale
45
45
  }, itemRender: renderItem });
package/package.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "name": "@synerise/ds-pagination",
3
- "version": "1.0.60",
3
+ "version": "1.0.62",
4
4
  "description": "Pagination UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
7
7
  "main": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./dist/*.js": "./dist/*.js",
15
+ "./dist/*": "./dist/*.js"
16
+ },
8
17
  "files": [
9
18
  "/dist",
10
19
  "CHANGELOG.md",
@@ -32,9 +41,9 @@
32
41
  ],
33
42
  "types": "dist/index.d.ts",
34
43
  "dependencies": {
35
- "@synerise/ds-button": "^1.5.25",
36
- "@synerise/ds-icon": "^1.17.2",
37
- "@synerise/ds-select": "^1.3.27"
44
+ "@synerise/ds-button": "^1.5.27",
45
+ "@synerise/ds-icon": "^1.17.3",
46
+ "@synerise/ds-select": "^1.3.28"
38
47
  },
39
48
  "peerDependencies": {
40
49
  "@synerise/ds-core": "*",
@@ -42,5 +51,5 @@
42
51
  "react": ">=16.9.0 <= 18.3.1",
43
52
  "vitest": "4"
44
53
  },
45
- "gitHead": "82150f1e50f5a3e19682c68e4eec9ae441950327"
54
+ "gitHead": "0418fb6d3b67c35d3c8bacfe53ce01528c6b6153"
46
55
  }