@atlaskit/ds-explorations 4.3.0 → 4.3.1
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/ds-explorations",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "DEPRECATED. Use @atlaskit/primitives. An experimental package for exploration and validation of spacing / typography foundations.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -16,8 +16,6 @@
|
|
|
16
16
|
"atlaskit:src": "src/index.tsx",
|
|
17
17
|
"atlassian": {
|
|
18
18
|
"team": "Design System Team",
|
|
19
|
-
"inPublicMirror": false,
|
|
20
|
-
"releaseModel": "continuous",
|
|
21
19
|
"runReact18": true
|
|
22
20
|
},
|
|
23
21
|
"scripts": {
|
|
@@ -26,7 +24,7 @@
|
|
|
26
24
|
"prepare": "yarn ak-postbuild"
|
|
27
25
|
},
|
|
28
26
|
"dependencies": {
|
|
29
|
-
"@atlaskit/tokens": "^
|
|
27
|
+
"@atlaskit/tokens": "^2.0.0",
|
|
30
28
|
"@babel/runtime": "^7.0.0",
|
|
31
29
|
"@emotion/react": "^11.7.1"
|
|
32
30
|
},
|
|
@@ -36,7 +34,7 @@
|
|
|
36
34
|
"devDependencies": {
|
|
37
35
|
"@af/formatting": "*",
|
|
38
36
|
"@atlaskit/ds-lib": "*",
|
|
39
|
-
"@atlaskit/primitives": "^12.
|
|
37
|
+
"@atlaskit/primitives": "^12.2.0",
|
|
40
38
|
"@atlaskit/textfield": "^6.5.0",
|
|
41
39
|
"@atlaskit/visual-regression": "*",
|
|
42
40
|
"@atlassian/codegen": "^0.1.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { fireEvent, render, screen } from '@testing-library/react';
|
|
4
4
|
|
|
5
5
|
import { Box, Text } from '@atlaskit/primitives';
|
|
6
6
|
import { token } from '@atlaskit/tokens';
|
|
@@ -9,33 +9,31 @@ import { UNSAFE_InteractionSurface as InteractionSurface } from '../../../index'
|
|
|
9
9
|
|
|
10
10
|
describe('InteractionSurface component', () => {
|
|
11
11
|
it('should render by itself', () => {
|
|
12
|
-
|
|
12
|
+
render(
|
|
13
13
|
<InteractionSurface testId="basic">
|
|
14
14
|
<></>
|
|
15
15
|
</InteractionSurface>,
|
|
16
16
|
);
|
|
17
|
-
expect(getByTestId('basic')).toBeInTheDocument();
|
|
17
|
+
expect(screen.getByTestId('basic')).toBeInTheDocument();
|
|
18
18
|
});
|
|
19
19
|
it('should render given a neutral hover interaction by default', () => {
|
|
20
|
-
|
|
20
|
+
render(
|
|
21
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
22
22
|
<div style={{ position: 'relative' }}>
|
|
23
23
|
<InteractionSurface testId="surface">hello</InteractionSurface>
|
|
24
24
|
</div>,
|
|
25
25
|
);
|
|
26
26
|
|
|
27
|
-
const surfaceElement = getByTestId('surface');
|
|
27
|
+
const surfaceElement = screen.getByTestId('surface');
|
|
28
28
|
expect(getComputedStyle(surfaceElement).backgroundColor).toBe('');
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
);
|
|
34
|
-
});
|
|
29
|
+
fireEvent.mouseOver(surfaceElement);
|
|
30
|
+
expect(surfaceElement).toHaveStyle(
|
|
31
|
+
`background-color: ${token('color.background.neutral.bold.hovered')}`,
|
|
32
|
+
);
|
|
35
33
|
});
|
|
36
34
|
|
|
37
35
|
it('should render given a brand hover interaction by if set as brand', () => {
|
|
38
|
-
|
|
36
|
+
render(
|
|
39
37
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
40
38
|
<div style={{ position: 'relative' }}>
|
|
41
39
|
<InteractionSurface appearance="brand.bold" testId="surface">
|
|
@@ -44,18 +42,16 @@ describe('InteractionSurface component', () => {
|
|
|
44
42
|
</div>,
|
|
45
43
|
);
|
|
46
44
|
|
|
47
|
-
const surfaceElement = getByTestId('surface');
|
|
45
|
+
const surfaceElement = screen.getByTestId('surface');
|
|
48
46
|
expect(getComputedStyle(surfaceElement).backgroundColor).toBe('');
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
);
|
|
54
|
-
});
|
|
47
|
+
fireEvent.mouseOver(surfaceElement);
|
|
48
|
+
expect(surfaceElement).toHaveStyle(
|
|
49
|
+
`background-color: ${token('color.background.brand.bold.hovered')}`,
|
|
50
|
+
);
|
|
55
51
|
});
|
|
56
52
|
|
|
57
53
|
it('should render an inherited hover state if a Box context is present', () => {
|
|
58
|
-
|
|
54
|
+
render(
|
|
59
55
|
<Box backgroundColor="color.background.brand.bold">
|
|
60
56
|
<InteractionSurface testId="surface">
|
|
61
57
|
<Text>hello</Text>
|
|
@@ -63,13 +59,11 @@ describe('InteractionSurface component', () => {
|
|
|
63
59
|
</Box>,
|
|
64
60
|
);
|
|
65
61
|
|
|
66
|
-
const surfaceElement = getByTestId('surface');
|
|
62
|
+
const surfaceElement = screen.getByTestId('surface');
|
|
67
63
|
expect(getComputedStyle(surfaceElement).backgroundColor).toBe('');
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
);
|
|
73
|
-
});
|
|
64
|
+
fireEvent.mouseOver(surfaceElement);
|
|
65
|
+
expect(surfaceElement).toHaveStyle(
|
|
66
|
+
`background-color: ${token('color.background.brand.bold.hovered')}`,
|
|
67
|
+
);
|
|
74
68
|
});
|
|
75
69
|
});
|