@patternfly/react-styles 6.0.0-alpha.21 → 6.0.0-alpha.22
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 +6 -0
- package/css/components/Table/table.css +5 -0
- package/css/components/Toolbar/toolbar.css +159 -55
- package/css/components/_index.css +164 -55
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
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
|
+
# 6.0.0-alpha.22 (2024-05-23)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **Toolbar:** updated spacer props to gap ([#10418](https://github.com/patternfly/patternfly-react/issues/10418)) ([29578a2](https://github.com/patternfly/patternfly-react/commit/29578a2f937456c07fb9c2d8f8ae23a1ad0b2b34))
|
11
|
+
|
6
12
|
# 6.0.0-alpha.21 (2024-05-21)
|
7
13
|
|
8
14
|
### Features
|
@@ -77,6 +77,7 @@
|
|
77
77
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
78
78
|
--pf-v6-c-table__expandable-row-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
79
79
|
--pf-v6-c-table__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
|
80
|
+
--pf-v6-c-table__expandable-row-content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
80
81
|
--pf-v6-c-table__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
81
82
|
--pf-v6-c-table__control-row--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
82
83
|
--pf-v6-c-table__control-row__tbody--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
@@ -405,6 +406,9 @@
|
|
405
406
|
background-color: var(--pf-v6-c-table__tbody--m-selected--BackgroundColor);
|
406
407
|
outline-offset: var(--pf-v6-c-table__tbody--m-selected--OutlineOffset);
|
407
408
|
}
|
409
|
+
.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody).pf-m-selected .pf-v6-c-table__tr.pf-m-expanded:not(.pf-v6-c-table__expandable-row) {
|
410
|
+
border: none;
|
411
|
+
}
|
408
412
|
.pf-v6-c-table.pf-m-drag-over {
|
409
413
|
overflow-anchor: none;
|
410
414
|
}
|
@@ -702,6 +706,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
702
706
|
padding-block-end: var(--pf-v6-c-table__expandable-row-content--PaddingBlockEnd);
|
703
707
|
padding-inline-start: var(--pf-v6-c-table__expandable-row-content--PaddingInlineStart);
|
704
708
|
padding-inline-end: var(--pf-v6-c-table__expandable-row-content--PaddingInlineEnd);
|
709
|
+
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
705
710
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
706
711
|
}
|
707
712
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|