@patternfly/patternfly 6.0.0-alpha.41 → 6.0.0-alpha.43
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/Button/button.css +366 -347
- package/components/Button/button.scss +422 -471
- package/components/Spinner/spinner.css +4 -0
- package/components/Spinner/spinner.scss +3 -0
- package/components/TabContent/tab-content.css +17 -11
- package/components/TabContent/tab-content.scss +18 -14
- package/docs/components/Button/examples/Button.css +4 -0
- package/docs/components/Button/examples/Button.md +1380 -81
- package/docs/components/TabContent/examples/TabContent.md +10 -10
- package/package.json +1 -1
- package/patternfly-no-globals.css +387 -358
- package/patternfly-theme-dark-unversioned.css +387 -358
- package/patternfly.css +387 -358
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/Button/themes/dark/button.scss +0 -51
|
@@ -86,20 +86,20 @@ cssPrefix: pf-v5-c-tab-content
|
|
|
86
86
|
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
###
|
|
89
|
+
### Secondary
|
|
90
90
|
|
|
91
91
|
```html
|
|
92
92
|
<section
|
|
93
|
-
class="pf-v5-c-tab-content pf-m-
|
|
94
|
-
id="
|
|
93
|
+
class="pf-v5-c-tab-content pf-m-secondary"
|
|
94
|
+
id="secondary-tab1-panel"
|
|
95
95
|
role="tabpanel"
|
|
96
96
|
tabindex="0"
|
|
97
97
|
>
|
|
98
98
|
<div class="pf-v5-c-tab-content__body">Panel 1</div>
|
|
99
99
|
</section>
|
|
100
100
|
<section
|
|
101
|
-
class="pf-v5-c-tab-content pf-m-
|
|
102
|
-
id="
|
|
101
|
+
class="pf-v5-c-tab-content pf-m-secondary"
|
|
102
|
+
id="secondary-tab2-panel"
|
|
103
103
|
role="tabpanel"
|
|
104
104
|
tabindex="0"
|
|
105
105
|
hidden
|
|
@@ -107,8 +107,8 @@ cssPrefix: pf-v5-c-tab-content
|
|
|
107
107
|
<div class="pf-v5-c-tab-content__body">Panel 2</div>
|
|
108
108
|
</section>
|
|
109
109
|
<section
|
|
110
|
-
class="pf-v5-c-tab-content pf-m-
|
|
111
|
-
id="
|
|
110
|
+
class="pf-v5-c-tab-content pf-m-secondary"
|
|
111
|
+
id="secondary-tab3-panel"
|
|
112
112
|
role="tabpanel"
|
|
113
113
|
tabindex="0"
|
|
114
114
|
hidden
|
|
@@ -116,8 +116,8 @@ cssPrefix: pf-v5-c-tab-content
|
|
|
116
116
|
<div class="pf-v5-c-tab-content__body">Panel 3</div>
|
|
117
117
|
</section>
|
|
118
118
|
<section
|
|
119
|
-
class="pf-v5-c-tab-content pf-m-
|
|
120
|
-
id="
|
|
119
|
+
class="pf-v5-c-tab-content pf-m-secondary"
|
|
120
|
+
id="secondary-tab4-panel"
|
|
121
121
|
role="tabpanel"
|
|
122
122
|
tabindex="0"
|
|
123
123
|
hidden
|
|
@@ -150,4 +150,4 @@ Tab content should be used with the [tabs component](/components/tabs).
|
|
|
150
150
|
| `.pf-v5-c-tab-content` | `<section>` | Initiates the tab content component. **Required** |
|
|
151
151
|
| `.pf-v5-c-tab-content__body` | `<div>` | Initiates the tab content body component. |
|
|
152
152
|
| `.pf-m-padding` | `.pf-v5-c-tab-content__body` | Modifies the tab content body component padding. |
|
|
153
|
-
| `.pf-m-
|
|
153
|
+
| `.pf-m-secondary` | `.pf-v5-c-tab-content` | Modifies the tab content component for secondary styles. |
|