@atlaskit/util-data-test 17.6.6 → 17.6.8

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/util-data-test
2
2
 
3
+ ## 17.6.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 17.6.7
10
+
11
+ ### Patch Changes
12
+
13
+ - [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
14
+
3
15
  ## 17.6.6
4
16
 
5
17
  ### Patch Changes
@@ -17,8 +17,6 @@ var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron
17
17
 
18
18
  var _colors = require("@atlaskit/theme/colors");
19
19
 
20
- var _tokens = require("@atlaskit/tokens");
21
-
22
20
  /** @jsx jsx */
23
21
  var wrapper = (0, _react2.css)({
24
22
  display: 'flex'
@@ -44,7 +42,7 @@ var _default = function _default() {
44
42
  testId: "chevron-right-icon",
45
43
  label: "chevron right",
46
44
  size: "large",
47
- primaryColor: (0, _tokens.token)('color.text.subtlest', isMouseHovered ? _colors.N200 : _colors.N50)
45
+ primaryColor: "var(--ds-text-subtlest, ".concat(isMouseHovered ? _colors.N200 : _colors.N50, ")")
48
46
  }));
49
47
  };
50
48
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.6.6"
3
+ "version": "17.6.8"
4
4
  }
@@ -3,7 +3,6 @@ import { useCallback, useState } from 'react';
3
3
  import { css, jsx } from '@emotion/react';
4
4
  import ChevronRightIcon from '@atlaskit/icon/glyph/chevron-right';
5
5
  import { N50, N200 } from '@atlaskit/theme/colors';
6
- import { token } from '@atlaskit/tokens';
7
6
  const wrapper = css({
8
7
  display: 'flex'
9
8
  });
@@ -19,6 +18,6 @@ export default (() => {
19
18
  testId: "chevron-right-icon",
20
19
  label: "chevron right",
21
20
  size: "large",
22
- primaryColor: token('color.text.subtlest', isMouseHovered ? N200 : N50)
21
+ primaryColor: `var(--ds-text-subtlest, ${isMouseHovered ? N200 : N50})`
23
22
  }));
24
23
  });
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.6.6"
3
+ "version": "17.6.8"
4
4
  }
@@ -5,7 +5,6 @@ import { useCallback, useState } from 'react';
5
5
  import { css, jsx } from '@emotion/react';
6
6
  import ChevronRightIcon from '@atlaskit/icon/glyph/chevron-right';
7
7
  import { N50, N200 } from '@atlaskit/theme/colors';
8
- import { token } from '@atlaskit/tokens';
9
8
  var wrapper = css({
10
9
  display: 'flex'
11
10
  });
@@ -29,6 +28,6 @@ export default (function () {
29
28
  testId: "chevron-right-icon",
30
29
  label: "chevron right",
31
30
  size: "large",
32
- primaryColor: token('color.text.subtlest', isMouseHovered ? N200 : N50)
31
+ primaryColor: "var(--ds-text-subtlest, ".concat(isMouseHovered ? N200 : N50, ")")
33
32
  }));
34
33
  });
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.6.6"
3
+ "version": "17.6.8"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.6.6",
3
+ "version": "17.6.8",
4
4
  "description": "Shared test and story data",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -71,11 +71,11 @@
71
71
  "@atlaskit/emoji": "^67.0.0",
72
72
  "@atlaskit/icon": "^21.11.0",
73
73
  "@atlaskit/mention": "^21.0.0",
74
- "@atlaskit/profilecard": "^18.0.0",
74
+ "@atlaskit/profilecard": "^18.1.0",
75
75
  "@atlaskit/task-decision": "^17.5.0",
76
76
  "@atlaskit/theme": "^12.2.1",
77
77
  "@atlaskit/tokens": "^0.13.0",
78
- "@atlaskit/user-picker": "^9.7.0",
78
+ "@atlaskit/user-picker": "^10.0.0",
79
79
  "@atlaskit/util-service-support": "^6.1.0",
80
80
  "@babel/runtime": "^7.0.0",
81
81
  "@emotion/react": "^11.7.1",