@atlaskit/button 16.7.2 → 16.7.4

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/button
2
2
 
3
+ ## 16.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`49b08bfdf5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49b08bfdf5f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
8
+
9
+ ## 16.7.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
14
+
3
15
  ## 16.7.2
4
16
 
5
17
  ### Patch Changes
@@ -93,7 +93,7 @@ var _default = /*#__PURE__*/_react.default.forwardRef(function ButtonBase(props,
93
93
  action: 'clicked',
94
94
  componentName: 'button',
95
95
  packageName: "@atlaskit/button",
96
- packageVersion: "16.7.2",
96
+ packageVersion: "16.7.4",
97
97
  analyticsData: analyticsContext
98
98
  });
99
99
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/button",
3
- "version": "16.7.2",
3
+ "version": "16.7.4",
4
4
  "sideEffects": false
5
5
  }
@@ -76,7 +76,7 @@ export default /*#__PURE__*/React.forwardRef(function ButtonBase(props, ref) {
76
76
  action: 'clicked',
77
77
  componentName: 'button',
78
78
  packageName: "@atlaskit/button",
79
- packageVersion: "16.7.2",
79
+ packageVersion: "16.7.4",
80
80
  analyticsData: analyticsContext
81
81
  });
82
82
 
@@ -1,5 +1,7 @@
1
1
  import { css } from '@emotion/react';
2
- import { borderRadius as getBorderRadius, fontSize as getFontSize, gridSize as getGridSize } from '@atlaskit/theme/constants';
2
+ import { borderRadius as getBorderRadius, fontSize as getFontSize,
3
+ // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
4
+ gridSize as getGridSize } from '@atlaskit/theme/constants';
3
5
  import colors from './colors';
4
6
  const borderRadius = getBorderRadius();
5
7
  const gridSize = getGridSize();
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/button",
3
- "version": "16.7.2",
3
+ "version": "16.7.4",
4
4
  "sideEffects": false
5
5
  }
@@ -84,7 +84,7 @@ export default /*#__PURE__*/React.forwardRef(function ButtonBase(props, ref) {
84
84
  action: 'clicked',
85
85
  componentName: 'button',
86
86
  packageName: "@atlaskit/button",
87
- packageVersion: "16.7.2",
87
+ packageVersion: "16.7.4",
88
88
  analyticsData: analyticsContext
89
89
  });
90
90
 
@@ -2,7 +2,9 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
3
  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) { _defineProperty(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; }
4
4
  import { css } from '@emotion/react';
5
- import { borderRadius as getBorderRadius, fontSize as getFontSize, gridSize as getGridSize } from '@atlaskit/theme/constants';
5
+ import { borderRadius as getBorderRadius, fontSize as getFontSize,
6
+ // eslint-disable-next-line @atlaskit/design-system/no-deprecated-imports
7
+ gridSize as getGridSize } from '@atlaskit/theme/constants';
6
8
  import colors from './colors';
7
9
  var borderRadius = getBorderRadius();
8
10
  var gridSize = getGridSize();
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/button",
3
- "version": "16.7.2",
3
+ "version": "16.7.4",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/button",
3
- "version": "16.7.2",
3
+ "version": "16.7.4",
4
4
  "description": "A button triggers an event or action. They let users know what will happen next.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"