@patternfly/react-styles 6.0.0 → 6.1.0-prerelease.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 +10 -0
- package/css/components/CodeEditor/code-editor.css +15 -0
- package/css/components/CodeEditor/code-editor.d.ts +2 -0
- package/css/components/CodeEditor/code-editor.js +2 -0
- package/css/components/CodeEditor/code-editor.mjs +2 -0
- package/css/components/Page/page.css +5 -0
- package/css/components/Table/table-grid.css +12 -12
- package/css/components/Table/table-tree-view.css +4 -4
- package/css/components/_index.css +36 -16
- package/css/components/_index.d.ts +1 -0
- package/css/components/_index.js +1 -0
- package/css/components/_index.mjs +1 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.css +3 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.d.ts +5 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.js +6 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.mjs +4 -0
- package/css/docs/demos/Card/examples/Card.css +4 -0
- package/css/docs/demos/Card/examples/Card.d.ts +1 -0
- package/css/docs/demos/Card/examples/Card.js +1 -0
- package/css/docs/demos/Card/examples/Card.mjs +1 -0
- package/package.json +3 -3
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.css +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.d.ts +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.js +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.mjs +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.1.0-prerelease.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.1.0-prerelease.0...@patternfly/react-styles@6.1.0-prerelease.1) (2024-11-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **CodeEditor:** Set default height ([#11014](https://github.com/patternfly/patternfly-react/issues/11014)) ([6ddfc93](https://github.com/patternfly/patternfly-react/commit/6ddfc93376a48028fed46948b08a185e3c9617f6))
|
|
11
|
+
|
|
12
|
+
# 6.1.0-prerelease.0 (2024-10-24)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
|
15
|
+
|
|
6
16
|
# 6.0.0 (2024-10-24)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @patternfly/react-styles
|
|
@@ -51,9 +51,22 @@
|
|
|
51
51
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
.pf-v6-c-code-editor {
|
|
55
|
+
display: flex;
|
|
56
|
+
flex-direction: column;
|
|
57
|
+
}
|
|
54
58
|
.pf-v6-c-code-editor.pf-m-read-only {
|
|
55
59
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
56
60
|
}
|
|
61
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
|
62
|
+
height: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.pf-v6-c-code-editor__container {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
flex-grow: 1;
|
|
69
|
+
}
|
|
57
70
|
|
|
58
71
|
.pf-v6-c-code-editor__header {
|
|
59
72
|
position: relative;
|
|
@@ -120,6 +133,7 @@
|
|
|
120
133
|
|
|
121
134
|
.pf-v6-c-code-editor__main {
|
|
122
135
|
position: relative;
|
|
136
|
+
flex-grow: 1;
|
|
123
137
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
|
124
138
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
|
125
139
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
|
@@ -141,6 +155,7 @@
|
|
|
141
155
|
|
|
142
156
|
.pf-v6-c-code-editor__code {
|
|
143
157
|
position: relative;
|
|
158
|
+
height: 100%;
|
|
144
159
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
|
145
160
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
|
146
161
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
|
@@ -3,6 +3,7 @@ declare const _default: {
|
|
|
3
3
|
"codeEditor": "pf-v6-c-code-editor",
|
|
4
4
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
5
5
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
6
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
6
7
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
7
8
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
8
9
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
|
@@ -14,6 +15,7 @@ declare const _default: {
|
|
|
14
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
|
15
16
|
"modifiers": {
|
|
16
17
|
"readOnly": "pf-m-read-only",
|
|
18
|
+
"fullHeight": "pf-m-full-height",
|
|
17
19
|
"plain": "pf-m-plain",
|
|
18
20
|
"dragHover": "pf-m-drag-hover"
|
|
19
21
|
},
|
|
@@ -5,6 +5,7 @@ exports.default = {
|
|
|
5
5
|
"codeEditor": "pf-v6-c-code-editor",
|
|
6
6
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
7
7
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
8
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
8
9
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
9
10
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
10
11
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
|
@@ -16,6 +17,7 @@ exports.default = {
|
|
|
16
17
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
|
17
18
|
"modifiers": {
|
|
18
19
|
"readOnly": "pf-m-read-only",
|
|
20
|
+
"fullHeight": "pf-m-full-height",
|
|
19
21
|
"plain": "pf-m-plain",
|
|
20
22
|
"dragHover": "pf-m-drag-hover"
|
|
21
23
|
},
|
|
@@ -3,6 +3,7 @@ export default {
|
|
|
3
3
|
"codeEditor": "pf-v6-c-code-editor",
|
|
4
4
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
5
5
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
6
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
6
7
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
7
8
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
8
9
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
|
@@ -14,6 +15,7 @@ export default {
|
|
|
14
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
|
15
16
|
"modifiers": {
|
|
16
17
|
"readOnly": "pf-m-read-only",
|
|
18
|
+
"fullHeight": "pf-m-full-height",
|
|
17
19
|
"plain": "pf-m-plain",
|
|
18
20
|
"dragHover": "pf-m-drag-hover"
|
|
19
21
|
},
|
|
@@ -65,11 +65,13 @@
|
|
|
65
65
|
--pf-v6-c-page__main-subnav--PaddingBlockEnd: 0;
|
|
66
66
|
--pf-v6-c-page__main-subnav--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
67
67
|
--pf-v6-c-page__main-subnav--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
68
|
+
--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
68
69
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
69
70
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
70
71
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockEnd: 0;
|
|
71
72
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
72
73
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
74
|
+
--pf-v6-c-page__main-breadcrumb--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
73
75
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: 0;
|
|
74
76
|
--pf-v6-c-page__main-tabs--PaddingInlineEnd: 0;
|
|
75
77
|
--pf-v6-c-page__main-tabs--PaddingBlockEnd: 0;
|
|
@@ -451,6 +453,9 @@
|
|
|
451
453
|
padding-inline-end: var(--pf-v6-c-page__main-subnav--PaddingInlineEnd);
|
|
452
454
|
background-color: var(--pf-v6-c-page__main-subnav--BackgroundColor);
|
|
453
455
|
}
|
|
456
|
+
.pf-v6-c-page__main-subnav.pf-m-sticky-top {
|
|
457
|
+
padding-block-end: var(--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd);
|
|
458
|
+
}
|
|
454
459
|
|
|
455
460
|
.pf-v6-c-page__main-breadcrumb {
|
|
456
461
|
padding-block-start: var(--pf-v6-c-page__main-breadcrumb--PaddingBlockStart);
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
--pf-v6-c-table--cell--Width: auto;
|
|
356
356
|
}
|
|
357
357
|
|
|
358
|
-
@media screen and (max-width: 48rem) {
|
|
358
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
359
359
|
.pf-m-grid-md.pf-v6-c-table {
|
|
360
360
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
361
361
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -625,14 +625,14 @@
|
|
|
625
625
|
text-align: end;
|
|
626
626
|
}
|
|
627
627
|
}
|
|
628
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
|
628
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
|
629
629
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
630
630
|
grid-row-start: 1;
|
|
631
631
|
grid-column-start: 2;
|
|
632
632
|
margin-inline-start: 0;
|
|
633
633
|
}
|
|
634
634
|
}
|
|
635
|
-
@media screen and (max-width: 48rem) {
|
|
635
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
636
636
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
637
637
|
grid-column: 2;
|
|
638
638
|
grid-row: 2;
|
|
@@ -658,7 +658,7 @@
|
|
|
658
658
|
}
|
|
659
659
|
}
|
|
660
660
|
|
|
661
|
-
@media screen and (max-width: 62rem) {
|
|
661
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
662
662
|
.pf-m-grid-lg.pf-v6-c-table {
|
|
663
663
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
664
664
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -928,14 +928,14 @@
|
|
|
928
928
|
text-align: end;
|
|
929
929
|
}
|
|
930
930
|
}
|
|
931
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
|
931
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
|
932
932
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
933
933
|
grid-row-start: 1;
|
|
934
934
|
grid-column-start: 2;
|
|
935
935
|
margin-inline-start: 0;
|
|
936
936
|
}
|
|
937
937
|
}
|
|
938
|
-
@media screen and (max-width: 62rem) {
|
|
938
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
939
939
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
940
940
|
grid-column: 2;
|
|
941
941
|
grid-row: 2;
|
|
@@ -961,7 +961,7 @@
|
|
|
961
961
|
}
|
|
962
962
|
}
|
|
963
963
|
|
|
964
|
-
@media screen and (max-width: 75rem) {
|
|
964
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
965
965
|
.pf-m-grid-xl.pf-v6-c-table {
|
|
966
966
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
967
967
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -1231,14 +1231,14 @@
|
|
|
1231
1231
|
text-align: end;
|
|
1232
1232
|
}
|
|
1233
1233
|
}
|
|
1234
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
|
1234
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
|
1235
1235
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
1236
1236
|
grid-row-start: 1;
|
|
1237
1237
|
grid-column-start: 2;
|
|
1238
1238
|
margin-inline-start: 0;
|
|
1239
1239
|
}
|
|
1240
1240
|
}
|
|
1241
|
-
@media screen and (max-width: 75rem) {
|
|
1241
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
1242
1242
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
1243
1243
|
grid-column: 2;
|
|
1244
1244
|
grid-row: 2;
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
}
|
|
1265
1265
|
}
|
|
1266
1266
|
|
|
1267
|
-
@media screen and (max-width: 90.625rem) {
|
|
1267
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
1268
1268
|
.pf-m-grid-2xl.pf-v6-c-table {
|
|
1269
1269
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
1270
1270
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -1534,14 +1534,14 @@
|
|
|
1534
1534
|
text-align: end;
|
|
1535
1535
|
}
|
|
1536
1536
|
}
|
|
1537
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
|
1537
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
|
1538
1538
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
1539
1539
|
grid-row-start: 1;
|
|
1540
1540
|
grid-column-start: 2;
|
|
1541
1541
|
margin-inline-start: 0;
|
|
1542
1542
|
}
|
|
1543
1543
|
}
|
|
1544
|
-
@media screen and (max-width: 90.625rem) {
|
|
1544
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
1545
1545
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
1546
1546
|
grid-column: 2;
|
|
1547
1547
|
grid-row: 2;
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
|
247
247
|
}
|
|
248
248
|
|
|
249
|
-
@media screen and (max-width: 48rem) {
|
|
249
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
250
250
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
|
251
251
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
252
252
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
}
|
|
390
390
|
}
|
|
391
391
|
|
|
392
|
-
@media screen and (max-width: 62rem) {
|
|
392
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
393
393
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
|
394
394
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
395
395
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -532,7 +532,7 @@
|
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
@media screen and (max-width: 75rem) {
|
|
535
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
536
536
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
|
537
537
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
538
538
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -675,7 +675,7 @@
|
|
|
675
675
|
}
|
|
676
676
|
}
|
|
677
677
|
|
|
678
|
-
@media screen and (max-width: 90.625rem) {
|
|
678
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
679
679
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
|
680
680
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
681
681
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -2805,9 +2805,22 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
2805
2805
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
2806
2806
|
}
|
|
2807
2807
|
|
|
2808
|
+
.pf-v6-c-code-editor {
|
|
2809
|
+
display: flex;
|
|
2810
|
+
flex-direction: column;
|
|
2811
|
+
}
|
|
2808
2812
|
.pf-v6-c-code-editor.pf-m-read-only {
|
|
2809
2813
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
|
2810
2814
|
}
|
|
2815
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
|
2816
|
+
height: 100%;
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
.pf-v6-c-code-editor__container {
|
|
2820
|
+
display: flex;
|
|
2821
|
+
flex-direction: column;
|
|
2822
|
+
flex-grow: 1;
|
|
2823
|
+
}
|
|
2811
2824
|
|
|
2812
2825
|
.pf-v6-c-code-editor__header {
|
|
2813
2826
|
position: relative;
|
|
@@ -2874,6 +2887,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
2874
2887
|
|
|
2875
2888
|
.pf-v6-c-code-editor__main {
|
|
2876
2889
|
position: relative;
|
|
2890
|
+
flex-grow: 1;
|
|
2877
2891
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
|
2878
2892
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
|
2879
2893
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
|
@@ -2895,6 +2909,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
2895
2909
|
|
|
2896
2910
|
.pf-v6-c-code-editor__code {
|
|
2897
2911
|
position: relative;
|
|
2912
|
+
height: 100%;
|
|
2898
2913
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
|
2899
2914
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
|
2900
2915
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
|
@@ -11416,11 +11431,13 @@ ul.pf-v6-c-list {
|
|
|
11416
11431
|
--pf-v6-c-page__main-subnav--PaddingBlockEnd: 0;
|
|
11417
11432
|
--pf-v6-c-page__main-subnav--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
11418
11433
|
--pf-v6-c-page__main-subnav--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
11434
|
+
--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
11419
11435
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
11420
11436
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
11421
11437
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockEnd: 0;
|
|
11422
11438
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
|
11423
11439
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
11440
|
+
--pf-v6-c-page__main-breadcrumb--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
11424
11441
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: 0;
|
|
11425
11442
|
--pf-v6-c-page__main-tabs--PaddingInlineEnd: 0;
|
|
11426
11443
|
--pf-v6-c-page__main-tabs--PaddingBlockEnd: 0;
|
|
@@ -11802,6 +11819,9 @@ ul.pf-v6-c-list {
|
|
|
11802
11819
|
padding-inline-end: var(--pf-v6-c-page__main-subnav--PaddingInlineEnd);
|
|
11803
11820
|
background-color: var(--pf-v6-c-page__main-subnav--BackgroundColor);
|
|
11804
11821
|
}
|
|
11822
|
+
.pf-v6-c-page__main-subnav.pf-m-sticky-top {
|
|
11823
|
+
padding-block-end: var(--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd);
|
|
11824
|
+
}
|
|
11805
11825
|
|
|
11806
11826
|
.pf-v6-c-page__main-breadcrumb {
|
|
11807
11827
|
padding-block-start: var(--pf-v6-c-page__main-breadcrumb--PaddingBlockStart);
|
|
@@ -14922,7 +14942,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14922
14942
|
--pf-v6-c-table--cell--Width: auto;
|
|
14923
14943
|
}
|
|
14924
14944
|
|
|
14925
|
-
@media screen and (max-width: 48rem) {
|
|
14945
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
14926
14946
|
.pf-m-grid-md.pf-v6-c-table {
|
|
14927
14947
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
14928
14948
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -15192,14 +15212,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15192
15212
|
text-align: end;
|
|
15193
15213
|
}
|
|
15194
15214
|
}
|
|
15195
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
|
15215
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
|
15196
15216
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
|
15197
15217
|
grid-row-start: 1;
|
|
15198
15218
|
grid-column-start: 2;
|
|
15199
15219
|
margin-inline-start: 0;
|
|
15200
15220
|
}
|
|
15201
15221
|
}
|
|
15202
|
-
@media screen and (max-width: 48rem) {
|
|
15222
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
15203
15223
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
15204
15224
|
grid-column: 2;
|
|
15205
15225
|
grid-row: 2;
|
|
@@ -15225,7 +15245,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15225
15245
|
}
|
|
15226
15246
|
}
|
|
15227
15247
|
|
|
15228
|
-
@media screen and (max-width: 62rem) {
|
|
15248
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
15229
15249
|
.pf-m-grid-lg.pf-v6-c-table {
|
|
15230
15250
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
15231
15251
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -15495,14 +15515,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15495
15515
|
text-align: end;
|
|
15496
15516
|
}
|
|
15497
15517
|
}
|
|
15498
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
|
15518
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
|
15499
15519
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
|
15500
15520
|
grid-row-start: 1;
|
|
15501
15521
|
grid-column-start: 2;
|
|
15502
15522
|
margin-inline-start: 0;
|
|
15503
15523
|
}
|
|
15504
15524
|
}
|
|
15505
|
-
@media screen and (max-width: 62rem) {
|
|
15525
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
15506
15526
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
15507
15527
|
grid-column: 2;
|
|
15508
15528
|
grid-row: 2;
|
|
@@ -15528,7 +15548,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15528
15548
|
}
|
|
15529
15549
|
}
|
|
15530
15550
|
|
|
15531
|
-
@media screen and (max-width: 75rem) {
|
|
15551
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
15532
15552
|
.pf-m-grid-xl.pf-v6-c-table {
|
|
15533
15553
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
15534
15554
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -15798,14 +15818,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15798
15818
|
text-align: end;
|
|
15799
15819
|
}
|
|
15800
15820
|
}
|
|
15801
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
|
15821
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
|
15802
15822
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
15803
15823
|
grid-row-start: 1;
|
|
15804
15824
|
grid-column-start: 2;
|
|
15805
15825
|
margin-inline-start: 0;
|
|
15806
15826
|
}
|
|
15807
15827
|
}
|
|
15808
|
-
@media screen and (max-width: 75rem) {
|
|
15828
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
15809
15829
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
15810
15830
|
grid-column: 2;
|
|
15811
15831
|
grid-row: 2;
|
|
@@ -15831,7 +15851,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15831
15851
|
}
|
|
15832
15852
|
}
|
|
15833
15853
|
|
|
15834
|
-
@media screen and (max-width: 90.625rem) {
|
|
15854
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
15835
15855
|
.pf-m-grid-2xl.pf-v6-c-table {
|
|
15836
15856
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
|
15837
15857
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
|
@@ -16101,14 +16121,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16101
16121
|
text-align: end;
|
|
16102
16122
|
}
|
|
16103
16123
|
}
|
|
16104
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
|
16124
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
|
16105
16125
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
|
16106
16126
|
grid-row-start: 1;
|
|
16107
16127
|
grid-column-start: 2;
|
|
16108
16128
|
margin-inline-start: 0;
|
|
16109
16129
|
}
|
|
16110
16130
|
}
|
|
16111
|
-
@media screen and (max-width: 90.625rem) {
|
|
16131
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
16112
16132
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
|
16113
16133
|
grid-column: 2;
|
|
16114
16134
|
grid-row: 2;
|
|
@@ -17310,7 +17330,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17310
17330
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
|
17311
17331
|
}
|
|
17312
17332
|
|
|
17313
|
-
@media screen and (max-width: 48rem) {
|
|
17333
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
17314
17334
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
|
17315
17335
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
17316
17336
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -17453,7 +17473,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17453
17473
|
}
|
|
17454
17474
|
}
|
|
17455
17475
|
|
|
17456
|
-
@media screen and (max-width: 62rem) {
|
|
17476
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
|
17457
17477
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
|
17458
17478
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
17459
17479
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -17596,7 +17616,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17596
17616
|
}
|
|
17597
17617
|
}
|
|
17598
17618
|
|
|
17599
|
-
@media screen and (max-width: 75rem) {
|
|
17619
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
|
17600
17620
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
|
17601
17621
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
17602
17622
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -17739,7 +17759,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17739
17759
|
}
|
|
17740
17760
|
}
|
|
17741
17761
|
|
|
17742
|
-
@media screen and (max-width: 90.625rem) {
|
|
17762
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
|
17743
17763
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
|
17744
17764
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
17745
17765
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -93,6 +93,7 @@ declare const _default: {
|
|
|
93
93
|
"codeEditor": "pf-v6-c-code-editor",
|
|
94
94
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
95
95
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
96
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
96
97
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
97
98
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
98
99
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
package/css/components/_index.js
CHANGED
|
@@ -95,6 +95,7 @@ exports.default = {
|
|
|
95
95
|
"codeEditor": "pf-v6-c-code-editor",
|
|
96
96
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
97
97
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
98
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
98
99
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
99
100
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
100
101
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
"codeEditor": "pf-v6-c-code-editor",
|
|
94
94
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
|
95
95
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
|
96
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
|
96
97
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
|
97
98
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
|
98
99
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
--pf-v6-c-table--m-compact--cell--first-last-child--PaddingInlineStart: var(--pf-v6-global--spacer--sm);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
#ws-html-demos-c-card-status-card-expanded-with-popover .pf-v6-c-card {
|
|
25
|
+
overflow: initial;
|
|
26
|
+
}
|
|
27
|
+
|
|
24
28
|
.ws-chart {
|
|
25
29
|
display: flex;
|
|
26
30
|
max-width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-styles",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.1.0-prerelease.1",
|
|
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.0.
|
|
22
|
+
"@patternfly/patternfly": "6.1.0-prerelease.2",
|
|
23
23
|
"change-case": "^5.4.4",
|
|
24
24
|
"fs-extra": "^11.2.0"
|
|
25
25
|
},
|
|
26
26
|
"license": "MIT",
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "9122c84d11bc44a8af15969c6f5f7f2de011122c"
|
|
28
28
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|