@patternfly/patternfly 6.3.0-prerelease.46 → 6.3.0-prerelease.48
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/components/Table/table.css +12 -1
- package/components/Table/table.scss +15 -2
- package/components/TextInputGroup/text-input-group.css +3 -0
- package/components/TextInputGroup/text-input-group.scss +4 -1
- package/components/_index.css +15 -1
- package/docs/components/CodeBlock/examples/CodeBlock.md +6 -6
- package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +28 -0
- package/docs/demos/Card/examples/Card.md +8 -5
- package/docs/demos/Dashboard/examples/Dashboard.md +5 -2
- package/docs/demos/DescriptionList/examples/DescriptionList.md +13 -3
- package/docs/demos/Tabs/examples/Tabs.md +2 -1
- package/package.json +4 -4
- package/patternfly-no-globals.css +15 -1
- package/patternfly.css +15 -1
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -382,6 +382,7 @@ section: components
|
|
|
382
382
|
<div class="pf-v6-l-flex__item">
|
|
383
383
|
<dl
|
|
384
384
|
class="pf-v6-c-description-list pf-m-2-col-on-lg"
|
|
385
|
+
aria-label="API 1"
|
|
385
386
|
aria-labelledby="-details-title"
|
|
386
387
|
>
|
|
387
388
|
<div class="pf-v6-c-description-list__group">
|
|
@@ -997,7 +998,7 @@ section: components
|
|
|
997
998
|
<div class="pf-v6-l-flex__item">
|
|
998
999
|
<dl
|
|
999
1000
|
class="pf-v6-c-description-list pf-m-2-col-on-lg"
|
|
1000
|
-
aria-label="
|
|
1001
|
+
aria-label="API 2"
|
|
1001
1002
|
>
|
|
1002
1003
|
<div class="pf-v6-c-description-list__group">
|
|
1003
1004
|
<dt class="pf-v6-c-description-list__term">Name</dt>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "6.3.0-prerelease.
|
|
4
|
+
"version": "6.3.0-prerelease.48",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"@octokit/rest": "^20.1.0",
|
|
50
50
|
"@patternfly/documentation-framework": "6.17.0",
|
|
51
51
|
"@patternfly/patternfly-a11y": "5.1.0",
|
|
52
|
-
"@patternfly/react-code-editor": "6.3.
|
|
53
|
-
"@patternfly/react-core": "6.3.
|
|
54
|
-
"@patternfly/react-table": "6.3.
|
|
52
|
+
"@patternfly/react-code-editor": "6.3.1",
|
|
53
|
+
"@patternfly/react-core": "6.3.1",
|
|
54
|
+
"@patternfly/react-table": "6.3.1",
|
|
55
55
|
"@starptech/prettyhtml": "^0.10.0",
|
|
56
56
|
"backstopjs": "^6.3.23",
|
|
57
57
|
"cheerio": "^1.0.0-rc.12",
|
|
@@ -24772,7 +24772,8 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24772
24772
|
--pf-v6-c-table__caption--PaddingInlineStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
24773
24773
|
--pf-v6-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
24774
24774
|
--pf-v6-c-table__thead--cell--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
24775
|
-
--pf-v6-c-table__thead__toggle--
|
|
24775
|
+
--pf-v6-c-table__thead__toggle--PaddingBlockStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
24776
|
+
--pf-v6-c-table__thead__toggle--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
|
24776
24777
|
--pf-v6-c-table__tbody--cell--PaddingBlockStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
24777
24778
|
--pf-v6-c-table__tbody--cell--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
|
24778
24779
|
--pf-v6-c-table__tbody--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
|
@@ -25375,6 +25376,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
25375
25376
|
--pf-v6-c-table--cell--PaddingInlineStart: var(--pf-v6-c-table__toggle--PaddingInlineStart);
|
|
25376
25377
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table__toggle--PaddingInlineEnd);
|
|
25377
25378
|
}
|
|
25379
|
+
.pf-v6-c-table__thead .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
25380
|
+
margin-block-start: calc(var(--pf-v6-c-button--PaddingBlockStart) * -1);
|
|
25381
|
+
margin-block-end: calc(var(--pf-v6-c-button--PaddingBlockEnd) * -1);
|
|
25382
|
+
line-height: 1lh;
|
|
25383
|
+
}
|
|
25384
|
+
|
|
25378
25385
|
.pf-v6-c-table__toggle .pf-v6-c-button.pf-m-expanded .pf-v6-c-table__toggle-icon {
|
|
25379
25386
|
transform: rotate(var(--pf-v6-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate));
|
|
25380
25387
|
}
|
|
@@ -25497,6 +25504,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25497
25504
|
align-self: last baseline;
|
|
25498
25505
|
margin-inline-start: var(--pf-v6-c-table__column-help--MarginInlineStart);
|
|
25499
25506
|
}
|
|
25507
|
+
.pf-v6-c-table__column-help-action .pf-v6-c-button {
|
|
25508
|
+
line-height: 1lh;
|
|
25509
|
+
}
|
|
25500
25510
|
|
|
25501
25511
|
.pf-v6-c-table__sort {
|
|
25502
25512
|
vertical-align: bottom;
|
|
@@ -25607,6 +25617,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25607
25617
|
|
|
25608
25618
|
.pf-v6-c-table__thead {
|
|
25609
25619
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
25620
|
+
--pf-v6-c-table__toggle--PaddingBlockStart: var(--pf-v6-c-table__thead__toggle--PaddingBlockStart);
|
|
25610
25621
|
--pf-v6-c-table__toggle--PaddingBlockEnd: var(--pf-v6-c-table__thead__toggle--PaddingBlockEnd);
|
|
25611
25622
|
vertical-align: bottom;
|
|
25612
25623
|
}
|
|
@@ -27618,6 +27629,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
27618
27629
|
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) {
|
|
27619
27630
|
--pf-v6-c-text-input-group__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd);
|
|
27620
27631
|
}
|
|
27632
|
+
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) .pf-v6-c-text-input-group__text {
|
|
27633
|
+
--pf-v6-c-text-input-group__text--Position: relative;
|
|
27634
|
+
}
|
|
27621
27635
|
.pf-v6-c-text-input-group:has(> .pf-v6-c-text-input-group__utilities) {
|
|
27622
27636
|
--pf-v6-c-text-input-group__icon--m-status--InsetInlineEnd: var(--pf-v6-c-text-input-group--utilities--icon--m-status--InsetInlineEnd);
|
|
27623
27637
|
--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--utilities--status__text-input--PaddingInlineEnd);
|
package/patternfly.css
CHANGED
|
@@ -24908,7 +24908,8 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
24908
24908
|
--pf-v6-c-table__caption--PaddingInlineStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
24909
24909
|
--pf-v6-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
24910
24910
|
--pf-v6-c-table__thead--cell--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
24911
|
-
--pf-v6-c-table__thead__toggle--
|
|
24911
|
+
--pf-v6-c-table__thead__toggle--PaddingBlockStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
24912
|
+
--pf-v6-c-table__thead__toggle--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
|
24912
24913
|
--pf-v6-c-table__tbody--cell--PaddingBlockStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
24913
24914
|
--pf-v6-c-table__tbody--cell--PaddingBlockEnd: var(--pf-v6-c-table--cell--Padding--base);
|
|
24914
24915
|
--pf-v6-c-table__tbody--cell--FontSize: var(--pf-t--global--font--size--body--default);
|
|
@@ -25511,6 +25512,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
25511
25512
|
--pf-v6-c-table--cell--PaddingInlineStart: var(--pf-v6-c-table__toggle--PaddingInlineStart);
|
|
25512
25513
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table__toggle--PaddingInlineEnd);
|
|
25513
25514
|
}
|
|
25515
|
+
.pf-v6-c-table__thead .pf-v6-c-table__toggle .pf-v6-c-button {
|
|
25516
|
+
margin-block-start: calc(var(--pf-v6-c-button--PaddingBlockStart) * -1);
|
|
25517
|
+
margin-block-end: calc(var(--pf-v6-c-button--PaddingBlockEnd) * -1);
|
|
25518
|
+
line-height: 1lh;
|
|
25519
|
+
}
|
|
25520
|
+
|
|
25514
25521
|
.pf-v6-c-table__toggle .pf-v6-c-button.pf-m-expanded .pf-v6-c-table__toggle-icon {
|
|
25515
25522
|
transform: rotate(var(--pf-v6-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate));
|
|
25516
25523
|
}
|
|
@@ -25633,6 +25640,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25633
25640
|
align-self: last baseline;
|
|
25634
25641
|
margin-inline-start: var(--pf-v6-c-table__column-help--MarginInlineStart);
|
|
25635
25642
|
}
|
|
25643
|
+
.pf-v6-c-table__column-help-action .pf-v6-c-button {
|
|
25644
|
+
line-height: 1lh;
|
|
25645
|
+
}
|
|
25636
25646
|
|
|
25637
25647
|
.pf-v6-c-table__sort {
|
|
25638
25648
|
vertical-align: bottom;
|
|
@@ -25743,6 +25753,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25743
25753
|
|
|
25744
25754
|
.pf-v6-c-table__thead {
|
|
25745
25755
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
25756
|
+
--pf-v6-c-table__toggle--PaddingBlockStart: var(--pf-v6-c-table__thead__toggle--PaddingBlockStart);
|
|
25746
25757
|
--pf-v6-c-table__toggle--PaddingBlockEnd: var(--pf-v6-c-table__thead__toggle--PaddingBlockEnd);
|
|
25747
25758
|
vertical-align: bottom;
|
|
25748
25759
|
}
|
|
@@ -27754,6 +27765,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
27754
27765
|
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) {
|
|
27755
27766
|
--pf-v6-c-text-input-group__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd);
|
|
27756
27767
|
}
|
|
27768
|
+
.pf-v6-c-text-input-group:where(.pf-m-success, .pf-m-warning, .pf-m-error) .pf-v6-c-text-input-group__text {
|
|
27769
|
+
--pf-v6-c-text-input-group__text--Position: relative;
|
|
27770
|
+
}
|
|
27757
27771
|
.pf-v6-c-text-input-group:has(> .pf-v6-c-text-input-group__utilities) {
|
|
27758
27772
|
--pf-v6-c-text-input-group__icon--m-status--InsetInlineEnd: var(--pf-v6-c-text-input-group--utilities--icon--m-status--InsetInlineEnd);
|
|
27759
27773
|
--pf-v6-c-text-input-group--status__text-input--PaddingInlineEnd: var(--pf-v6-c-text-input-group--utilities--status__text-input--PaddingInlineEnd);
|