@atlaskit/ds-explorations 1.3.2 → 1.4.0

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,11 @@
1
1
  # @atlaskit/ds-explorations
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7f886c0aa18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f886c0aa18) - The `Inline` component now allows children to be justified 'space-between'.
8
+
3
9
  ## 1.3.2
4
10
 
5
11
  ### Patch Changes
@@ -37,6 +37,9 @@ var flexJustifyContentMap = {
37
37
  flexStart: (0, _react2.css)({
38
38
  justifyContent: 'flex-start'
39
39
  }),
40
+ 'space-between': (0, _react2.css)({
41
+ justifyContent: 'space-between'
42
+ }),
40
43
  flexEnd: (0, _react2.css)({
41
44
  justifyContent: 'flex-end'
42
45
  }),
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "sideEffects": false
5
5
  }
@@ -28,6 +28,9 @@ const flexJustifyContentMap = {
28
28
  flexStart: css({
29
29
  justifyContent: 'flex-start'
30
30
  }),
31
+ 'space-between': css({
32
+ justifyContent: 'space-between'
33
+ }),
31
34
  flexEnd: css({
32
35
  justifyContent: 'flex-end'
33
36
  }),
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "sideEffects": false
5
5
  }
@@ -28,6 +28,9 @@ var flexJustifyContentMap = {
28
28
  flexStart: css({
29
29
  justifyContent: 'flex-start'
30
30
  }),
31
+ 'space-between': css({
32
+ justifyContent: 'space-between'
33
+ }),
31
34
  flexEnd: css({
32
35
  justifyContent: 'flex-end'
33
36
  }),
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "sideEffects": false
5
5
  }
@@ -41,6 +41,7 @@ declare type FlexJustifyContent = keyof typeof flexJustifyContentMap;
41
41
  declare const flexJustifyContentMap: {
42
42
  center: import("@emotion/react").SerializedStyles;
43
43
  flexStart: import("@emotion/react").SerializedStyles;
44
+ 'space-between': import("@emotion/react").SerializedStyles;
44
45
  flexEnd: import("@emotion/react").SerializedStyles;
45
46
  start: import("@emotion/react").SerializedStyles;
46
47
  end: import("@emotion/react").SerializedStyles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "An experimental package for exploration and validation of spacing / typography foundations.",
5
5
  "license": "Apache-2.0",
6
6
  "atlassian": {
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -279,6 +280,7 @@ const flexJustifyContentMap: {
279
280
  const flexJustifyContentMap_2: {
280
281
  center: SerializedStyles;
281
282
  flexStart: SerializedStyles;
283
+ 'space-between': SerializedStyles;
282
284
  flexEnd: SerializedStyles;
283
285
  start: SerializedStyles;
284
286
  end: SerializedStyles;
@@ -609,3 +611,15 @@ const widthMap: {
609
611
  ```
610
612
 
611
613
  <!--SECTION END: Main Entry Types-->
614
+
615
+ ### Peer Dependencies
616
+
617
+ <!--SECTION START: Peer Dependencies-->
618
+
619
+ ```json
620
+ {
621
+ "react": "^16.8.0"
622
+ }
623
+ ```
624
+
625
+ <!--SECTION END: Peer Dependencies-->
@@ -49,6 +49,7 @@ type FlexJustifyContent = keyof typeof flexJustifyContentMap;
49
49
  const flexJustifyContentMap = {
50
50
  center: css({ justifyContent: 'center' }),
51
51
  flexStart: css({ justifyContent: 'flex-start' }),
52
+ 'space-between': css({ justifyContent: 'space-between' }),
52
53
  flexEnd: css({ justifyContent: 'flex-end' }),
53
54
  start: css({ justifyContent: 'start' }),
54
55
  end: css({ justifyContent: 'end' }),
@@ -264,6 +264,7 @@ const flexJustifyContentMap: {
264
264
  const flexJustifyContentMap_2: {
265
265
  center: SerializedStyles;
266
266
  flexStart: SerializedStyles;
267
+ 'space-between': SerializedStyles;
267
268
  flexEnd: SerializedStyles;
268
269
  start: SerializedStyles;
269
270
  end: SerializedStyles;