@patternfly/react-styles 6.3.0-prerelease.7 → 6.3.0-prerelease.9
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/css/components/DataList/data-list.css +2 -2
- package/css/components/FileUpload/file-upload.css +3 -3
- package/css/components/Table/table-grid.css +15 -0
- package/css/components/Table/table-grid.d.ts +1 -0
- package/css/components/Table/table-grid.js +1 -0
- package/css/components/Table/table-grid.mjs +1 -0
- package/css/components/Table/table.css +21 -3
- package/css/components/Table/table.d.ts +2 -0
- package/css/components/Table/table.js +2 -0
- package/css/components/Table/table.mjs +2 -0
- package/css/components/_index.css +41 -8
- package/css/components/_index.d.ts +1 -0
- package/css/components/_index.js +1 -0
- package/css/components/_index.mjs +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
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.3.0-prerelease.9](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.8...@patternfly/react-styles@6.3.0-prerelease.9) (2025-06-23)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- Bumped to latest core version. ([#11880](https://github.com/patternfly/patternfly-react/issues/11880)) ([0380aa5](https://github.com/patternfly/patternfly-react/commit/0380aa504b4d0d83459126bfd98b2e4e29cac4e8))
|
11
|
+
|
12
|
+
# [6.3.0-prerelease.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.7...@patternfly/react-styles@6.3.0-prerelease.8) (2025-06-20)
|
13
|
+
|
14
|
+
### Features
|
15
|
+
|
16
|
+
- **Table:** added optin animations for expansion ([#11865](https://github.com/patternfly/patternfly-react/issues/11865)) ([9adc88b](https://github.com/patternfly/patternfly-react/commit/9adc88b652f77ed5737c9f6dd02885daace1cd2b))
|
17
|
+
|
6
18
|
# [6.3.0-prerelease.7](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.6...@patternfly/react-styles@6.3.0-prerelease.7) (2025-06-17)
|
7
19
|
|
8
20
|
### Bug Fixes
|
@@ -511,8 +511,8 @@
|
|
511
511
|
--pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
512
512
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
513
513
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
|
514
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--
|
515
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--
|
514
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
515
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
516
516
|
--pf-v6-c-data-list--m-compact__cell--m-icon--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
517
517
|
}
|
518
518
|
@media screen and (min-width: 36rem) {
|
@@ -6,9 +6,9 @@
|
|
6
6
|
--pf-v6-c-file-upload--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
7
7
|
--pf-v6-c-file-upload--BorderRadius: var(--pf-t--global--border--radius--small);
|
8
8
|
--pf-v6-c-file-upload--BorderWidth: var(--pf-t--global--border--width--regular);
|
9
|
-
--pf-v6-c-file-upload--BorderColor:
|
10
|
-
--pf-v6-c-file-upload--BorderStyle:
|
11
|
-
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--
|
9
|
+
--pf-v6-c-file-upload--BorderColor: var(--pf-t--global--border--color--default);
|
10
|
+
--pf-v6-c-file-upload--BorderStyle: dashed;
|
11
|
+
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--border--color--clicked);
|
12
12
|
--pf-v6-c-file-upload--m-drag-hover--BorderStyle: dashed;
|
13
13
|
--pf-v6-c-file-upload__file-select__c-button--m-control--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
14
14
|
--pf-v6-c-file-upload__file-details__c-form-control--MinHeight: calc(var(--pf-t--global--spacer--3xl) * 2);
|
@@ -154,6 +154,9 @@
|
|
154
154
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
155
155
|
align-items: start;
|
156
156
|
}
|
157
|
+
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
158
|
+
align-items: center;
|
159
|
+
}
|
157
160
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
158
161
|
grid-column: 2;
|
159
162
|
}
|
@@ -454,6 +457,9 @@
|
|
454
457
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
455
458
|
align-items: start;
|
456
459
|
}
|
460
|
+
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
461
|
+
align-items: center;
|
462
|
+
}
|
457
463
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
458
464
|
grid-column: 2;
|
459
465
|
}
|
@@ -757,6 +763,9 @@
|
|
757
763
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
758
764
|
align-items: start;
|
759
765
|
}
|
766
|
+
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
767
|
+
align-items: center;
|
768
|
+
}
|
760
769
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
761
770
|
grid-column: 2;
|
762
771
|
}
|
@@ -1060,6 +1069,9 @@
|
|
1060
1069
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
1061
1070
|
align-items: start;
|
1062
1071
|
}
|
1072
|
+
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
1073
|
+
align-items: center;
|
1074
|
+
}
|
1063
1075
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
1064
1076
|
grid-column: 2;
|
1065
1077
|
}
|
@@ -1363,6 +1375,9 @@
|
|
1363
1375
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
1364
1376
|
align-items: start;
|
1365
1377
|
}
|
1378
|
+
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
1379
|
+
align-items: center;
|
1380
|
+
}
|
1366
1381
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
1367
1382
|
grid-column: 2;
|
1368
1383
|
}
|
@@ -118,6 +118,10 @@
|
|
118
118
|
--pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
119
119
|
--pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
120
120
|
--pf-v6-c-table--m-compact--cell--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
121
|
+
--pf-v6-c-table__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
122
|
+
--pf-v6-c-table__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
123
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
124
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
121
125
|
--pf-v6-c-table--m-compact__action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
122
126
|
--pf-v6-c-table--m-compact__action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
123
127
|
--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
@@ -346,6 +350,10 @@
|
|
346
350
|
.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr) > :where(th, td) {
|
347
351
|
overflow-wrap: break-word;
|
348
352
|
}
|
353
|
+
.pf-v6-c-table .pf-v6-c-table__td.pf-m-action {
|
354
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table__td--m-action--PaddingBlockStart);
|
355
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__td--m-action--PaddingBlockEnd);
|
356
|
+
}
|
349
357
|
.pf-v6-c-table .pf-v6-c-table__sort {
|
350
358
|
min-width: var(--pf-v6-c-table__sort--MinWidth);
|
351
359
|
}
|
@@ -418,10 +426,10 @@
|
|
418
426
|
display: revert;
|
419
427
|
visibility: hidden;
|
420
428
|
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
421
|
-
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
429
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
422
430
|
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
423
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s;
|
424
|
-
transition-property: opacity, translate, visibility;
|
431
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s, 0s;
|
432
|
+
transition-property: opacity, translate, visibility, background-color;
|
425
433
|
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
426
434
|
}
|
427
435
|
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
|
@@ -447,6 +455,12 @@
|
|
447
455
|
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
448
456
|
max-height: 0;
|
449
457
|
}
|
458
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__control-row.pf-m-no-animate-expand ~ .pf-v6-c-table__expandable-row {
|
459
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: 0s;
|
460
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
461
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: 0s;
|
462
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: 0s;
|
463
|
+
}
|
450
464
|
|
451
465
|
[class*=pf-v6-c-table].pf-m-truncate {
|
452
466
|
--pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
|
@@ -818,6 +832,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
818
832
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__action--PaddingBlockStart);
|
819
833
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__action--PaddingBlockEnd);
|
820
834
|
}
|
835
|
+
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__td.pf-m-action {
|
836
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart);
|
837
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd);
|
838
|
+
}
|
821
839
|
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__icon {
|
822
840
|
width: auto;
|
823
841
|
min-width: 0;
|
@@ -27,6 +27,7 @@ declare const _default: {
|
|
27
27
|
"favorite": "pf-m-favorite",
|
28
28
|
"borderRight": "pf-m-border-right",
|
29
29
|
"borderLeft": "pf-m-border-left",
|
30
|
+
"action": "pf-m-action",
|
30
31
|
"noBorderRows": "pf-m-no-border-rows",
|
31
32
|
"expanded": "pf-m-expanded",
|
32
33
|
"clickable": "pf-m-clickable",
|
@@ -34,6 +35,7 @@ declare const _default: {
|
|
34
35
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
35
36
|
"dragOver": "pf-m-drag-over",
|
36
37
|
"animateExpand": "pf-m-animate-expand",
|
38
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
37
39
|
"truncate": "pf-m-truncate",
|
38
40
|
"wrap": "pf-m-wrap",
|
39
41
|
"nowrap": "pf-m-nowrap",
|
@@ -29,6 +29,7 @@ exports.default = {
|
|
29
29
|
"favorite": "pf-m-favorite",
|
30
30
|
"borderRight": "pf-m-border-right",
|
31
31
|
"borderLeft": "pf-m-border-left",
|
32
|
+
"action": "pf-m-action",
|
32
33
|
"noBorderRows": "pf-m-no-border-rows",
|
33
34
|
"expanded": "pf-m-expanded",
|
34
35
|
"clickable": "pf-m-clickable",
|
@@ -36,6 +37,7 @@ exports.default = {
|
|
36
37
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
37
38
|
"dragOver": "pf-m-drag-over",
|
38
39
|
"animateExpand": "pf-m-animate-expand",
|
40
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
39
41
|
"truncate": "pf-m-truncate",
|
40
42
|
"wrap": "pf-m-wrap",
|
41
43
|
"nowrap": "pf-m-nowrap",
|
@@ -27,6 +27,7 @@ export default {
|
|
27
27
|
"favorite": "pf-m-favorite",
|
28
28
|
"borderRight": "pf-m-border-right",
|
29
29
|
"borderLeft": "pf-m-border-left",
|
30
|
+
"action": "pf-m-action",
|
30
31
|
"noBorderRows": "pf-m-no-border-rows",
|
31
32
|
"expanded": "pf-m-expanded",
|
32
33
|
"clickable": "pf-m-clickable",
|
@@ -34,6 +35,7 @@ export default {
|
|
34
35
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
35
36
|
"dragOver": "pf-m-drag-over",
|
36
37
|
"animateExpand": "pf-m-animate-expand",
|
38
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
37
39
|
"truncate": "pf-m-truncate",
|
38
40
|
"wrap": "pf-m-wrap",
|
39
41
|
"nowrap": "pf-m-nowrap",
|
@@ -4127,8 +4127,8 @@ ul) {
|
|
4127
4127
|
--pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
4128
4128
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
4129
4129
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
|
4130
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--
|
4131
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--
|
4130
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
4131
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
4132
4132
|
--pf-v6-c-data-list--m-compact__cell--m-icon--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
4133
4133
|
}
|
4134
4134
|
@media screen and (min-width: 36rem) {
|
@@ -6713,9 +6713,9 @@ ul) {
|
|
6713
6713
|
--pf-v6-c-file-upload--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
6714
6714
|
--pf-v6-c-file-upload--BorderRadius: var(--pf-t--global--border--radius--small);
|
6715
6715
|
--pf-v6-c-file-upload--BorderWidth: var(--pf-t--global--border--width--regular);
|
6716
|
-
--pf-v6-c-file-upload--BorderColor:
|
6717
|
-
--pf-v6-c-file-upload--BorderStyle:
|
6718
|
-
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--
|
6716
|
+
--pf-v6-c-file-upload--BorderColor: var(--pf-t--global--border--color--default);
|
6717
|
+
--pf-v6-c-file-upload--BorderStyle: dashed;
|
6718
|
+
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--border--color--clicked);
|
6719
6719
|
--pf-v6-c-file-upload--m-drag-hover--BorderStyle: dashed;
|
6720
6720
|
--pf-v6-c-file-upload__file-select__c-button--m-control--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
6721
6721
|
--pf-v6-c-file-upload__file-details__c-form-control--MinHeight: calc(var(--pf-t--global--spacer--3xl) * 2);
|
@@ -15803,6 +15803,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15803
15803
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
15804
15804
|
align-items: start;
|
15805
15805
|
}
|
15806
|
+
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
15807
|
+
align-items: center;
|
15808
|
+
}
|
15806
15809
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
15807
15810
|
grid-column: 2;
|
15808
15811
|
}
|
@@ -16103,6 +16106,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16103
16106
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
16104
16107
|
align-items: start;
|
16105
16108
|
}
|
16109
|
+
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
16110
|
+
align-items: center;
|
16111
|
+
}
|
16106
16112
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
16107
16113
|
grid-column: 2;
|
16108
16114
|
}
|
@@ -16406,6 +16412,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16406
16412
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
16407
16413
|
align-items: start;
|
16408
16414
|
}
|
16415
|
+
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
16416
|
+
align-items: center;
|
16417
|
+
}
|
16409
16418
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
16410
16419
|
grid-column: 2;
|
16411
16420
|
}
|
@@ -16709,6 +16718,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16709
16718
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
16710
16719
|
align-items: start;
|
16711
16720
|
}
|
16721
|
+
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
16722
|
+
align-items: center;
|
16723
|
+
}
|
16712
16724
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
16713
16725
|
grid-column: 2;
|
16714
16726
|
}
|
@@ -17012,6 +17024,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
17012
17024
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
17013
17025
|
align-items: start;
|
17014
17026
|
}
|
17027
|
+
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
17028
|
+
align-items: center;
|
17029
|
+
}
|
17015
17030
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
17016
17031
|
grid-column: 2;
|
17017
17032
|
}
|
@@ -17339,6 +17354,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
17339
17354
|
--pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
17340
17355
|
--pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
17341
17356
|
--pf-v6-c-table--m-compact--cell--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
17357
|
+
--pf-v6-c-table__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
17358
|
+
--pf-v6-c-table__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
17359
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
17360
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
17342
17361
|
--pf-v6-c-table--m-compact__action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
17343
17362
|
--pf-v6-c-table--m-compact__action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
17344
17363
|
--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
@@ -17567,6 +17586,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
17567
17586
|
.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr) > :where(th, td) {
|
17568
17587
|
overflow-wrap: break-word;
|
17569
17588
|
}
|
17589
|
+
.pf-v6-c-table .pf-v6-c-table__td.pf-m-action {
|
17590
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table__td--m-action--PaddingBlockStart);
|
17591
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__td--m-action--PaddingBlockEnd);
|
17592
|
+
}
|
17570
17593
|
.pf-v6-c-table .pf-v6-c-table__sort {
|
17571
17594
|
min-width: var(--pf-v6-c-table__sort--MinWidth);
|
17572
17595
|
}
|
@@ -17639,10 +17662,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
17639
17662
|
display: revert;
|
17640
17663
|
visibility: hidden;
|
17641
17664
|
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
17642
|
-
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
17665
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
17643
17666
|
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
17644
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s;
|
17645
|
-
transition-property: opacity, translate, visibility;
|
17667
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s, 0s;
|
17668
|
+
transition-property: opacity, translate, visibility, background-color;
|
17646
17669
|
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
17647
17670
|
}
|
17648
17671
|
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
|
@@ -17668,6 +17691,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
17668
17691
|
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
17669
17692
|
max-height: 0;
|
17670
17693
|
}
|
17694
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__control-row.pf-m-no-animate-expand ~ .pf-v6-c-table__expandable-row {
|
17695
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: 0s;
|
17696
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
17697
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: 0s;
|
17698
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: 0s;
|
17699
|
+
}
|
17671
17700
|
|
17672
17701
|
[class*=pf-v6-c-table].pf-m-truncate {
|
17673
17702
|
--pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
|
@@ -18039,6 +18068,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18039
18068
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__action--PaddingBlockStart);
|
18040
18069
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__action--PaddingBlockEnd);
|
18041
18070
|
}
|
18071
|
+
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__td.pf-m-action {
|
18072
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart);
|
18073
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd);
|
18074
|
+
}
|
18042
18075
|
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__icon {
|
18043
18076
|
width: auto;
|
18044
18077
|
min-width: 0;
|
@@ -806,6 +806,7 @@ declare const _default: {
|
|
806
806
|
"borderLeft": "pf-m-border-left",
|
807
807
|
"noBorderRows": "pf-m-no-border-rows",
|
808
808
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
809
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
809
810
|
"borderRow": "pf-m-border-row",
|
810
811
|
"width_10": "pf-m-width-10",
|
811
812
|
"width_15": "pf-m-width-15",
|
package/css/components/_index.js
CHANGED
@@ -808,6 +808,7 @@ exports.default = {
|
|
808
808
|
"borderLeft": "pf-m-border-left",
|
809
809
|
"noBorderRows": "pf-m-no-border-rows",
|
810
810
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
811
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
811
812
|
"borderRow": "pf-m-border-row",
|
812
813
|
"width_10": "pf-m-width-10",
|
813
814
|
"width_15": "pf-m-width-15",
|
@@ -806,6 +806,7 @@ export default {
|
|
806
806
|
"borderLeft": "pf-m-border-left",
|
807
807
|
"noBorderRows": "pf-m-no-border-rows",
|
808
808
|
"firstCellOffsetReset": "pf-m-first-cell-offset-reset",
|
809
|
+
"noAnimateExpand": "pf-m-no-animate-expand",
|
809
810
|
"borderRow": "pf-m-border-row",
|
810
811
|
"width_10": "pf-m-width-10",
|
811
812
|
"width_15": "pf-m-width-15",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "6.3.0-prerelease.
|
3
|
+
"version": "6.3.0-prerelease.9",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,10 +19,10 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "6.3.0-prerelease.
|
22
|
+
"@patternfly/patternfly": "6.3.0-prerelease.36",
|
23
23
|
"change-case": "^5.4.4",
|
24
24
|
"fs-extra": "^11.3.0"
|
25
25
|
},
|
26
26
|
"license": "MIT",
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "46b82e579ecedf3676a698830fb0a742985e7517"
|
28
28
|
}
|