@patternfly/react-styles 4.91.7 → 4.91.9

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.9 (2022-10-26)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-styles
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.91.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@4.91.7...@patternfly/react-styles@4.91.8) (2022-10-17)
15
+
16
+ **Note:** Version bump only for package @patternfly/react-styles
17
+
18
+
19
+
20
+
21
+
6
22
  ## 4.91.7 (2022-10-14)
7
23
 
8
24
  **Note:** Version bump only for package @patternfly/react-styles
@@ -113,6 +113,16 @@
113
113
  --pf-c-app-launcher__menu--Top: var(--pf-c-app-launcher--m-top__menu--Top);
114
114
  transform: translateY(var(--pf-c-app-launcher--m-top__menu--TranslateY));
115
115
  }
116
+ .pf-c-app-launcher__menu.pf-m-static {
117
+ --pf-c-app-launcher--m-top__menu--TranslateY: 0;
118
+ position: static;
119
+ top: auto;
120
+ right: auto;
121
+ bottom: auto;
122
+ left: auto;
123
+ z-index: auto;
124
+ min-width: min-content;
125
+ }
116
126
 
117
127
  .pf-c-app-launcher__menu-search {
118
128
  padding: var(--pf-c-app-launcher__menu-search--PaddingTop) var(--pf-c-app-launcher__menu-search--PaddingRight) var(--pf-c-app-launcher__menu-search--PaddingBottom) var(--pf-c-app-launcher__menu-search--PaddingLeft);
@@ -16,6 +16,7 @@ declare const _default: {
16
16
  "active": "pf-m-active",
17
17
  "alignRight": "pf-m-align-right",
18
18
  "top": "pf-m-top",
19
+ "static": "pf-m-static",
19
20
  "favorite": "pf-m-favorite",
20
21
  "focus": "pf-m-focus",
21
22
  "disabled": "pf-m-disabled",
@@ -18,6 +18,7 @@ exports.default = {
18
18
  "active": "pf-m-active",
19
19
  "alignRight": "pf-m-align-right",
20
20
  "top": "pf-m-top",
21
+ "static": "pf-m-static",
21
22
  "favorite": "pf-m-favorite",
22
23
  "focus": "pf-m-focus",
23
24
  "disabled": "pf-m-disabled",
@@ -16,6 +16,7 @@ export default {
16
16
  "active": "pf-m-active",
17
17
  "alignRight": "pf-m-align-right",
18
18
  "top": "pf-m-top",
19
+ "static": "pf-m-static",
19
20
  "favorite": "pf-m-favorite",
20
21
  "focus": "pf-m-focus",
21
22
  "disabled": "pf-m-disabled",
@@ -251,6 +251,9 @@
251
251
  .pf-c-context-selector__menu.pf-m-static {
252
252
  position: static;
253
253
  top: auto;
254
+ right: auto;
255
+ bottom: auto;
256
+ left: auto;
254
257
  z-index: auto;
255
258
  min-width: min-content;
256
259
  }
@@ -50,6 +50,16 @@
50
50
  --pf-c-date-picker__calendar--Top: var(--pf-c-date-picker--m-top__calendar--Top);
51
51
  transform: translateY(var(--pf-c-date-picker--m-top__calendar--TranslateY));
52
52
  }
53
+ .pf-c-date-picker__calendar.pf-m-static {
54
+ --pf-c-date-picker--m-top__calendar--TranslateY: 0;
55
+ position: static;
56
+ top: auto;
57
+ right: auto;
58
+ bottom: auto;
59
+ left: auto;
60
+ z-index: auto;
61
+ min-width: min-content;
62
+ }
53
63
 
54
64
  :where(.pf-theme-dark) .pf-c-date-picker {
55
65
  --pf-c-date-picker__calendar--BackgroundColor: var(--pf-global--BackgroundColor--300);
@@ -8,7 +8,8 @@ declare const _default: {
8
8
  "modifiers": {
9
9
  "error": "pf-m-error",
10
10
  "alignRight": "pf-m-align-right",
11
- "top": "pf-m-top"
11
+ "top": "pf-m-top",
12
+ "static": "pf-m-static"
12
13
  },
13
14
  "themeDark": "pf-theme-dark"
14
15
  };
@@ -10,7 +10,8 @@ exports.default = {
10
10
  "modifiers": {
11
11
  "error": "pf-m-error",
12
12
  "alignRight": "pf-m-align-right",
13
- "top": "pf-m-top"
13
+ "top": "pf-m-top",
14
+ "static": "pf-m-static"
14
15
  },
15
16
  "themeDark": "pf-theme-dark"
16
17
  };
@@ -8,7 +8,8 @@ export default {
8
8
  "modifiers": {
9
9
  "error": "pf-m-error",
10
10
  "alignRight": "pf-m-align-right",
11
- "top": "pf-m-top"
11
+ "top": "pf-m-top",
12
+ "static": "pf-m-static"
12
13
  },
13
14
  "themeDark": "pf-theme-dark"
14
15
  };
@@ -470,8 +470,12 @@
470
470
  box-shadow: var(--pf-c-dropdown__menu--BoxShadow);
471
471
  }
472
472
  .pf-c-dropdown__menu.pf-m-static {
473
+ --pf-c-dropdown--m-top__menu--TranslateY: 0;
473
474
  position: static;
474
475
  top: auto;
476
+ right: auto;
477
+ bottom: auto;
478
+ left: auto;
475
479
  z-index: auto;
476
480
  min-width: min-content;
477
481
  }
@@ -198,6 +198,16 @@
198
198
  --pf-c-options-menu__menu--Top: var(--pf-c-options-menu--m-top__menu--Top);
199
199
  transform: translateY(var(--pf-c-options-menu--m-top__menu--TranslateY));
200
200
  }
201
+ .pf-c-options-menu__menu.pf-m-static {
202
+ --pf-c-options-menu--m-top__menu--TranslateY: 0;
203
+ position: static;
204
+ top: auto;
205
+ right: auto;
206
+ bottom: auto;
207
+ left: auto;
208
+ z-index: auto;
209
+ min-width: min-content;
210
+ }
201
211
 
202
212
  .pf-c-options-menu__menu-item {
203
213
  display: flex;
@@ -8,7 +8,8 @@ declare const _default: {
8
8
  "expanded": "pf-m-expanded",
9
9
  "disabled": "pf-m-disabled",
10
10
  "top": "pf-m-top",
11
- "alignRight": "pf-m-align-right"
11
+ "alignRight": "pf-m-align-right",
12
+ "static": "pf-m-static"
12
13
  },
13
14
  "optionsMenu": "pf-c-options-menu",
14
15
  "optionsMenuGroup": "pf-c-options-menu__group",
@@ -10,7 +10,8 @@ exports.default = {
10
10
  "expanded": "pf-m-expanded",
11
11
  "disabled": "pf-m-disabled",
12
12
  "top": "pf-m-top",
13
- "alignRight": "pf-m-align-right"
13
+ "alignRight": "pf-m-align-right",
14
+ "static": "pf-m-static"
14
15
  },
15
16
  "optionsMenu": "pf-c-options-menu",
16
17
  "optionsMenuGroup": "pf-c-options-menu__group",
@@ -8,7 +8,8 @@ export default {
8
8
  "expanded": "pf-m-expanded",
9
9
  "disabled": "pf-m-disabled",
10
10
  "top": "pf-m-top",
11
- "alignRight": "pf-m-align-right"
11
+ "alignRight": "pf-m-align-right",
12
+ "static": "pf-m-static"
12
13
  },
13
14
  "optionsMenu": "pf-c-options-menu",
14
15
  "optionsMenuGroup": "pf-c-options-menu__group",
@@ -9,6 +9,7 @@
9
9
  --pf-c-progress__bar--before--Opacity: .2;
10
10
  --pf-c-progress__indicator--Height: var(--pf-c-progress__bar--Height);
11
11
  --pf-c-progress__indicator--BackgroundColor: var(--pf-c-progress__bar--before--BackgroundColor);
12
+ --pf-c-progress__helper-text--MarginTop: calc(var(--pf-global--spacer--xs) - var(--pf-c-progress--GridGap));
12
13
  --pf-c-progress--m-success__bar--BackgroundColor: var(--pf-global--success-color--100);
13
14
  --pf-c-progress--m-warning__bar--BackgroundColor: var(--pf-global--warning-color--100);
14
15
  --pf-c-progress--m-danger__bar--BackgroundColor: var(--pf-global--danger-color--100);
@@ -156,6 +157,12 @@
156
157
  background-color: var(--pf-c-progress__indicator--BackgroundColor);
157
158
  }
158
159
 
160
+ .pf-c-progress__helper-text {
161
+ grid-column: 1/3;
162
+ grid-row: 3/4;
163
+ margin-top: var(--pf-c-progress__helper-text--MarginTop);
164
+ }
165
+
159
166
  :where(.pf-theme-dark) .pf-c-progress {
160
167
  --pf-c-progress--m-inside__measure--Color: var(--pf-global--palette--black-900);
161
168
  --pf-c-progress--m-success--m-inside__measure--Color: var(--pf-global--palette--black-900);
@@ -15,6 +15,7 @@ declare const _default: {
15
15
  "progress": "pf-c-progress",
16
16
  "progressBar": "pf-c-progress__bar",
17
17
  "progressDescription": "pf-c-progress__description",
18
+ "progressHelperText": "pf-c-progress__helper-text",
18
19
  "progressIndicator": "pf-c-progress__indicator",
19
20
  "progressMeasure": "pf-c-progress__measure",
20
21
  "progressStatus": "pf-c-progress__status",
@@ -17,6 +17,7 @@ exports.default = {
17
17
  "progress": "pf-c-progress",
18
18
  "progressBar": "pf-c-progress__bar",
19
19
  "progressDescription": "pf-c-progress__description",
20
+ "progressHelperText": "pf-c-progress__helper-text",
20
21
  "progressIndicator": "pf-c-progress__indicator",
21
22
  "progressMeasure": "pf-c-progress__measure",
22
23
  "progressStatus": "pf-c-progress__status",
@@ -15,6 +15,7 @@ export default {
15
15
  "progress": "pf-c-progress",
16
16
  "progressBar": "pf-c-progress__bar",
17
17
  "progressDescription": "pf-c-progress__description",
18
+ "progressHelperText": "pf-c-progress__helper-text",
18
19
  "progressIndicator": "pf-c-progress__indicator",
19
20
  "progressMeasure": "pf-c-progress__measure",
20
21
  "progressStatus": "pf-c-progress__status",
@@ -143,6 +143,16 @@
143
143
  --pf-c-search-input__menu--Top: var(--pf-c-search-input--m-top__menu--Top);
144
144
  transform: translateY(var(--pf-c-search-input--m-top__menu--TranslateY));
145
145
  }
146
+ .pf-c-search-input__menu.pf-m-static {
147
+ --pf-c-search-input--m-top__menu--TranslateY: 0;
148
+ position: static;
149
+ top: auto;
150
+ right: auto;
151
+ bottom: auto;
152
+ left: auto;
153
+ z-index: auto;
154
+ min-width: min-content;
155
+ }
146
156
 
147
157
  .pf-c-search-input__menu-body {
148
158
  padding: var(--pf-c-search-input__menu-body--PaddingTop) var(--pf-c-search-input__menu-body--PaddingRight) var(--pf-c-search-input__menu-body--PaddingBottom) var(--pf-c-search-input__menu-body--PaddingLeft);
@@ -3,7 +3,8 @@ declare const _default: {
3
3
  "button": "pf-c-button",
4
4
  "modifiers": {
5
5
  "hint": "pf-m-hint",
6
- "top": "pf-m-top"
6
+ "top": "pf-m-top",
7
+ "static": "pf-m-static"
7
8
  },
8
9
  "searchInput": "pf-c-search-input",
9
10
  "searchInputBar": "pf-c-search-input__bar",
@@ -5,7 +5,8 @@ exports.default = {
5
5
  "button": "pf-c-button",
6
6
  "modifiers": {
7
7
  "hint": "pf-m-hint",
8
- "top": "pf-m-top"
8
+ "top": "pf-m-top",
9
+ "static": "pf-m-static"
9
10
  },
10
11
  "searchInput": "pf-c-search-input",
11
12
  "searchInputBar": "pf-c-search-input__bar",
@@ -3,7 +3,8 @@ export default {
3
3
  "button": "pf-c-button",
4
4
  "modifiers": {
5
5
  "hint": "pf-m-hint",
6
- "top": "pf-m-top"
6
+ "top": "pf-m-top",
7
+ "static": "pf-m-static"
7
8
  },
8
9
  "searchInput": "pf-c-search-input",
9
10
  "searchInputBar": "pf-c-search-input__bar",
@@ -390,8 +390,12 @@
390
390
  transform: translateY(var(--pf-c-select__menu--m-top--TranslateY));
391
391
  }
392
392
  .pf-c-select__menu.pf-m-static {
393
+ --pf-c-select__menu--m-top--TranslateY: 0;
393
394
  position: static;
394
395
  top: auto;
396
+ right: auto;
397
+ bottom: auto;
398
+ left: auto;
395
399
  z-index: auto;
396
400
  min-width: min-content;
397
401
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "4.91.7",
3
+ "version": "4.91.9",
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.218.0",
22
+ "@patternfly/patternfly": "4.219.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.7.4"
30
30
  },
31
31
  "license": "MIT",
32
- "gitHead": "449291fb1b567dc14afd99890cda544bfbe5f4ba"
32
+ "gitHead": "4c1b8219539ce61aa45bfefc935af732129404a5"
33
33
  }