carbon-react 106.6.5 → 106.6.6

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.
@@ -76,13 +76,8 @@ const StyledButton = styled.button`
76
76
  align-items: center;
77
77
  cursor: ${disabled ? "not-allowed" : "pointer"};
78
78
  display: inline-flex;
79
- flex-direction: column;
80
- flex-flow: wrap;
81
79
  border-radius: 0;
82
-
83
- ${noWrap && css`
84
- white-space: nowrap;
85
- `}
80
+ ${noWrap ? "white-space: nowrap;" : "flex-flow: wrap;"}
86
81
  justify-content: center;
87
82
  vertical-align: middle;
88
83
  outline-offset: 0;
@@ -93,13 +93,8 @@ const StyledButton = _styledComponents.default.button`
93
93
  align-items: center;
94
94
  cursor: ${disabled ? "not-allowed" : "pointer"};
95
95
  display: inline-flex;
96
- flex-direction: column;
97
- flex-flow: wrap;
98
96
  border-radius: 0;
99
-
100
- ${noWrap && (0, _styledComponents.css)`
101
- white-space: nowrap;
102
- `}
97
+ ${noWrap ? "white-space: nowrap;" : "flex-flow: wrap;"}
103
98
  justify-content: center;
104
99
  vertical-align: middle;
105
100
  outline-offset: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "106.6.5",
3
+ "version": "106.6.6",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {