@atlaskit/datetime-picker 11.1.4 → 11.1.7

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,25 @@
1
1
  # @atlaskit/datetime-picker
2
2
 
3
+ ## 11.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 11.1.6
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 11.1.5
16
+
17
+ ### Patch Changes
18
+
19
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes
20
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Fix bug in inline-edit and Form which prevented date selection in datetimepicker using the keyboard.
21
+ - Updated dependencies
22
+
3
23
  ## 11.1.4
4
24
 
5
25
  ### Patch Changes
@@ -68,7 +68,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
68
68
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
69
69
 
70
70
  var packageName = "@atlaskit/datetime-picker";
71
- var packageVersion = "11.1.4";
71
+ var packageVersion = "11.1.7";
72
72
  /* eslint-disable react/no-unused-prop-types */
73
73
 
74
74
  function getDateObj(date) {
@@ -86,9 +86,9 @@ function getValidDate(iso) {
86
86
 
87
87
  var menuStyles = (0, _core.css)({
88
88
  zIndex: _constants.layers.dialog(),
89
- backgroundColor: "var(--ds-background-default, ".concat(_colors.N20, ")"),
89
+ backgroundColor: "var(--ds-surface, ".concat(_colors.N20, ")"),
90
90
  borderRadius: "".concat((0, _constants.borderRadius)(), "px"),
91
- boxShadow: "var(--ds-overlay, ".concat("0 4px 8px -2px ".concat(_colors.N50A, ", 0 0 1px ").concat(_colors.N60A), ")")
91
+ boxShadow: "var(--ds-shadow-overlay, ".concat("0 4px 8px -2px ".concat(_colors.N50A, ", 0 0 1px ").concat(_colors.N60A), ")")
92
92
  });
93
93
 
94
94
  var Menu = function Menu(_ref) {
@@ -313,6 +313,11 @@ var DatePicker = /*#__PURE__*/function (_Component) {
313
313
  break;
314
314
 
315
315
  case 'enter':
316
+ // Prevent form submission when a date is selected
317
+ // using enter. See https://product-fabric.atlassian.net/browse/DSP-2501
318
+ // for more details.
319
+ event.preventDefault();
320
+
316
321
  if (!_this.isDateDisabled(view)) {
317
322
  _this.setState({
318
323
  inputValue: '',
@@ -380,7 +385,7 @@ var DatePicker = /*#__PURE__*/function (_Component) {
380
385
  });
381
386
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getSubtleControlStyles", function (isOpen) {
382
387
  return {
383
- border: "2px solid ".concat(isOpen ? "var(--ds-border-focus, ".concat(_colors.B100, ")") : "transparent"),
388
+ border: "2px solid ".concat(isOpen ? "var(--ds-border-focused, ".concat(_colors.B100, ")") : "transparent"),
384
389
  backgroundColor: 'transparent',
385
390
  padding: '1px'
386
391
  };
@@ -58,17 +58,17 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
58
58
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
59
59
 
60
60
  var packageName = "@atlaskit/datetime-picker";
61
- var packageVersion = "11.1.4";
61
+ var packageVersion = "11.1.7";
62
62
  /* eslint-disable react/no-unused-prop-types */
63
63
 
64
64
  var isInvalidBorderStyles = (0, _core.css)({
65
- borderColor: "var(--ds-iconBorder-danger, ".concat(_colors.R400, ")")
65
+ borderColor: "var(--ds-border-danger, ".concat(_colors.R400, ")")
66
66
  });
67
67
  var isFocusedBorderStyles = (0, _core.css)({
68
- borderColor: "var(--ds-border-focus, ".concat(_colors.B100, ")")
68
+ borderColor: "var(--ds-border-focused, ".concat(_colors.B100, ")")
69
69
  });
70
70
  var isFocusedStyles = (0, _core.css)({
71
- backgroundColor: "var(--ds-background-default, ".concat(_colors.N0, ")")
71
+ backgroundColor: "var(--ds-surface, ".concat(_colors.N0, ")")
72
72
  });
73
73
  var subtleBgStyles = (0, _core.css)({
74
74
  backgroundColor: 'transparent',
@@ -76,14 +76,14 @@ var subtleBgStyles = (0, _core.css)({
76
76
  });
77
77
  var hoverStyles = (0, _core.css)({
78
78
  '&:hover': {
79
- backgroundColor: "var(--ds-background-default, ".concat(_colors.N30, ")"),
80
- borderColor: "var(--ds-border-neutral, ".concat(_colors.N30, ")")
79
+ backgroundColor: "var(--ds-surface, ".concat(_colors.N30, ")"),
80
+ borderColor: "var(--ds-border, ".concat(_colors.N30, ")")
81
81
  }
82
82
  });
83
83
  var isInvalidHoverStyles = (0, _core.css)({
84
84
  '&:hover': {
85
- backgroundColor: "var(--ds-background-default, ".concat(_colors.N0, ")"),
86
- borderColor: "var(--ds-iconBorder-danger, ".concat(_colors.R400, ")")
85
+ backgroundColor: "var(--ds-surface, ".concat(_colors.N0, ")"),
86
+ borderColor: "var(--ds-border-danger, ".concat(_colors.R400, ")")
87
87
  }
88
88
  });
89
89
  var isDisabledStyles = (0, _core.css)({
@@ -93,8 +93,8 @@ var isDisabledStyles = (0, _core.css)({
93
93
  });
94
94
  var baseContainerStyles = (0, _core.css)({
95
95
  display: 'flex',
96
- backgroundColor: "var(--ds-background-subtleNeutral-resting, ".concat(_colors.N20, ")"),
97
- border: "2px solid ".concat("var(--ds-border-neutral, ".concat(_colors.N20, ")")),
96
+ backgroundColor: "var(--ds-background-neutral, ".concat(_colors.N20, ")"),
97
+ border: "2px solid ".concat("var(--ds-border, ".concat(_colors.N20, ")")),
98
98
  borderRadius: "".concat((0, _constants.borderRadius)(), "px"),
99
99
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
100
100
  '&:hover': {
@@ -121,10 +121,10 @@ var iconContainerStyles = (0, _core.css)({
121
121
  paddingLeft: "".concat(ICON_PADDING * 2, "px"),
122
122
  alignItems: 'center',
123
123
  flexBasis: 'inherit',
124
- color: "var(--ds-text-lowEmphasis, ".concat(_colors.N70, ")"),
124
+ color: "var(--ds-text-subtlest, ".concat(_colors.N70, ")"),
125
125
  transition: "color 150ms",
126
126
  '&:hover': {
127
- color: "var(--ds-text-mediumEmphasis, ".concat(_colors.N500, ")")
127
+ color: "var(--ds-text-subtle, ".concat(_colors.N500, ")")
128
128
  }
129
129
  }); // react-select overrides (via @atlaskit/select).
130
130
 
@@ -67,7 +67,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
67
67
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
68
68
 
69
69
  var packageName = "@atlaskit/datetime-picker";
70
- var packageVersion = "11.1.4";
70
+ var packageVersion = "11.1.7";
71
71
  var menuStyles = {
72
72
  /* Need to remove default absolute positioning as that causes issues with position fixed */
73
73
  position: 'static',
@@ -236,7 +236,7 @@ var TimePicker = /*#__PURE__*/function (_React$Component) {
236
236
  });
237
237
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getSubtleControlStyles", function (selectStyles) {
238
238
  return !selectStyles.control ? {
239
- border: "2px solid ".concat(_this.getSafeState().isFocused ? "var(--ds-border-focus, ".concat(_colors.B100, ")") : "transparent"),
239
+ border: "2px solid ".concat(_this.getSafeState().isFocused ? "var(--ds-border-focused, ".concat(_colors.B100, ")") : "transparent"),
240
240
  backgroundColor: 'transparent',
241
241
  padding: '1px'
242
242
  } : {};
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "11.1.4",
3
+ "version": "11.1.7",
4
4
  "sideEffects": false
5
5
  }
@@ -18,7 +18,7 @@ import { defaultDateFormat, EmptyClearIndicator, padToTwo, placeholderDatetime }
18
18
  import FixedLayer from '../internal/FixedLayer';
19
19
  import { convertTokens } from './utils';
20
20
  const packageName = "@atlaskit/datetime-picker";
21
- const packageVersion = "11.1.4";
21
+ const packageVersion = "11.1.7";
22
22
  /* eslint-disable react/no-unused-prop-types */
23
23
 
24
24
  function getDateObj(date) {
@@ -36,9 +36,9 @@ function getValidDate(iso) {
36
36
 
37
37
  const menuStyles = css({
38
38
  zIndex: layers.dialog(),
39
- backgroundColor: `var(--ds-background-default, ${N20})`,
39
+ backgroundColor: `var(--ds-surface, ${N20})`,
40
40
  borderRadius: `${borderRadius()}px`,
41
- boxShadow: `var(--ds-overlay, ${`0 4px 8px -2px ${N50A}, 0 0 1px ${N60A}`})`
41
+ boxShadow: `var(--ds-shadow-overlay, ${`0 4px 8px -2px ${N50A}, 0 0 1px ${N60A}`})`
42
42
  });
43
43
 
44
44
  const Menu = ({
@@ -256,6 +256,11 @@ class DatePicker extends Component {
256
256
  break;
257
257
 
258
258
  case 'enter':
259
+ // Prevent form submission when a date is selected
260
+ // using enter. See https://product-fabric.atlassian.net/browse/DSP-2501
261
+ // for more details.
262
+ event.preventDefault();
263
+
259
264
  if (!this.isDateDisabled(view)) {
260
265
  this.setState({
261
266
  inputValue: '',
@@ -328,7 +333,7 @@ class DatePicker extends Component {
328
333
  });
329
334
 
330
335
  _defineProperty(this, "getSubtleControlStyles", isOpen => ({
331
- border: `2px solid ${isOpen ? `var(--ds-border-focus, ${B100})` : `transparent`}`,
336
+ border: `2px solid ${isOpen ? `var(--ds-border-focused, ${B100})` : `transparent`}`,
332
337
  backgroundColor: 'transparent',
333
338
  padding: '1px'
334
339
  }));
@@ -17,17 +17,17 @@ import DatePicker from './DatePicker';
17
17
  import TimePicker from './TimePicker';
18
18
  import { convertTokens } from './utils';
19
19
  const packageName = "@atlaskit/datetime-picker";
20
- const packageVersion = "11.1.4";
20
+ const packageVersion = "11.1.7";
21
21
  /* eslint-disable react/no-unused-prop-types */
22
22
 
23
23
  const isInvalidBorderStyles = css({
24
- borderColor: `var(--ds-iconBorder-danger, ${R400})`
24
+ borderColor: `var(--ds-border-danger, ${R400})`
25
25
  });
26
26
  const isFocusedBorderStyles = css({
27
- borderColor: `var(--ds-border-focus, ${B100})`
27
+ borderColor: `var(--ds-border-focused, ${B100})`
28
28
  });
29
29
  const isFocusedStyles = css({
30
- backgroundColor: `var(--ds-background-default, ${N0})`
30
+ backgroundColor: `var(--ds-surface, ${N0})`
31
31
  });
32
32
  const subtleBgStyles = css({
33
33
  backgroundColor: 'transparent',
@@ -35,14 +35,14 @@ const subtleBgStyles = css({
35
35
  });
36
36
  const hoverStyles = css({
37
37
  '&:hover': {
38
- backgroundColor: `var(--ds-background-default, ${N30})`,
39
- borderColor: `var(--ds-border-neutral, ${N30})`
38
+ backgroundColor: `var(--ds-surface, ${N30})`,
39
+ borderColor: `var(--ds-border, ${N30})`
40
40
  }
41
41
  });
42
42
  const isInvalidHoverStyles = css({
43
43
  '&:hover': {
44
- backgroundColor: `var(--ds-background-default, ${N0})`,
45
- borderColor: `var(--ds-iconBorder-danger, ${R400})`
44
+ backgroundColor: `var(--ds-surface, ${N0})`,
45
+ borderColor: `var(--ds-border-danger, ${R400})`
46
46
  }
47
47
  });
48
48
  const isDisabledStyles = css({
@@ -52,8 +52,8 @@ const isDisabledStyles = css({
52
52
  });
53
53
  const baseContainerStyles = css({
54
54
  display: 'flex',
55
- backgroundColor: `var(--ds-background-subtleNeutral-resting, ${N20})`,
56
- border: `2px solid ${`var(--ds-border-neutral, ${N20})`}`,
55
+ backgroundColor: `var(--ds-background-neutral, ${N20})`,
56
+ border: `2px solid ${`var(--ds-border, ${N20})`}`,
57
57
  borderRadius: `${borderRadius()}px`,
58
58
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
59
59
  '&:hover': {
@@ -80,10 +80,10 @@ const iconContainerStyles = css({
80
80
  paddingLeft: `${ICON_PADDING * 2}px`,
81
81
  alignItems: 'center',
82
82
  flexBasis: 'inherit',
83
- color: `var(--ds-text-lowEmphasis, ${N70})`,
83
+ color: `var(--ds-text-subtlest, ${N70})`,
84
84
  transition: `color 150ms`,
85
85
  '&:hover': {
86
- color: `var(--ds-text-mediumEmphasis, ${N500})`
86
+ color: `var(--ds-text-subtle, ${N500})`
87
87
  }
88
88
  }); // react-select overrides (via @atlaskit/select).
89
89
 
@@ -14,7 +14,7 @@ import FixedLayer from '../internal/FixedLayer';
14
14
  import parseTime from '../internal/parseTime';
15
15
  import { convertTokens } from './utils';
16
16
  const packageName = "@atlaskit/datetime-picker";
17
- const packageVersion = "11.1.4";
17
+ const packageVersion = "11.1.7";
18
18
  const menuStyles = {
19
19
  /* Need to remove default absolute positioning as that causes issues with position fixed */
20
20
  position: 'static',
@@ -179,7 +179,7 @@ class TimePicker extends React.Component {
179
179
  });
180
180
 
181
181
  _defineProperty(this, "getSubtleControlStyles", selectStyles => !selectStyles.control ? {
182
- border: `2px solid ${this.getSafeState().isFocused ? `var(--ds-border-focus, ${B100})` : `transparent`}`,
182
+ border: `2px solid ${this.getSafeState().isFocused ? `var(--ds-border-focused, ${B100})` : `transparent`}`,
183
183
  backgroundColor: 'transparent',
184
184
  padding: '1px'
185
185
  } : {});
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "11.1.4",
3
+ "version": "11.1.7",
4
4
  "sideEffects": false
5
5
  }
@@ -33,7 +33,7 @@ import { defaultDateFormat, EmptyClearIndicator, padToTwo, placeholderDatetime }
33
33
  import FixedLayer from '../internal/FixedLayer';
34
34
  import { convertTokens } from './utils';
35
35
  var packageName = "@atlaskit/datetime-picker";
36
- var packageVersion = "11.1.4";
36
+ var packageVersion = "11.1.7";
37
37
  /* eslint-disable react/no-unused-prop-types */
38
38
 
39
39
  function getDateObj(date) {
@@ -51,9 +51,9 @@ function getValidDate(iso) {
51
51
 
52
52
  var menuStyles = css({
53
53
  zIndex: layers.dialog(),
54
- backgroundColor: "var(--ds-background-default, ".concat(N20, ")"),
54
+ backgroundColor: "var(--ds-surface, ".concat(N20, ")"),
55
55
  borderRadius: "".concat(borderRadius(), "px"),
56
- boxShadow: "var(--ds-overlay, ".concat("0 4px 8px -2px ".concat(N50A, ", 0 0 1px ").concat(N60A), ")")
56
+ boxShadow: "var(--ds-shadow-overlay, ".concat("0 4px 8px -2px ".concat(N50A, ", 0 0 1px ").concat(N60A), ")")
57
57
  });
58
58
 
59
59
  var Menu = function Menu(_ref) {
@@ -290,6 +290,11 @@ var DatePicker = /*#__PURE__*/function (_Component) {
290
290
  break;
291
291
 
292
292
  case 'enter':
293
+ // Prevent form submission when a date is selected
294
+ // using enter. See https://product-fabric.atlassian.net/browse/DSP-2501
295
+ // for more details.
296
+ event.preventDefault();
297
+
293
298
  if (!_this.isDateDisabled(view)) {
294
299
  _this.setState({
295
300
  inputValue: '',
@@ -363,7 +368,7 @@ var DatePicker = /*#__PURE__*/function (_Component) {
363
368
 
364
369
  _defineProperty(_assertThisInitialized(_this), "getSubtleControlStyles", function (isOpen) {
365
370
  return {
366
- border: "2px solid ".concat(isOpen ? "var(--ds-border-focus, ".concat(B100, ")") : "transparent"),
371
+ border: "2px solid ".concat(isOpen ? "var(--ds-border-focused, ".concat(B100, ")") : "transparent"),
367
372
  backgroundColor: 'transparent',
368
373
  padding: '1px'
369
374
  };
@@ -31,17 +31,17 @@ import DatePicker from './DatePicker';
31
31
  import TimePicker from './TimePicker';
32
32
  import { convertTokens } from './utils';
33
33
  var packageName = "@atlaskit/datetime-picker";
34
- var packageVersion = "11.1.4";
34
+ var packageVersion = "11.1.7";
35
35
  /* eslint-disable react/no-unused-prop-types */
36
36
 
37
37
  var isInvalidBorderStyles = css({
38
- borderColor: "var(--ds-iconBorder-danger, ".concat(R400, ")")
38
+ borderColor: "var(--ds-border-danger, ".concat(R400, ")")
39
39
  });
40
40
  var isFocusedBorderStyles = css({
41
- borderColor: "var(--ds-border-focus, ".concat(B100, ")")
41
+ borderColor: "var(--ds-border-focused, ".concat(B100, ")")
42
42
  });
43
43
  var isFocusedStyles = css({
44
- backgroundColor: "var(--ds-background-default, ".concat(N0, ")")
44
+ backgroundColor: "var(--ds-surface, ".concat(N0, ")")
45
45
  });
46
46
  var subtleBgStyles = css({
47
47
  backgroundColor: 'transparent',
@@ -49,14 +49,14 @@ var subtleBgStyles = css({
49
49
  });
50
50
  var hoverStyles = css({
51
51
  '&:hover': {
52
- backgroundColor: "var(--ds-background-default, ".concat(N30, ")"),
53
- borderColor: "var(--ds-border-neutral, ".concat(N30, ")")
52
+ backgroundColor: "var(--ds-surface, ".concat(N30, ")"),
53
+ borderColor: "var(--ds-border, ".concat(N30, ")")
54
54
  }
55
55
  });
56
56
  var isInvalidHoverStyles = css({
57
57
  '&:hover': {
58
- backgroundColor: "var(--ds-background-default, ".concat(N0, ")"),
59
- borderColor: "var(--ds-iconBorder-danger, ".concat(R400, ")")
58
+ backgroundColor: "var(--ds-surface, ".concat(N0, ")"),
59
+ borderColor: "var(--ds-border-danger, ".concat(R400, ")")
60
60
  }
61
61
  });
62
62
  var isDisabledStyles = css({
@@ -66,8 +66,8 @@ var isDisabledStyles = css({
66
66
  });
67
67
  var baseContainerStyles = css({
68
68
  display: 'flex',
69
- backgroundColor: "var(--ds-background-subtleNeutral-resting, ".concat(N20, ")"),
70
- border: "2px solid ".concat("var(--ds-border-neutral, ".concat(N20, ")")),
69
+ backgroundColor: "var(--ds-background-neutral, ".concat(N20, ")"),
70
+ border: "2px solid ".concat("var(--ds-border, ".concat(N20, ")")),
71
71
  borderRadius: "".concat(borderRadius(), "px"),
72
72
  transition: 'background-color 200ms ease-in-out, border-color 200ms ease-in-out',
73
73
  '&:hover': {
@@ -94,10 +94,10 @@ var iconContainerStyles = css({
94
94
  paddingLeft: "".concat(ICON_PADDING * 2, "px"),
95
95
  alignItems: 'center',
96
96
  flexBasis: 'inherit',
97
- color: "var(--ds-text-lowEmphasis, ".concat(N70, ")"),
97
+ color: "var(--ds-text-subtlest, ".concat(N70, ")"),
98
98
  transition: "color 150ms",
99
99
  '&:hover': {
100
- color: "var(--ds-text-mediumEmphasis, ".concat(N500, ")")
100
+ color: "var(--ds-text-subtle, ".concat(N500, ")")
101
101
  }
102
102
  }); // react-select overrides (via @atlaskit/select).
103
103
 
@@ -32,7 +32,7 @@ import FixedLayer from '../internal/FixedLayer';
32
32
  import parseTime from '../internal/parseTime';
33
33
  import { convertTokens } from './utils';
34
34
  var packageName = "@atlaskit/datetime-picker";
35
- var packageVersion = "11.1.4";
35
+ var packageVersion = "11.1.7";
36
36
  var menuStyles = {
37
37
  /* Need to remove default absolute positioning as that causes issues with position fixed */
38
38
  position: 'static',
@@ -214,7 +214,7 @@ var TimePicker = /*#__PURE__*/function (_React$Component) {
214
214
 
215
215
  _defineProperty(_assertThisInitialized(_this), "getSubtleControlStyles", function (selectStyles) {
216
216
  return !selectStyles.control ? {
217
- border: "2px solid ".concat(_this.getSafeState().isFocused ? "var(--ds-border-focus, ".concat(B100, ")") : "transparent"),
217
+ border: "2px solid ".concat(_this.getSafeState().isFocused ? "var(--ds-border-focused, ".concat(B100, ")") : "transparent"),
218
218
  backgroundColor: 'transparent',
219
219
  padding: '1px'
220
220
  } : {};
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "11.1.4",
3
+ "version": "11.1.7",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/datetime-picker",
3
- "version": "11.1.4",
3
+ "version": "11.1.7",
4
4
  "description": "A date time picker allows the user to select an associated date and time.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "@atlaskit/popper": "^5.2.0",
31
31
  "@atlaskit/select": "^15.2.0",
32
32
  "@atlaskit/theme": "^12.1.0",
33
- "@atlaskit/tokens": "^0.5.0",
33
+ "@atlaskit/tokens": "^0.8.0",
34
34
  "@babel/runtime": "^7.0.0",
35
35
  "@emotion/core": "^10.0.9",
36
36
  "date-fns": "^2.17.0",
@@ -41,12 +41,12 @@
41
41
  "react": "^16.8.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@atlaskit/button": "^16.0.0",
44
+ "@atlaskit/button": "^16.2.0",
45
45
  "@atlaskit/docs": "*",
46
46
  "@atlaskit/field-base": "^15.0.5",
47
- "@atlaskit/form": "^8.4.0",
47
+ "@atlaskit/form": "^8.5.0",
48
48
  "@atlaskit/modal-dialog": "^12.2.0",
49
- "@atlaskit/range": "^5.0.11",
49
+ "@atlaskit/range": "^6.0.0",
50
50
  "@atlaskit/section-message": "^6.0.0",
51
51
  "@atlaskit/ssr": "*",
52
52
  "@atlaskit/textfield": "^5.0.0",