@dt-dds/react-pagination 1.0.0-beta.23 → 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 CHANGED
@@ -1,5 +1,16 @@
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
+
3
14
  ## 1.0.0-beta.23
4
15
 
5
16
  ### 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.pXSmall};
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: "pXSmall", children: [
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.pXSmall};
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: "pXSmall", children: [
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.23",
3
+ "version": "1.0.0-beta.24",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,10 +20,10 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-core": "1.0.0-beta.43",
24
- "@dt-dds/react-typography": "1.0.0-beta.34",
25
- "@dt-dds/react-icon": "1.0.0-beta.44",
26
- "@dt-dds/themes": "1.0.0-beta.3"
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"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/core": "^7.22.9",