@patternfly/react-styles 4.92.2 → 4.92.4
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 +19 -0
- package/css/components/CalendarMonth/calendar-month.css +1 -1
- package/css/components/Content/content.css +6 -0
- package/css/components/Content/content.d.ts +1 -0
- package/css/components/Content/content.js +1 -0
- package/css/components/Content/content.mjs +1 -0
- package/css/components/Tabs/tabs.css +0 -4
- package/css/components/Tabs/tabs.d.ts +0 -1
- package/css/components/Tabs/tabs.js +0 -1
- package/css/components/Tabs/tabs.mjs +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.92.4 (2023-01-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **Tabs:** Removed isHelpAction prop from TabsAction ([#8560](https://github.com/patternfly/patternfly-react/issues/8560)) ([05fa1b0](https://github.com/patternfly/patternfly-react/commit/05fa1b0acfe886f09c5bdf4ad9f8e27878ee817e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 4.92.3 (2022-12-08)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## 4.92.2 (2022-12-07)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @patternfly/react-styles
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--pf-c-calendar-month--PaddingLeft: var(--pf-global--spacer--lg);
|
|
17
17
|
--pf-c-calendar-month--FontSize: var(--pf-global--FontSize--sm);
|
|
18
18
|
--pf-c-calendar-month__header--MarginBottom: var(--pf-global--spacer--md);
|
|
19
|
-
--pf-c-calendar-month__header-year--Width:
|
|
19
|
+
--pf-c-calendar-month__header-year--Width: 8.5ch;
|
|
20
20
|
--pf-c-calendar-month__header-nav-control--MarginRight: 0;
|
|
21
21
|
--pf-c-calendar-month__header-nav-control--MarginLeft: 0;
|
|
22
22
|
--pf-c-calendar-month__header-nav-control--m-prev-month--MarginRight: 0;
|
|
@@ -127,6 +127,12 @@
|
|
|
127
127
|
.pf-c-content ul {
|
|
128
128
|
margin: 0;
|
|
129
129
|
}
|
|
130
|
+
.pf-c-content ol.pf-m-plain,
|
|
131
|
+
.pf-c-content ul.pf-m-plain {
|
|
132
|
+
padding-left: 0;
|
|
133
|
+
margin-left: 0;
|
|
134
|
+
list-style: none;
|
|
135
|
+
}
|
|
130
136
|
.pf-c-content h1 {
|
|
131
137
|
margin-top: var(--pf-c-content--h1--MarginTop);
|
|
132
138
|
margin-bottom: var(--pf-c-content--h1--MarginBottom);
|
|
@@ -117,7 +117,6 @@
|
|
|
117
117
|
--pf-c-tabs__item-action--last-child--c-button--PaddingRight: var(--pf-global--spacer--md);
|
|
118
118
|
--pf-c-tabs__item-action--c-button--OutlineOffset: -0.1875rem;
|
|
119
119
|
--pf-c-tabs__item-action-icon--MarginTop: 0.125rem;
|
|
120
|
-
--pf-c-tabs__item-action--m-help--c-button--PaddingLeft: var(--pf-global--spacer--xs);
|
|
121
120
|
--pf-c-tabs__add--before--BorderColor: var(--pf-c-tabs__link--before--border-color--base);
|
|
122
121
|
--pf-c-tabs__add--before--BorderLeftWidth: var(--pf-c-tabs__link--before--border-width--base);
|
|
123
122
|
--pf-c-tabs__add--c-button--FontSize: var(--pf-global--FontSize--sm);
|
|
@@ -622,9 +621,6 @@
|
|
|
622
621
|
--pf-c-button--PaddingLeft: var(--pf-c-tabs__item-action--c-button--PaddingLeft);
|
|
623
622
|
outline-offset: var(--pf-c-tabs__item-action--c-button--OutlineOffset);
|
|
624
623
|
}
|
|
625
|
-
.pf-c-tabs__item-action.pf-m-help {
|
|
626
|
-
--pf-c-tabs__item-action--c-button--PaddingLeft: var(--pf-c-tabs__item-action--m-help--c-button--PaddingLeft);
|
|
627
|
-
}
|
|
628
624
|
.pf-c-tabs__item-action:last-child {
|
|
629
625
|
--pf-c-tabs__item-action--c-button--PaddingRight: var(--pf-c-tabs__item-action--last-child--c-button--PaddingRight);
|
|
630
626
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-styles",
|
|
3
|
-
"version": "4.92.
|
|
3
|
+
"version": "4.92.4",
|
|
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.224.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.7.4"
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "90e75e7a9051bbb604234a705b3ecbcecbdf22ea"
|
|
33
33
|
}
|