@dt-dds/react-pagination 1.0.0-beta.38 → 1.0.0-beta.40

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,32 @@
1
1
  # @dt-ui/react-pagination
2
2
 
3
+ ## 1.0.0-beta.40
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: standardise license file naming
8
+ - Updated dependencies
9
+ - @dt-dds/react-core@1.0.0-beta.58
10
+ - @dt-dds/react-icon@1.0.0-beta.61
11
+ - @dt-dds/react-typography@1.0.0-beta.49
12
+ - @dt-dds/themes@1.0.0-beta.13
13
+
14
+ ## 1.0.0-beta.39
15
+
16
+ ### Minor Changes
17
+
18
+ - feat: change Typo default color
19
+
20
+ ### Patch Changes
21
+
22
+ - fix: change color logic on typography
23
+ - Updated dependencies
24
+ - Updated dependencies
25
+ - @dt-dds/react-typography@1.0.0-beta.48
26
+ - @dt-dds/themes@1.0.0-beta.12
27
+ - @dt-dds/react-core@1.0.0-beta.57
28
+ - @dt-dds/react-icon@1.0.0-beta.60
29
+
3
30
  ## 1.0.0-beta.38
4
31
 
5
32
  ### Minor Changes
package/dist/index.js CHANGED
@@ -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: "bodyXsRegular", children: [
96
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react_typography.Typography, { color: "grey_90", fontStyles: "bodyXsRegular", children: [
97
97
  "of",
98
98
  " ",
99
99
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
package/dist/index.mjs CHANGED
@@ -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: "bodyXsRegular", children: [
58
+ return /* @__PURE__ */ jsxs(Typography, { color: "grey_90", 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.38",
3
+ "version": "1.0.0-beta.40",
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.56",
24
- "@dt-dds/react-typography": "1.0.0-beta.47",
25
- "@dt-dds/react-icon": "1.0.0-beta.59",
26
- "@dt-dds/themes": "1.0.0-beta.11"
23
+ "@dt-dds/react-core": "1.0.0-beta.58",
24
+ "@dt-dds/react-typography": "1.0.0-beta.49",
25
+ "@dt-dds/react-icon": "1.0.0-beta.61",
26
+ "@dt-dds/themes": "1.0.0-beta.13"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/core": "^7.22.9",
File without changes