@atlaskit/inline-message 11.5.7 → 11.5.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,11 @@
1
1
  # @atlaskit/inline-message
2
2
 
3
+ ## 11.5.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#42261](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42261) [`5bbffa62596`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5bbffa62596) - Remove shadowed variable and use type imports
8
+
3
9
  ## 11.5.7
4
10
 
5
11
  ### Patch Changes
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- var _typeof = require("@babel/runtime/helpers/typeof");
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
@@ -12,12 +11,10 @@ var _react = require("react");
12
11
  var _react2 = require("@emotion/react");
13
12
  var _customThemeButton = _interopRequireDefault(require("@atlaskit/button/custom-theme-button"));
14
13
  var _inlineDialog = _interopRequireDefault(require("@atlaskit/inline-dialog"));
15
- var colors = _interopRequireWildcard(require("@atlaskit/theme/colors"));
14
+ var _colors = require("@atlaskit/theme/colors");
16
15
  var _components = require("@atlaskit/theme/components");
17
16
  var _constants = require("../../constants");
18
17
  var _messageIcon = _interopRequireDefault(require("../message-icon"));
19
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
20
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
21
18
  /** @jsx jsx */
22
19
 
23
20
  var buttonContentsStyles = (0, _react2.css)({
@@ -61,33 +58,33 @@ var rootStyles = (0, _react2.css)({
61
58
  }
62
59
  });
63
60
  var titleColor = (0, _components.themed)({
64
- light: "var(--ds-text, ".concat(colors.N600, ")"),
65
- dark: "var(--ds-text, ".concat(colors.DN600, ")")
61
+ light: "var(--ds-text, ".concat(_colors.N600, ")"),
62
+ dark: "var(--ds-text, ".concat(_colors.DN600, ")")
66
63
  });
67
64
  var textColor = (0, _components.themed)({
68
- light: "var(--ds-text-subtlest, ".concat(colors.N300, ")"),
69
- dark: "var(--ds-text-subtlest, ".concat(colors.DN100, ")")
65
+ light: "var(--ds-text-subtlest, ".concat(_colors.N300, ")"),
66
+ dark: "var(--ds-text-subtlest, ".concat(_colors.DN100, ")")
70
67
  });
71
68
  var iconColor = (0, _components.themed)('appearance', {
72
69
  connectivity: {
73
- light: "var(--ds-icon-brand, ".concat(colors.B300, ")"),
74
- dark: "var(--ds-icon-brand, ".concat(colors.B75, ")")
70
+ light: "var(--ds-icon-brand, ".concat(_colors.B300, ")"),
71
+ dark: "var(--ds-icon-brand, ".concat(_colors.B75, ")")
75
72
  },
76
73
  confirmation: {
77
- light: "var(--ds-icon-success, ".concat(colors.G200, ")"),
78
- dark: "var(--ds-icon-success, ".concat(colors.G200, ")")
74
+ light: "var(--ds-icon-success, ".concat(_colors.G200, ")"),
75
+ dark: "var(--ds-icon-success, ".concat(_colors.G200, ")")
79
76
  },
80
77
  info: {
81
- light: "var(--ds-icon-discovery, ".concat(colors.P200, ")"),
82
- dark: "var(--ds-icon-discovery, ".concat(colors.P200, ")")
78
+ light: "var(--ds-icon-discovery, ".concat(_colors.P200, ")"),
79
+ dark: "var(--ds-icon-discovery, ".concat(_colors.P200, ")")
83
80
  },
84
81
  warning: {
85
- light: "var(--ds-icon-warning, ".concat(colors.Y200, ")"),
86
- dark: "var(--ds-icon-warning, ".concat(colors.Y200, ")")
82
+ light: "var(--ds-icon-warning, ".concat(_colors.Y200, ")"),
83
+ dark: "var(--ds-icon-warning, ".concat(_colors.Y200, ")")
87
84
  },
88
85
  error: {
89
- light: "var(--ds-icon-danger, ".concat(colors.R300, ")"),
90
- dark: "var(--ds-icon-danger, ".concat(colors.R300, ")")
86
+ light: "var(--ds-icon-danger, ".concat(_colors.R300, ")"),
87
+ dark: "var(--ds-icon-danger, ".concat(_colors.R300, ")")
91
88
  }
92
89
  });
93
90
 
@@ -1,38 +1,35 @@
1
1
  "use strict";
2
2
 
3
- var _typeof = require("@babel/runtime/helpers/typeof");
4
3
  Object.defineProperty(exports, "__esModule", {
5
4
  value: true
6
5
  });
7
6
  exports.default = void 0;
8
7
  var _react = require("@emotion/react");
9
- var colors = _interopRequireWildcard(require("@atlaskit/theme/colors"));
8
+ var _colors = require("@atlaskit/theme/colors");
10
9
  var _components = require("@atlaskit/theme/components");
11
10
  var _constants = require("../../constants");
12
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
13
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
14
11
  /** @jsx jsx */
15
12
 
16
13
  var iconColor = (0, _components.themed)('appearance', {
17
14
  connectivity: {
18
- light: "var(--ds-icon-brand, ".concat(colors.B400, ")"),
19
- dark: "var(--ds-icon-brand, ".concat(colors.B100, ")")
15
+ light: "var(--ds-icon-brand, ".concat(_colors.B400, ")"),
16
+ dark: "var(--ds-icon-brand, ".concat(_colors.B100, ")")
20
17
  },
21
18
  confirmation: {
22
- light: "var(--ds-icon-success, ".concat(colors.G300, ")"),
23
- dark: "var(--ds-icon-success, ".concat(colors.G300, ")")
19
+ light: "var(--ds-icon-success, ".concat(_colors.G300, ")"),
20
+ dark: "var(--ds-icon-success, ".concat(_colors.G300, ")")
24
21
  },
25
22
  info: {
26
- light: "var(--ds-icon-discovery, ".concat(colors.P300, ")"),
27
- dark: "var(--ds-icon-discovery, ".concat(colors.P300, ")")
23
+ light: "var(--ds-icon-discovery, ".concat(_colors.P300, ")"),
24
+ dark: "var(--ds-icon-discovery, ".concat(_colors.P300, ")")
28
25
  },
29
26
  warning: {
30
- light: "var(--ds-icon-warning, ".concat(colors.Y300, ")"),
31
- dark: "var(--ds-icon-warning, ".concat(colors.Y300, ")")
27
+ light: "var(--ds-icon-warning, ".concat(_colors.Y300, ")"),
28
+ dark: "var(--ds-icon-warning, ".concat(_colors.Y300, ")")
32
29
  },
33
30
  error: {
34
- light: "var(--ds-icon-danger, ".concat(colors.R400, ")"),
35
- dark: "var(--ds-icon-danger, ".concat(colors.R400, ")")
31
+ light: "var(--ds-icon-danger, ".concat(_colors.R400, ")"),
32
+ dark: "var(--ds-icon-danger, ".concat(_colors.R400, ")")
36
33
  }
37
34
  });
38
35
  var iconWrapperStyles = (0, _react.css)({
@@ -56,7 +53,7 @@ var SelectedIcon = function SelectedIcon(_ref) {
56
53
  isOpen = _ref.isOpen,
57
54
  label = _ref.label;
58
55
  var _typesMapping$appeara = _constants.typesMapping[appearance],
59
- SelectedIcon = _typesMapping$appeara.icon,
56
+ Icon = _typesMapping$appeara.icon,
60
57
  defaultLabel = _typesMapping$appeara.defaultLabel;
61
58
  var theme = (0, _components.useGlobalTheme)();
62
59
  return (0, _react.jsx)("span", {
@@ -68,7 +65,7 @@ var SelectedIcon = function SelectedIcon(_ref) {
68
65
  })
69
66
  },
70
67
  css: [iconWrapperStyles, isOpen && iconColorStyles]
71
- }, (0, _react.jsx)(SelectedIcon, {
68
+ }, (0, _react.jsx)(Icon, {
72
69
  testId: "inline-message-icon",
73
70
  label: label || defaultLabel,
74
71
  size: "medium"
@@ -3,7 +3,7 @@ import { useCallback, useState } from 'react';
3
3
  import { css, jsx } from '@emotion/react';
4
4
  import Button from '@atlaskit/button/custom-theme-button';
5
5
  import InlineDialog from '@atlaskit/inline-dialog';
6
- import * as colors from '@atlaskit/theme/colors';
6
+ import { B300, B75, DN100, DN600, G200, N300, N600, P200, R300, Y200 } from '@atlaskit/theme/colors';
7
7
  import { themed, useGlobalTheme } from '@atlaskit/theme/components';
8
8
  import { VAR_SECONDARY_TEXT_COLOR } from '../../constants';
9
9
  import MessageIcon from '../message-icon';
@@ -48,33 +48,33 @@ const rootStyles = css({
48
48
  }
49
49
  });
50
50
  const titleColor = themed({
51
- light: `var(--ds-text, ${colors.N600})`,
52
- dark: `var(--ds-text, ${colors.DN600})`
51
+ light: `var(--ds-text, ${N600})`,
52
+ dark: `var(--ds-text, ${DN600})`
53
53
  });
54
54
  const textColor = themed({
55
- light: `var(--ds-text-subtlest, ${colors.N300})`,
56
- dark: `var(--ds-text-subtlest, ${colors.DN100})`
55
+ light: `var(--ds-text-subtlest, ${N300})`,
56
+ dark: `var(--ds-text-subtlest, ${DN100})`
57
57
  });
58
58
  const iconColor = themed('appearance', {
59
59
  connectivity: {
60
- light: `var(--ds-icon-brand, ${colors.B300})`,
61
- dark: `var(--ds-icon-brand, ${colors.B75})`
60
+ light: `var(--ds-icon-brand, ${B300})`,
61
+ dark: `var(--ds-icon-brand, ${B75})`
62
62
  },
63
63
  confirmation: {
64
- light: `var(--ds-icon-success, ${colors.G200})`,
65
- dark: `var(--ds-icon-success, ${colors.G200})`
64
+ light: `var(--ds-icon-success, ${G200})`,
65
+ dark: `var(--ds-icon-success, ${G200})`
66
66
  },
67
67
  info: {
68
- light: `var(--ds-icon-discovery, ${colors.P200})`,
69
- dark: `var(--ds-icon-discovery, ${colors.P200})`
68
+ light: `var(--ds-icon-discovery, ${P200})`,
69
+ dark: `var(--ds-icon-discovery, ${P200})`
70
70
  },
71
71
  warning: {
72
- light: `var(--ds-icon-warning, ${colors.Y200})`,
73
- dark: `var(--ds-icon-warning, ${colors.Y200})`
72
+ light: `var(--ds-icon-warning, ${Y200})`,
73
+ dark: `var(--ds-icon-warning, ${Y200})`
74
74
  },
75
75
  error: {
76
- light: `var(--ds-icon-danger, ${colors.R300})`,
77
- dark: `var(--ds-icon-danger, ${colors.R300})`
76
+ light: `var(--ds-icon-danger, ${R300})`,
77
+ dark: `var(--ds-icon-danger, ${R300})`
78
78
  }
79
79
  });
80
80
 
@@ -1,29 +1,29 @@
1
1
  /** @jsx jsx */
2
2
 
3
3
  import { css, jsx } from '@emotion/react';
4
- import * as colors from '@atlaskit/theme/colors';
4
+ import { B100, B400, G300, P300, R400, Y300 } from '@atlaskit/theme/colors';
5
5
  import { themed, useGlobalTheme } from '@atlaskit/theme/components';
6
6
  import { typesMapping } from '../../constants';
7
7
  const iconColor = themed('appearance', {
8
8
  connectivity: {
9
- light: `var(--ds-icon-brand, ${colors.B400})`,
10
- dark: `var(--ds-icon-brand, ${colors.B100})`
9
+ light: `var(--ds-icon-brand, ${B400})`,
10
+ dark: `var(--ds-icon-brand, ${B100})`
11
11
  },
12
12
  confirmation: {
13
- light: `var(--ds-icon-success, ${colors.G300})`,
14
- dark: `var(--ds-icon-success, ${colors.G300})`
13
+ light: `var(--ds-icon-success, ${G300})`,
14
+ dark: `var(--ds-icon-success, ${G300})`
15
15
  },
16
16
  info: {
17
- light: `var(--ds-icon-discovery, ${colors.P300})`,
18
- dark: `var(--ds-icon-discovery, ${colors.P300})`
17
+ light: `var(--ds-icon-discovery, ${P300})`,
18
+ dark: `var(--ds-icon-discovery, ${P300})`
19
19
  },
20
20
  warning: {
21
- light: `var(--ds-icon-warning, ${colors.Y300})`,
22
- dark: `var(--ds-icon-warning, ${colors.Y300})`
21
+ light: `var(--ds-icon-warning, ${Y300})`,
22
+ dark: `var(--ds-icon-warning, ${Y300})`
23
23
  },
24
24
  error: {
25
- light: `var(--ds-icon-danger, ${colors.R400})`,
26
- dark: `var(--ds-icon-danger, ${colors.R400})`
25
+ light: `var(--ds-icon-danger, ${R400})`,
26
+ dark: `var(--ds-icon-danger, ${R400})`
27
27
  }
28
28
  });
29
29
  const iconWrapperStyles = css({
@@ -49,7 +49,7 @@ const SelectedIcon = ({
49
49
  }) => {
50
50
  const {
51
51
  [appearance]: {
52
- icon: SelectedIcon,
52
+ icon: Icon,
53
53
  defaultLabel
54
54
  }
55
55
  } = typesMapping;
@@ -63,7 +63,7 @@ const SelectedIcon = ({
63
63
  })
64
64
  },
65
65
  css: [iconWrapperStyles, isOpen && iconColorStyles]
66
- }, jsx(SelectedIcon, {
66
+ }, jsx(Icon, {
67
67
  testId: "inline-message-icon",
68
68
  label: label || defaultLabel,
69
69
  size: "medium"
@@ -5,7 +5,7 @@ import { useCallback, useState } from 'react';
5
5
  import { css, jsx } from '@emotion/react';
6
6
  import Button from '@atlaskit/button/custom-theme-button';
7
7
  import InlineDialog from '@atlaskit/inline-dialog';
8
- import * as colors from '@atlaskit/theme/colors';
8
+ import { B300, B75, DN100, DN600, G200, N300, N600, P200, R300, Y200 } from '@atlaskit/theme/colors';
9
9
  import { themed, useGlobalTheme } from '@atlaskit/theme/components';
10
10
  import { VAR_SECONDARY_TEXT_COLOR } from '../../constants';
11
11
  import MessageIcon from '../message-icon';
@@ -50,33 +50,33 @@ var rootStyles = css({
50
50
  }
51
51
  });
52
52
  var titleColor = themed({
53
- light: "var(--ds-text, ".concat(colors.N600, ")"),
54
- dark: "var(--ds-text, ".concat(colors.DN600, ")")
53
+ light: "var(--ds-text, ".concat(N600, ")"),
54
+ dark: "var(--ds-text, ".concat(DN600, ")")
55
55
  });
56
56
  var textColor = themed({
57
- light: "var(--ds-text-subtlest, ".concat(colors.N300, ")"),
58
- dark: "var(--ds-text-subtlest, ".concat(colors.DN100, ")")
57
+ light: "var(--ds-text-subtlest, ".concat(N300, ")"),
58
+ dark: "var(--ds-text-subtlest, ".concat(DN100, ")")
59
59
  });
60
60
  var iconColor = themed('appearance', {
61
61
  connectivity: {
62
- light: "var(--ds-icon-brand, ".concat(colors.B300, ")"),
63
- dark: "var(--ds-icon-brand, ".concat(colors.B75, ")")
62
+ light: "var(--ds-icon-brand, ".concat(B300, ")"),
63
+ dark: "var(--ds-icon-brand, ".concat(B75, ")")
64
64
  },
65
65
  confirmation: {
66
- light: "var(--ds-icon-success, ".concat(colors.G200, ")"),
67
- dark: "var(--ds-icon-success, ".concat(colors.G200, ")")
66
+ light: "var(--ds-icon-success, ".concat(G200, ")"),
67
+ dark: "var(--ds-icon-success, ".concat(G200, ")")
68
68
  },
69
69
  info: {
70
- light: "var(--ds-icon-discovery, ".concat(colors.P200, ")"),
71
- dark: "var(--ds-icon-discovery, ".concat(colors.P200, ")")
70
+ light: "var(--ds-icon-discovery, ".concat(P200, ")"),
71
+ dark: "var(--ds-icon-discovery, ".concat(P200, ")")
72
72
  },
73
73
  warning: {
74
- light: "var(--ds-icon-warning, ".concat(colors.Y200, ")"),
75
- dark: "var(--ds-icon-warning, ".concat(colors.Y200, ")")
74
+ light: "var(--ds-icon-warning, ".concat(Y200, ")"),
75
+ dark: "var(--ds-icon-warning, ".concat(Y200, ")")
76
76
  },
77
77
  error: {
78
- light: "var(--ds-icon-danger, ".concat(colors.R300, ")"),
79
- dark: "var(--ds-icon-danger, ".concat(colors.R300, ")")
78
+ light: "var(--ds-icon-danger, ".concat(R300, ")"),
79
+ dark: "var(--ds-icon-danger, ".concat(R300, ")")
80
80
  }
81
81
  });
82
82
 
@@ -1,29 +1,29 @@
1
1
  /** @jsx jsx */
2
2
 
3
3
  import { css, jsx } from '@emotion/react';
4
- import * as colors from '@atlaskit/theme/colors';
4
+ import { B100, B400, G300, P300, R400, Y300 } from '@atlaskit/theme/colors';
5
5
  import { themed, useGlobalTheme } from '@atlaskit/theme/components';
6
6
  import { typesMapping } from '../../constants';
7
7
  var iconColor = themed('appearance', {
8
8
  connectivity: {
9
- light: "var(--ds-icon-brand, ".concat(colors.B400, ")"),
10
- dark: "var(--ds-icon-brand, ".concat(colors.B100, ")")
9
+ light: "var(--ds-icon-brand, ".concat(B400, ")"),
10
+ dark: "var(--ds-icon-brand, ".concat(B100, ")")
11
11
  },
12
12
  confirmation: {
13
- light: "var(--ds-icon-success, ".concat(colors.G300, ")"),
14
- dark: "var(--ds-icon-success, ".concat(colors.G300, ")")
13
+ light: "var(--ds-icon-success, ".concat(G300, ")"),
14
+ dark: "var(--ds-icon-success, ".concat(G300, ")")
15
15
  },
16
16
  info: {
17
- light: "var(--ds-icon-discovery, ".concat(colors.P300, ")"),
18
- dark: "var(--ds-icon-discovery, ".concat(colors.P300, ")")
17
+ light: "var(--ds-icon-discovery, ".concat(P300, ")"),
18
+ dark: "var(--ds-icon-discovery, ".concat(P300, ")")
19
19
  },
20
20
  warning: {
21
- light: "var(--ds-icon-warning, ".concat(colors.Y300, ")"),
22
- dark: "var(--ds-icon-warning, ".concat(colors.Y300, ")")
21
+ light: "var(--ds-icon-warning, ".concat(Y300, ")"),
22
+ dark: "var(--ds-icon-warning, ".concat(Y300, ")")
23
23
  },
24
24
  error: {
25
- light: "var(--ds-icon-danger, ".concat(colors.R400, ")"),
26
- dark: "var(--ds-icon-danger, ".concat(colors.R400, ")")
25
+ light: "var(--ds-icon-danger, ".concat(R400, ")"),
26
+ dark: "var(--ds-icon-danger, ".concat(R400, ")")
27
27
  }
28
28
  });
29
29
  var iconWrapperStyles = css({
@@ -47,7 +47,7 @@ var SelectedIcon = function SelectedIcon(_ref) {
47
47
  isOpen = _ref.isOpen,
48
48
  label = _ref.label;
49
49
  var _typesMapping$appeara = typesMapping[appearance],
50
- SelectedIcon = _typesMapping$appeara.icon,
50
+ Icon = _typesMapping$appeara.icon,
51
51
  defaultLabel = _typesMapping$appeara.defaultLabel;
52
52
  var theme = useGlobalTheme();
53
53
  return jsx("span", {
@@ -59,7 +59,7 @@ var SelectedIcon = function SelectedIcon(_ref) {
59
59
  })
60
60
  },
61
61
  css: [iconWrapperStyles, isOpen && iconColorStyles]
62
- }, jsx(SelectedIcon, {
62
+ }, jsx(Icon, {
63
63
  testId: "inline-message-icon",
64
64
  label: label || defaultLabel,
65
65
  size: "medium"
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { FC, ReactNode } from 'react';
2
+ import { type FC, type ReactNode } from 'react';
3
3
  import type { IconAppearance, InlineDialogPlacement } from '../../types';
4
4
  interface InlineMessageProps {
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { FC, ReactNode } from 'react';
2
+ import { type FC, type ReactNode } from 'react';
3
3
  import type { IconAppearance, InlineDialogPlacement } from '../../types';
4
4
  interface InlineMessageProps {
5
5
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "11.5.7",
3
+ "version": "11.5.8",
4
4
  "description": "An inline message lets users know when important information is available or when an action is required.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -24,11 +24,11 @@
24
24
  }
25
25
  },
26
26
  "dependencies": {
27
- "@atlaskit/button": "^16.10.0",
27
+ "@atlaskit/button": "^16.11.0",
28
28
  "@atlaskit/icon": "^21.12.0",
29
29
  "@atlaskit/inline-dialog": "^13.6.0",
30
30
  "@atlaskit/theme": "^12.6.0",
31
- "@atlaskit/tokens": "^1.26.0",
31
+ "@atlaskit/tokens": "^1.28.0",
32
32
  "@babel/runtime": "^7.0.0",
33
33
  "@emotion/react": "^11.7.1"
34
34
  },