@cloudflare/component-page 9.1.6 → 9.2.0
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 +8 -1
- package/es/Page.js +1 -1
- package/lib/Page.js +1 -1
- package/package.json +1 -1
- package/src/Page.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4902daa763: make documentation open in new tab in mobile even if its intended to be rendered in the side drawer on screen sizes larger than mobile
|
|
8
|
+
|
|
3
9
|
## 9.1.6
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
13
|
+
- Updated dependencies [35b41fdd48]
|
|
14
|
+
- @cloudflare/component-link@8.0.13
|
|
8
15
|
|
|
9
16
|
## 9.1.5
|
|
10
17
|
|
package/es/Page.js
CHANGED
|
@@ -72,7 +72,7 @@ var PageHeader = _ref => {
|
|
|
72
72
|
mb: documentationHref ? 2 : 3,
|
|
73
73
|
lineHeight: 1.25,
|
|
74
74
|
fontWeight: 400
|
|
75
|
-
}, description), documentationAsButton ? /*#__PURE__*/React.createElement(Button, {
|
|
75
|
+
}, description), documentationAsButton && !isMobile ? /*#__PURE__*/React.createElement(Button, {
|
|
76
76
|
type: "primary",
|
|
77
77
|
borderRadius: '20vh',
|
|
78
78
|
inverted: true,
|
package/lib/Page.js
CHANGED
|
@@ -94,7 +94,7 @@ var PageHeader = function PageHeader(_ref) {
|
|
|
94
94
|
mb: documentationHref ? 2 : 3,
|
|
95
95
|
lineHeight: 1.25,
|
|
96
96
|
fontWeight: 400
|
|
97
|
-
}, description), documentationAsButton ? /*#__PURE__*/_react.default.createElement(_componentButton.Button, {
|
|
97
|
+
}, description), documentationAsButton && !isMobile ? /*#__PURE__*/_react.default.createElement(_componentButton.Button, {
|
|
98
98
|
type: "primary",
|
|
99
99
|
borderRadius: '20vh',
|
|
100
100
|
inverted: true,
|
package/package.json
CHANGED