@dt-dds/react-pagination 1.0.0-beta.41 → 1.0.0-beta.43
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 +24 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @dt-ui/react-pagination
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.43
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: pagination button testid for current-page
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.42
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- feat: change theme icons to sharp
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- fix: checkbox label alignment
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @dt-dds/react-icon@1.0.0-beta.62
|
|
21
|
+
- @dt-dds/react-select@1.0.0-beta.94
|
|
22
|
+
- @dt-dds/themes@1.0.0-beta.14
|
|
23
|
+
- @dt-dds/react-core@1.0.0-beta.59
|
|
24
|
+
- @dt-dds/react-tooltip@1.0.0-beta.69
|
|
25
|
+
- @dt-dds/react-typography@1.0.0-beta.50
|
|
26
|
+
|
|
3
27
|
## 1.0.0-beta.41
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -368,7 +368,7 @@ var Pagination = ({
|
|
|
368
368
|
$isActive: page === currentPage,
|
|
369
369
|
"aria-current": page === currentPage ? "page" : void 0,
|
|
370
370
|
"aria-label": `Go to page ${page}`,
|
|
371
|
-
"data-testid": `pagination-page-${page}`,
|
|
371
|
+
"data-testid": page === currentPage ? "pagination-current-page" : `pagination-page-${page}`,
|
|
372
372
|
onClick: () => handlePageChange(page),
|
|
373
373
|
title: `Go to page ${page}`,
|
|
374
374
|
children: page
|
package/dist/index.mjs
CHANGED
|
@@ -327,7 +327,7 @@ var Pagination = ({
|
|
|
327
327
|
$isActive: page === currentPage,
|
|
328
328
|
"aria-current": page === currentPage ? "page" : void 0,
|
|
329
329
|
"aria-label": `Go to page ${page}`,
|
|
330
|
-
"data-testid": `pagination-page-${page}`,
|
|
330
|
+
"data-testid": page === currentPage ? "pagination-current-page" : `pagination-page-${page}`,
|
|
331
331
|
onClick: () => handlePageChange(page),
|
|
332
332
|
title: `Go to page ${page}`,
|
|
333
333
|
children: page
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-pagination",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-typography": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-core": "1.0.0-beta.59",
|
|
24
|
+
"@dt-dds/react-typography": "1.0.0-beta.50",
|
|
25
|
+
"@dt-dds/react-icon": "1.0.0-beta.62",
|
|
26
26
|
"@dt-dds/icons": "1.0.0-beta.6",
|
|
27
|
-
"@dt-dds/react-select": "1.0.0-beta.
|
|
28
|
-
"@dt-dds/react-tooltip": "1.0.0-beta.
|
|
29
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
27
|
+
"@dt-dds/react-select": "1.0.0-beta.94",
|
|
28
|
+
"@dt-dds/react-tooltip": "1.0.0-beta.69",
|
|
29
|
+
"@dt-dds/themes": "1.0.0-beta.14"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@babel/core": "^7.22.9",
|