@patternfly/react-styles 4.73.0 → 4.73.3
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 +27 -0
- package/css/components/MenuToggle/menu-toggle.css +16 -12
- package/package.json +3 -3
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.73.3 (2022-06-23)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## 4.73.2 (2022-06-23)
|
15
|
+
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
* **ProgressStepper:** added onTriggerEnter prop to Popover ([#7532](https://github.com/patternfly/patternfly-react/issues/7532)) ([1208390](https://github.com/patternfly/patternfly-react/commit/12083908a7043c017a5b7a97f84623add10bfe75))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
## 4.73.1 (2022-06-23)
|
26
|
+
|
27
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
6
33
|
# 4.73.0 (2022-06-22)
|
7
34
|
|
8
35
|
|
@@ -66,6 +66,8 @@
|
|
66
66
|
--pf-c-menu-toggle__icon--MarginRight: var(--pf-global--spacer--sm);
|
67
67
|
--pf-c-menu-toggle__count--MarginLeft: var(--pf-global--spacer--sm);
|
68
68
|
--pf-c-menu-toggle__controls--PaddingLeft: var(--pf-global--spacer--md);
|
69
|
+
--pf-c-menu-toggle__controls--MarginLeft: auto;
|
70
|
+
--pf-c-menu-toggle__controls--MarginRight: 0;
|
69
71
|
--pf-c-menu-toggle__toggle-icon--MarginRight: var(--pf-global--spacer--sm);
|
70
72
|
--pf-c-menu-toggle--m-plain__toggle-icon--Color: var(--pf-global--Color--200);
|
71
73
|
--pf-c-menu-toggle--m-plain--hover__toggle-icon--Color: var(--pf-global--Color--100);
|
@@ -106,10 +108,8 @@
|
|
106
108
|
--pf-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor: var(--pf-global--primary-color--100);
|
107
109
|
--pf-c-menu-toggle__button__controls--MarginRight: var(--pf-global--spacer--sm);
|
108
110
|
--pf-c-menu-toggle__button__controls--MarginLeft: var(--pf-global--spacer--sm);
|
109
|
-
--pf-c-menu-toggle--m-
|
110
|
-
--pf-c-menu-toggle--m-
|
111
|
-
--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginBottom: calc(var(--pf-c-menu-toggle--PaddingBottom) * -1);
|
112
|
-
--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginLeft: calc(var(--pf-c-menu-toggle--PaddingLeft) * -1);
|
111
|
+
--pf-c-menu-toggle--m-typeahead__controls--MarginRight: var(--pf-global--spacer--md);
|
112
|
+
--pf-c-menu-toggle--m-typeahead__controls--MarginLeft: var(--pf-global--spacer--sm);
|
113
113
|
--pf-c-menu-toggle--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(--pf-global--spacer--sm);
|
114
114
|
position: relative;
|
115
115
|
display: inline-flex;
|
@@ -242,13 +242,18 @@
|
|
242
242
|
--pf-c-menu-toggle--active--after--BorderBottomWidth: var(--pf-c-menu-toggle--m-full-height--active--after--BorderBottomWidth);
|
243
243
|
height: 100%;
|
244
244
|
}
|
245
|
+
.pf-c-menu-toggle.pf-m-typeahead {
|
246
|
+
--pf-c-menu-toggle__button__controls--MarginRight: var(--pf-c-menu-toggle--m-typeahead__controls--MarginRight);
|
247
|
+
--pf-c-menu-toggle__button__controls--MarginLeft: var(--pf-c-menu-toggle--m-typeahead__controls--MarginLeft);
|
248
|
+
align-items: stretch;
|
249
|
+
padding: 0;
|
250
|
+
}
|
245
251
|
.pf-c-menu-toggle.pf-m-typeahead .pf-c-text-input-group {
|
246
252
|
--pf-c-text-input-group__utilities--c-button--PaddingRight: var(--pf-c-menu-toggle--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight);
|
253
|
+
--pf-c-text-input-group__utilities--MarginRight: 0;
|
247
254
|
flex: 1;
|
248
|
-
margin: var(--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginTop) var(--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginRight) var(--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginBottom) var(--pf-c-menu-toggle--m-typeahead--c-text-input-group--MarginLeft);
|
249
255
|
}
|
250
256
|
.pf-c-menu-toggle.pf-m-split-button {
|
251
|
-
--pf-c-menu-toggle__toggle-icon--MarginRight: 0;
|
252
257
|
padding: 0;
|
253
258
|
}
|
254
259
|
.pf-c-menu-toggle.pf-m-split-button > * {
|
@@ -352,14 +357,12 @@
|
|
352
357
|
}
|
353
358
|
|
354
359
|
.pf-c-menu-toggle__button {
|
360
|
+
--pf-c-menu-toggle__controls--PaddingLeft: 0;
|
361
|
+
--pf-c-menu-toggle__controls--MarginRight: var(--pf-c-menu-toggle__button__controls--MarginRight);
|
362
|
+
--pf-c-menu-toggle__controls--MarginLeft: var(--pf-c-menu-toggle__button__controls--MarginLeft);
|
355
363
|
color: inherit;
|
356
364
|
border: 0;
|
357
365
|
}
|
358
|
-
.pf-c-menu-toggle__button .pf-c-menu-toggle__controls {
|
359
|
-
padding-left: 0;
|
360
|
-
margin-right: var(--pf-c-menu-toggle__button__controls--MarginRight);
|
361
|
-
margin-left: var(--pf-c-menu-toggle__button__controls--MarginLeft);
|
362
|
-
}
|
363
366
|
|
364
367
|
.pf-c-menu-toggle__icon {
|
365
368
|
display: inline-flex;
|
@@ -384,7 +387,8 @@
|
|
384
387
|
|
385
388
|
.pf-c-menu-toggle__controls {
|
386
389
|
padding-left: var(--pf-c-menu-toggle__controls--PaddingLeft);
|
387
|
-
margin-
|
390
|
+
margin-right: var(--pf-c-menu-toggle__controls--MarginRight);
|
391
|
+
margin-left: var(--pf-c-menu-toggle__controls--MarginLeft);
|
388
392
|
}
|
389
393
|
|
390
394
|
.pf-c-menu-toggle__toggle-icon {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.73.
|
3
|
+
"version": "4.73.3",
|
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.202.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": "4a38be0bce3d08537de52cbd42415611c0a2b218"
|
33
33
|
}
|