@patternfly/react-styles 4.91.4 → 4.91.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/css/components/Button/button.css +11 -1
- package/css/components/Form/form.css +1 -0
- package/css/components/Slider/slider.css +1 -0
- package/css/components/Spinner/spinner.css +4 -0
- package/css/components/Spinner/spinner.d.ts +1 -0
- package/css/components/Spinner/spinner.js +1 -0
- package/css/components/Spinner/spinner.mjs +1 -0
- package/css/components/TextInputGroup/text-input-group.css +11 -12
- package/css/components/TextInputGroup/text-input-group.d.ts +1 -2
- package/css/components/TextInputGroup/text-input-group.js +1 -2
- package/css/components/TextInputGroup/text-input-group.mjs +1 -2
- package/css/components/TreeView/tree-view.css +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
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.91.5 (2022-09-29)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## 4.91.4 (2022-09-23)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -89,6 +89,12 @@
|
|
89
89
|
--pf-c-button--m-link--m-inline--FontSize: inherit;
|
90
90
|
--pf-c-button--m-link--m-inline--hover--TextDecoration: var(--pf-global--link--TextDecoration--hover);
|
91
91
|
--pf-c-button--m-link--m-inline--hover--Color: var(--pf-global--link--Color--hover);
|
92
|
+
--pf-c-button--m-link--m-inline--PaddingTop: 0;
|
93
|
+
--pf-c-button--m-link--m-inline--PaddingRight: 0;
|
94
|
+
--pf-c-button--m-link--m-inline--PaddingBottom: 0;
|
95
|
+
--pf-c-button--m-link--m-inline--PaddingLeft: 0;
|
96
|
+
--pf-c-button--m-link--m-inline__progress--Left: var(--pf-global--spacer--xs);
|
97
|
+
--pf-c-button--m-link--m-inline--m-in-progress--PaddingLeft: calc(var(--pf-c-button--m-link--m-inline__progress--Left) + 1rem + var(--pf-global--spacer--sm));
|
92
98
|
--pf-c-button--m-link--m-danger--BackgroundColor: transparent;
|
93
99
|
--pf-c-button--m-link--m-danger--Color: var(--pf-global--danger-color--100);
|
94
100
|
--pf-c-button--m-link--m-danger--hover--BackgroundColor: transparent;
|
@@ -287,8 +293,9 @@
|
|
287
293
|
}
|
288
294
|
.pf-c-button.pf-m-link.pf-m-inline {
|
289
295
|
--pf-c-button--FontSize: var(--pf-c-button--m-link--m-inline--FontSize);
|
296
|
+
--pf-c-button__progress--Left: var(--pf-c-button--m-link--m-inline__progress--Left);
|
290
297
|
display: inline;
|
291
|
-
padding:
|
298
|
+
padding: var(--pf-c-button--m-link--m-inline--PaddingTop) var(--pf-c-button--m-link--m-inline--PaddingRight) var(--pf-c-button--m-link--m-inline--PaddingBottom) var(--pf-c-button--m-link--m-inline--PaddingLeft);
|
292
299
|
text-align: left;
|
293
300
|
white-space: normal;
|
294
301
|
cursor: pointer;
|
@@ -454,6 +461,9 @@
|
|
454
461
|
--pf-c-button--PaddingLeft: var(--pf-c-button--m-progress--PaddingLeft);
|
455
462
|
transition: var(--pf-c-button--m-progress--TransitionProperty) var(--pf-c-button--m-progress--TransitionDuration);
|
456
463
|
}
|
464
|
+
.pf-c-button.pf-m-in-progress {
|
465
|
+
--pf-c-button--m-link--m-inline--PaddingLeft: var(--pf-c-button--m-link--m-inline--m-in-progress--PaddingLeft);
|
466
|
+
}
|
457
467
|
.pf-c-button.pf-m-in-progress:not(.pf-m-plain) {
|
458
468
|
--pf-c-button--PaddingRight: var(--pf-c-button--m-in-progress--PaddingRight);
|
459
469
|
--pf-c-button--PaddingLeft: var(--pf-c-button--m-in-progress--PaddingLeft);
|
@@ -7,10 +7,14 @@
|
|
7
7
|
--pf-c-spinner--m-md--diameter: var(--pf-global--icon--FontSize--md);
|
8
8
|
--pf-c-spinner--m-lg--diameter: var(--pf-global--icon--FontSize--lg);
|
9
9
|
--pf-c-spinner--m-xl--diameter: var(--pf-global--icon--FontSize--xl);
|
10
|
+
--pf-c-spinner--m-inline--diameter: 1em;
|
10
11
|
width: var(--pf-c-spinner--Width);
|
11
12
|
height: var(--pf-c-spinner--Height);
|
12
13
|
overflow: hidden;
|
13
14
|
}
|
15
|
+
.pf-c-spinner.pf-m-inline {
|
16
|
+
--pf-c-spinner--diameter: var(--pf-c-spinner--m-inline--diameter);
|
17
|
+
}
|
14
18
|
.pf-c-spinner.pf-m-sm {
|
15
19
|
--pf-c-spinner--diameter: var(--pf-c-spinner--m-sm--diameter);
|
16
20
|
}
|
@@ -9,6 +9,11 @@
|
|
9
9
|
--pf-c-text-input-group__text--focus-within--after--BorderBottomColor: var(--pf-global--primary-color--100);
|
10
10
|
--pf-c-text-input-group__main--first-child--not--text-input--MarginLeft: var(--pf-global--spacer--sm);
|
11
11
|
--pf-c-text-input-group__main--m-icon__text-input--PaddingLeft: var(--pf-global--spacer--xl);
|
12
|
+
--pf-c-text-input-group__main--RowGap: var(--pf-global--spacer--xs);
|
13
|
+
--pf-c-text-input-group__main--ColumnGap: var(--pf-global--spacer--sm);
|
14
|
+
--pf-c-text-input-group--c-chip-group__main--PaddingTop: var(--pf-global--spacer--xs);
|
15
|
+
--pf-c-text-input-group--c-chip-group__main--PaddingRight: var(--pf-global--spacer--xs);
|
16
|
+
--pf-c-text-input-group--c-chip-group__main--PaddingBottom: var(--pf-global--spacer--xs);
|
12
17
|
--pf-c-text-input-group__text-input--PaddingTop: var(--pf-global--spacer--form-element);
|
13
18
|
--pf-c-text-input-group__text-input--PaddingRight: var(--pf-global--spacer--sm);
|
14
19
|
--pf-c-text-input-group__text-input--PaddingBottom: var(--pf-global--spacer--form-element);
|
@@ -54,7 +59,8 @@
|
|
54
59
|
.pf-c-text-input-group__main {
|
55
60
|
display: flex;
|
56
61
|
flex: 1;
|
57
|
-
|
62
|
+
flex-wrap: wrap;
|
63
|
+
gap: var(--pf-c-text-input-group__main--RowGap) var(--pf-c-text-input-group__main--ColumnGap);
|
58
64
|
min-width: 0;
|
59
65
|
}
|
60
66
|
.pf-c-text-input-group__main.pf-m-icon {
|
@@ -63,17 +69,10 @@
|
|
63
69
|
.pf-c-text-input-group__main > :first-child:not(.pf-c-text-input-group__text) {
|
64
70
|
margin-left: var(--pf-c-text-input-group__main--first-child--not--text-input--MarginLeft);
|
65
71
|
}
|
66
|
-
.pf-c-text-input-group__main .pf-c-chip-
|
67
|
-
|
68
|
-
-
|
69
|
-
|
70
|
-
}
|
71
|
-
.pf-c-text-input-group__main .pf-c-chip-group::-webkit-scrollbar {
|
72
|
-
display: none;
|
73
|
-
}
|
74
|
-
.pf-c-text-input-group__main .pf-c-chip-group,
|
75
|
-
.pf-c-text-input-group__main .pf-c-chip-group__list {
|
76
|
-
flex-wrap: nowrap;
|
72
|
+
.pf-c-text-input-group__main .pf-c-chip-group__main {
|
73
|
+
padding-top: var(--pf-c-text-input-group--c-chip-group__main--PaddingTop);
|
74
|
+
padding-right: var(--pf-c-text-input-group--c-chip-group__main--PaddingRight);
|
75
|
+
padding-bottom: var(--pf-c-text-input-group--c-chip-group__main--PaddingBottom);
|
77
76
|
}
|
78
77
|
|
79
78
|
.pf-c-text-input-group__text {
|
@@ -1,8 +1,7 @@
|
|
1
1
|
import './text-input-group.css';
|
2
2
|
declare const _default: {
|
3
3
|
"button": "pf-c-button",
|
4
|
-
"
|
5
|
-
"chipGroupList": "pf-c-chip-group__list",
|
4
|
+
"chipGroupMain": "pf-c-chip-group__main",
|
6
5
|
"modifiers": {
|
7
6
|
"disabled": "pf-m-disabled",
|
8
7
|
"plain": "pf-m-plain",
|
@@ -3,8 +3,7 @@ exports.__esModule = true;
|
|
3
3
|
require('./text-input-group.css');
|
4
4
|
exports.default = {
|
5
5
|
"button": "pf-c-button",
|
6
|
-
"
|
7
|
-
"chipGroupList": "pf-c-chip-group__list",
|
6
|
+
"chipGroupMain": "pf-c-chip-group__main",
|
8
7
|
"modifiers": {
|
9
8
|
"disabled": "pf-m-disabled",
|
10
9
|
"plain": "pf-m-plain",
|
@@ -1,8 +1,7 @@
|
|
1
1
|
import './text-input-group.css';
|
2
2
|
export default {
|
3
3
|
"button": "pf-c-button",
|
4
|
-
"
|
5
|
-
"chipGroupList": "pf-c-chip-group__list",
|
4
|
+
"chipGroupMain": "pf-c-chip-group__main",
|
6
5
|
"modifiers": {
|
7
6
|
"disabled": "pf-m-disabled",
|
8
7
|
"plain": "pf-m-plain",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.91.
|
3
|
+
"version": "4.91.5",
|
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.217.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": "51b287699eb4b522491b3ade19a8d16b68b5b4da"
|
33
33
|
}
|