@atlaskit/reactions 22.6.0 → 22.6.2

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/reactions
2
2
 
3
+ ## 22.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 22.6.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007) [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) - Migrated to the new button component
14
+
3
15
  ## 22.6.0
4
16
 
5
17
  ### Minor Changes
@@ -11,7 +11,7 @@ var _analyticsGasTypes = require("@atlaskit/analytics-gas-types");
11
11
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
12
12
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
13
13
  var packageName = "@atlaskit/reactions";
14
- var packageVersion = "22.6.0";
14
+ var packageVersion = "22.6.2";
15
15
  /**
16
16
  * TODO: move to utility package?
17
17
  * A random sampling function
@@ -10,7 +10,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
10
10
  var _react = require("react");
11
11
  var _reactIntlNext = require("react-intl-next");
12
12
  var _react2 = require("@emotion/react");
13
- var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
13
+ var _new = _interopRequireDefault(require("@atlaskit/button/new"));
14
14
  var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
15
15
  var _constants = require("../../shared/constants");
16
16
  var _i18n = require("../../shared/i18n");
@@ -149,7 +149,7 @@ var ReactionsDialog = exports.ReactionsDialog = function ReactionsDialog(_ref) {
149
149
  reactions: sortedReactions,
150
150
  emojiProvider: emojiProvider,
151
151
  onReactionChanged: handleSelectReaction
152
- }))), (0, _react2.jsx)(_modalDialog.ModalFooter, null, (0, _react2.jsx)(_standardButton.default, {
152
+ }))), (0, _react2.jsx)(_modalDialog.ModalFooter, null, (0, _react2.jsx)(_new.default, {
153
153
  appearance: "primary",
154
154
  onClick: handleCloseReactionsDialog,
155
155
  autoFocus: true
@@ -1,7 +1,7 @@
1
1
  import { createAndFireEvent } from '@atlaskit/analytics-next';
2
2
  import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
3
3
  const packageName = "@atlaskit/reactions";
4
- const packageVersion = "22.6.0";
4
+ const packageVersion = "22.6.2";
5
5
  /**
6
6
  * TODO: move to utility package?
7
7
  * A random sampling function
@@ -2,7 +2,7 @@
2
2
  import { useEffect, useState, useRef, useCallback, useMemo } from 'react';
3
3
  import { useIntl } from 'react-intl-next';
4
4
  import { jsx } from '@emotion/react';
5
- import Button from '@atlaskit/button/standard-button';
5
+ import Button from '@atlaskit/button/new';
6
6
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle } from '@atlaskit/modal-dialog';
7
7
  import { NUMBER_OF_REACTIONS_TO_DISPLAY } from '../../shared/constants';
8
8
  import { messages } from '../../shared/i18n';
@@ -4,7 +4,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
4
4
  import { createAndFireEvent } from '@atlaskit/analytics-next';
5
5
  import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
6
6
  var packageName = "@atlaskit/reactions";
7
- var packageVersion = "22.6.0";
7
+ var packageVersion = "22.6.2";
8
8
  /**
9
9
  * TODO: move to utility package?
10
10
  * A random sampling function
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import { useEffect, useState, useRef, useCallback, useMemo } from 'react';
4
4
  import { useIntl } from 'react-intl-next';
5
5
  import { jsx } from '@emotion/react';
6
- import Button from '@atlaskit/button/standard-button';
6
+ import Button from '@atlaskit/button/new';
7
7
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle } from '@atlaskit/modal-dialog';
8
8
  import { NUMBER_OF_REACTIONS_TO_DISPLAY } from '../../shared/constants';
9
9
  import { messages } from '../../shared/i18n';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/reactions",
3
- "version": "22.6.0",
3
+ "version": "22.6.2",
4
4
  "description": "Reactions component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -35,16 +35,16 @@
35
35
  "dependencies": {
36
36
  "@atlaskit/analytics-gas-types": "^5.1.0",
37
37
  "@atlaskit/analytics-namespaced-context": "^6.9.0",
38
- "@atlaskit/analytics-next": "^9.2.0",
38
+ "@atlaskit/analytics-next": "^9.3.0",
39
39
  "@atlaskit/avatar": "^21.5.0",
40
- "@atlaskit/button": "^17.13.0",
40
+ "@atlaskit/button": "^17.14.0",
41
41
  "@atlaskit/emoji": "^67.6.0",
42
42
  "@atlaskit/icon": "^22.1.0",
43
43
  "@atlaskit/modal-dialog": "^12.11.0",
44
44
  "@atlaskit/motion": "^1.5.0",
45
45
  "@atlaskit/popper": "^5.5.0",
46
46
  "@atlaskit/spinner": "^16.0.0",
47
- "@atlaskit/tabs": "^15.0.0",
47
+ "@atlaskit/tabs": "^16.0.0",
48
48
  "@atlaskit/theme": "^12.7.0",
49
49
  "@atlaskit/tokens": "^1.43.0",
50
50
  "@atlaskit/tooltip": "^18.2.0",