@atlaskit/ds-explorations 1.3.1 → 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 +12 -0
- package/dist/cjs/components/inline.partial.js +3 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/inline.partial.js +3 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/inline.partial.js +3 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/components/inline.partial.d.ts +1 -0
- package/examples/99-interactions.tsx +1 -1
- package/package.json +1 -1
- package/report.api.md +14 -0
- package/src/components/inline.partial.tsx +1 -0
- package/tmp/api-report-tmp.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 1.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`f824dcfff6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f824dcfff6e) - Internal changes to satisfy various lint warnings & errors
|
|
14
|
+
|
|
3
15
|
## 1.3.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -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;
|
|
@@ -28,7 +28,7 @@ const fieldsetStyles = css({
|
|
|
28
28
|
borderColor: token('color.border.danger', 'red'),
|
|
29
29
|
},
|
|
30
30
|
':focus, :focus-within': {
|
|
31
|
-
backgroundColor: token('color.background.input'),
|
|
31
|
+
backgroundColor: token('color.background.input', '#FAFBFC'),
|
|
32
32
|
borderColor: token('color.border.focused', 'blue'),
|
|
33
33
|
},
|
|
34
34
|
});
|
package/package.json
CHANGED
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' }),
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -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;
|