@patternfly/react-styles 4.57.0 → 4.58.2
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 +27 -0
- package/css/components/DescriptionList/description-list.css +3 -0
- package/css/components/Tabs/tabs.css +2 -0
- package/css/components/Topology/topology-components.css +413 -117
- package/css/components/Topology/topology-components.d.ts +4 -2
- package/css/components/Topology/topology-components.js +4 -2
- package/css/components/Topology/topology-components.mjs +4 -2
- package/css/components/TreeView/tree-view.css +2 -0
- package/package.json +3 -3
- package/src/css/components/Topology/topology-components.css +413 -117
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,33 @@
|
|
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
|
+
## 4.58.2 (2022-05-03)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## 4.58.1 (2022-05-03)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
# 4.58.0 (2022-05-02)
|
23
|
+
|
24
|
+
|
25
|
+
### Features
|
26
|
+
|
27
|
+
* **divider:** add support for switching orientation at various breakpoints ([#7285](https://github.com/patternfly/patternfly-react/issues/7285)) ([6e47917](https://github.com/patternfly/patternfly-react/commit/6e47917a59fdbd0f9f647998d79d024a691a49e2))
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
6
33
|
# 4.57.0 (2022-04-28)
|
7
34
|
|
8
35
|
|
@@ -120,6 +120,7 @@
|
|
120
120
|
--pf-c-tabs--m-secondary__add--c-button--FontSize: var(--pf-global--FontSize--xs);
|
121
121
|
--pf-c-tabs__add--c-button--PaddingTop: var(--pf-c-tabs__link--PaddingTop);
|
122
122
|
--pf-c-tabs__add--c-button--PaddingBottom: var(--pf-c-tabs__link--PaddingBottom);
|
123
|
+
--pf-c-tabs__add--c-button--OutlineOffset: calc(-1 * var(--pf-global--spacer--xs));
|
123
124
|
position: relative;
|
124
125
|
display: flex;
|
125
126
|
width: var(--pf-c-tabs--Width);
|
@@ -630,6 +631,7 @@
|
|
630
631
|
--pf-c-button--FontSize: var(--pf-c-tabs__add--c-button--FontSize);
|
631
632
|
--pf-c-button--PaddingTop: var(--pf-c-tabs__add--c-button--PaddingTop);
|
632
633
|
--pf-c-button--PaddingBottom: var(--pf-c-tabs__add--c-button--PaddingBottom);
|
634
|
+
outline-offset: var(--pf-c-tabs__add--c-button--OutlineOffset);
|
633
635
|
}
|
634
636
|
|
635
637
|
.pf-c-tabs.pf-m-inset-none {
|