@atlaskit/ds-explorations 2.0.7 → 2.0.9

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/ds-explorations
2
2
 
3
+ ## 2.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
8
+
9
+ ## 2.0.8
10
+
11
+ ### Patch Changes
12
+
13
+ - [`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
14
+
3
15
  ## 2.0.7
4
16
 
5
17
  ### Patch Changes
@@ -160,10 +160,10 @@ var flexJustifyContentMap = {
160
160
  justifyContent: 'flex-end'
161
161
  }),
162
162
  start: (0, _react2.css)({
163
- alignItems: 'start'
163
+ justifyContent: 'start'
164
164
  }),
165
165
  end: (0, _react2.css)({
166
- alignItems: 'end'
166
+ justifyContent: 'end'
167
167
  })
168
168
  };
169
169
  var displayMap = {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "sideEffects": false
5
5
  }
@@ -152,10 +152,10 @@ const flexJustifyContentMap = {
152
152
  justifyContent: 'flex-end'
153
153
  }),
154
154
  start: css({
155
- alignItems: 'start'
155
+ justifyContent: 'start'
156
156
  }),
157
157
  end: css({
158
- alignItems: 'end'
158
+ justifyContent: 'end'
159
159
  })
160
160
  };
161
161
  const displayMap = {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "sideEffects": false
5
5
  }
@@ -155,10 +155,10 @@ var flexJustifyContentMap = {
155
155
  justifyContent: 'flex-end'
156
156
  }),
157
157
  start: css({
158
- alignItems: 'start'
158
+ justifyContent: 'start'
159
159
  }),
160
160
  end: css({
161
- alignItems: 'end'
161
+ justifyContent: 'end'
162
162
  })
163
163
  };
164
164
  var displayMap = {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "An experimental package for exploration and validation of spacing / typography foundations.",
5
5
  "license": "Apache-2.0",
6
6
  "atlassian": {
@@ -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({ alignItems: 'start' }),
289
- end: css({ alignItems: 'end' }),
288
+ start: css({ justifyContent: 'start' }),
289
+ end: css({ justifyContent: 'end' }),
290
290
  };
291
291
 
292
292
  type Display = keyof typeof displayMap;
@@ -79,7 +79,7 @@ const dividerStyles = css({
79
79
  userSelect: 'none',
80
80
  });
81
81
 
82
- const Divider: FC = ({ children }) => (
82
+ const Divider: FC<{ children: string }> = ({ children }) => (
83
83
  <span css={dividerStyles}>{children}</span>
84
84
  );
85
85