@cloudflare/component-page 9.3.20 → 9.4.1
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 +12 -0
- package/es/Page.js +1 -1
- package/lib/Page.js +1 -1
- package/package.json +2 -2
- package/src/Page.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @cloudflare/component-link@8.1.27
|
|
8
|
+
|
|
9
|
+
## 9.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- ac7d8de88a: Updates @cloudflare/component-page to include button text in aria label
|
|
14
|
+
|
|
3
15
|
## 9.3.20
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/es/Page.js
CHANGED
|
@@ -99,7 +99,7 @@ var PageHeader = _ref => {
|
|
|
99
99
|
onClick: onDocumentationButtonClick,
|
|
100
100
|
px: 3,
|
|
101
101
|
py: 1,
|
|
102
|
-
ariaLabel: "open documentation"
|
|
102
|
+
ariaLabel: "open documentation - ".concat(documentationLabel)
|
|
103
103
|
}, documentationLabel)) : documentationHref && /*#__PURE__*/React.createElement(DocumentationLink, {
|
|
104
104
|
fontSize: 2,
|
|
105
105
|
iconSize: 14,
|
package/lib/Page.js
CHANGED
|
@@ -122,7 +122,7 @@ var PageHeader = function PageHeader(_ref) {
|
|
|
122
122
|
onClick: onDocumentationButtonClick,
|
|
123
123
|
px: 3,
|
|
124
124
|
py: 1,
|
|
125
|
-
ariaLabel: "open documentation"
|
|
125
|
+
ariaLabel: "open documentation - ".concat(documentationLabel)
|
|
126
126
|
}, documentationLabel)) : documentationHref && /*#__PURE__*/_react.default.createElement(_componentLink.DocumentationLink, {
|
|
127
127
|
fontSize: 2,
|
|
128
128
|
iconSize: 14,
|
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.
|
|
4
|
+
"version": "9.4.1",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
7
7
|
"author": "James Kyle <jkyle@cloudflare.com>",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@cloudflare/component-label": "^5.0.10",
|
|
17
|
-
"@cloudflare/component-link": "^8.1.
|
|
17
|
+
"@cloudflare/component-link": "^8.1.27",
|
|
18
18
|
"@cloudflare/elements": "^3.0.10",
|
|
19
19
|
"@cloudflare/intl-react": "^1.9.80"
|
|
20
20
|
},
|
package/src/Page.tsx
CHANGED