@dt-dds/react-pagination 1.0.0-beta.22 → 1.0.0-beta.24
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 +31 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @dt-ui/react-pagination
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- refactor(themes): consolidate theme structure
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @dt-dds/react-core@1.0.0-beta.44
|
|
10
|
+
- @dt-dds/react-icon@1.0.0-beta.45
|
|
11
|
+
- @dt-dds/react-typography@1.0.0-beta.35
|
|
12
|
+
- @dt-dds/themes@1.0.0-beta.4
|
|
13
|
+
|
|
14
|
+
## 1.0.0-beta.23
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- feat: add components generator
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- chore: fix test coverage configuration
|
|
23
|
+
- chore: increase themes test coverage
|
|
24
|
+
- chore: fix sonarqube issues
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @dt-dds/react-core@1.0.0-beta.43
|
|
30
|
+
- @dt-dds/react-icon@1.0.0-beta.44
|
|
31
|
+
- @dt-dds/react-typography@1.0.0-beta.34
|
|
32
|
+
- @dt-dds/themes@1.0.0-beta.3
|
|
33
|
+
|
|
3
34
|
## 1.0.0-beta.22
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -70,7 +70,7 @@ var ArrowStyled = import_styled.default.button`
|
|
|
70
70
|
`;
|
|
71
71
|
var InputStyled = import_styled.default.input`
|
|
72
72
|
${({ theme, hasError }) => `
|
|
73
|
-
${theme.fontStyles.
|
|
73
|
+
${theme.fontStyles.bodyMdRegularXSmall};
|
|
74
74
|
text-align: center;
|
|
75
75
|
padding: 6px 8px;
|
|
76
76
|
margin: 0px;
|
|
@@ -93,7 +93,7 @@ var Pagination = ({ children, dataTestId }) => {
|
|
|
93
93
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PaginationStyled, { "data-testid": dataTestId != null ? dataTestId : "pagination-wrapper", children });
|
|
94
94
|
};
|
|
95
95
|
Pagination.Content = ({ totalPages, onClick }) => {
|
|
96
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react_typography.Typography, { fontStyles: "
|
|
96
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react_typography.Typography, { fontStyles: "bodyXsRegular", children: [
|
|
97
97
|
"of",
|
|
98
98
|
" ",
|
|
99
99
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
package/dist/index.mjs
CHANGED
|
@@ -32,7 +32,7 @@ var ArrowStyled = styled.button`
|
|
|
32
32
|
`;
|
|
33
33
|
var InputStyled = styled.input`
|
|
34
34
|
${({ theme, hasError }) => `
|
|
35
|
-
${theme.fontStyles.
|
|
35
|
+
${theme.fontStyles.bodyMdRegularXSmall};
|
|
36
36
|
text-align: center;
|
|
37
37
|
padding: 6px 8px;
|
|
38
38
|
margin: 0px;
|
|
@@ -55,7 +55,7 @@ var Pagination = ({ children, dataTestId }) => {
|
|
|
55
55
|
return /* @__PURE__ */ jsx(PaginationStyled, { "data-testid": dataTestId != null ? dataTestId : "pagination-wrapper", children });
|
|
56
56
|
};
|
|
57
57
|
Pagination.Content = ({ totalPages, onClick }) => {
|
|
58
|
-
return /* @__PURE__ */ jsxs(Typography, { fontStyles: "
|
|
58
|
+
return /* @__PURE__ */ jsxs(Typography, { fontStyles: "bodyXsRegular", children: [
|
|
59
59
|
"of",
|
|
60
60
|
" ",
|
|
61
61
|
/* @__PURE__ */ jsx(
|
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.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,9 +20,10 @@
|
|
|
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.44",
|
|
24
|
+
"@dt-dds/react-typography": "1.0.0-beta.35",
|
|
25
|
+
"@dt-dds/react-icon": "1.0.0-beta.45",
|
|
26
|
+
"@dt-dds/themes": "1.0.0-beta.4"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@babel/core": "^7.22.9",
|