@patternfly/documentation-framework 2.0.0-alpha.45 → 2.0.0-alpha.46
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
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 2.0.0-alpha.46 (2023-05-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **CSSVariables:** resolve a11y issues in tables ([41a7837](https://github.com/patternfly/patternfly-org/commit/41a78379de36c08d7b36fe48a9ff40a4140cdc63))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# 2.0.0-alpha.45 (2023-05-25)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
@@ -178,11 +178,7 @@ export class CSSVariables extends React.Component {
|
|
|
178
178
|
<Tr>
|
|
179
179
|
{!this.props.hideSelectorColumn && (
|
|
180
180
|
<React.Fragment>
|
|
181
|
-
<Th
|
|
182
|
-
areAllExpanded: this.state.allRowsExpanded,
|
|
183
|
-
collapseAllAriaLabel: "Expand or collapse all CSS variables",
|
|
184
|
-
onToggle: this.onCollapse
|
|
185
|
-
}}/>
|
|
181
|
+
<Th />
|
|
186
182
|
<Th>Selector</Th>
|
|
187
183
|
</React.Fragment>
|
|
188
184
|
)}
|
|
@@ -201,7 +197,7 @@ export class CSSVariables extends React.Component {
|
|
|
201
197
|
rowIndex,
|
|
202
198
|
isExpanded: row.isOpen,
|
|
203
199
|
onToggle: this.onCollapse,
|
|
204
|
-
expandId:
|
|
200
|
+
expandId: `css-vars-expandable-toggle-${this.props.prefix}`
|
|
205
201
|
}
|
|
206
202
|
: undefined
|
|
207
203
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/documentation-framework",
|
|
3
3
|
"description": "A framework to build documentation for PatternFly.",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.46",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"react": "^17.0.0 || ^18.0.0",
|
|
92
92
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "c544648774dac6e2b88fb3a107cf05259b9573e8"
|
|
95
95
|
}
|