@patternfly/patternfly 6.5.0-prerelease.32 → 6.5.0-prerelease.34
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/assets/fontawesome/_variables.scss +2 -1
- package/base/tokens/tokens-local.scss +1 -1
- package/components/AboutModalBox/about-modal-box.css +36 -26
- package/components/Accordion/accordion.css +16 -13
- package/components/Alert/alert.css +5 -4
- package/components/Avatar/avatar.css +12 -4
- package/components/BackgroundImage/background-image.css +6 -3
- package/components/Banner/banner.css +8 -6
- package/components/Brand/brand.css +3 -1
- package/components/Breadcrumb/breadcrumb.css +4 -3
- package/components/Button/button.css +6 -6
- package/components/CalendarMonth/calendar-month.css +4 -3
- package/components/Card/card.css +7 -6
- package/components/ClipboardCopy/clipboard-copy.css +4 -3
- package/components/CodeEditor/code-editor.css +1 -1
- package/components/CodeEditor/code-editor.scss +1 -1
- package/components/Compass/compass.css +6 -2
- package/components/DataList/data-list.css +28 -21
- package/components/DescriptionList/description-list-order.scss +5 -1
- package/components/DescriptionList/description-list.css +7 -5
- package/components/DescriptionList/description-list.scss +5 -1
- package/components/Divider/divider.css +7 -5
- package/components/Drawer/drawer.css +38 -28
- package/components/Drawer/drawer.scss +12 -4
- package/components/DualListSelector/dual-list-selector.css +17 -11
- package/components/ExpandableSection/expandable-section.css +16 -14
- package/components/ExpandableSection/expandable-section.scss +1 -1
- package/components/Form/form.css +1 -1
- package/components/Form/form.scss +1 -1
- package/components/FormControl/form-control.css +1 -1
- package/components/FormControl/form-control.scss +1 -1
- package/components/JumpLinks/jump-links.css +4 -3
- package/components/JumpLinks/jump-links.scss +5 -1
- package/components/Label/label-group.css +2 -2
- package/components/Label/label-group.scss +2 -2
- package/components/Label/label.css +4 -3
- package/components/Login/login.css +51 -37
- package/components/Masthead/masthead.css +32 -18
- package/components/Masthead/masthead.scss +8 -2
- package/components/Menu/menu.css +23 -14
- package/components/ModalBox/modal-box.css +9 -7
- package/components/ModalBox/modal-box.scss +2 -2
- package/components/Nav/nav.css +17 -9
- package/components/Nav/nav.scss +5 -0
- package/components/NotificationDrawer/notification-drawer.css +6 -6
- package/components/Page/page.css +35 -29
- package/components/Page/page.scss +17 -5
- package/components/Pagination/pagination.scss +5 -1
- package/components/ProgressStepper/progress-stepper.scss +5 -1
- package/components/Sidebar/sidebar.css +1 -1
- package/components/Sidebar/sidebar.scss +7 -3
- package/components/Skeleton/skeleton.css +16 -15
- package/components/Slider/slider.css +32 -18
- package/components/Switch/switch.css +3 -1
- package/components/Table/table-tree-view.css +4 -2
- package/components/Table/table.css +31 -27
- package/components/Tabs/tabs.css +17 -15
- package/components/Tabs/tabs.scss +12 -4
- package/components/Toolbar/toolbar.css +14 -8
- package/components/Toolbar/toolbar.scss +5 -1
- package/components/TreeView/tree-view.css +44 -13
- package/components/TreeView/tree-view.scss +31 -0
- package/components/Wizard/wizard.css +20 -16
- package/components/Wizard/wizard.scss +3 -3
- package/components/_index.css +613 -426
- package/docs/components/TreeView/examples/TreeView.md +38 -26
- package/layouts/Flex/flex.scss +83 -19
- package/layouts/Gallery/gallery.css +6 -2
- package/layouts/_index.css +6 -2
- package/package.json +4 -2
- package/patternfly-charts.css +3 -3
- package/patternfly-no-globals.css +604 -413
- package/patternfly.css +604 -413
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +32 -25
- package/sass-utilities/mixins.scss +36 -20
|
@@ -111,16 +111,18 @@ cssPrefix: pf-v6-c-tree-view
|
|
|
111
111
|
tabindex="0"
|
|
112
112
|
>
|
|
113
113
|
<div class="pf-v6-c-tree-view__content">
|
|
114
|
-
<
|
|
114
|
+
<div class="pf-v6-c-tree-view__node pf-m-disabled" tabindex="0">
|
|
115
115
|
<span class="pf-v6-c-tree-view__node-container">
|
|
116
|
-
<span class="pf-v6-c-tree-view__node-toggle">
|
|
116
|
+
<span class="pf-v6-c-tree-view__node-toggle pf-m-disabled">
|
|
117
117
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
118
118
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
119
119
|
</span>
|
|
120
120
|
</span>
|
|
121
|
-
<span
|
|
121
|
+
<span
|
|
122
|
+
class="pf-v6-c-tree-view__node-text"
|
|
123
|
+
>Application 2 (disabled item and toggle)</span>
|
|
122
124
|
</span>
|
|
123
|
-
</
|
|
125
|
+
</div>
|
|
124
126
|
</div>
|
|
125
127
|
<ul class="pf-v6-c-tree-view__list" role="group">
|
|
126
128
|
<li
|
|
@@ -130,11 +132,11 @@ cssPrefix: pf-v6-c-tree-view
|
|
|
130
132
|
tabindex="-1"
|
|
131
133
|
>
|
|
132
134
|
<div class="pf-v6-c-tree-view__content">
|
|
133
|
-
<
|
|
135
|
+
<div class="pf-v6-c-tree-view__node" tabindex="0">
|
|
134
136
|
<span class="pf-v6-c-tree-view__node-container">
|
|
135
137
|
<span class="pf-v6-c-tree-view__node-text">Settings</span>
|
|
136
138
|
</span>
|
|
137
|
-
</
|
|
139
|
+
</div>
|
|
138
140
|
</div>
|
|
139
141
|
</li>
|
|
140
142
|
<li
|
|
@@ -1594,9 +1596,9 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
1594
1596
|
tabindex="0"
|
|
1595
1597
|
>
|
|
1596
1598
|
<div class="pf-v6-c-tree-view__content">
|
|
1597
|
-
<button class="pf-v6-c-tree-view__node">
|
|
1599
|
+
<button class="pf-v6-c-tree-view__node pf-m-disabled">
|
|
1598
1600
|
<span class="pf-v6-c-tree-view__node-container">
|
|
1599
|
-
<span class="pf-v6-c-tree-view__node-toggle">
|
|
1601
|
+
<span class="pf-v6-c-tree-view__node-toggle pf-m-disabled">
|
|
1600
1602
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
1601
1603
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1602
1604
|
</span>
|
|
@@ -1604,7 +1606,9 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
1604
1606
|
<span class="pf-v6-c-tree-view__node-icon">
|
|
1605
1607
|
<i class="fas fa-folder-open" aria-hidden="true"></i>
|
|
1606
1608
|
</span>
|
|
1607
|
-
<span
|
|
1609
|
+
<span
|
|
1610
|
+
class="pf-v6-c-tree-view__node-text"
|
|
1611
|
+
>Application 2 (disabled item and toggle)</span>
|
|
1608
1612
|
</span>
|
|
1609
1613
|
</button>
|
|
1610
1614
|
</div>
|
|
@@ -2797,10 +2801,11 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2797
2801
|
>
|
|
2798
2802
|
<span class="pf-v6-c-tree-view__node-container">
|
|
2799
2803
|
<button
|
|
2800
|
-
class="pf-v6-c-tree-view__node-toggle"
|
|
2804
|
+
class="pf-v6-c-tree-view__node-toggle pf-m-disabled"
|
|
2801
2805
|
id="toggle-tree-view-selectable-expandable-3"
|
|
2802
2806
|
aria-label="Toggle"
|
|
2803
2807
|
aria-labelledby="toggle-tree-view-selectable-expandable-3 text-tree-view-selectable-expandable-3"
|
|
2808
|
+
disabled
|
|
2804
2809
|
>
|
|
2805
2810
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
2806
2811
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -2809,7 +2814,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2809
2814
|
<button
|
|
2810
2815
|
class="pf-v6-c-tree-view__node-text"
|
|
2811
2816
|
id="text-tree-view-selectable-expandable-3"
|
|
2812
|
-
>Loader</button>
|
|
2817
|
+
>Loader (toggle disabled)</button>
|
|
2813
2818
|
</span>
|
|
2814
2819
|
</div>
|
|
2815
2820
|
</div>
|
|
@@ -2907,7 +2912,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2907
2912
|
>
|
|
2908
2913
|
<div class="pf-v6-c-tree-view__content">
|
|
2909
2914
|
<div
|
|
2910
|
-
class="pf-v6-c-tree-view__node pf-m-selectable"
|
|
2915
|
+
class="pf-v6-c-tree-view__node pf-m-selectable pf-m-disabled"
|
|
2911
2916
|
tabindex="0"
|
|
2912
2917
|
id="node-tree-view-selectable-expandable-6"
|
|
2913
2918
|
aria-label="Select"
|
|
@@ -2927,7 +2932,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2927
2932
|
<button
|
|
2928
2933
|
class="pf-v6-c-tree-view__node-text"
|
|
2929
2934
|
id="text-tree-view-selectable-expandable-6"
|
|
2930
|
-
>Loader</button>
|
|
2935
|
+
>Loader (disabled item but toggle is enabled)</button>
|
|
2931
2936
|
</span>
|
|
2932
2937
|
</div>
|
|
2933
2938
|
</div>
|
|
@@ -2941,7 +2946,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2941
2946
|
>
|
|
2942
2947
|
<div class="pf-v6-c-tree-view__content">
|
|
2943
2948
|
<div
|
|
2944
|
-
class="pf-v6-c-tree-view__node pf-m-selectable pf-m-current"
|
|
2949
|
+
class="pf-v6-c-tree-view__node pf-m-selectable pf-m-current pf-m-disabled"
|
|
2945
2950
|
tabindex="0"
|
|
2946
2951
|
id="node-tree-view-selectable-expandable-7"
|
|
2947
2952
|
aria-label="Select"
|
|
@@ -2949,10 +2954,11 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2949
2954
|
>
|
|
2950
2955
|
<span class="pf-v6-c-tree-view__node-container">
|
|
2951
2956
|
<button
|
|
2952
|
-
class="pf-v6-c-tree-view__node-toggle"
|
|
2957
|
+
class="pf-v6-c-tree-view__node-toggle pf-m-disabled"
|
|
2953
2958
|
id="toggle-tree-view-selectable-expandable-7"
|
|
2954
2959
|
aria-label="Toggle"
|
|
2955
2960
|
aria-labelledby="toggle-tree-view-selectable-expandable-7 text-tree-view-selectable-expandable-7"
|
|
2961
|
+
disabled
|
|
2956
2962
|
>
|
|
2957
2963
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
2958
2964
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -2961,7 +2967,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
2961
2967
|
<button
|
|
2962
2968
|
class="pf-v6-c-tree-view__node-text"
|
|
2963
2969
|
id="text-tree-view-selectable-expandable-7"
|
|
2964
|
-
>Loader app 1</button>
|
|
2970
|
+
>Loader app 1 (disabled item and toggle)</button>
|
|
2965
2971
|
</span>
|
|
2966
2972
|
</div>
|
|
2967
2973
|
</div>
|
|
@@ -3455,10 +3461,12 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3455
3461
|
tabindex="-1"
|
|
3456
3462
|
>
|
|
3457
3463
|
<div class="pf-v6-c-tree-view__content">
|
|
3458
|
-
<button class="pf-v6-c-tree-view__node">
|
|
3464
|
+
<button class="pf-v6-c-tree-view__node pf-m-disabled">
|
|
3459
3465
|
<span class="pf-v6-c-tree-view__node-container">
|
|
3460
3466
|
<span class="pf-v6-c-tree-view__node-content">
|
|
3461
|
-
<span
|
|
3467
|
+
<span
|
|
3468
|
+
class="pf-v6-c-tree-view__node-title"
|
|
3469
|
+
>metadata (disabled item)</span>
|
|
3462
3470
|
<span
|
|
3463
3471
|
class="pf-v6-c-tree-view__node-text"
|
|
3464
3472
|
>Standard object metadata</span>
|
|
@@ -3624,9 +3632,9 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3624
3632
|
tabindex="0"
|
|
3625
3633
|
>
|
|
3626
3634
|
<div class="pf-v6-c-tree-view__content">
|
|
3627
|
-
<button class="pf-v6-c-tree-view__node">
|
|
3635
|
+
<button class="pf-v6-c-tree-view__node pf-m-disabled">
|
|
3628
3636
|
<span class="pf-v6-c-tree-view__node-container">
|
|
3629
|
-
<span class="pf-v6-c-tree-view__node-toggle">
|
|
3637
|
+
<span class="pf-v6-c-tree-view__node-toggle pf-m-disabled">
|
|
3630
3638
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
3631
3639
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
3632
3640
|
</span>
|
|
@@ -3634,7 +3642,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3634
3642
|
<span class="pf-v6-c-tree-view__node-content">
|
|
3635
3643
|
<span
|
|
3636
3644
|
class="pf-v6-c-tree-view__node-title"
|
|
3637
|
-
>matchExpressions</span>
|
|
3645
|
+
>matchExpressions (disabled item and toggle)</span>
|
|
3638
3646
|
<span
|
|
3639
3647
|
class="pf-v6-c-tree-view__node-text"
|
|
3640
3648
|
>matchExpressions is a list of the label selector requirements. The requirements and ANDed.</span>
|
|
@@ -3767,10 +3775,12 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3767
3775
|
tabindex="-1"
|
|
3768
3776
|
>
|
|
3769
3777
|
<div class="pf-v6-c-tree-view__content">
|
|
3770
|
-
<button class="pf-v6-c-tree-view__node">
|
|
3778
|
+
<button class="pf-v6-c-tree-view__node pf-m-disabled">
|
|
3771
3779
|
<span class="pf-v6-c-tree-view__node-container">
|
|
3772
3780
|
<span class="pf-v6-c-tree-view__node-content">
|
|
3773
|
-
<span
|
|
3781
|
+
<span
|
|
3782
|
+
class="pf-v6-c-tree-view__node-title"
|
|
3783
|
+
>metadata (disabled item)</span>
|
|
3774
3784
|
<span
|
|
3775
3785
|
class="pf-v6-c-tree-view__node-text"
|
|
3776
3786
|
>Standard object metadata</span>
|
|
@@ -3936,9 +3946,9 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3936
3946
|
tabindex="0"
|
|
3937
3947
|
>
|
|
3938
3948
|
<div class="pf-v6-c-tree-view__content">
|
|
3939
|
-
<button class="pf-v6-c-tree-view__node">
|
|
3949
|
+
<button class="pf-v6-c-tree-view__node pf-m-disabled">
|
|
3940
3950
|
<span class="pf-v6-c-tree-view__node-container">
|
|
3941
|
-
<span class="pf-v6-c-tree-view__node-toggle">
|
|
3951
|
+
<span class="pf-v6-c-tree-view__node-toggle pf-m-disabled">
|
|
3942
3952
|
<span class="pf-v6-c-tree-view__node-toggle-icon">
|
|
3943
3953
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
3944
3954
|
</span>
|
|
@@ -3946,7 +3956,7 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
3946
3956
|
<span class="pf-v6-c-tree-view__node-content">
|
|
3947
3957
|
<span
|
|
3948
3958
|
class="pf-v6-c-tree-view__node-title"
|
|
3949
|
-
>matchExpressions</span>
|
|
3959
|
+
>matchExpressions (disabled item and toggle)</span>
|
|
3950
3960
|
<span
|
|
3951
3961
|
class="pf-v6-c-tree-view__node-text"
|
|
3952
3962
|
>matchExpressions is a list of the label selector requirements. The requirements and ANDed.</span>
|
|
@@ -4052,4 +4062,6 @@ A search input can be used to filter tree view items. It is recommended that a t
|
|
|
4052
4062
|
| `.pf-m-no-background` | `.pf-v6-c-tree-view.pf-m-compact` | Modifies the tree view compact variant node containers to have a transparent background. |
|
|
4053
4063
|
| `.pf-m-current` | `.pf-v6-c-tree-view__node` | Modifies the tree view node to be current. |
|
|
4054
4064
|
| `.pf-m-selectable` | `.pf-v6-c-tree-view__node` | For use on nodes that are expandable and selectable, when the default click action on the node selects it instead of expanding it. |
|
|
4065
|
+
| `.pf-m-disabled` | `.pf-v6-c-tree-view__node` | Modifies the tree view node to display as disabled. |
|
|
4066
|
+
| `.pf-m-disabled` | `.pf-v6-c-tree-view__node-toggle` | Modifies the tree view node toggle to display as disabled. |
|
|
4055
4067
|
| `.pf-m-truncate` | `.pf-v6-c-tree-view`, `.pf-v6-c-tree-view__node-title`, `.pf-v6-c-tree-view__node-text` | Modifies the tree view title or text to truncate. |
|
package/layouts/Flex/flex.scss
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
|
+
@use 'sass:list';
|
|
3
|
+
@use 'sass:map';
|
|
2
4
|
|
|
3
5
|
// Always keep list of spacers and breakpoints up-to-date
|
|
4
6
|
$pf-v6-l-flex--breakpoint-map: build-breakpoint-map();
|
|
@@ -74,7 +76,11 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
74
76
|
|
|
75
77
|
.#{$flex} {
|
|
76
78
|
@each $breakpoint, $breakpoint-value in $pf-v6-l-flex--breakpoint-map {
|
|
77
|
-
$breakpoint-name:
|
|
79
|
+
$breakpoint-name: "";
|
|
80
|
+
|
|
81
|
+
@if $breakpoint != "base" {
|
|
82
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
83
|
+
}
|
|
78
84
|
|
|
79
85
|
@include pf-v6-apply-breakpoint($breakpoint) {
|
|
80
86
|
// display
|
|
@@ -301,13 +307,17 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
301
307
|
|
|
302
308
|
// .pf-m-space-items-{size}{-on-[breakpoint]}
|
|
303
309
|
@each $breakpoint, $breakpoint-value in $pf-v6-l-flex--breakpoint-map {
|
|
304
|
-
$breakpoint-name:
|
|
310
|
+
$breakpoint-name: "";
|
|
311
|
+
|
|
312
|
+
@if $breakpoint != "base" {
|
|
313
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
314
|
+
}
|
|
305
315
|
|
|
306
316
|
@include pf-v6-apply-breakpoint($breakpoint) {
|
|
307
317
|
@each $spacer, $spacer-value in $pf-v6-l-flex--spacer-map {
|
|
308
318
|
&.pf-m-space-items-#{$spacer}#{$breakpoint-name} {
|
|
309
319
|
> * {
|
|
310
|
-
--#{$flex}--spacer: var(#{map
|
|
320
|
+
--#{$flex}--spacer: var(#{map.get($pf-v6-l-flex--variable-map, $spacer-value)});
|
|
311
321
|
}
|
|
312
322
|
|
|
313
323
|
> :last-child {
|
|
@@ -320,15 +330,19 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
320
330
|
|
|
321
331
|
// .pf-m-spacer-{size}{-on-[breakpoint]}
|
|
322
332
|
@each $breakpoint, $breakpoint-value in $pf-v6-l-flex--breakpoint-map {
|
|
323
|
-
$breakpoint-name:
|
|
333
|
+
$breakpoint-name: "";
|
|
334
|
+
|
|
335
|
+
@if $breakpoint != "base" {
|
|
336
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
337
|
+
}
|
|
324
338
|
|
|
325
339
|
@include pf-v6-apply-breakpoint($breakpoint) {
|
|
326
340
|
@each $spacer, $spacer-value in $pf-v6-l-flex--spacer-map {
|
|
327
341
|
.pf-m-spacer-#{$spacer}#{$breakpoint-name} {
|
|
328
|
-
--#{$flex}--spacer: var(#{map
|
|
342
|
+
--#{$flex}--spacer: var(#{map.get($pf-v6-l-flex--variable-map, $spacer-value)});
|
|
329
343
|
|
|
330
344
|
&:last-child {
|
|
331
|
-
--#{$flex}--spacer: var(#{map
|
|
345
|
+
--#{$flex}--spacer: var(#{map.get($pf-v6-l-flex--variable-map, $spacer-value)});
|
|
332
346
|
}
|
|
333
347
|
}
|
|
334
348
|
}
|
|
@@ -341,12 +355,32 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
341
355
|
|
|
342
356
|
@include pf-v6-apply-breakpoint($breakpoint) {
|
|
343
357
|
@each $spacer, $value in $pf-v6-l-flex--gap-map {
|
|
344
|
-
$breakpoint-name:
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
358
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
359
|
+
|
|
360
|
+
@if $breakpoint == "base" {
|
|
361
|
+
$breakpoint-name: "";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
$spacer-name: -#{$spacer};
|
|
365
|
+
|
|
366
|
+
@if $spacer == "base" {
|
|
367
|
+
$spacer-name: "";
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
$spacer-row: $value;
|
|
371
|
+
|
|
372
|
+
@if $spacer == "base" {
|
|
373
|
+
$spacer-row: var(--#{$flex}--m-gap--RowGap);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
$spacer-column: $value;
|
|
377
|
+
|
|
378
|
+
@if $spacer == "base" {
|
|
379
|
+
$spacer-column: var(--#{$flex}--m-gap--ColumnGap);
|
|
380
|
+
}
|
|
381
|
+
|
|
348
382
|
$selector: ".pf-m-gap#{$spacer-name}#{$breakpoint-name}";
|
|
349
|
-
$pf-v6-l-flex--gap--selectors: append($pf-v6-l-flex--gap--selectors, $selector, $separator: comma);
|
|
383
|
+
$pf-v6-l-flex--gap--selectors: list.append($pf-v6-l-flex--gap--selectors, $selector, $separator: comma);
|
|
350
384
|
|
|
351
385
|
&#{$selector} {
|
|
352
386
|
--#{$flex}--RowGap: #{$spacer-row};
|
|
@@ -369,11 +403,26 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
369
403
|
$pf-v6-l-flex--row-gap--selectors: ();
|
|
370
404
|
|
|
371
405
|
@each $spacer, $value in $pf-v6-l-flex--gap-map {
|
|
372
|
-
$breakpoint-name:
|
|
373
|
-
|
|
374
|
-
|
|
406
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
407
|
+
|
|
408
|
+
@if $breakpoint == "base" {
|
|
409
|
+
$breakpoint-name: "";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
$spacer-name: -#{$spacer};
|
|
413
|
+
|
|
414
|
+
@if $spacer == "base" {
|
|
415
|
+
$spacer-name: "";
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
$spacer-value: $value;
|
|
419
|
+
|
|
420
|
+
@if $spacer == "base" {
|
|
421
|
+
$spacer-value: var(--#{$flex}--m-row-gap--RowGap);
|
|
422
|
+
}
|
|
423
|
+
|
|
375
424
|
$selector: ".pf-m-row-gap#{$spacer-name}#{$breakpoint-name}";
|
|
376
|
-
$pf-v6-l-flex--row-gap--selectors: append($pf-v6-l-flex--row-gap--selectors, $selector, $separator: comma);
|
|
425
|
+
$pf-v6-l-flex--row-gap--selectors: list.append($pf-v6-l-flex--row-gap--selectors, $selector, $separator: comma);
|
|
377
426
|
|
|
378
427
|
&#{$selector} {
|
|
379
428
|
--#{$flex}--RowGap: #{$spacer-value};
|
|
@@ -394,11 +443,26 @@ $pf-v6-l-flex--variable-map: build-variable-map("#{$pf-prefix}l-flex--spacer", $
|
|
|
394
443
|
|
|
395
444
|
@include pf-v6-apply-breakpoint($breakpoint) {
|
|
396
445
|
@each $spacer, $value in $pf-v6-l-flex--gap-map {
|
|
397
|
-
$breakpoint-name:
|
|
398
|
-
|
|
399
|
-
|
|
446
|
+
$breakpoint-name: -on-#{$breakpoint};
|
|
447
|
+
|
|
448
|
+
@if $breakpoint == "base" {
|
|
449
|
+
$breakpoint-name: "";
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
$spacer-name: -#{$spacer};
|
|
453
|
+
|
|
454
|
+
@if $spacer == "base" {
|
|
455
|
+
$spacer-name: "";
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
$spacer-value: $value;
|
|
459
|
+
|
|
460
|
+
@if $spacer == "base" {
|
|
461
|
+
$spacer-value: var(--#{$flex}--m-column-gap--ColumnGap);
|
|
462
|
+
}
|
|
463
|
+
|
|
400
464
|
$selector: ".pf-m-column-gap#{$spacer-name}#{$breakpoint-name}";
|
|
401
|
-
$pf-v6-l-flex--column-gap--selectors: append($pf-v6-l-flex--column-gap--selectors, $selector, $separator: comma);
|
|
465
|
+
$pf-v6-l-flex--column-gap--selectors: list.append($pf-v6-l-flex--column-gap--selectors, $selector, $separator: comma);
|
|
402
466
|
|
|
403
467
|
&#{$selector} {
|
|
404
468
|
--#{$flex}--ColumnGap: #{$spacer-value};
|
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
display: grid;
|
|
13
13
|
grid-template-rows: var(--pf-v6-l-gallery--GridTemplateRows);
|
|
14
14
|
grid-template-columns: var(--pf-v6-l-gallery--GridTemplateColumns);
|
|
15
|
-
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
|
16
|
-
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max);
|
|
17
15
|
}
|
|
18
16
|
.pf-v6-l-gallery.pf-m-gutter {
|
|
19
17
|
grid-gap: var(--pf-v6-l-gallery--m-gutter--GridGap);
|
|
20
18
|
}
|
|
19
|
+
.pf-v6-l-gallery {
|
|
20
|
+
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
|
21
|
+
}
|
|
21
22
|
@media (min-width: 36rem) {
|
|
22
23
|
.pf-v6-l-gallery {
|
|
23
24
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--min));
|
|
@@ -43,6 +44,9 @@
|
|
|
43
44
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min-on-2xl, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-xl, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-lg, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--min))))));
|
|
44
45
|
}
|
|
45
46
|
}
|
|
47
|
+
.pf-v6-l-gallery {
|
|
48
|
+
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max);
|
|
49
|
+
}
|
|
46
50
|
@media (min-width: 36rem) {
|
|
47
51
|
.pf-v6-l-gallery {
|
|
48
52
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--max));
|
package/layouts/_index.css
CHANGED
|
@@ -2406,12 +2406,13 @@
|
|
|
2406
2406
|
display: grid;
|
|
2407
2407
|
grid-template-rows: var(--pf-v6-l-gallery--GridTemplateRows);
|
|
2408
2408
|
grid-template-columns: var(--pf-v6-l-gallery--GridTemplateColumns);
|
|
2409
|
-
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
|
2410
|
-
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max);
|
|
2411
2409
|
}
|
|
2412
2410
|
.pf-v6-l-gallery.pf-m-gutter {
|
|
2413
2411
|
grid-gap: var(--pf-v6-l-gallery--m-gutter--GridGap);
|
|
2414
2412
|
}
|
|
2413
|
+
.pf-v6-l-gallery {
|
|
2414
|
+
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min);
|
|
2415
|
+
}
|
|
2415
2416
|
@media (min-width: 36rem) {
|
|
2416
2417
|
.pf-v6-l-gallery {
|
|
2417
2418
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--min));
|
|
@@ -2437,6 +2438,9 @@
|
|
|
2437
2438
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--min: var(--pf-v6-l-gallery--GridTemplateColumns--min-on-2xl, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-xl, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-lg, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-md, var(--pf-v6-l-gallery--GridTemplateColumns--min-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--min))))));
|
|
2438
2439
|
}
|
|
2439
2440
|
}
|
|
2441
|
+
.pf-v6-l-gallery {
|
|
2442
|
+
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max);
|
|
2443
|
+
}
|
|
2440
2444
|
@media (min-width: 36rem) {
|
|
2441
2445
|
.pf-v6-l-gallery {
|
|
2442
2446
|
--pf-v6-l-gallery--GridTemplateColumns--minmax--max: var(--pf-v6-l-gallery--GridTemplateColumns--max-on-sm, var(--pf-v6-l-gallery--GridTemplateColumns--max));
|
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.5.0-prerelease.
|
|
4
|
+
"version": "6.5.0-prerelease.34",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"backstop:approve": "backstop approve --config='backstop.js'",
|
|
13
13
|
"backstop:approve:dark": "backstop approve --config='backstop.js' --dark",
|
|
14
14
|
"backstop:chrome": "node backstop_data/engine_scripts/puppet/chrome.js",
|
|
15
|
+
"playwright": "node ./node_modules/playwright/cli.js",
|
|
15
16
|
"build-patternfly": "gulp buildPatternfly",
|
|
16
17
|
"build": "gulp build",
|
|
17
18
|
"build:docs": "gulp buildWebpack",
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"@commitlint/config-conventional": "^19.1.0",
|
|
49
50
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
50
51
|
"@octokit/rest": "^20.1.0",
|
|
51
|
-
"@patternfly/documentation-framework": "6.
|
|
52
|
+
"@patternfly/documentation-framework": "6.33.3",
|
|
52
53
|
"@patternfly/patternfly-a11y": "5.1.0",
|
|
53
54
|
"@patternfly/react-code-editor": "6.4.0",
|
|
54
55
|
"@patternfly/react-core": "6.4.0",
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"react-dom": "^18.2.0",
|
|
91
92
|
"remark-parse": "^11.0.0",
|
|
92
93
|
"remark-stringify": "^11.0.0",
|
|
94
|
+
"resemblejs": "^5.0.0",
|
|
93
95
|
"rimraf": "^6.0.1",
|
|
94
96
|
"sass": "^1.74.1",
|
|
95
97
|
"stylelint": "^16.3.1",
|
package/patternfly-charts.css
CHANGED
|
@@ -699,12 +699,12 @@
|
|
|
699
699
|
--pf-v6-chart-echarts-graph--line-style--BorderWidth: 1;
|
|
700
700
|
--pf-v6-chart-echarts-graph--Smooth: false;
|
|
701
701
|
--pf-v6-chart-echarts-graph--SymbolSize: 4;
|
|
702
|
-
--pf-v6-chart-echarts-graph--Symbol:
|
|
702
|
+
--pf-v6-chart-echarts-graph--Symbol: 'square';
|
|
703
703
|
--pf-v6-chart-echarts-line--item-style--BorderWidth: 1;
|
|
704
704
|
--pf-v6-chart-echarts-line--line-style--BorderWidth: 2;
|
|
705
705
|
--pf-v6-chart-echarts-line--Smooth: false;
|
|
706
706
|
--pf-v6-chart-echarts-line--SymbolSize: 4;
|
|
707
|
-
--pf-v6-chart-echarts-line--Symbol:
|
|
707
|
+
--pf-v6-chart-echarts-line--Symbol: 'square';
|
|
708
708
|
--pf-v6-chart-echarts-map--emphasis--item-style--BorderColor: var(--pf-v6-chart-global--Fill--Color--400);
|
|
709
709
|
--pf-v6-chart-echarts-map--emphasis--item-style--BorderWidth: 1;
|
|
710
710
|
--pf-v6-chart-echarts-map--item-style--BorderColor: var(--pf-v6-chart-global--Fill--Color--900);
|
|
@@ -743,5 +743,5 @@
|
|
|
743
743
|
--pf-v6-chart-echarts-radar--line-style--BorderWidth: 2;
|
|
744
744
|
--pf-v6-chart-echarts-radar--Smooth: false;
|
|
745
745
|
--pf-v6-chart-echarts-radar--SymbolSize: 4;
|
|
746
|
-
--pf-v6-chart-echarts-radar--Symbol:
|
|
746
|
+
--pf-v6-chart-echarts-radar--Symbol: 'square';
|
|
747
747
|
}
|