@atlaskit/ds-explorations 2.3.2 → 3.0.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,17 @@
1
1
  # @atlaskit/ds-explorations
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#41301](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41301) [`5f80fdb81a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f80fdb81a0) - Remove Box, Inline, Stack components. These components are deprecated in favour of @atlaskit/primitives.
8
+
9
+ ## 2.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#41275](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41275) [`1fd49b30e7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fd49b30e7e) - Revert removal of Box, Inline, Stack entry-points.
14
+
3
15
  ## 2.3.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "2.3.2",
3
+ "version": "3.0.0",
4
4
  "description": "An experimental package for exploration and validation of spacing / typography foundations.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -25,7 +25,6 @@
25
25
  "prepare": "yarn ak-postbuild"
26
26
  },
27
27
  "dependencies": {
28
- "@atlaskit/primitives": "^1.6.0",
29
28
  "@atlaskit/tokens": "^1.25.0",
30
29
  "@babel/runtime": "^7.0.0",
31
30
  "@emotion/react": "^11.7.1",
@@ -36,6 +35,7 @@
36
35
  },
37
36
  "devDependencies": {
38
37
  "@atlaskit/ds-lib": "*",
38
+ "@atlaskit/primitives": "^1.6.0",
39
39
  "@atlaskit/visual-regression": "*",
40
40
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
41
41
  "@atlassian/codegen": "^0.1.0",
package/tsconfig.dev.json CHANGED
@@ -39,9 +39,6 @@
39
39
  {
40
40
  "path": "../../../build/test-tooling/gemini-visual-regression/tsconfig.app.json"
41
41
  },
42
- {
43
- "path": "../badge/tsconfig.app.json"
44
- },
45
42
  {
46
43
  "path": "../button/tsconfig.app.json"
47
44
  },
@@ -1,27 +0,0 @@
1
- import React from 'react';
2
-
3
- import Badge from '@atlaskit/badge';
4
- import { Box, xcss } from '@atlaskit/primitives';
5
-
6
- import Text from '../src/components/text.partial';
7
-
8
- const containerStyles = xcss({
9
- borderRadius: 'border.radius.200',
10
- display: 'inlineFlex',
11
- lineHeight: '16px',
12
- });
13
-
14
- export default () => {
15
- return (
16
- <>
17
- <Badge>{8}</Badge>
18
- <Box
19
- xcss={containerStyles}
20
- backgroundColor="color.background.neutral"
21
- paddingInline="space.075"
22
- >
23
- <Text fontSize="size.075">8</Text>
24
- </Box>
25
- </>
26
- );
27
- };