@patternfly/react-styles 4.76.0 → 4.77.0
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,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.77.0 (2022-07-26)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **Dropdown:** added secondary styling to split action button ([#7746](https://github.com/patternfly/patternfly-react/issues/7746)) ([e701c32](https://github.com/patternfly/patternfly-react/commit/e701c32bb36097770ecb2c3e17e15df0b720488f))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
## 4.76.2 (2022-07-26)
|
18
|
+
|
19
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
## 4.76.1 (2022-07-26)
|
26
|
+
|
27
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
6
33
|
# 4.76.0 (2022-07-26)
|
7
34
|
|
8
35
|
|
@@ -9,6 +9,7 @@
|
|
9
9
|
}
|
10
10
|
|
11
11
|
.pf-c-form-control {
|
12
|
+
--pf-c-form-control--Color: var(--pf-global--Color--100);
|
12
13
|
--pf-c-form-control--FontSize: var(--pf-global--FontSize--md);
|
13
14
|
--pf-c-form-control--LineHeight: var(--pf-global--LineHeight--md);
|
14
15
|
--pf-c-form-control--BorderWidth: var(--pf-global--BorderWidth--sm);
|
@@ -131,7 +132,7 @@
|
|
131
132
|
--pf-c-form-control--m-icon-sprite__select--success--BackgroundPosition: calc(100% - var(--pf-global--spacer--md) + 1px - var(--pf-global--spacer--lg));
|
132
133
|
--pf-c-form-control--m-icon-sprite__select--m-warning--BackgroundPosition: calc(100% - var(--pf-global--spacer--md) - var(--pf-global--spacer--lg) + 0.0625rem);
|
133
134
|
--pf-c-form-control--m-icon-sprite__select--invalid--BackgroundPosition: calc(100% - var(--pf-global--spacer--md) - var(--pf-global--spacer--lg));
|
134
|
-
color: var(--pf-
|
135
|
+
color: var(--pf-c-form-control--Color);
|
135
136
|
width: var(--pf-c-form-control--Width);
|
136
137
|
padding: var(--pf-c-form-control--PaddingTop) var(--pf-c-form-control--PaddingRight) var(--pf-c-form-control--PaddingBottom) var(--pf-c-form-control--PaddingLeft);
|
137
138
|
font-size: var(--pf-c-form-control--FontSize);
|
@@ -176,8 +177,8 @@
|
|
176
177
|
border-bottom-width: var(--pf-c-form-control--m-expanded--BorderBottomWidth);
|
177
178
|
}
|
178
179
|
.pf-c-form-control:disabled {
|
179
|
-
--pf-c-form-control--Color: var(--pf-c-form-control--disabled--Color);
|
180
180
|
--pf-c-form-control--BackgroundColor: var(--pf-c-form-control--disabled--BackgroundColor);
|
181
|
+
color: var(--pf-c-form-control--disabled--Color);
|
181
182
|
cursor: not-allowed;
|
182
183
|
border-color: var(--pf-c-form-control--disabled--BorderColor);
|
183
184
|
}
|
@@ -36,7 +36,7 @@
|
|
36
36
|
--pf-c-popover__arrow--m-left--Rotate: 45deg;
|
37
37
|
--pf-c-popover--c-button--MarginLeft: var(--pf-global--spacer--sm);
|
38
38
|
--pf-c-popover--c-button--Top: calc(var(--pf-c-popover__content--PaddingTop) - var(--pf-global--spacer--form-element));
|
39
|
-
--pf-c-popover--c-button--Right: var(--pf-global--spacer--md);
|
39
|
+
--pf-c-popover--c-button--Right: calc(var(--pf-c-popover__content--PaddingRight) - var(--pf-global--spacer--md));
|
40
40
|
--pf-c-popover--c-button--sibling--PaddingRight: var(--pf-global--spacer--2xl);
|
41
41
|
--pf-c-popover--c-title--MarginBottom: var(--pf-global--spacer--sm);
|
42
42
|
--pf-c-popover__title--MarginBottom: var(--pf-global--spacer--sm);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.77.0",
|
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.204.
|
22
|
+
"@patternfly/patternfly": "4.204.3",
|
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": "9ab68189931ffebc2eb1d2dd3a39ad5d8bc88b58"
|
33
33
|
}
|