@atlaskit/reactions 24.6.0 → 24.7.0
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 +12 -0
- package/dist/cjs/analytics/index.js +1 -1
- package/dist/cjs/components/ReactionDialog/ReactionView.js +9 -4
- package/dist/cjs/components/ReactionDialog/ReactionsList.js +11 -3
- package/dist/cjs/components/ReactionDialog/styles.js +2 -2
- package/dist/cjs/components/ReactionSummary/ReactionSummaryView.js +11 -4
- package/dist/cjs/components/Reactions/Reactions.js +18 -14
- package/dist/cjs/components/Reactions/styles.js +1 -12
- package/dist/es2019/analytics/index.js +1 -1
- package/dist/es2019/components/ReactionDialog/ReactionView.js +10 -5
- package/dist/es2019/components/ReactionDialog/ReactionsList.js +11 -3
- package/dist/es2019/components/ReactionDialog/styles.js +2 -2
- package/dist/es2019/components/ReactionSummary/ReactionSummaryView.js +12 -5
- package/dist/es2019/components/Reactions/Reactions.js +15 -14
- package/dist/es2019/components/Reactions/styles.js +0 -11
- package/dist/esm/analytics/index.js +1 -1
- package/dist/esm/components/ReactionDialog/ReactionView.js +10 -5
- package/dist/esm/components/ReactionDialog/ReactionsList.js +11 -3
- package/dist/esm/components/ReactionDialog/styles.js +2 -2
- package/dist/esm/components/ReactionSummary/ReactionSummaryView.js +12 -5
- package/dist/esm/components/Reactions/Reactions.js +18 -15
- package/dist/esm/components/Reactions/styles.js +0 -11
- package/dist/types/components/ReactionPicker/RepositionOnUpdate.d.ts +1 -1
- package/dist/types/components/ReactionSummary/ReactionSummaryView.d.ts +2 -2
- package/dist/types/components/Reactions/styles.d.ts +0 -1
- package/dist/types/containers/ConnectedReactionPicker/ConnectedReactionPicker.d.ts +1 -1
- package/dist/types/containers/ConnectedReactionsView/ConnectedReactionsView.d.ts +1 -1
- package/dist/types-ts4.5/components/ReactionPicker/RepositionOnUpdate.d.ts +1 -1
- package/dist/types-ts4.5/components/ReactionSummary/ReactionSummaryView.d.ts +2 -2
- package/dist/types-ts4.5/components/Reactions/styles.d.ts +0 -1
- package/dist/types-ts4.5/containers/ConnectedReactionPicker/ConnectedReactionPicker.d.ts +1 -1
- package/dist/types-ts4.5/containers/ConnectedReactionsView/ConnectedReactionsView.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/reactions
|
|
2
2
|
|
|
3
|
+
## 24.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#110663](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110663)
|
|
8
|
+
[`ec41000e84d80`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ec41000e84d80) -
|
|
9
|
+
[ux] Update styling of Reactions Dialog entrypoint and the Dialog itself
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 24.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 = "24.
|
|
14
|
+
var packageVersion = "24.7.0";
|
|
15
15
|
/**
|
|
16
16
|
* TODO: move to utility package?
|
|
17
17
|
* A random sampling function
|
|
@@ -29,6 +29,9 @@ var _styles = require("./styles");
|
|
|
29
29
|
var userDescriptionStyle = (0, _primitives.xcss)({
|
|
30
30
|
marginLeft: 'space.200'
|
|
31
31
|
});
|
|
32
|
+
var profileWrapperStyle = (0, _primitives.xcss)({
|
|
33
|
+
marginLeft: 'space.0'
|
|
34
|
+
});
|
|
32
35
|
var ReactionView = exports.ReactionView = function ReactionView(_ref) {
|
|
33
36
|
var selectedEmojiId = _ref.selectedEmojiId,
|
|
34
37
|
emojiProvider = _ref.emojiProvider,
|
|
@@ -108,17 +111,19 @@ var ReactionView = exports.ReactionView = function ReactionView(_ref) {
|
|
|
108
111
|
(0, _react2.jsx)("li", {
|
|
109
112
|
css: _styles.userStyle,
|
|
110
113
|
key: user.id
|
|
111
|
-
}, ProfileCardWrapper && user.accountId ? (0, _react2.jsx)(
|
|
114
|
+
}, ProfileCardWrapper && user.accountId ? (0, _react2.jsx)(_primitives.Box, {
|
|
115
|
+
xcss: profileWrapperStyle
|
|
116
|
+
}, (0, _react2.jsx)(ProfileCardWrapper, {
|
|
112
117
|
userId: user.accountId,
|
|
113
118
|
isAnonymous: false,
|
|
114
119
|
canViewProfile: true,
|
|
115
120
|
position: "left-start"
|
|
116
121
|
}, (0, _react2.jsx)(_Avatar.default, {
|
|
117
|
-
size: "
|
|
122
|
+
size: "medium",
|
|
118
123
|
src: profile,
|
|
119
124
|
testId: "profile"
|
|
120
|
-
})) : (0, _react2.jsx)(_Avatar.default, {
|
|
121
|
-
size: "
|
|
125
|
+
}))) : (0, _react2.jsx)(_Avatar.default, {
|
|
126
|
+
size: "medium",
|
|
122
127
|
src: profile,
|
|
123
128
|
testId: "profile"
|
|
124
129
|
}), (0, _react2.jsx)(_primitives.Flex, {
|
|
@@ -26,7 +26,13 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
27
27
|
|
|
28
28
|
var emojiStyles = (0, _primitives.xcss)({
|
|
29
|
-
|
|
29
|
+
transformOrigin: 'center center 0',
|
|
30
|
+
paddingInlineStart: 'space.100',
|
|
31
|
+
paddingBlock: 'space.050',
|
|
32
|
+
paddingInlineEnd: 'space.050'
|
|
33
|
+
});
|
|
34
|
+
var counterStyle = (0, _primitives.xcss)({
|
|
35
|
+
marginTop: 'space.025'
|
|
30
36
|
});
|
|
31
37
|
var ReactionsList = exports.ReactionsList = function ReactionsList(_ref) {
|
|
32
38
|
var reactions = _ref.reactions,
|
|
@@ -103,9 +109,11 @@ var ReactionsList = exports.ReactionsList = function ReactionsList(_ref) {
|
|
|
103
109
|
emojiId: emojiId,
|
|
104
110
|
fitToHeight: 16,
|
|
105
111
|
showTooltip: true
|
|
106
|
-
})), (0, _react2.jsx)(
|
|
112
|
+
})), (0, _react2.jsx)(_primitives.Box, {
|
|
113
|
+
xcss: counterStyle
|
|
114
|
+
}, (0, _react2.jsx)(_Counter.Counter, {
|
|
107
115
|
value: reaction.count
|
|
108
|
-
}))));
|
|
116
|
+
})))));
|
|
109
117
|
}))), reactions.map(function (reaction) {
|
|
110
118
|
return (0, _react2.jsx)(_ReactionView.ReactionView, {
|
|
111
119
|
key: reaction.emojiId,
|
|
@@ -110,7 +110,7 @@ var reactionViewStyle = exports.reactionViewStyle = (0, _react.css)({
|
|
|
110
110
|
p: {
|
|
111
111
|
margin: 0,
|
|
112
112
|
color: "".concat("var(--ds-text, ".concat(_colors.N800, ")")),
|
|
113
|
-
font: "var(--ds-font-
|
|
113
|
+
font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
114
114
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
115
115
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
116
116
|
lineHeight: '20px',
|
|
@@ -138,7 +138,7 @@ var userListStyle = exports.userListStyle = (0, _react.css)({
|
|
|
138
138
|
var userStyle = exports.userStyle = (0, _react.css)({
|
|
139
139
|
display: 'flex',
|
|
140
140
|
alignItems: 'center',
|
|
141
|
-
padding: "var(--ds-space-
|
|
141
|
+
padding: "var(--ds-space-050, 4px)".concat(" 0px ", "var(--ds-space-050, 4px)", " 0px"),
|
|
142
142
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
143
143
|
'> span': {
|
|
144
144
|
marginLeft: "var(--ds-space-200, 16px)"
|
|
@@ -23,6 +23,9 @@ var summaryPopupStyles = (0, _primitives.xcss)({
|
|
|
23
23
|
paddingTop: 'space.050',
|
|
24
24
|
maxWidth: '325px'
|
|
25
25
|
});
|
|
26
|
+
var viewAllButtonStyling = (0, _primitives.xcss)({
|
|
27
|
+
marginTop: 'space.050'
|
|
28
|
+
});
|
|
26
29
|
|
|
27
30
|
/**
|
|
28
31
|
* Test id for the Reactions summary view popup
|
|
@@ -64,7 +67,8 @@ var ReactionSummaryView = exports.ReactionSummaryView = function ReactionSummary
|
|
|
64
67
|
xcss: summaryPopupStyles,
|
|
65
68
|
testId: RENDER_SUMMARY_VIEW_POPUP_TESTID,
|
|
66
69
|
space: "space.025",
|
|
67
|
-
shouldWrap: true
|
|
70
|
+
shouldWrap: true,
|
|
71
|
+
alignBlock: "center"
|
|
68
72
|
}, reactions.map(function (reaction) {
|
|
69
73
|
return /*#__PURE__*/_react.default.createElement(_Reaction.Reaction, {
|
|
70
74
|
key: reaction.emojiId,
|
|
@@ -76,15 +80,18 @@ var ReactionSummaryView = exports.ReactionSummaryView = function ReactionSummary
|
|
|
76
80
|
flash: flash[reaction.emojiId],
|
|
77
81
|
showParticleEffect: particleEffectByEmoji[reaction.emojiId]
|
|
78
82
|
});
|
|
79
|
-
}), allowUserDialog && /*#__PURE__*/_react.default.createElement(
|
|
83
|
+
}), allowUserDialog && /*#__PURE__*/_react.default.createElement(_primitives.Box, {
|
|
84
|
+
xcss: viewAllButtonStyling
|
|
85
|
+
}, /*#__PURE__*/_react.default.createElement(_new.default, {
|
|
80
86
|
appearance: "subtle",
|
|
81
87
|
onClick: function onClick() {
|
|
82
88
|
return handleOpenReactionsDialog === null || handleOpenReactionsDialog === void 0 ? void 0 : handleOpenReactionsDialog(reactions[0].emojiId);
|
|
83
|
-
}
|
|
89
|
+
},
|
|
90
|
+
spacing: "compact"
|
|
84
91
|
}, /*#__PURE__*/_react.default.createElement(_primitives.Text, {
|
|
85
92
|
color: "color.text.subtlest",
|
|
86
93
|
weight: "medium"
|
|
87
|
-
}, /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _i18n.messages.seeWhoReacted))));
|
|
94
|
+
}, /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _i18n.messages.seeWhoReacted)))));
|
|
88
95
|
},
|
|
89
96
|
isOpen: isSummaryPopupOpen,
|
|
90
97
|
onClose: handlePopupClose,
|
|
@@ -8,14 +8,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.Reactions = exports.RENDER_VIEWALL_REACTED_USERS_DIALOG = exports.RENDER_REACTIONS_TESTID = exports.RENDER_REACTIONS_SUMMARY_TESTID = void 0;
|
|
9
9
|
exports.getTooltip = getTooltip;
|
|
10
10
|
exports.ufoExperiences = void 0;
|
|
11
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
12
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
12
13
|
var _react = _interopRequireWildcard(require("react"));
|
|
13
14
|
var _react2 = require("@emotion/react");
|
|
14
15
|
var _reactIntlNext = require("react-intl-next");
|
|
15
16
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
16
17
|
var _modalDialog = require("@atlaskit/modal-dialog");
|
|
17
|
-
var
|
|
18
|
+
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
18
19
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
20
|
+
var _primitives = require("@atlaskit/primitives");
|
|
19
21
|
var _analytics = require("../../analytics");
|
|
20
22
|
var _constants = require("../../shared/constants");
|
|
21
23
|
var _i18n = require("../../shared/i18n");
|
|
@@ -35,6 +37,10 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
35
37
|
|
|
36
38
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
37
39
|
|
|
40
|
+
var tooltipStyle = (0, _primitives.xcss)({
|
|
41
|
+
paddingLeft: 'space.050'
|
|
42
|
+
});
|
|
43
|
+
|
|
38
44
|
/**
|
|
39
45
|
* Set of all available UFO experiences relating to reactions dialog
|
|
40
46
|
*/
|
|
@@ -348,21 +354,19 @@ var Reactions = exports.Reactions = /*#__PURE__*/_react.default.memo(function (_
|
|
|
348
354
|
showOpaqueBackground: showOpaqueBackground,
|
|
349
355
|
showAddReactionText: showAddReactionText,
|
|
350
356
|
subtleReactionsSummaryAndPicker: subtleReactionsSummaryAndPicker
|
|
351
|
-
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && (0, _react2.jsx)(
|
|
357
|
+
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && (0, _react2.jsx)(_primitives.Box, {
|
|
358
|
+
xcss: tooltipStyle
|
|
359
|
+
}, (0, _react2.jsx)(_tooltip.default, {
|
|
352
360
|
content: (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _i18n.messages.seeWhoReactedTooltip),
|
|
353
361
|
hideTooltipOnClick: true
|
|
354
|
-
}, (
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
,
|
|
363
|
-
css: _styles.seeWhoReactedStyle,
|
|
364
|
-
testId: RENDER_VIEWALL_REACTED_USERS_DIALOG
|
|
365
|
-
}, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _i18n.messages.seeWhoReacted))), (0, _react2.jsx)(_modalDialog.ModalTransition, null, !!selectedEmojiId && (0, _react2.jsx)(_ReactionDialog.ReactionsDialog, {
|
|
362
|
+
}, function (tooltipProps) {
|
|
363
|
+
return (0, _react2.jsx)(_new.default, (0, _extends2.default)({}, tooltipProps, {
|
|
364
|
+
appearance: "subtle",
|
|
365
|
+
spacing: "compact",
|
|
366
|
+
onClick: handleOpenAllReactionsDialog,
|
|
367
|
+
testId: RENDER_VIEWALL_REACTED_USERS_DIALOG
|
|
368
|
+
}), (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _i18n.messages.seeWhoReacted));
|
|
369
|
+
})), (0, _react2.jsx)(_modalDialog.ModalTransition, null, !!selectedEmojiId && (0, _react2.jsx)(_ReactionDialog.ReactionsDialog, {
|
|
366
370
|
selectedEmojiId: selectedEmojiId,
|
|
367
371
|
reactions: memorizedReactions,
|
|
368
372
|
emojiProvider: emojiProvider,
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.wrapperStyle = exports.
|
|
6
|
+
exports.wrapperStyle = exports.reactionPickerStyle = void 0;
|
|
7
7
|
var _react = require("@emotion/react");
|
|
8
8
|
/**
|
|
9
9
|
* @jsxRuntime classic
|
|
@@ -17,17 +17,6 @@ var reactionPickerStyle = exports.reactionPickerStyle = (0, _react.css)({
|
|
|
17
17
|
marginTop: "var(--ds-space-050, 4px)"
|
|
18
18
|
});
|
|
19
19
|
|
|
20
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
21
|
-
var seeWhoReactedStyle = exports.seeWhoReactedStyle = (0, _react.css)({
|
|
22
|
-
height: '24px',
|
|
23
|
-
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
24
|
-
lineHeight: '24px',
|
|
25
|
-
paddingLeft: 0,
|
|
26
|
-
paddingRight: 0,
|
|
27
|
-
marginTop: "var(--ds-space-050, 4px)",
|
|
28
|
-
marginLeft: "var(--ds-space-050, 4px)"
|
|
29
|
-
});
|
|
30
|
-
|
|
31
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
32
21
|
var wrapperStyle = exports.wrapperStyle = (0, _react.css)({
|
|
33
22
|
display: 'flex',
|
|
@@ -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.7.0";
|
|
5
5
|
/**
|
|
6
6
|
* TODO: move to utility package?
|
|
7
7
|
* A random sampling function
|
|
@@ -11,12 +11,15 @@ import { ResourcedEmoji } from '@atlaskit/emoji/element';
|
|
|
11
11
|
import Avatar from '@atlaskit/avatar/Avatar';
|
|
12
12
|
import Spinner from '@atlaskit/spinner';
|
|
13
13
|
import { useTabPanel } from '@atlaskit/tabs';
|
|
14
|
-
import { Text, Flex, xcss } from '@atlaskit/primitives';
|
|
14
|
+
import { Box, Text, Flex, xcss } from '@atlaskit/primitives';
|
|
15
15
|
import { messages } from '../../shared/i18n';
|
|
16
16
|
import { reactionViewStyle, userListStyle, userStyle, centerSpinner } from './styles';
|
|
17
17
|
const userDescriptionStyle = xcss({
|
|
18
18
|
marginLeft: 'space.200'
|
|
19
19
|
});
|
|
20
|
+
const profileWrapperStyle = xcss({
|
|
21
|
+
marginLeft: 'space.0'
|
|
22
|
+
});
|
|
20
23
|
export const ReactionView = ({
|
|
21
24
|
selectedEmojiId,
|
|
22
25
|
emojiProvider,
|
|
@@ -77,17 +80,19 @@ export const ReactionView = ({
|
|
|
77
80
|
jsx("li", {
|
|
78
81
|
css: userStyle,
|
|
79
82
|
key: user.id
|
|
80
|
-
}, ProfileCardWrapper && user.accountId ? jsx(
|
|
83
|
+
}, ProfileCardWrapper && user.accountId ? jsx(Box, {
|
|
84
|
+
xcss: profileWrapperStyle
|
|
85
|
+
}, jsx(ProfileCardWrapper, {
|
|
81
86
|
userId: user.accountId,
|
|
82
87
|
isAnonymous: false,
|
|
83
88
|
canViewProfile: true,
|
|
84
89
|
position: "left-start"
|
|
85
90
|
}, jsx(Avatar, {
|
|
86
|
-
size: "
|
|
91
|
+
size: "medium",
|
|
87
92
|
src: profile,
|
|
88
93
|
testId: "profile"
|
|
89
|
-
})) : jsx(Avatar, {
|
|
90
|
-
size: "
|
|
94
|
+
}))) : jsx(Avatar, {
|
|
95
|
+
size: "medium",
|
|
91
96
|
src: profile,
|
|
92
97
|
testId: "profile"
|
|
93
98
|
}), jsx(Flex, {
|
|
@@ -13,7 +13,13 @@ import { Counter } from '../Counter';
|
|
|
13
13
|
import { customTabWrapper, customTabListStyles } from './styles';
|
|
14
14
|
import { ReactionView } from './ReactionView';
|
|
15
15
|
const emojiStyles = xcss({
|
|
16
|
-
|
|
16
|
+
transformOrigin: 'center center 0',
|
|
17
|
+
paddingInlineStart: 'space.100',
|
|
18
|
+
paddingBlock: 'space.050',
|
|
19
|
+
paddingInlineEnd: 'space.050'
|
|
20
|
+
});
|
|
21
|
+
const counterStyle = xcss({
|
|
22
|
+
marginTop: 'space.025'
|
|
17
23
|
});
|
|
18
24
|
export const ReactionsList = ({
|
|
19
25
|
reactions,
|
|
@@ -85,9 +91,11 @@ export const ReactionsList = ({
|
|
|
85
91
|
emojiId: emojiId,
|
|
86
92
|
fitToHeight: 16,
|
|
87
93
|
showTooltip: true
|
|
88
|
-
})), jsx(
|
|
94
|
+
})), jsx(Box, {
|
|
95
|
+
xcss: counterStyle
|
|
96
|
+
}, jsx(Counter, {
|
|
89
97
|
value: reaction.count
|
|
90
|
-
}))));
|
|
98
|
+
})))));
|
|
91
99
|
}))), reactions.map(reaction => jsx(ReactionView, {
|
|
92
100
|
key: reaction.emojiId,
|
|
93
101
|
reaction: reaction,
|
|
@@ -97,7 +97,7 @@ export const reactionViewStyle = css({
|
|
|
97
97
|
p: {
|
|
98
98
|
margin: 0,
|
|
99
99
|
color: `${`var(--ds-text, ${N800})`}`,
|
|
100
|
-
font: "var(--ds-font-
|
|
100
|
+
font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
101
101
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
102
102
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
103
103
|
lineHeight: '20px',
|
|
@@ -125,7 +125,7 @@ export const userListStyle = css({
|
|
|
125
125
|
export const userStyle = css({
|
|
126
126
|
display: 'flex',
|
|
127
127
|
alignItems: 'center',
|
|
128
|
-
padding: `${"var(--ds-space-
|
|
128
|
+
padding: `${"var(--ds-space-050, 4px)"} 0px ${"var(--ds-space-050, 4px)"} 0px`,
|
|
129
129
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
130
130
|
'> span': {
|
|
131
131
|
marginLeft: "var(--ds-space-200, 16px)"
|
|
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React, { useCallback, useState } from 'react';
|
|
3
3
|
import { FormattedMessage } from 'react-intl-next';
|
|
4
4
|
import Popup from '@atlaskit/popup';
|
|
5
|
-
import { Inline, Text, xcss } from '@atlaskit/primitives';
|
|
5
|
+
import { Box, Inline, Text, xcss } from '@atlaskit/primitives';
|
|
6
6
|
import Button from '@atlaskit/button/new';
|
|
7
7
|
import { Reaction } from '../Reaction';
|
|
8
8
|
import { ReactionSummaryButton } from './ReactionSummaryButton';
|
|
@@ -12,6 +12,9 @@ const summaryPopupStyles = xcss({
|
|
|
12
12
|
paddingTop: 'space.050',
|
|
13
13
|
maxWidth: '325px'
|
|
14
14
|
});
|
|
15
|
+
const viewAllButtonStyling = xcss({
|
|
16
|
+
marginTop: 'space.050'
|
|
17
|
+
});
|
|
15
18
|
|
|
16
19
|
/**
|
|
17
20
|
* Test id for the Reactions summary view popup
|
|
@@ -40,7 +43,8 @@ export const ReactionSummaryView = ({
|
|
|
40
43
|
xcss: summaryPopupStyles,
|
|
41
44
|
testId: RENDER_SUMMARY_VIEW_POPUP_TESTID,
|
|
42
45
|
space: "space.025",
|
|
43
|
-
shouldWrap: true
|
|
46
|
+
shouldWrap: true,
|
|
47
|
+
alignBlock: "center"
|
|
44
48
|
}, reactions.map(reaction => /*#__PURE__*/React.createElement(Reaction, {
|
|
45
49
|
key: reaction.emojiId,
|
|
46
50
|
reaction: reaction,
|
|
@@ -50,13 +54,16 @@ export const ReactionSummaryView = ({
|
|
|
50
54
|
onMouseEnter: onReactionMouseEnter,
|
|
51
55
|
flash: flash[reaction.emojiId],
|
|
52
56
|
showParticleEffect: particleEffectByEmoji[reaction.emojiId]
|
|
53
|
-
})), allowUserDialog && /*#__PURE__*/React.createElement(
|
|
57
|
+
})), allowUserDialog && /*#__PURE__*/React.createElement(Box, {
|
|
58
|
+
xcss: viewAllButtonStyling
|
|
59
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
54
60
|
appearance: "subtle",
|
|
55
|
-
onClick: () => handleOpenReactionsDialog === null || handleOpenReactionsDialog === void 0 ? void 0 : handleOpenReactionsDialog(reactions[0].emojiId)
|
|
61
|
+
onClick: () => handleOpenReactionsDialog === null || handleOpenReactionsDialog === void 0 ? void 0 : handleOpenReactionsDialog(reactions[0].emojiId),
|
|
62
|
+
spacing: "compact"
|
|
56
63
|
}, /*#__PURE__*/React.createElement(Text, {
|
|
57
64
|
color: "color.text.subtlest",
|
|
58
65
|
weight: "medium"
|
|
59
|
-
}, /*#__PURE__*/React.createElement(FormattedMessage, messages.seeWhoReacted)))),
|
|
66
|
+
}, /*#__PURE__*/React.createElement(FormattedMessage, messages.seeWhoReacted))))),
|
|
60
67
|
isOpen: isSummaryPopupOpen,
|
|
61
68
|
onClose: handlePopupClose,
|
|
62
69
|
trigger: triggerProps => /*#__PURE__*/React.createElement(ReactionSummaryButton, _extends({}, triggerProps, {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
/**
|
|
2
3
|
* @jsxRuntime classic
|
|
3
4
|
* @jsx jsx
|
|
@@ -8,8 +9,9 @@ import { jsx } from '@emotion/react';
|
|
|
8
9
|
import { FormattedMessage } from 'react-intl-next';
|
|
9
10
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
10
11
|
import { ModalTransition } from '@atlaskit/modal-dialog';
|
|
11
|
-
import Button from '@atlaskit/button/
|
|
12
|
+
import Button from '@atlaskit/button/new';
|
|
12
13
|
import Tooltip from '@atlaskit/tooltip';
|
|
14
|
+
import { Box, xcss } from '@atlaskit/primitives';
|
|
13
15
|
import { createAndFireSafe, createPickerButtonClickedEvent, createPickerCancelledEvent, createPickerMoreClickedEvent, createReactionsRenderedEvent, createReactionSelectionEvent, isSampled } from '../../analytics';
|
|
14
16
|
import { SAMPLING_RATE_REACTIONS_RENDERED_EXP } from '../../shared/constants';
|
|
15
17
|
import { messages } from '../../shared/i18n';
|
|
@@ -19,7 +21,10 @@ import { Reaction } from '../Reaction';
|
|
|
19
21
|
import { ReactionsDialog } from '../ReactionDialog';
|
|
20
22
|
import { ReactionPicker } from '../ReactionPicker';
|
|
21
23
|
import { ReactionSummaryView } from '../ReactionSummary/';
|
|
22
|
-
import { reactionPickerStyle,
|
|
24
|
+
import { reactionPickerStyle, wrapperStyle } from './styles';
|
|
25
|
+
const tooltipStyle = xcss({
|
|
26
|
+
paddingLeft: 'space.050'
|
|
27
|
+
});
|
|
23
28
|
|
|
24
29
|
/**
|
|
25
30
|
* Set of all available UFO experiences relating to reactions dialog
|
|
@@ -309,21 +314,17 @@ export const Reactions = /*#__PURE__*/React.memo(({
|
|
|
309
314
|
showOpaqueBackground: showOpaqueBackground,
|
|
310
315
|
showAddReactionText: showAddReactionText,
|
|
311
316
|
subtleReactionsSummaryAndPicker: subtleReactionsSummaryAndPicker
|
|
312
|
-
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && jsx(
|
|
317
|
+
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && jsx(Box, {
|
|
318
|
+
xcss: tooltipStyle
|
|
319
|
+
}, jsx(Tooltip, {
|
|
313
320
|
content: jsx(FormattedMessage, messages.seeWhoReactedTooltip),
|
|
314
321
|
hideTooltipOnClick: true
|
|
315
|
-
}, jsx(Button
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
appearance: "subtle-link",
|
|
320
|
-
onClick: handleOpenAllReactionsDialog
|
|
321
|
-
// TODO: (from codemod) Buttons with "component", "css" or "style" prop can't be automatically migrated with codemods. Please migrate it manually.
|
|
322
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
323
|
-
,
|
|
324
|
-
css: seeWhoReactedStyle,
|
|
322
|
+
}, tooltipProps => jsx(Button, _extends({}, tooltipProps, {
|
|
323
|
+
appearance: "subtle",
|
|
324
|
+
spacing: "compact",
|
|
325
|
+
onClick: handleOpenAllReactionsDialog,
|
|
325
326
|
testId: RENDER_VIEWALL_REACTED_USERS_DIALOG
|
|
326
|
-
}, jsx(FormattedMessage, messages.seeWhoReacted))), jsx(ModalTransition, null, !!selectedEmojiId && jsx(ReactionsDialog, {
|
|
327
|
+
}), jsx(FormattedMessage, messages.seeWhoReacted)))), jsx(ModalTransition, null, !!selectedEmojiId && jsx(ReactionsDialog, {
|
|
327
328
|
selectedEmojiId: selectedEmojiId,
|
|
328
329
|
reactions: memorizedReactions,
|
|
329
330
|
emojiProvider: emojiProvider,
|
|
@@ -10,17 +10,6 @@ export const reactionPickerStyle = css({
|
|
|
10
10
|
marginTop: "var(--ds-space-050, 4px)"
|
|
11
11
|
});
|
|
12
12
|
|
|
13
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
14
|
-
export const seeWhoReactedStyle = css({
|
|
15
|
-
height: '24px',
|
|
16
|
-
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
17
|
-
lineHeight: '24px',
|
|
18
|
-
paddingLeft: 0,
|
|
19
|
-
paddingRight: 0,
|
|
20
|
-
marginTop: "var(--ds-space-050, 4px)",
|
|
21
|
-
marginLeft: "var(--ds-space-050, 4px)"
|
|
22
|
-
});
|
|
23
|
-
|
|
24
13
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
25
14
|
export const wrapperStyle = css({
|
|
26
15
|
display: 'flex',
|
|
@@ -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.7.0";
|
|
8
8
|
/**
|
|
9
9
|
* TODO: move to utility package?
|
|
10
10
|
* A random sampling function
|
|
@@ -14,12 +14,15 @@ import { ResourcedEmoji } from '@atlaskit/emoji/element';
|
|
|
14
14
|
import Avatar from '@atlaskit/avatar/Avatar';
|
|
15
15
|
import Spinner from '@atlaskit/spinner';
|
|
16
16
|
import { useTabPanel } from '@atlaskit/tabs';
|
|
17
|
-
import { Text, Flex, xcss } from '@atlaskit/primitives';
|
|
17
|
+
import { Box, Text, Flex, xcss } from '@atlaskit/primitives';
|
|
18
18
|
import { messages } from '../../shared/i18n';
|
|
19
19
|
import { reactionViewStyle, userListStyle, userStyle, centerSpinner } from './styles';
|
|
20
20
|
var userDescriptionStyle = xcss({
|
|
21
21
|
marginLeft: 'space.200'
|
|
22
22
|
});
|
|
23
|
+
var profileWrapperStyle = xcss({
|
|
24
|
+
marginLeft: 'space.0'
|
|
25
|
+
});
|
|
23
26
|
export var ReactionView = function ReactionView(_ref) {
|
|
24
27
|
var selectedEmojiId = _ref.selectedEmojiId,
|
|
25
28
|
emojiProvider = _ref.emojiProvider,
|
|
@@ -99,17 +102,19 @@ export var ReactionView = function ReactionView(_ref) {
|
|
|
99
102
|
jsx("li", {
|
|
100
103
|
css: userStyle,
|
|
101
104
|
key: user.id
|
|
102
|
-
}, ProfileCardWrapper && user.accountId ? jsx(
|
|
105
|
+
}, ProfileCardWrapper && user.accountId ? jsx(Box, {
|
|
106
|
+
xcss: profileWrapperStyle
|
|
107
|
+
}, jsx(ProfileCardWrapper, {
|
|
103
108
|
userId: user.accountId,
|
|
104
109
|
isAnonymous: false,
|
|
105
110
|
canViewProfile: true,
|
|
106
111
|
position: "left-start"
|
|
107
112
|
}, jsx(Avatar, {
|
|
108
|
-
size: "
|
|
113
|
+
size: "medium",
|
|
109
114
|
src: profile,
|
|
110
115
|
testId: "profile"
|
|
111
|
-
})) : jsx(Avatar, {
|
|
112
|
-
size: "
|
|
116
|
+
}))) : jsx(Avatar, {
|
|
117
|
+
size: "medium",
|
|
113
118
|
src: profile,
|
|
114
119
|
testId: "profile"
|
|
115
120
|
}), jsx(Flex, {
|
|
@@ -14,7 +14,13 @@ import { Counter } from '../Counter';
|
|
|
14
14
|
import { customTabWrapper, customTabListStyles } from './styles';
|
|
15
15
|
import { ReactionView } from './ReactionView';
|
|
16
16
|
var emojiStyles = xcss({
|
|
17
|
-
|
|
17
|
+
transformOrigin: 'center center 0',
|
|
18
|
+
paddingInlineStart: 'space.100',
|
|
19
|
+
paddingBlock: 'space.050',
|
|
20
|
+
paddingInlineEnd: 'space.050'
|
|
21
|
+
});
|
|
22
|
+
var counterStyle = xcss({
|
|
23
|
+
marginTop: 'space.025'
|
|
18
24
|
});
|
|
19
25
|
export var ReactionsList = function ReactionsList(_ref) {
|
|
20
26
|
var reactions = _ref.reactions,
|
|
@@ -91,9 +97,11 @@ export var ReactionsList = function ReactionsList(_ref) {
|
|
|
91
97
|
emojiId: emojiId,
|
|
92
98
|
fitToHeight: 16,
|
|
93
99
|
showTooltip: true
|
|
94
|
-
})), jsx(
|
|
100
|
+
})), jsx(Box, {
|
|
101
|
+
xcss: counterStyle
|
|
102
|
+
}, jsx(Counter, {
|
|
95
103
|
value: reaction.count
|
|
96
|
-
}))));
|
|
104
|
+
})))));
|
|
97
105
|
}))), reactions.map(function (reaction) {
|
|
98
106
|
return jsx(ReactionView, {
|
|
99
107
|
key: reaction.emojiId,
|
|
@@ -103,7 +103,7 @@ export var reactionViewStyle = css({
|
|
|
103
103
|
p: {
|
|
104
104
|
margin: 0,
|
|
105
105
|
color: "".concat("var(--ds-text, ".concat(N800, ")")),
|
|
106
|
-
font: "var(--ds-font-
|
|
106
|
+
font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
107
107
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
108
108
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
109
109
|
lineHeight: '20px',
|
|
@@ -131,7 +131,7 @@ export var userListStyle = css({
|
|
|
131
131
|
export var userStyle = css({
|
|
132
132
|
display: 'flex',
|
|
133
133
|
alignItems: 'center',
|
|
134
|
-
padding: "var(--ds-space-
|
|
134
|
+
padding: "var(--ds-space-050, 4px)".concat(" 0px ", "var(--ds-space-050, 4px)", " 0px"),
|
|
135
135
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
136
136
|
'> span': {
|
|
137
137
|
marginLeft: "var(--ds-space-200, 16px)"
|
|
@@ -3,7 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
3
3
|
import React, { useCallback, useState } from 'react';
|
|
4
4
|
import { FormattedMessage } from 'react-intl-next';
|
|
5
5
|
import Popup from '@atlaskit/popup';
|
|
6
|
-
import { Inline, Text, xcss } from '@atlaskit/primitives';
|
|
6
|
+
import { Box, Inline, Text, xcss } from '@atlaskit/primitives';
|
|
7
7
|
import Button from '@atlaskit/button/new';
|
|
8
8
|
import { Reaction } from '../Reaction';
|
|
9
9
|
import { ReactionSummaryButton } from './ReactionSummaryButton';
|
|
@@ -13,6 +13,9 @@ var summaryPopupStyles = xcss({
|
|
|
13
13
|
paddingTop: 'space.050',
|
|
14
14
|
maxWidth: '325px'
|
|
15
15
|
});
|
|
16
|
+
var viewAllButtonStyling = xcss({
|
|
17
|
+
marginTop: 'space.050'
|
|
18
|
+
});
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
* Test id for the Reactions summary view popup
|
|
@@ -54,7 +57,8 @@ export var ReactionSummaryView = function ReactionSummaryView(_ref) {
|
|
|
54
57
|
xcss: summaryPopupStyles,
|
|
55
58
|
testId: RENDER_SUMMARY_VIEW_POPUP_TESTID,
|
|
56
59
|
space: "space.025",
|
|
57
|
-
shouldWrap: true
|
|
60
|
+
shouldWrap: true,
|
|
61
|
+
alignBlock: "center"
|
|
58
62
|
}, reactions.map(function (reaction) {
|
|
59
63
|
return /*#__PURE__*/React.createElement(Reaction, {
|
|
60
64
|
key: reaction.emojiId,
|
|
@@ -66,15 +70,18 @@ export var ReactionSummaryView = function ReactionSummaryView(_ref) {
|
|
|
66
70
|
flash: flash[reaction.emojiId],
|
|
67
71
|
showParticleEffect: particleEffectByEmoji[reaction.emojiId]
|
|
68
72
|
});
|
|
69
|
-
}), allowUserDialog && /*#__PURE__*/React.createElement(
|
|
73
|
+
}), allowUserDialog && /*#__PURE__*/React.createElement(Box, {
|
|
74
|
+
xcss: viewAllButtonStyling
|
|
75
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
70
76
|
appearance: "subtle",
|
|
71
77
|
onClick: function onClick() {
|
|
72
78
|
return handleOpenReactionsDialog === null || handleOpenReactionsDialog === void 0 ? void 0 : handleOpenReactionsDialog(reactions[0].emojiId);
|
|
73
|
-
}
|
|
79
|
+
},
|
|
80
|
+
spacing: "compact"
|
|
74
81
|
}, /*#__PURE__*/React.createElement(Text, {
|
|
75
82
|
color: "color.text.subtlest",
|
|
76
83
|
weight: "medium"
|
|
77
|
-
}, /*#__PURE__*/React.createElement(FormattedMessage, messages.seeWhoReacted))));
|
|
84
|
+
}, /*#__PURE__*/React.createElement(FormattedMessage, messages.seeWhoReacted)))));
|
|
78
85
|
},
|
|
79
86
|
isOpen: isSummaryPopupOpen,
|
|
80
87
|
onClose: handlePopupClose,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
2
3
|
/**
|
|
3
4
|
* @jsxRuntime classic
|
|
@@ -9,8 +10,9 @@ import { jsx } from '@emotion/react';
|
|
|
9
10
|
import { FormattedMessage } from 'react-intl-next';
|
|
10
11
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
11
12
|
import { ModalTransition } from '@atlaskit/modal-dialog';
|
|
12
|
-
import Button from '@atlaskit/button/
|
|
13
|
+
import Button from '@atlaskit/button/new';
|
|
13
14
|
import Tooltip from '@atlaskit/tooltip';
|
|
15
|
+
import { Box, xcss } from '@atlaskit/primitives';
|
|
14
16
|
import { createAndFireSafe, createPickerButtonClickedEvent, createPickerCancelledEvent, createPickerMoreClickedEvent, createReactionsRenderedEvent, createReactionSelectionEvent, isSampled } from '../../analytics';
|
|
15
17
|
import { SAMPLING_RATE_REACTIONS_RENDERED_EXP } from '../../shared/constants';
|
|
16
18
|
import { messages } from '../../shared/i18n';
|
|
@@ -20,7 +22,10 @@ import { Reaction } from '../Reaction';
|
|
|
20
22
|
import { ReactionsDialog } from '../ReactionDialog';
|
|
21
23
|
import { ReactionPicker } from '../ReactionPicker';
|
|
22
24
|
import { ReactionSummaryView } from '../ReactionSummary/';
|
|
23
|
-
import { reactionPickerStyle,
|
|
25
|
+
import { reactionPickerStyle, wrapperStyle } from './styles';
|
|
26
|
+
var tooltipStyle = xcss({
|
|
27
|
+
paddingLeft: 'space.050'
|
|
28
|
+
});
|
|
24
29
|
|
|
25
30
|
/**
|
|
26
31
|
* Set of all available UFO experiences relating to reactions dialog
|
|
@@ -335,21 +340,19 @@ export var Reactions = /*#__PURE__*/React.memo(function (_ref) {
|
|
|
335
340
|
showOpaqueBackground: showOpaqueBackground,
|
|
336
341
|
showAddReactionText: showAddReactionText,
|
|
337
342
|
subtleReactionsSummaryAndPicker: subtleReactionsSummaryAndPicker
|
|
338
|
-
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && jsx(
|
|
343
|
+
}), allowUserDialog && hasEmojiWithFivePlusReactions && !shouldShowSummaryView && jsx(Box, {
|
|
344
|
+
xcss: tooltipStyle
|
|
345
|
+
}, jsx(Tooltip, {
|
|
339
346
|
content: jsx(FormattedMessage, messages.seeWhoReactedTooltip),
|
|
340
347
|
hideTooltipOnClick: true
|
|
341
|
-
},
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
,
|
|
350
|
-
css: seeWhoReactedStyle,
|
|
351
|
-
testId: RENDER_VIEWALL_REACTED_USERS_DIALOG
|
|
352
|
-
}, jsx(FormattedMessage, messages.seeWhoReacted))), jsx(ModalTransition, null, !!selectedEmojiId && jsx(ReactionsDialog, {
|
|
348
|
+
}, function (tooltipProps) {
|
|
349
|
+
return jsx(Button, _extends({}, tooltipProps, {
|
|
350
|
+
appearance: "subtle",
|
|
351
|
+
spacing: "compact",
|
|
352
|
+
onClick: handleOpenAllReactionsDialog,
|
|
353
|
+
testId: RENDER_VIEWALL_REACTED_USERS_DIALOG
|
|
354
|
+
}), jsx(FormattedMessage, messages.seeWhoReacted));
|
|
355
|
+
})), jsx(ModalTransition, null, !!selectedEmojiId && jsx(ReactionsDialog, {
|
|
353
356
|
selectedEmojiId: selectedEmojiId,
|
|
354
357
|
reactions: memorizedReactions,
|
|
355
358
|
emojiProvider: emojiProvider,
|
|
@@ -10,17 +10,6 @@ export var reactionPickerStyle = css({
|
|
|
10
10
|
marginTop: "var(--ds-space-050, 4px)"
|
|
11
11
|
});
|
|
12
12
|
|
|
13
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
14
|
-
export var seeWhoReactedStyle = css({
|
|
15
|
-
height: '24px',
|
|
16
|
-
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
17
|
-
lineHeight: '24px',
|
|
18
|
-
paddingLeft: 0,
|
|
19
|
-
paddingRight: 0,
|
|
20
|
-
marginTop: "var(--ds-space-050, 4px)",
|
|
21
|
-
marginLeft: "var(--ds-space-050, 4px)"
|
|
22
|
-
});
|
|
23
|
-
|
|
24
13
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
25
14
|
export var wrapperStyle = css({
|
|
26
15
|
display: 'flex',
|
|
@@ -10,4 +10,4 @@ export type RepositionOnUpdateProps = {
|
|
|
10
10
|
showFullPicker: boolean;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare const RepositionOnUpdate: ({ children, update, settings, }: React.PropsWithChildren<RepositionOnUpdateProps>) => JSX.Element;
|
|
13
|
+
export declare const RepositionOnUpdate: ({ children, update, settings, }: React.PropsWithChildren<RepositionOnUpdateProps>) => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type Placement } from '@atlaskit/popper';
|
|
3
3
|
import { type ReactionClick, type ReactionFocused, type ReactionMouseEnter } from '../../types';
|
|
4
4
|
import { type ReactionsProps } from '../Reactions';
|
|
@@ -36,5 +36,5 @@ interface ReactionSummaryViewProps extends Pick<ReactionsProps, 'emojiProvider'
|
|
|
36
36
|
*/
|
|
37
37
|
handleOpenReactionsDialog?: (emojiId: string) => void;
|
|
38
38
|
}
|
|
39
|
-
export declare const ReactionSummaryView: ({ emojiProvider, reactions, flash, particleEffectByEmoji, placement, onReactionClick, onReactionFocused, onReactionMouseEnter, showOpaqueBackground, subtleReactionsSummaryAndPicker, handleOpenReactionsDialog, allowUserDialog, }: ReactionSummaryViewProps) => JSX.Element;
|
|
39
|
+
export declare const ReactionSummaryView: ({ emojiProvider, reactions, flash, particleEffectByEmoji, placement, onReactionClick, onReactionFocused, onReactionMouseEnter, showOpaqueBackground, subtleReactionsSummaryAndPicker, handleOpenReactionsDialog, allowUserDialog, }: ReactionSummaryViewProps) => React.JSX.Element;
|
|
40
40
|
export {};
|
|
@@ -20,4 +20,4 @@ export interface ConnectedReactionPickerProps extends Omit<ReactionPickerProps,
|
|
|
20
20
|
/**
|
|
21
21
|
* Reaction Picker component
|
|
22
22
|
*/
|
|
23
|
-
export declare const ConnectedReactionPicker: (props: React.PropsWithChildren<ConnectedReactionPickerProps>) => JSX.Element;
|
|
23
|
+
export declare const ConnectedReactionPicker: (props: React.PropsWithChildren<ConnectedReactionPickerProps>) => React.JSX.Element;
|
|
@@ -53,4 +53,4 @@ export declare const mapDispatchToPropsHelper: (actions: Actions, containerAri:
|
|
|
53
53
|
getReactionDetails: (emojiId: string) => void;
|
|
54
54
|
onSelection: (emojiId: string) => void;
|
|
55
55
|
};
|
|
56
|
-
export declare const ConnectedReactionsView: (props: React.PropsWithChildren<ConnectedReactionsViewProps>) => JSX.Element;
|
|
56
|
+
export declare const ConnectedReactionsView: (props: React.PropsWithChildren<ConnectedReactionsViewProps>) => React.JSX.Element;
|
|
@@ -10,4 +10,4 @@ export type RepositionOnUpdateProps = {
|
|
|
10
10
|
showFullPicker: boolean;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare const RepositionOnUpdate: ({ children, update, settings, }: React.PropsWithChildren<RepositionOnUpdateProps>) => JSX.Element;
|
|
13
|
+
export declare const RepositionOnUpdate: ({ children, update, settings, }: React.PropsWithChildren<RepositionOnUpdateProps>) => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type Placement } from '@atlaskit/popper';
|
|
3
3
|
import { type ReactionClick, type ReactionFocused, type ReactionMouseEnter } from '../../types';
|
|
4
4
|
import { type ReactionsProps } from '../Reactions';
|
|
@@ -36,5 +36,5 @@ interface ReactionSummaryViewProps extends Pick<ReactionsProps, 'emojiProvider'
|
|
|
36
36
|
*/
|
|
37
37
|
handleOpenReactionsDialog?: (emojiId: string) => void;
|
|
38
38
|
}
|
|
39
|
-
export declare const ReactionSummaryView: ({ emojiProvider, reactions, flash, particleEffectByEmoji, placement, onReactionClick, onReactionFocused, onReactionMouseEnter, showOpaqueBackground, subtleReactionsSummaryAndPicker, handleOpenReactionsDialog, allowUserDialog, }: ReactionSummaryViewProps) => JSX.Element;
|
|
39
|
+
export declare const ReactionSummaryView: ({ emojiProvider, reactions, flash, particleEffectByEmoji, placement, onReactionClick, onReactionFocused, onReactionMouseEnter, showOpaqueBackground, subtleReactionsSummaryAndPicker, handleOpenReactionsDialog, allowUserDialog, }: ReactionSummaryViewProps) => React.JSX.Element;
|
|
40
40
|
export {};
|
|
@@ -20,4 +20,4 @@ export interface ConnectedReactionPickerProps extends Omit<ReactionPickerProps,
|
|
|
20
20
|
/**
|
|
21
21
|
* Reaction Picker component
|
|
22
22
|
*/
|
|
23
|
-
export declare const ConnectedReactionPicker: (props: React.PropsWithChildren<ConnectedReactionPickerProps>) => JSX.Element;
|
|
23
|
+
export declare const ConnectedReactionPicker: (props: React.PropsWithChildren<ConnectedReactionPickerProps>) => React.JSX.Element;
|
|
@@ -53,4 +53,4 @@ export declare const mapDispatchToPropsHelper: (actions: Actions, containerAri:
|
|
|
53
53
|
getReactionDetails: (emojiId: string) => void;
|
|
54
54
|
onSelection: (emojiId: string) => void;
|
|
55
55
|
};
|
|
56
|
-
export declare const ConnectedReactionsView: (props: React.PropsWithChildren<ConnectedReactionsViewProps>) => JSX.Element;
|
|
56
|
+
export declare const ConnectedReactionsView: (props: React.PropsWithChildren<ConnectedReactionsViewProps>) => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reactions",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.7.0",
|
|
4
4
|
"description": "Reactions component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"@atlaskit/analytics-namespaced-context": "^6.13.0",
|
|
37
37
|
"@atlaskit/analytics-next": "^10.3.0",
|
|
38
38
|
"@atlaskit/avatar": "^21.18.0",
|
|
39
|
-
"@atlaskit/button": "^20.
|
|
39
|
+
"@atlaskit/button": "^20.5.0",
|
|
40
40
|
"@atlaskit/emoji": "^67.13.0",
|
|
41
41
|
"@atlaskit/heading": "^4.1.0",
|
|
42
|
-
"@atlaskit/icon": "^23.
|
|
42
|
+
"@atlaskit/icon": "^23.7.0",
|
|
43
43
|
"@atlaskit/modal-dialog": "^12.20.0",
|
|
44
44
|
"@atlaskit/motion": "^1.10.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^1.0.0",
|