@patternfly/react-styles 4.33.1 → 4.33.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 +8 -0
- package/css/components/ExpandableSection/expandable-section.css +6 -0
- package/css/components/ExpandableSection/expandable-section.d.ts +1 -0
- package/css/components/ExpandableSection/expandable-section.js +1 -0
- package/css/components/LogViewer/log-viewer.css +17 -15
- package/css/components/LogViewer/log-viewer.d.ts +1 -0
- package/css/components/LogViewer/log-viewer.js +1 -0
- package/css/docs/components/NotificationBadge/examples/NotificationBadge.css +3 -0
- package/css/docs/components/NotificationBadge/examples/NotificationBadge.d.ts +5 -0
- package/css/docs/components/NotificationBadge/examples/NotificationBadge.js +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.33.2 (2022-01-06)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## 4.33.1 (2022-01-06)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -8,6 +8,7 @@
|
|
8
8
|
--pf-c-expandable-section__toggle--active--Color: var(--pf-global--link--Color--hover);
|
9
9
|
--pf-c-expandable-section__toggle--focus--Color: var(--pf-global--link--Color--hover);
|
10
10
|
--pf-c-expandable-section__toggle--m-expanded--Color: var(--pf-global--link--Color--hover);
|
11
|
+
--pf-c-expandable-section__toggle-icon--MinWidth: 1em;
|
11
12
|
--pf-c-expandable-section__toggle-icon--Color: var(--pf-global--Color--100);
|
12
13
|
--pf-c-expandable-section__toggle-icon--Transition: .2s ease-in 0s;
|
13
14
|
--pf-c-expandable-section__toggle-icon--Rotate: 0;
|
@@ -30,6 +31,7 @@
|
|
30
31
|
--pf-c-expandable-section--m-display-lg--after--BackgroundColor: transparent;
|
31
32
|
--pf-c-expandable-section--m-display-lg--after--Width: var(--pf-global--BorderWidth--lg);
|
32
33
|
--pf-c-expandable-section--m-display-lg--m-expanded--after--BackgroundColor: var(--pf-global--primary-color--100);
|
34
|
+
--pf-c-expandable-section--m-indented__content--PaddingLeft: calc(var(--pf-c-expandable-section__toggle-text--MarginLeft) + var(--pf-c-expandable-section__toggle-icon--MinWidth));
|
33
35
|
}
|
34
36
|
.pf-c-expandable-section.pf-m-expanded {
|
35
37
|
--pf-c-expandable-section__toggle--Color: var(--pf-c-expandable-section__toggle--m-expanded--Color);
|
@@ -64,6 +66,9 @@
|
|
64
66
|
content: "";
|
65
67
|
background-color: var(--pf-c-expandable-section--m-display-lg--after--BackgroundColor);
|
66
68
|
}
|
69
|
+
.pf-c-expandable-section.pf-m-indented {
|
70
|
+
--pf-c-expandable-section__content--PaddingLeft: var(--pf-c-expandable-section--m-indented__content--PaddingLeft);
|
71
|
+
}
|
67
72
|
|
68
73
|
.pf-c-expandable-section__toggle {
|
69
74
|
display: flex;
|
@@ -82,6 +87,7 @@
|
|
82
87
|
}
|
83
88
|
|
84
89
|
.pf-c-expandable-section__toggle-icon {
|
90
|
+
min-width: var(--pf-c-expandable-section__toggle-icon--MinWidth);
|
85
91
|
color: var(--pf-c-expandable-section__toggle-icon--Color);
|
86
92
|
transition: var(--pf-c-expandable-section__toggle-icon--Transition);
|
87
93
|
transform: rotate(var(--pf-c-expandable-section__toggle-icon--Rotate));
|
@@ -10,6 +10,7 @@ declare const _default: {
|
|
10
10
|
"detached": "pf-m-detached",
|
11
11
|
"limitWidth": "pf-m-limit-width",
|
12
12
|
"displayLg": "pf-m-display-lg",
|
13
|
+
"indented": "pf-m-indented",
|
13
14
|
"active": "pf-m-active",
|
14
15
|
"expandTop": "pf-m-expand-top",
|
15
16
|
"overpassFont": "pf-m-overpass-font"
|
@@ -1,4 +1,5 @@
|
|
1
|
-
.pf-c-log-viewer__header
|
1
|
+
.pf-c-log-viewer__header,
|
2
|
+
.pf-c-log-viewer__footer {
|
2
3
|
--pf-global--Color--100: var(--pf-global--Color--dark-100);
|
3
4
|
--pf-global--Color--200: var(--pf-global--Color--dark-200);
|
4
5
|
--pf-global--BorderColor--100: var(--pf-global--BorderColor--dark-100);
|
@@ -107,7 +108,15 @@
|
|
107
108
|
position: absolute;
|
108
109
|
right: 0;
|
109
110
|
left: var(--pf-c-log-viewer--m-line-numbers__list--Left);
|
110
|
-
|
111
|
+
}
|
112
|
+
.pf-c-log-viewer.pf-m-line-numbers .pf-c-log-viewer__list::before {
|
113
|
+
position: absolute;
|
114
|
+
top: var(--pf-c-log-viewer--m-line-numbers__main--before--Top);
|
115
|
+
bottom: var(--pf-c-log-viewer--m-line-numbers__main--before--Bottom);
|
116
|
+
left: 0;
|
117
|
+
width: var(--pf-c-log-viewer--m-line-numbers__main--before--Width);
|
118
|
+
content: "";
|
119
|
+
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
111
120
|
}
|
112
121
|
.pf-c-log-viewer .pf-c-toolbar {
|
113
122
|
--pf-c-toolbar--PaddingTop: var(--pf-c-log-viewer--c-toolbar--PaddingTop);
|
@@ -125,10 +134,14 @@
|
|
125
134
|
}
|
126
135
|
|
127
136
|
.pf-c-log-viewer__header {
|
128
|
-
color: var(--pf-global--Color--100);
|
129
137
|
margin-bottom: var(--pf-c-log-viewer__header--MarginBottom);
|
130
138
|
}
|
131
139
|
|
140
|
+
.pf-c-log-viewer__header,
|
141
|
+
.pf-c-log-viewer__footer {
|
142
|
+
color: var(--pf-global--Color--100);
|
143
|
+
}
|
144
|
+
|
132
145
|
.pf-c-log-viewer__main {
|
133
146
|
display: flex;
|
134
147
|
flex-direction: column;
|
@@ -136,18 +149,6 @@
|
|
136
149
|
background-color: var(--pf-c-log-viewer__main--BackgroundColor);
|
137
150
|
border: var(--pf-c-log-viewer__main--BorderWidth) solid var(--pf-c-log-viewer__main--BorderColor);
|
138
151
|
}
|
139
|
-
.pf-m-line-numbers .pf-c-log-viewer__main {
|
140
|
-
position: relative;
|
141
|
-
}
|
142
|
-
.pf-m-line-numbers .pf-c-log-viewer__main::before {
|
143
|
-
position: absolute;
|
144
|
-
top: var(--pf-c-log-viewer--m-line-numbers__main--before--Top);
|
145
|
-
bottom: var(--pf-c-log-viewer--m-line-numbers__main--before--Bottom);
|
146
|
-
left: var(--pf-c-log-viewer__index--Width);
|
147
|
-
width: var(--pf-c-log-viewer--m-line-numbers__main--before--Width);
|
148
|
-
content: "";
|
149
|
-
background: var(--pf-c-log-viewer--m-line-numbers__main--before--BackgroundColor);
|
150
|
-
}
|
151
152
|
|
152
153
|
.pf-c-log-viewer__scroll-container {
|
153
154
|
position: relative;
|
@@ -188,6 +189,7 @@
|
|
188
189
|
font-family: var(--pf-c-log-viewer__index--FontFamily);
|
189
190
|
font-size: var(--pf-c-log-viewer__index--FontSize);
|
190
191
|
color: var(--pf-c-log-viewer__index--Color);
|
192
|
+
user-select: none;
|
191
193
|
background-color: var(--pf-c-log-viewer__index--BackgroundColor);
|
192
194
|
}
|
193
195
|
|
@@ -3,6 +3,7 @@ declare const _default: {
|
|
3
3
|
"button": "pf-c-button",
|
4
4
|
"card": "pf-c-card",
|
5
5
|
"logViewer": "pf-c-log-viewer",
|
6
|
+
"logViewerFooter": "pf-c-log-viewer__footer",
|
6
7
|
"logViewerHeader": "pf-c-log-viewer__header",
|
7
8
|
"logViewerIndex": "pf-c-log-viewer__index",
|
8
9
|
"logViewerList": "pf-c-log-viewer__list",
|
@@ -5,6 +5,7 @@ exports.default = {
|
|
5
5
|
"button": "pf-c-button",
|
6
6
|
"card": "pf-c-card",
|
7
7
|
"logViewer": "pf-c-log-viewer",
|
8
|
+
"logViewerFooter": "pf-c-log-viewer__footer",
|
8
9
|
"logViewerHeader": "pf-c-log-viewer__header",
|
9
10
|
"logViewerIndex": "pf-c-log-viewer__index",
|
10
11
|
"logViewerList": "pf-c-log-viewer__list",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.33.
|
3
|
+
"version": "4.33.2",
|
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.165.1",
|
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": "3227da5a80f1a78cf7f547c543a17f1a88e351c3"
|
33
33
|
}
|