@atlaskit/reactions 36.0.0 → 36.0.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 +8 -0
- package/dist/cjs/analytics/index.js +1 -1
- package/dist/cjs/components/Reaction.compiled.css +1 -0
- package/dist/cjs/components/Reaction.js +4 -2
- package/dist/cjs/components/ReactionSummaryView.js +3 -2
- package/dist/es2019/analytics/index.js +1 -1
- package/dist/es2019/components/Reaction.compiled.css +1 -0
- package/dist/es2019/components/Reaction.js +4 -2
- package/dist/es2019/components/ReactionSummaryView.js +3 -2
- package/dist/esm/analytics/index.js +1 -1
- package/dist/esm/components/Reaction.compiled.css +1 -0
- package/dist/esm/components/Reaction.js +4 -2
- package/dist/esm/components/ReactionSummaryView.js +3 -2
- package/dist/types/analytics/index.d.ts +10 -10
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/reactions
|
|
2
2
|
|
|
3
|
+
## 36.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9cfe1cf91a89f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9cfe1cf91a89f) -
|
|
8
|
+
Render the reaction popup next to the parent
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 36.0.0
|
|
4
12
|
|
|
5
13
|
### Major 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; } // eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
|
13
13
|
var packageName = "@atlaskit/reactions";
|
|
14
|
-
var packageVersion = "
|
|
14
|
+
var packageVersion = "36.0.0";
|
|
15
15
|
/**
|
|
16
16
|
* TODO: move to utility package?
|
|
17
17
|
* A random sampling function
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
._1mouze3t{margin-block:var(--ds-space-0,0)}
|
|
4
4
|
._1rjc1b66{padding-block:var(--ds-space-050,4px)}
|
|
5
5
|
._1rjcze3t{padding-block:var(--ds-space-0,0)}
|
|
6
|
+
._2mzuglyw{list-style-type:none}
|
|
6
7
|
._8hrz1nam{transform-origin:center center 0}
|
|
7
8
|
._bozg19bv{padding-inline-start:10px}
|
|
8
9
|
._bozgu2gc{padding-inline-start:var(--ds-space-100,8px)}
|
|
@@ -18,6 +18,7 @@ var _reactIntl = require("react-intl");
|
|
|
18
18
|
var _css = require("@atlaskit/css");
|
|
19
19
|
var _useAnalyticsEvents2 = require("@atlaskit/analytics-next/useAnalyticsEvents");
|
|
20
20
|
var _emoji = require("@atlaskit/emoji");
|
|
21
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
21
22
|
var _analytics = require("../analytics");
|
|
22
23
|
var _Counter = require("./Counter");
|
|
23
24
|
var _ReactionParticleEffect = require("./ReactionParticleEffect");
|
|
@@ -31,7 +32,8 @@ var _compiled = require("@atlaskit/primitives/compiled");
|
|
|
31
32
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
32
33
|
var styles = {
|
|
33
34
|
container: "_kqswh2mm",
|
|
34
|
-
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t"
|
|
35
|
+
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t",
|
|
36
|
+
listItemNoMarker: "_2mzuglyw"
|
|
35
37
|
};
|
|
36
38
|
var emojiStyle = null;
|
|
37
39
|
var emojiNoReactionStyle = null;
|
|
@@ -160,7 +162,7 @@ var Reaction = exports.Reaction = function Reaction(_ref) {
|
|
|
160
162
|
});
|
|
161
163
|
}
|
|
162
164
|
return /*#__PURE__*/React.createElement(_compiled.Box, {
|
|
163
|
-
xcss: (0, _css.cx)(styles.container, rootElement === 'li' ? styles.listItem : undefined),
|
|
165
|
+
xcss: (0, _css.cx)(styles.container, rootElement === 'li' ? styles.listItem : undefined, rootElement === 'li' && (0, _fg.fg)('platform_a11y_fixes_reading_order') ? styles.listItemNoMarker : undefined),
|
|
164
166
|
as: rootElement
|
|
165
167
|
}, showParticleEffect && /*#__PURE__*/React.createElement(_ReactionParticleEffect.ReactionParticleEffect, {
|
|
166
168
|
emojiId: emojiId,
|
|
@@ -14,9 +14,9 @@ var _runtime = require("@compiled/react/runtime");
|
|
|
14
14
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
15
15
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
16
16
|
var _popup = require("@atlaskit/popup/popup");
|
|
17
|
-
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
18
17
|
var _picker = require("@atlaskit/emoji/picker");
|
|
19
18
|
var _isExperimentEnabled = require("@atlaskit/platform-feature-experiments/is-experiment-enabled");
|
|
19
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
20
20
|
var _useDelayedState3 = require("../hooks/useDelayedState");
|
|
21
21
|
var _Reaction = require("./Reaction");
|
|
22
22
|
var _Trigger = require("./Trigger");
|
|
@@ -240,7 +240,8 @@ var ReactionSummaryView = exports.ReactionSummaryView = function ReactionSummary
|
|
|
240
240
|
},
|
|
241
241
|
isOpen: isSummaryPopupOpen || isEmojiPickerOpen,
|
|
242
242
|
onClose: handlePopupClose,
|
|
243
|
-
shouldRenderToParent: (0,
|
|
243
|
+
shouldRenderToParent: (0, _fg.fg)('platform_a11y_fixes_reading_order'),
|
|
244
|
+
strategy: (0, _fg.fg)('platform_a11y_fixes_reading_order') ? 'absolute' : undefined,
|
|
244
245
|
trigger: function trigger(triggerProps) {
|
|
245
246
|
return /*#__PURE__*/React.createElement(_ReactionSummaryButton.ReactionSummaryButton, (0, _extends2.default)({}, triggerProps, {
|
|
246
247
|
emojiProvider: emojiProvider,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import createAndFireEvent from '@atlaskit/analytics-next/createAndFireEvents';
|
|
3
3
|
import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
|
|
4
4
|
const packageName = "@atlaskit/reactions";
|
|
5
|
-
const packageVersion = "
|
|
5
|
+
const packageVersion = "36.0.0";
|
|
6
6
|
/**
|
|
7
7
|
* TODO: move to utility package?
|
|
8
8
|
* A random sampling function
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
._1mouze3t{margin-block:var(--ds-space-0,0)}
|
|
4
4
|
._1rjc1b66{padding-block:var(--ds-space-050,4px)}
|
|
5
5
|
._1rjcze3t{padding-block:var(--ds-space-0,0)}
|
|
6
|
+
._2mzuglyw{list-style-type:none}
|
|
6
7
|
._8hrz1nam{transform-origin:center center 0}
|
|
7
8
|
._bozg19bv{padding-inline-start:10px}
|
|
8
9
|
._bozgu2gc{padding-inline-start:var(--ds-space-100,8px)}
|
|
@@ -7,6 +7,7 @@ import { useIntl } from 'react-intl';
|
|
|
7
7
|
import { cx } from '@atlaskit/css';
|
|
8
8
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next/useAnalyticsEvents';
|
|
9
9
|
import { ResourcedEmoji } from '@atlaskit/emoji';
|
|
10
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
10
11
|
import { createAndFireSafe, createReactionClickedEvent, createReactionFocusedEvent, createReactionHoveredEvent } from '../analytics';
|
|
11
12
|
import { Counter } from './Counter';
|
|
12
13
|
import { ReactionParticleEffect } from './ReactionParticleEffect';
|
|
@@ -19,7 +20,8 @@ import { StaticReaction } from './StaticReaction';
|
|
|
19
20
|
import { Box, Inline } from '@atlaskit/primitives/compiled';
|
|
20
21
|
const styles = {
|
|
21
22
|
container: "_kqswh2mm",
|
|
22
|
-
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t"
|
|
23
|
+
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t",
|
|
24
|
+
listItemNoMarker: "_2mzuglyw"
|
|
23
25
|
};
|
|
24
26
|
const emojiStyle = null;
|
|
25
27
|
const emojiNoReactionStyle = null;
|
|
@@ -127,7 +129,7 @@ export const Reaction = ({
|
|
|
127
129
|
});
|
|
128
130
|
}
|
|
129
131
|
return /*#__PURE__*/React.createElement(Box, {
|
|
130
|
-
xcss: cx(styles.container, rootElement === 'li' ? styles.listItem : undefined),
|
|
132
|
+
xcss: cx(styles.container, rootElement === 'li' ? styles.listItem : undefined, rootElement === 'li' && fg('platform_a11y_fixes_reading_order') ? styles.listItemNoMarker : undefined),
|
|
131
133
|
as: rootElement
|
|
132
134
|
}, showParticleEffect && /*#__PURE__*/React.createElement(ReactionParticleEffect, {
|
|
133
135
|
emojiId: emojiId,
|
|
@@ -5,9 +5,9 @@ import * as React from 'react';
|
|
|
5
5
|
import { ax, ix } from "@compiled/react/runtime";
|
|
6
6
|
import { useCallback, useState } from 'react';
|
|
7
7
|
import { Popup } from '@atlaskit/popup/popup';
|
|
8
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
9
8
|
import { EmojiPicker } from '@atlaskit/emoji/picker';
|
|
10
9
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
10
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
11
11
|
import { useDelayedState } from '../hooks/useDelayedState';
|
|
12
12
|
import { Reaction } from './Reaction';
|
|
13
13
|
import { Trigger as EmojiPickerTrigger } from './Trigger';
|
|
@@ -206,7 +206,8 @@ export const ReactionSummaryView = ({
|
|
|
206
206
|
}))),
|
|
207
207
|
isOpen: isSummaryPopupOpen || isEmojiPickerOpen,
|
|
208
208
|
onClose: handlePopupClose,
|
|
209
|
-
shouldRenderToParent:
|
|
209
|
+
shouldRenderToParent: fg('platform_a11y_fixes_reading_order'),
|
|
210
|
+
strategy: fg('platform_a11y_fixes_reading_order') ? 'absolute' : undefined,
|
|
210
211
|
trigger: triggerProps => /*#__PURE__*/React.createElement(ReactionSummaryButton, _extends({}, triggerProps, {
|
|
211
212
|
emojiProvider: emojiProvider,
|
|
212
213
|
reactions: reactions,
|
|
@@ -5,7 +5,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
5
5
|
import createAndFireEvent from '@atlaskit/analytics-next/createAndFireEvents';
|
|
6
6
|
import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
|
|
7
7
|
var packageName = "@atlaskit/reactions";
|
|
8
|
-
var packageVersion = "
|
|
8
|
+
var packageVersion = "36.0.0";
|
|
9
9
|
/**
|
|
10
10
|
* TODO: move to utility package?
|
|
11
11
|
* A random sampling function
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
._1mouze3t{margin-block:var(--ds-space-0,0)}
|
|
4
4
|
._1rjc1b66{padding-block:var(--ds-space-050,4px)}
|
|
5
5
|
._1rjcze3t{padding-block:var(--ds-space-0,0)}
|
|
6
|
+
._2mzuglyw{list-style-type:none}
|
|
6
7
|
._8hrz1nam{transform-origin:center center 0}
|
|
7
8
|
._bozg19bv{padding-inline-start:10px}
|
|
8
9
|
._bozgu2gc{padding-inline-start:var(--ds-space-100,8px)}
|
|
@@ -10,6 +10,7 @@ import { useIntl } from 'react-intl';
|
|
|
10
10
|
import { cx } from '@atlaskit/css';
|
|
11
11
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next/useAnalyticsEvents';
|
|
12
12
|
import { ResourcedEmoji } from '@atlaskit/emoji';
|
|
13
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
13
14
|
import { createAndFireSafe, createReactionClickedEvent, createReactionFocusedEvent, createReactionHoveredEvent } from '../analytics';
|
|
14
15
|
import { Counter } from './Counter';
|
|
15
16
|
import { ReactionParticleEffect } from './ReactionParticleEffect';
|
|
@@ -22,7 +23,8 @@ import { StaticReaction } from './StaticReaction';
|
|
|
22
23
|
import { Box, Inline } from '@atlaskit/primitives/compiled';
|
|
23
24
|
var styles = {
|
|
24
25
|
container: "_kqswh2mm",
|
|
25
|
-
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t"
|
|
26
|
+
listItem: "_195gze3t _1mouze3t _18zrze3t _1rjcze3t",
|
|
27
|
+
listItemNoMarker: "_2mzuglyw"
|
|
26
28
|
};
|
|
27
29
|
var emojiStyle = null;
|
|
28
30
|
var emojiNoReactionStyle = null;
|
|
@@ -151,7 +153,7 @@ export var Reaction = function Reaction(_ref) {
|
|
|
151
153
|
});
|
|
152
154
|
}
|
|
153
155
|
return /*#__PURE__*/React.createElement(Box, {
|
|
154
|
-
xcss: cx(styles.container, rootElement === 'li' ? styles.listItem : undefined),
|
|
156
|
+
xcss: cx(styles.container, rootElement === 'li' ? styles.listItem : undefined, rootElement === 'li' && fg('platform_a11y_fixes_reading_order') ? styles.listItemNoMarker : undefined),
|
|
155
157
|
as: rootElement
|
|
156
158
|
}, showParticleEffect && /*#__PURE__*/React.createElement(ReactionParticleEffect, {
|
|
157
159
|
emojiId: emojiId,
|
|
@@ -6,9 +6,9 @@ import * as React from 'react';
|
|
|
6
6
|
import { ax, ix } from "@compiled/react/runtime";
|
|
7
7
|
import { useCallback, useState } from 'react';
|
|
8
8
|
import { Popup } from '@atlaskit/popup/popup';
|
|
9
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
10
9
|
import { EmojiPicker } from '@atlaskit/emoji/picker';
|
|
11
10
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
11
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
12
12
|
import { useDelayedState } from '../hooks/useDelayedState';
|
|
13
13
|
import { Reaction } from './Reaction';
|
|
14
14
|
import { Trigger as EmojiPickerTrigger } from './Trigger';
|
|
@@ -231,7 +231,8 @@ export var ReactionSummaryView = function ReactionSummaryView(_ref) {
|
|
|
231
231
|
},
|
|
232
232
|
isOpen: isSummaryPopupOpen || isEmojiPickerOpen,
|
|
233
233
|
onClose: handlePopupClose,
|
|
234
|
-
shouldRenderToParent:
|
|
234
|
+
shouldRenderToParent: fg('platform_a11y_fixes_reading_order'),
|
|
235
|
+
strategy: fg('platform_a11y_fixes_reading_order') ? 'absolute' : undefined,
|
|
235
236
|
trigger: function trigger(triggerProps) {
|
|
236
237
|
return /*#__PURE__*/React.createElement(ReactionSummaryButton, _extends({}, triggerProps, {
|
|
237
238
|
emojiProvider: emojiProvider,
|
|
@@ -18,102 +18,102 @@ export declare const createAndFireSafe: <U extends any[], T extends (...args: U)
|
|
|
18
18
|
export declare const createRestSucceededEvent: (actionSubject: string) => {
|
|
19
19
|
action: string;
|
|
20
20
|
actionSubject: string;
|
|
21
|
-
eventType: EventType;
|
|
22
21
|
actionSubjectId: string | undefined;
|
|
23
22
|
attributes: {
|
|
24
23
|
packageName: string;
|
|
25
24
|
packageVersion: string;
|
|
26
25
|
};
|
|
26
|
+
eventType: EventType;
|
|
27
27
|
};
|
|
28
28
|
export declare const createRestFailedEvent: (actionSubject: string, errorCode?: number) => {
|
|
29
29
|
action: string;
|
|
30
30
|
actionSubject: string;
|
|
31
|
-
eventType: EventType;
|
|
32
31
|
actionSubjectId: string | undefined;
|
|
33
32
|
attributes: {
|
|
34
33
|
packageName: string;
|
|
35
34
|
packageVersion: string;
|
|
36
35
|
};
|
|
36
|
+
eventType: EventType;
|
|
37
37
|
};
|
|
38
38
|
export declare const createReactionsRenderedEvent: (startTime: number) => {
|
|
39
39
|
action: string;
|
|
40
40
|
actionSubject: string;
|
|
41
|
-
eventType: EventType;
|
|
42
41
|
actionSubjectId: string | undefined;
|
|
43
42
|
attributes: {
|
|
44
43
|
packageName: string;
|
|
45
44
|
packageVersion: string;
|
|
46
45
|
};
|
|
46
|
+
eventType: EventType;
|
|
47
47
|
};
|
|
48
48
|
export declare const createPickerButtonClickedEvent: (reactionEmojiCount: number) => {
|
|
49
49
|
action: string;
|
|
50
50
|
actionSubject: string;
|
|
51
|
-
eventType: EventType;
|
|
52
51
|
actionSubjectId: string | undefined;
|
|
53
52
|
attributes: {
|
|
54
53
|
packageName: string;
|
|
55
54
|
packageVersion: string;
|
|
56
55
|
};
|
|
56
|
+
eventType: EventType;
|
|
57
57
|
};
|
|
58
58
|
export declare const createPickerCancelledEvent: (startTime?: number) => {
|
|
59
59
|
action: string;
|
|
60
60
|
actionSubject: string;
|
|
61
|
-
eventType: EventType;
|
|
62
61
|
actionSubjectId: string | undefined;
|
|
63
62
|
attributes: {
|
|
64
63
|
packageName: string;
|
|
65
64
|
packageVersion: string;
|
|
66
65
|
};
|
|
66
|
+
eventType: EventType;
|
|
67
67
|
};
|
|
68
68
|
export declare const createPickerMoreClickedEvent: (startTime?: number) => {
|
|
69
69
|
action: string;
|
|
70
70
|
actionSubject: string;
|
|
71
|
-
eventType: EventType;
|
|
72
71
|
actionSubjectId: string | undefined;
|
|
73
72
|
attributes: {
|
|
74
73
|
packageName: string;
|
|
75
74
|
packageVersion: string;
|
|
76
75
|
};
|
|
76
|
+
eventType: EventType;
|
|
77
77
|
};
|
|
78
78
|
export declare const createReactionSelectionEvent: (source: ReactionSource, emojiId: string, reaction?: ReactionSummary, startTime?: number) => {
|
|
79
79
|
action: string;
|
|
80
80
|
actionSubject: string;
|
|
81
|
-
eventType: EventType;
|
|
82
81
|
actionSubjectId: string | undefined;
|
|
83
82
|
attributes: {
|
|
84
83
|
packageName: string;
|
|
85
84
|
packageVersion: string;
|
|
86
85
|
};
|
|
86
|
+
eventType: EventType;
|
|
87
87
|
};
|
|
88
88
|
export declare const createReactionHoveredEvent: (startTime?: number) => {
|
|
89
89
|
action: string;
|
|
90
90
|
actionSubject: string;
|
|
91
|
-
eventType: EventType;
|
|
92
91
|
actionSubjectId: string | undefined;
|
|
93
92
|
attributes: {
|
|
94
93
|
packageName: string;
|
|
95
94
|
packageVersion: string;
|
|
96
95
|
};
|
|
96
|
+
eventType: EventType;
|
|
97
97
|
};
|
|
98
98
|
export declare const createReactionFocusedEvent: (startTime?: number) => {
|
|
99
99
|
action: string;
|
|
100
100
|
actionSubject: string;
|
|
101
|
-
eventType: EventType;
|
|
102
101
|
actionSubjectId: string | undefined;
|
|
103
102
|
attributes: {
|
|
104
103
|
packageName: string;
|
|
105
104
|
packageVersion: string;
|
|
106
105
|
};
|
|
106
|
+
eventType: EventType;
|
|
107
107
|
};
|
|
108
108
|
export declare const createReactionClickedEvent: (added: boolean, emojiId: string) => {
|
|
109
109
|
action: string;
|
|
110
110
|
actionSubject: string;
|
|
111
|
-
eventType: EventType;
|
|
112
111
|
actionSubjectId: string | undefined;
|
|
113
112
|
attributes: {
|
|
114
113
|
packageName: string;
|
|
115
114
|
packageVersion: string;
|
|
116
115
|
};
|
|
116
|
+
eventType: EventType;
|
|
117
117
|
};
|
|
118
118
|
/**
|
|
119
119
|
* Used for store failure metadata for analytics
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reactions",
|
|
3
|
-
"version": "36.0.
|
|
3
|
+
"version": "36.0.1",
|
|
4
4
|
"description": "Reactions component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@atlaskit/afm-i18n-platform-elements-reactions": "2.200.0",
|
|
34
34
|
"@atlaskit/analytics-gas-types": "^6.0.0",
|
|
35
35
|
"@atlaskit/analytics-namespaced-context": "^8.1.0",
|
|
36
|
-
"@atlaskit/analytics-next": "^12.
|
|
36
|
+
"@atlaskit/analytics-next": "^12.4.0",
|
|
37
37
|
"@atlaskit/avatar": "^27.2.0",
|
|
38
38
|
"@atlaskit/button": "^25.2.0",
|
|
39
39
|
"@atlaskit/css": "^1.0.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@atlaskit/icon": "^37.5.0",
|
|
44
44
|
"@atlaskit/link": "^5.1.0",
|
|
45
45
|
"@atlaskit/modal-dialog": "^16.5.0",
|
|
46
|
-
"@atlaskit/motion": "^8.
|
|
46
|
+
"@atlaskit/motion": "^8.5.0",
|
|
47
47
|
"@atlaskit/platform-feature-experiments": "^0.3.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^2.1.0",
|
|
49
49
|
"@atlaskit/popper": "^9.3.0",
|
|
@@ -136,6 +136,9 @@
|
|
|
136
136
|
"a11y_reactions_reading_order": {
|
|
137
137
|
"type": "boolean"
|
|
138
138
|
},
|
|
139
|
+
"platform_a11y_fixes_reading_order": {
|
|
140
|
+
"type": "boolean"
|
|
141
|
+
},
|
|
139
142
|
"platform_reactions_a11y_group_added_reactions": {
|
|
140
143
|
"type": "boolean"
|
|
141
144
|
},
|