@atlaskit/ds-explorations 2.0.7 → 2.0.8
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 +6 -0
- package/dist/cjs/components/box.partial.js +2 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/box.partial.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/box.partial.js +2 -2
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
- package/src/components/box.partial.tsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/ds-explorations
|
|
2
2
|
|
|
3
|
+
## 2.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6ce08fbcba2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ce08fbcba2) - [ux] Fixed a bug where the `<Box>` `justifyContent` prop was mistakenly applying `alignItems` for `start` and `end` values
|
|
8
|
+
|
|
3
9
|
## 2.0.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -160,10 +160,10 @@ var flexJustifyContentMap = {
|
|
|
160
160
|
justifyContent: 'flex-end'
|
|
161
161
|
}),
|
|
162
162
|
start: (0, _react2.css)({
|
|
163
|
-
|
|
163
|
+
justifyContent: 'start'
|
|
164
164
|
}),
|
|
165
165
|
end: (0, _react2.css)({
|
|
166
|
-
|
|
166
|
+
justifyContent: 'end'
|
|
167
167
|
})
|
|
168
168
|
};
|
|
169
169
|
var displayMap = {
|
package/dist/cjs/version.json
CHANGED
|
@@ -152,10 +152,10 @@ const flexJustifyContentMap = {
|
|
|
152
152
|
justifyContent: 'flex-end'
|
|
153
153
|
}),
|
|
154
154
|
start: css({
|
|
155
|
-
|
|
155
|
+
justifyContent: 'start'
|
|
156
156
|
}),
|
|
157
157
|
end: css({
|
|
158
|
-
|
|
158
|
+
justifyContent: 'end'
|
|
159
159
|
})
|
|
160
160
|
};
|
|
161
161
|
const displayMap = {
|
package/dist/es2019/version.json
CHANGED
|
@@ -155,10 +155,10 @@ var flexJustifyContentMap = {
|
|
|
155
155
|
justifyContent: 'flex-end'
|
|
156
156
|
}),
|
|
157
157
|
start: css({
|
|
158
|
-
|
|
158
|
+
justifyContent: 'start'
|
|
159
159
|
}),
|
|
160
160
|
end: css({
|
|
161
|
-
|
|
161
|
+
justifyContent: 'end'
|
|
162
162
|
})
|
|
163
163
|
};
|
|
164
164
|
var displayMap = {
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -285,8 +285,8 @@ const flexJustifyContentMap = {
|
|
|
285
285
|
center: css({ justifyContent: 'center' }),
|
|
286
286
|
flexStart: css({ justifyContent: 'flex-start' }),
|
|
287
287
|
flexEnd: css({ justifyContent: 'flex-end' }),
|
|
288
|
-
start: css({
|
|
289
|
-
end: css({
|
|
288
|
+
start: css({ justifyContent: 'start' }),
|
|
289
|
+
end: css({ justifyContent: 'end' }),
|
|
290
290
|
};
|
|
291
291
|
|
|
292
292
|
type Display = keyof typeof displayMap;
|