@atlaskit/reactions 24.3.0 → 24.4.1
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 +20 -0
- package/dist/cjs/analytics/index.js +1 -1
- package/dist/cjs/components/ReactionPicker/ReactionPicker.js +1 -2
- package/dist/es2019/analytics/index.js +1 -1
- package/dist/es2019/components/ReactionPicker/ReactionPicker.js +1 -2
- package/dist/esm/analytics/index.js +1 -1
- package/dist/esm/components/ReactionPicker/ReactionPicker.js +1 -2
- package/package.json +23 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/reactions
|
|
2
2
|
|
|
3
|
+
## 24.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#108797](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108797)
|
|
8
|
+
[`9a3f165bc940b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a3f165bc940b) -
|
|
9
|
+
tidy up feature flag confluence_frontend_editor_custom_presets
|
|
10
|
+
|
|
11
|
+
## 24.4.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
|
|
16
|
+
[`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
|
|
17
|
+
Update `React` from v16 to v18
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
3
23
|
## 24.3.0
|
|
4
24
|
|
|
5
25
|
### 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 = "24.
|
|
14
|
+
var packageVersion = "24.4.1";
|
|
15
15
|
/**
|
|
16
16
|
* TODO: move to utility package?
|
|
17
17
|
* A random sampling function
|
|
@@ -14,7 +14,6 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
14
14
|
var _picker = require("@atlaskit/emoji/picker");
|
|
15
15
|
var _popper = require("@atlaskit/popper");
|
|
16
16
|
var _constants = require("@atlaskit/theme/constants");
|
|
17
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
18
17
|
var _useCloseManager = require("../../hooks/useCloseManager");
|
|
19
18
|
var _useFocusTrap = require("../../hooks/useFocusTrap");
|
|
20
19
|
var _i18n = require("../../shared/i18n");
|
|
@@ -268,7 +267,7 @@ var PopperWrapper = function PopperWrapper(props) {
|
|
|
268
267
|
return (0, _react2.jsx)(_popper.Popper, {
|
|
269
268
|
placement: "bottom-start",
|
|
270
269
|
modifiers: popperModifiers,
|
|
271
|
-
strategy:
|
|
270
|
+
strategy: 'absolute'
|
|
272
271
|
}, function (_ref3) {
|
|
273
272
|
var _ref4 = _ref3.ref,
|
|
274
273
|
style = _ref3.style,
|
|
@@ -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 = "24.
|
|
4
|
+
const packageVersion = "24.4.1";
|
|
5
5
|
/**
|
|
6
6
|
* TODO: move to utility package?
|
|
7
7
|
* A random sampling function
|
|
@@ -9,7 +9,6 @@ import { FormattedMessage } from 'react-intl-next';
|
|
|
9
9
|
import { EmojiPicker } from '@atlaskit/emoji/picker';
|
|
10
10
|
import { Manager, Popper, Reference } from '@atlaskit/popper';
|
|
11
11
|
import { layers } from '@atlaskit/theme/constants';
|
|
12
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
13
12
|
import { useCloseManager } from '../../hooks/useCloseManager';
|
|
14
13
|
import { useFocusTrap } from '../../hooks/useFocusTrap';
|
|
15
14
|
import { messages } from '../../shared/i18n';
|
|
@@ -242,7 +241,7 @@ const PopperWrapper = props => {
|
|
|
242
241
|
return jsx(Popper, {
|
|
243
242
|
placement: "bottom-start",
|
|
244
243
|
modifiers: popperModifiers,
|
|
245
|
-
strategy:
|
|
244
|
+
strategy: 'absolute'
|
|
246
245
|
}, ({
|
|
247
246
|
ref,
|
|
248
247
|
style,
|
|
@@ -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 = "24.
|
|
7
|
+
var packageVersion = "24.4.1";
|
|
8
8
|
/**
|
|
9
9
|
* TODO: move to utility package?
|
|
10
10
|
* A random sampling function
|
|
@@ -13,7 +13,6 @@ import { FormattedMessage } from 'react-intl-next';
|
|
|
13
13
|
import { EmojiPicker } from '@atlaskit/emoji/picker';
|
|
14
14
|
import { Manager, Popper, Reference } from '@atlaskit/popper';
|
|
15
15
|
import { layers } from '@atlaskit/theme/constants';
|
|
16
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
17
16
|
import { useCloseManager } from '../../hooks/useCloseManager';
|
|
18
17
|
import { useFocusTrap } from '../../hooks/useFocusTrap';
|
|
19
18
|
import { messages } from '../../shared/i18n';
|
|
@@ -261,7 +260,7 @@ var PopperWrapper = function PopperWrapper(props) {
|
|
|
261
260
|
return jsx(Popper, {
|
|
262
261
|
placement: "bottom-start",
|
|
263
262
|
modifiers: popperModifiers,
|
|
264
|
-
strategy:
|
|
263
|
+
strategy: 'absolute'
|
|
265
264
|
}, function (_ref3) {
|
|
266
265
|
var _ref4 = _ref3.ref,
|
|
267
266
|
style = _ref3.style,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reactions",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.4.1",
|
|
4
4
|
"description": "Reactions component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,24 +33,24 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
36
|
-
"@atlaskit/analytics-namespaced-context": "^6.
|
|
37
|
-
"@atlaskit/analytics-next": "^10.
|
|
38
|
-
"@atlaskit/avatar": "^21.
|
|
39
|
-
"@atlaskit/button": "^20.
|
|
40
|
-
"@atlaskit/emoji": "^67.
|
|
41
|
-
"@atlaskit/heading": "^4.
|
|
42
|
-
"@atlaskit/icon": "^23.
|
|
43
|
-
"@atlaskit/modal-dialog": "^12.
|
|
44
|
-
"@atlaskit/motion": "^1.
|
|
36
|
+
"@atlaskit/analytics-namespaced-context": "^6.13.0",
|
|
37
|
+
"@atlaskit/analytics-next": "^10.3.0",
|
|
38
|
+
"@atlaskit/avatar": "^21.18.0",
|
|
39
|
+
"@atlaskit/button": "^20.4.0",
|
|
40
|
+
"@atlaskit/emoji": "^67.13.0",
|
|
41
|
+
"@atlaskit/heading": "^4.1.0",
|
|
42
|
+
"@atlaskit/icon": "^23.5.0",
|
|
43
|
+
"@atlaskit/modal-dialog": "^12.20.0",
|
|
44
|
+
"@atlaskit/motion": "^1.10.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
46
|
-
"@atlaskit/popper": "^6.
|
|
47
|
-
"@atlaskit/popup": "1.
|
|
48
|
-
"@atlaskit/primitives": "^13.
|
|
49
|
-
"@atlaskit/spinner": "^17.
|
|
50
|
-
"@atlaskit/tabs": "^17.
|
|
51
|
-
"@atlaskit/theme": "^14.
|
|
52
|
-
"@atlaskit/tokens": "^3.
|
|
53
|
-
"@atlaskit/tooltip": "^19.
|
|
46
|
+
"@atlaskit/popper": "^6.4.0",
|
|
47
|
+
"@atlaskit/popup": "1.31.0",
|
|
48
|
+
"@atlaskit/primitives": "^13.4.0",
|
|
49
|
+
"@atlaskit/spinner": "^17.1.0",
|
|
50
|
+
"@atlaskit/tabs": "^17.2.0",
|
|
51
|
+
"@atlaskit/theme": "^14.1.0",
|
|
52
|
+
"@atlaskit/tokens": "^3.3.0",
|
|
53
|
+
"@atlaskit/tooltip": "^19.1.0",
|
|
54
54
|
"@atlaskit/ufo": "^0.3.0",
|
|
55
55
|
"@atlaskit/util-service-support": "^6.2.0",
|
|
56
56
|
"@babel/runtime": "^7.0.0",
|
|
@@ -64,20 +64,20 @@
|
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@atlaskit/editor-test-helpers": "*",
|
|
67
|
-
"@atlaskit/elements-test-helpers": "^0.
|
|
68
|
-
"@atlaskit/util-data-test": "^
|
|
69
|
-
"@atlassian/feature-flags-test-utils": "^0.
|
|
67
|
+
"@atlaskit/elements-test-helpers": "^0.8.0",
|
|
68
|
+
"@atlaskit/util-data-test": "^18.0.0",
|
|
69
|
+
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
70
70
|
"@emotion/jest": "^11.8.0",
|
|
71
71
|
"@testing-library/dom": "^10.1.0",
|
|
72
72
|
"@testing-library/jest-dom": "^6.4.5",
|
|
73
|
-
"@testing-library/react": "^
|
|
73
|
+
"@testing-library/react": "^13.4.0",
|
|
74
74
|
"@testing-library/react-hooks": "^8.0.1",
|
|
75
75
|
"@testing-library/user-event": "^14.4.3",
|
|
76
76
|
"dotenv": "^8.2.0",
|
|
77
77
|
"es6-promise": "^4.0.5",
|
|
78
78
|
"fetch-mock": "^8.0.0",
|
|
79
79
|
"raf-stub": "^2.0.1",
|
|
80
|
-
"react": "^
|
|
80
|
+
"react": "^18.2.0",
|
|
81
81
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
82
82
|
"typescript": "~5.4.2",
|
|
83
83
|
"wait-for-expect": "^1.2.0",
|
|
@@ -114,9 +114,6 @@
|
|
|
114
114
|
"platform-feature-flags": {
|
|
115
115
|
"platform-component-visual-refresh": {
|
|
116
116
|
"type": "boolean"
|
|
117
|
-
},
|
|
118
|
-
"platform_editor_breakout_use_css": {
|
|
119
|
-
"type": "boolean"
|
|
120
117
|
}
|
|
121
118
|
}
|
|
122
119
|
}
|