@cloudflare/component-page 9.2.3 → 9.2.5

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,22 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - @cloudflare/component-label@5.0.8
8
+ - @cloudflare/component-link@8.0.18
9
+ - @cloudflare/elements@3.0.8
10
+
11
+ ## 9.2.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 20eb7bba90: add a word break to the PageHeader description for when a long zone name overflows the text
16
+ - @cloudflare/component-label@5.0.7
17
+ - @cloudflare/component-link@8.0.17
18
+ - @cloudflare/elements@3.0.7
19
+
3
20
  ## 9.2.3
4
21
 
5
22
  ### Patch Changes
package/es/Page.js CHANGED
@@ -71,7 +71,8 @@ var PageHeader = _ref => {
71
71
  mt: 0,
72
72
  mb: documentationHref ? 2 : 3,
73
73
  lineHeight: 1.25,
74
- fontWeight: 400
74
+ fontWeight: 400,
75
+ wordBreak: "break-word"
75
76
  }, description), documentationAsButton && !isMobile ? /*#__PURE__*/React.createElement(Button, {
76
77
  type: "primary",
77
78
  borderRadius: '20vh',
package/lib/Page.js CHANGED
@@ -93,7 +93,8 @@ var PageHeader = function PageHeader(_ref) {
93
93
  mt: 0,
94
94
  mb: documentationHref ? 2 : 3,
95
95
  lineHeight: 1.25,
96
- fontWeight: 400
96
+ fontWeight: 400,
97
+ wordBreak: "break-word"
97
98
  }, description), documentationAsButton && !isMobile ? /*#__PURE__*/_react.default.createElement(_componentButton.Button, {
98
99
  type: "primary",
99
100
  borderRadius: '20vh',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudflare/component-page",
3
3
  "description": "Cloudflare Page Component",
4
- "version": "9.2.3",
4
+ "version": "9.2.5",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
7
7
  "author": "James Kyle <jkyle@cloudflare.com>",
@@ -13,9 +13,9 @@
13
13
  "types": "./dist/index.d.ts"
14
14
  },
15
15
  "dependencies": {
16
- "@cloudflare/component-label": "^5.0.6",
17
- "@cloudflare/component-link": "^8.0.16",
18
- "@cloudflare/elements": "^3.0.6",
16
+ "@cloudflare/component-label": "^5.0.8",
17
+ "@cloudflare/component-link": "^8.0.18",
18
+ "@cloudflare/elements": "^3.0.8",
19
19
  "@cloudflare/intl-react": "^1.9.80"
20
20
  },
21
21
  "peerDependencies": {
package/src/Page.tsx CHANGED
@@ -108,6 +108,7 @@ const PageHeader = ({
108
108
  mb={documentationHref ? 2 : 3}
109
109
  lineHeight={1.25}
110
110
  fontWeight={400}
111
+ wordBreak="break-word"
111
112
  >
112
113
  {description}
113
114
  </P>