@patternfly/react-styles 4.45.2 → 4.47.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
CHANGED
@@ -3,6 +3,44 @@
|
|
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.47.1 (2022-02-14)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# 4.47.0 (2022-02-14)
|
15
|
+
|
16
|
+
|
17
|
+
### Features
|
18
|
+
|
19
|
+
* **Page:** Added center alignment for page sections ([#6893](https://github.com/patternfly/patternfly-react/issues/6893)) ([440918f](https://github.com/patternfly/patternfly-react/commit/440918fc1bd9795cd916a04fe32677ae5f69ef68))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
# 4.46.0 (2022-02-11)
|
26
|
+
|
27
|
+
|
28
|
+
### Features
|
29
|
+
|
30
|
+
* **Menu:** allow drilldown menu functions ([#6872](https://github.com/patternfly/patternfly-react/issues/6872)) ([b345b07](https://github.com/patternfly/patternfly-react/commit/b345b07de7c1576e984a06f4c573641b04956f5c))
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
## 4.45.3 (2022-02-11)
|
37
|
+
|
38
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
6
44
|
## 4.45.2 (2022-02-11)
|
7
45
|
|
8
46
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -868,6 +868,9 @@
|
|
868
868
|
.pf-c-nav__section + .pf-c-nav__section {
|
869
869
|
--pf-c-nav__section--MarginTop: var(--pf-c-nav__section--section--MarginTop);
|
870
870
|
}
|
871
|
+
.pf-c-nav__section.pf-m-no-title {
|
872
|
+
--pf-c-nav__section--MarginTop: 0;
|
873
|
+
}
|
871
874
|
|
872
875
|
.pf-c-nav__section-title {
|
873
876
|
padding: var(--pf-c-nav__section-title--PaddingTop) var(--pf-c-nav__section-title--PaddingRight) var(--pf-c-nav__section-title--PaddingBottom) var(--pf-c-nav__section-title--PaddingLeft);
|
@@ -22,7 +22,8 @@ declare const _default: {
|
|
22
22
|
"expanded": "pf-m-expanded",
|
23
23
|
"drilldown": "pf-m-drilldown",
|
24
24
|
"hover": "pf-m-hover",
|
25
|
-
"start": "pf-m-start"
|
25
|
+
"start": "pf-m-start",
|
26
|
+
"noTitle": "pf-m-no-title"
|
26
27
|
},
|
27
28
|
"nav": "pf-c-nav",
|
28
29
|
"navItem": "pf-c-nav__item",
|
@@ -2,6 +2,7 @@
|
|
2
2
|
#ws-core-c-navigation-basic,
|
3
3
|
#ws-core-c-navigation-grouped,
|
4
4
|
#ws-core-c-navigation-grouped-nav,
|
5
|
+
#ws-core-c-navigation-grouped-nav-no-titles,
|
5
6
|
#ws-core-c-navigation-expanded,
|
6
7
|
#ws-core-c-navigation-expanded-with-subnav-titles,
|
7
8
|
#ws-core-c-navigation-mixed,
|
@@ -13,7 +14,8 @@
|
|
13
14
|
#ws-core-c-navigation-nav-with-drilldown-menu .pf-c-nav,
|
14
15
|
#ws-core-c-navigation-level-2-drilldown,
|
15
16
|
#ws-core-c-navigation-level-3-drilldown,
|
16
|
-
#ws-core-c-navigation-nav-with-flyout .pf-c-nav
|
17
|
+
#ws-core-c-navigation-nav-with-flyout .pf-c-nav,
|
18
|
+
#ws-core-c-navigation-grouped-nav-no-titles-no-margin-top {
|
17
19
|
padding: 0;
|
18
20
|
background-color: var(--pf-global--BackgroundColor--dark-300);
|
19
21
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.47.1",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "4.
|
22
|
+
"@patternfly/patternfly": "4.178.0",
|
23
23
|
"camel-case": "^3.0.0",
|
24
24
|
"css": "^2.2.3",
|
25
25
|
"fs-extra": "^6.0.1",
|
@@ -29,5 +29,5 @@
|
|
29
29
|
"typescript": "^4.0.0"
|
30
30
|
},
|
31
31
|
"license": "MIT",
|
32
|
-
"gitHead": "
|
32
|
+
"gitHead": "1283c22513dcc32b08a39cc9b9653574b0770a1f"
|
33
33
|
}
|