@atlaskit/reactions 22.5.2 → 22.5.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 +75 -63
- package/dist/cjs/MockReactionsClient.js +12 -17
- package/dist/cjs/analytics/index.js +130 -8
- package/dist/cjs/client/ReactionServiceClient.js +4 -5
- package/dist/cjs/components/Counter/Counter.js +11 -15
- package/dist/cjs/components/Counter/index.js +1 -7
- package/dist/cjs/components/Counter/styles.js +6 -10
- package/dist/cjs/components/EmojiButton/EmojiButton.js +9 -13
- package/dist/cjs/components/EmojiButton/styles.js +3 -4
- package/dist/cjs/components/FlashAnimation/FlashAnimation.js +5 -10
- package/dist/cjs/components/FlashAnimation/styles.js +4 -7
- package/dist/cjs/components/Reaction/Reaction.js +15 -16
- package/dist/cjs/components/Reaction/styles.js +9 -13
- package/dist/cjs/components/ReactionDialog/ReactionView.js +4 -5
- package/dist/cjs/components/ReactionDialog/ReactionsDialog.js +10 -11
- package/dist/cjs/components/ReactionDialog/ReactionsList.js +2 -3
- package/dist/cjs/components/ReactionDialog/styles.js +21 -30
- package/dist/cjs/components/ReactionPicker/ReactionPicker.js +20 -23
- package/dist/cjs/components/ReactionPicker/RepositionOnUpdate.js +2 -3
- package/dist/cjs/components/ReactionPicker/styles.js +7 -11
- package/dist/cjs/components/ReactionTooltip/ReactionTooltip.js +12 -16
- package/dist/cjs/components/ReactionTooltip/styles.js +6 -11
- package/dist/cjs/components/Reactions/Reactions.js +26 -30
- package/dist/cjs/components/Reactions/styles.js +9 -12
- package/dist/cjs/components/Selector/Selector.js +10 -12
- package/dist/cjs/components/Selector/index.js +1 -7
- package/dist/cjs/components/Selector/styles.js +6 -11
- package/dist/cjs/components/ShowMore/ShowMore.js +11 -17
- package/dist/cjs/components/ShowMore/styles.js +7 -10
- package/dist/cjs/components/Trigger/Trigger.js +6 -12
- package/dist/cjs/components/Trigger/styles.js +6 -8
- package/dist/cjs/components/UfoErrorBoundary/UfoErrorBoundary.js +2 -3
- package/dist/cjs/containers/ConnectedReactionPicker/ConnectedReactionPicker.js +4 -5
- package/dist/cjs/containers/ConnectedReactionsView/ConnectedReactionsView.js +5 -8
- package/dist/cjs/containers/index.js +13 -21
- package/dist/cjs/hooks/useFocusTrap.js +2 -3
- package/dist/cjs/i18n/cs.js +2 -3
- package/dist/cjs/i18n/da.js +2 -3
- package/dist/cjs/i18n/de.js +2 -3
- package/dist/cjs/i18n/en.js +2 -3
- package/dist/cjs/i18n/en_GB.js +2 -3
- package/dist/cjs/i18n/en_ZZ.js +2 -3
- package/dist/cjs/i18n/es.js +2 -3
- package/dist/cjs/i18n/et.js +2 -3
- package/dist/cjs/i18n/fi.js +2 -3
- package/dist/cjs/i18n/fr.js +2 -3
- package/dist/cjs/i18n/hu.js +2 -3
- package/dist/cjs/i18n/is.js +2 -3
- package/dist/cjs/i18n/it.js +2 -3
- package/dist/cjs/i18n/ja.js +2 -3
- package/dist/cjs/i18n/ko.js +2 -3
- package/dist/cjs/i18n/languages.js +2 -3
- package/dist/cjs/i18n/nb.js +2 -3
- package/dist/cjs/i18n/nl.js +2 -3
- package/dist/cjs/i18n/pl.js +2 -3
- package/dist/cjs/i18n/pt_BR.js +2 -3
- package/dist/cjs/i18n/pt_PT.js +2 -3
- package/dist/cjs/i18n/ro.js +2 -3
- package/dist/cjs/i18n/ru.js +2 -3
- package/dist/cjs/i18n/sk.js +2 -3
- package/dist/cjs/i18n/sv.js +2 -3
- package/dist/cjs/i18n/th.js +2 -3
- package/dist/cjs/i18n/tr.js +2 -3
- package/dist/cjs/i18n/uk.js +2 -3
- package/dist/cjs/i18n/vi.js +2 -3
- package/dist/cjs/i18n/zh.js +2 -3
- package/dist/cjs/i18n/zh_TW.js +2 -3
- package/dist/cjs/index.js +28 -15
- package/dist/cjs/shared/constants.js +7 -14
- package/dist/cjs/shared/i18n.js +2 -3
- package/dist/cjs/shared/utils.js +5 -9
- package/dist/cjs/store/MemoryReactionsStore.js +31 -37
- package/dist/cjs/store/ReactionConsumer.js +2 -3
- package/dist/cjs/store/utils.js +9 -16
- package/dist/cjs/types/reaction.js +2 -3
- package/dist/cjs/ufo/index.js +92 -0
- package/dist/es2019/MockReactionsClient.js +2 -2
- package/dist/es2019/analytics/index.js +95 -4
- package/dist/es2019/components/Counter/Counter.js +6 -6
- package/dist/es2019/components/Counter/index.js +1 -3
- package/dist/es2019/components/Counter/styles.js +1 -1
- package/dist/es2019/components/EmojiButton/EmojiButton.js +6 -5
- package/dist/es2019/components/EmojiButton/styles.js +1 -1
- package/dist/es2019/components/FlashAnimation/FlashAnimation.js +2 -2
- package/dist/es2019/components/Reaction/Reaction.js +13 -12
- package/dist/es2019/components/Reaction/styles.js +2 -2
- package/dist/es2019/components/ReactionDialog/ReactionView.js +2 -2
- package/dist/es2019/components/ReactionDialog/ReactionsDialog.js +5 -4
- package/dist/es2019/components/ReactionDialog/styles.js +10 -9
- package/dist/es2019/components/ReactionPicker/ReactionPicker.js +13 -13
- package/dist/es2019/components/ReactionPicker/styles.js +2 -2
- package/dist/es2019/components/ReactionTooltip/ReactionTooltip.js +9 -8
- package/dist/es2019/components/Reactions/Reactions.js +21 -21
- package/dist/es2019/components/Reactions/styles.js +5 -5
- package/dist/es2019/components/Selector/Selector.js +7 -7
- package/dist/es2019/components/Selector/index.js +1 -3
- package/dist/es2019/components/ShowMore/ShowMore.js +7 -7
- package/dist/es2019/components/ShowMore/styles.js +3 -3
- package/dist/es2019/components/Trigger/Trigger.js +2 -2
- package/dist/es2019/components/Trigger/styles.js +1 -1
- package/dist/es2019/containers/ConnectedReactionPicker/ConnectedReactionPicker.js +2 -2
- package/dist/es2019/containers/index.js +2 -2
- package/dist/es2019/index.js +27 -5
- package/dist/es2019/store/MemoryReactionsStore.js +21 -23
- package/dist/esm/MockReactionsClient.js +4 -4
- package/dist/esm/analytics/index.js +127 -4
- package/dist/esm/client/ReactionServiceClient.js +2 -2
- package/dist/esm/components/Counter/Counter.js +6 -6
- package/dist/esm/components/Counter/index.js +1 -3
- package/dist/esm/components/Counter/styles.js +1 -1
- package/dist/esm/components/EmojiButton/EmojiButton.js +6 -5
- package/dist/esm/components/EmojiButton/styles.js +1 -1
- package/dist/esm/components/FlashAnimation/FlashAnimation.js +2 -2
- package/dist/esm/components/Reaction/Reaction.js +13 -12
- package/dist/esm/components/Reaction/styles.js +2 -2
- package/dist/esm/components/ReactionDialog/ReactionView.js +2 -2
- package/dist/esm/components/ReactionDialog/ReactionsDialog.js +7 -6
- package/dist/esm/components/ReactionDialog/styles.js +10 -9
- package/dist/esm/components/ReactionPicker/ReactionPicker.js +16 -16
- package/dist/esm/components/ReactionPicker/styles.js +2 -2
- package/dist/esm/components/ReactionTooltip/ReactionTooltip.js +9 -8
- package/dist/esm/components/Reactions/Reactions.js +21 -21
- package/dist/esm/components/Reactions/styles.js +5 -5
- package/dist/esm/components/Selector/Selector.js +7 -7
- package/dist/esm/components/Selector/index.js +1 -3
- package/dist/esm/components/ShowMore/ShowMore.js +7 -7
- package/dist/esm/components/ShowMore/styles.js +3 -3
- package/dist/esm/components/Trigger/Trigger.js +2 -2
- package/dist/esm/components/Trigger/styles.js +3 -3
- package/dist/esm/containers/ConnectedReactionPicker/ConnectedReactionPicker.js +2 -2
- package/dist/esm/containers/ConnectedReactionsView/ConnectedReactionsView.js +1 -1
- package/dist/esm/containers/index.js +2 -2
- package/dist/esm/index.js +27 -5
- package/dist/esm/store/MemoryReactionsStore.js +23 -25
- package/dist/esm/store/utils.js +2 -2
- package/dist/types/analytics/index.d.ts +121 -2
- package/dist/types/components/Counter/index.d.ts +0 -1
- package/dist/types/components/ReactionPicker/ReactionPicker.d.ts +1 -1
- package/dist/types/components/Reactions/styles.d.ts +1 -1
- package/dist/types/components/Selector/Selector.d.ts +1 -1
- package/dist/types/components/Selector/index.d.ts +0 -1
- package/dist/types/containers/index.d.ts +2 -2
- package/dist/types/index.d.ts +24 -3
- package/dist/types/store/MemoryReactionsStore.d.ts +6 -6
- package/dist/types-ts4.5/analytics/index.d.ts +121 -2
- package/dist/types-ts4.5/components/Counter/index.d.ts +0 -1
- package/dist/types-ts4.5/components/ReactionPicker/ReactionPicker.d.ts +1 -1
- package/dist/types-ts4.5/components/Reactions/styles.d.ts +1 -1
- package/dist/types-ts4.5/components/Selector/Selector.d.ts +1 -1
- package/dist/types-ts4.5/components/Selector/index.d.ts +0 -1
- package/dist/types-ts4.5/containers/index.d.ts +2 -2
- package/dist/types-ts4.5/index.d.ts +24 -3
- package/dist/types-ts4.5/store/MemoryReactionsStore.d.ts +6 -6
- package/package.json +9 -10
- package/report.api.md +494 -0
- package/tmp/api-report-tmp.d.ts +398 -0
- package/dist/cjs/analytics/analytics.js +0 -149
- package/dist/cjs/analytics/ufo.js +0 -103
- package/dist/cjs/hooks/index.js +0 -12
- package/dist/cjs/shared/index.js +0 -15
- package/dist/es2019/analytics/analytics.js +0 -95
- package/dist/es2019/hooks/index.js +0 -1
- package/dist/es2019/shared/index.js +0 -6
- package/dist/esm/analytics/analytics.js +0 -127
- package/dist/esm/hooks/index.js +0 -1
- package/dist/esm/shared/index.js +0 -6
- package/dist/types/analytics/analytics.d.ts +0 -121
- package/dist/types/hooks/index.d.ts +0 -1
- package/dist/types/shared/index.d.ts +0 -3
- package/dist/types-ts4.5/analytics/analytics.d.ts +0 -121
- package/dist/types-ts4.5/hooks/index.d.ts +0 -1
- package/dist/types-ts4.5/shared/index.d.ts +0 -3
- /package/dist/es2019/{analytics/ufo.js → ufo/index.js} +0 -0
- /package/dist/esm/{analytics/ufo.js → ufo/index.js} +0 -0
- /package/dist/types/{analytics/ufo.d.ts → ufo/index.d.ts} +0 -0
- /package/dist/types-ts4.5/{analytics/ufo.d.ts → ufo/index.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,35 @@
|
|
|
1
1
|
# @atlaskit/reactions
|
|
2
2
|
|
|
3
|
+
## 22.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#42502](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42502) [`d1298d300a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1298d300a5) - Remove export all declarations and import namespace specifiers
|
|
8
|
+
|
|
9
|
+
## 22.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
|
|
14
|
+
|
|
3
15
|
## 22.5.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
6
18
|
|
|
7
|
-
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
19
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
8
20
|
- Updated dependencies
|
|
9
21
|
|
|
10
22
|
## 22.5.1
|
|
11
23
|
|
|
12
24
|
### Patch Changes
|
|
13
25
|
|
|
14
|
-
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
|
|
26
|
+
- [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925) [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
|
|
15
27
|
|
|
16
28
|
## 22.5.0
|
|
17
29
|
|
|
18
30
|
### Minor Changes
|
|
19
31
|
|
|
20
|
-
- [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap` at it's original version.
|
|
32
|
+
- [#34797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34797) [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap` at it's original version.
|
|
21
33
|
|
|
22
34
|
## 22.4.0
|
|
23
35
|
|
|
@@ -29,25 +41,25 @@
|
|
|
29
41
|
|
|
30
42
|
### Patch Changes
|
|
31
43
|
|
|
32
|
-
- [`82f7f9600a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82f7f9600a9) - Migrated to declarative entry points internally for emoji and reactions. Public API is unchanged.
|
|
44
|
+
- [#33870](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33870) [`82f7f9600a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82f7f9600a9) - Migrated to declarative entry points internally for emoji and reactions. Public API is unchanged.
|
|
33
45
|
|
|
34
46
|
## 22.3.2
|
|
35
47
|
|
|
36
48
|
### Patch Changes
|
|
37
49
|
|
|
38
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
50
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
39
51
|
|
|
40
52
|
## 22.3.1
|
|
41
53
|
|
|
42
54
|
### Patch Changes
|
|
43
55
|
|
|
44
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
56
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
45
57
|
|
|
46
58
|
## 22.3.0
|
|
47
59
|
|
|
48
60
|
### Minor Changes
|
|
49
61
|
|
|
50
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
62
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
51
63
|
|
|
52
64
|
### Patch Changes
|
|
53
65
|
|
|
@@ -57,26 +69,26 @@
|
|
|
57
69
|
|
|
58
70
|
### Patch Changes
|
|
59
71
|
|
|
60
|
-
- [`50e0e3c23bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50e0e3c23bd) - fix error handling for get reactions
|
|
72
|
+
- [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004) [`50e0e3c23bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50e0e3c23bd) - fix error handling for get reactions
|
|
61
73
|
|
|
62
74
|
## 22.2.8
|
|
63
75
|
|
|
64
76
|
### Patch Changes
|
|
65
77
|
|
|
66
|
-
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
78
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
67
79
|
|
|
68
80
|
## 22.2.7
|
|
69
81
|
|
|
70
82
|
### Patch Changes
|
|
71
83
|
|
|
72
|
-
- [`419eaff2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419eaff2c03) - fix focus trap not deactivated issue in reaction picker
|
|
84
|
+
- [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`419eaff2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419eaff2c03) - fix focus trap not deactivated issue in reaction picker
|
|
73
85
|
- Updated dependencies
|
|
74
86
|
|
|
75
87
|
## 22.2.6
|
|
76
88
|
|
|
77
89
|
### Patch Changes
|
|
78
90
|
|
|
79
|
-
- [`6b5bf5505b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b5bf5505b6) - revert atlaskit popup refactor in reaction picker
|
|
91
|
+
- [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`6b5bf5505b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b5bf5505b6) - revert atlaskit popup refactor in reaction picker
|
|
80
92
|
- [`db658265a45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db658265a45) - add sampling for reaction view analytics
|
|
81
93
|
- [`c84afc8fbd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c84afc8fbd8) - [ux] add focus trap to reaction picker
|
|
82
94
|
- [`ed219dee1bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed219dee1bd) - refactor reactions picker with @atlaskit/popup
|
|
@@ -86,40 +98,40 @@
|
|
|
86
98
|
|
|
87
99
|
### Patch Changes
|
|
88
100
|
|
|
89
|
-
- [`dfbecb4aa7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbecb4aa7c) - [ux] [COLLAB-2263] allow `Enter` to open Show more to show emoji picker, allow `ESC` to close emoji picker / reaction selector.
|
|
101
|
+
- [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248) [`dfbecb4aa7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbecb4aa7c) - [ux] [COLLAB-2263] allow `Enter` to open Show more to show emoji picker, allow `ESC` to close emoji picker / reaction selector.
|
|
90
102
|
- Updated dependencies
|
|
91
103
|
|
|
92
104
|
## 22.2.4
|
|
93
105
|
|
|
94
106
|
### Patch Changes
|
|
95
107
|
|
|
96
|
-
- [`c78b97a8b2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c78b97a8b2b) - Remove explicit width from reaction counter container
|
|
108
|
+
- [#29990](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29990) [`c78b97a8b2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c78b97a8b2b) - Remove explicit width from reaction counter container
|
|
97
109
|
|
|
98
110
|
## 22.2.3
|
|
99
111
|
|
|
100
112
|
### Patch Changes
|
|
101
113
|
|
|
102
|
-
- [`3592739fb5b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3592739fb5b) - [ux] hide tooltip of add reaction when reaction picker is opened
|
|
114
|
+
- [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470) [`3592739fb5b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3592739fb5b) - [ux] hide tooltip of add reaction when reaction picker is opened
|
|
103
115
|
- Updated dependencies
|
|
104
116
|
|
|
105
117
|
## 22.2.2
|
|
106
118
|
|
|
107
119
|
### Patch Changes
|
|
108
120
|
|
|
109
|
-
- [`d16c7d57428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d16c7d57428) - Update teams.json to reflect current team
|
|
121
|
+
- [#29667](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29667) [`d16c7d57428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d16c7d57428) - Update teams.json to reflect current team
|
|
110
122
|
|
|
111
123
|
## 22.2.1
|
|
112
124
|
|
|
113
125
|
### Patch Changes
|
|
114
126
|
|
|
115
|
-
- [`718d5ad3044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/718d5ad3044) - Updates to support the new `@atlaskit/tokens` theming API.
|
|
127
|
+
- [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634) [`718d5ad3044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/718d5ad3044) - Updates to support the new `@atlaskit/tokens` theming API.
|
|
116
128
|
- Updated dependencies
|
|
117
129
|
|
|
118
130
|
## 22.2.0
|
|
119
131
|
|
|
120
132
|
### Minor Changes
|
|
121
133
|
|
|
122
|
-
- [`c3868fc0d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3868fc0d7a) - [ux] remove extra spacing around reactions
|
|
134
|
+
- [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`c3868fc0d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3868fc0d7a) - [ux] remove extra spacing around reactions
|
|
123
135
|
|
|
124
136
|
### Patch Changes
|
|
125
137
|
|
|
@@ -129,19 +141,19 @@
|
|
|
129
141
|
|
|
130
142
|
### Minor Changes
|
|
131
143
|
|
|
132
|
-
- [`14258b03842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14258b03842) - make reaction buttons more compact, and introduce miniMode for add reaction button
|
|
144
|
+
- [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374) [`14258b03842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14258b03842) - make reaction buttons more compact, and introduce miniMode for add reaction button
|
|
133
145
|
|
|
134
146
|
## 22.0.4
|
|
135
147
|
|
|
136
148
|
### Patch Changes
|
|
137
149
|
|
|
138
|
-
- [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
150
|
+
- [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324) [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
139
151
|
|
|
140
152
|
## 22.0.3
|
|
141
153
|
|
|
142
154
|
### Patch Changes
|
|
143
155
|
|
|
144
|
-
- [`16aa7646472`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16aa7646472) - update ufo sampling rate due to change of sampling algorithm
|
|
156
|
+
- [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`16aa7646472`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16aa7646472) - update ufo sampling rate due to change of sampling algorithm
|
|
145
157
|
- Updated dependencies
|
|
146
158
|
|
|
147
159
|
## 22.0.2
|
|
@@ -160,7 +172,7 @@
|
|
|
160
172
|
|
|
161
173
|
### Major Changes
|
|
162
174
|
|
|
163
|
-
- [`0617b7ef2aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0617b7ef2aa) - [ux]
|
|
175
|
+
- [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`0617b7ef2aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0617b7ef2aa) - [ux]
|
|
164
176
|
Created a new prop, allowUserDialog, that enables an actionable tooltip link to see
|
|
165
177
|
a detailed breakdown of reacted users. The reactions dialog shows the complete user list for
|
|
166
178
|
the currently selected reaction, as well as, the user list for all other reactions. Can tab or click through the reactions list to see all reactions and user lists.
|
|
@@ -192,7 +204,7 @@
|
|
|
192
204
|
|
|
193
205
|
### Minor Changes
|
|
194
206
|
|
|
195
|
-
- [`cb37ece1f9e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb37ece1f9e) - Add aria expanded and aria cotrols to reaction picker toggle
|
|
207
|
+
- [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`cb37ece1f9e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb37ece1f9e) - Add aria expanded and aria cotrols to reaction picker toggle
|
|
196
208
|
|
|
197
209
|
### Patch Changes
|
|
198
210
|
|
|
@@ -205,7 +217,7 @@
|
|
|
205
217
|
|
|
206
218
|
### Minor Changes
|
|
207
219
|
|
|
208
|
-
- [`e2635f36d53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2635f36d53) - Adds new optional prop to <ReactionPicker /> component to setup the content for the tooltip on the add new reaction element
|
|
220
|
+
- [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`e2635f36d53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2635f36d53) - Adds new optional prop to <ReactionPicker /> component to setup the content for the tooltip on the add new reaction element
|
|
209
221
|
[ux] This adds a border around the Add reaction button according with new design requirements
|
|
210
222
|
- [`ce1ceee9114`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce1ceee9114) - Refactor props of <Reactions /> component to better infer types from quickReactionEmojiIds to quickReactionEmojis
|
|
211
223
|
|
|
@@ -227,13 +239,13 @@
|
|
|
227
239
|
|
|
228
240
|
### Patch Changes
|
|
229
241
|
|
|
230
|
-
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
242
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
231
243
|
|
|
232
244
|
## 21.6.0
|
|
233
245
|
|
|
234
246
|
### Minor Changes
|
|
235
247
|
|
|
236
|
-
- [`41d75524c76`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d75524c76) - Upgrade @atlaskit/reactions to use functional components, add comments and cleanup outdated legacy code
|
|
248
|
+
- [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`41d75524c76`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d75524c76) - Upgrade @atlaskit/reactions to use functional components, add comments and cleanup outdated legacy code
|
|
237
249
|
- [`d840e9e5c90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d840e9e5c90) - show proper error message in tooltip if failed to get reactions
|
|
238
250
|
|
|
239
251
|
### Patch Changes
|
|
@@ -244,13 +256,13 @@
|
|
|
244
256
|
|
|
245
257
|
### Patch Changes
|
|
246
258
|
|
|
247
|
-
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
259
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
248
260
|
|
|
249
261
|
## 21.5.0
|
|
250
262
|
|
|
251
263
|
### Minor Changes
|
|
252
264
|
|
|
253
|
-
- [`e3192fc9dc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3192fc9dc2) - Fix add own emoji in reaction picker
|
|
265
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`e3192fc9dc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3192fc9dc2) - Fix add own emoji in reaction picker
|
|
254
266
|
|
|
255
267
|
### Patch Changes
|
|
256
268
|
|
|
@@ -261,7 +273,7 @@
|
|
|
261
273
|
|
|
262
274
|
### Minor Changes
|
|
263
275
|
|
|
264
|
-
- [`34155ee7563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34155ee7563) - add sampling for 2 ufo experiences to reduce volume of analytics
|
|
276
|
+
- [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`34155ee7563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34155ee7563) - add sampling for 2 ufo experiences to reduce volume of analytics
|
|
265
277
|
|
|
266
278
|
### Patch Changes
|
|
267
279
|
|
|
@@ -271,20 +283,20 @@
|
|
|
271
283
|
|
|
272
284
|
### Patch Changes
|
|
273
285
|
|
|
274
|
-
- [`c3f9e9bce1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3f9e9bce1c) - Add custom information to failure and abort events for UFO experiences
|
|
286
|
+
- [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`c3f9e9bce1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3f9e9bce1c) - Add custom information to failure and abort events for UFO experiences
|
|
275
287
|
- Updated dependencies
|
|
276
288
|
|
|
277
289
|
## 21.3.3
|
|
278
290
|
|
|
279
291
|
### Patch Changes
|
|
280
292
|
|
|
281
|
-
- [`7f1dd280229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f1dd280229) - Fix styling issue in the reaction emoji while hovering on it for the first time
|
|
293
|
+
- [#22299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22299) [`7f1dd280229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f1dd280229) - Fix styling issue in the reaction emoji while hovering on it for the first time
|
|
282
294
|
|
|
283
295
|
## 21.3.2
|
|
284
296
|
|
|
285
297
|
### Patch Changes
|
|
286
298
|
|
|
287
|
-
- [`1940b04de7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1940b04de7d) - Adding new UFO experience for contents list of reacted users should be able to be fetched reliably
|
|
299
|
+
- [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`1940b04de7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1940b04de7d) - Adding new UFO experience for contents list of reacted users should be able to be fetched reliably
|
|
288
300
|
- Updated dependencies
|
|
289
301
|
|
|
290
302
|
## 21.3.1
|
|
@@ -297,7 +309,7 @@
|
|
|
297
309
|
|
|
298
310
|
### Minor Changes
|
|
299
311
|
|
|
300
|
-
- [`8db47b60a8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8db47b60a8f) - [ux] Updated reactions count color to be accessible, pluralize the more emojis tooltip, and stopped the reactions button click event from propagating into the reactions tooltip.
|
|
312
|
+
- [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721) [`8db47b60a8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8db47b60a8f) - [ux] Updated reactions count color to be accessible, pluralize the more emojis tooltip, and stopped the reactions button click event from propagating into the reactions tooltip.
|
|
301
313
|
|
|
302
314
|
### Patch Changes
|
|
303
315
|
|
|
@@ -307,7 +319,7 @@
|
|
|
307
319
|
|
|
308
320
|
### Patch Changes
|
|
309
321
|
|
|
310
|
-
- [`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) - Changes to support Node 16 Typescript definitions from `@types/node`.
|
|
322
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) - Changes to support Node 16 Typescript definitions from `@types/node`.
|
|
311
323
|
|
|
312
324
|
## 21.2.4
|
|
313
325
|
|
|
@@ -320,32 +332,32 @@
|
|
|
320
332
|
|
|
321
333
|
### Patch Changes
|
|
322
334
|
|
|
323
|
-
- [`d64aafec153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d64aafec153) - Fixed bug where clicking on tooltip triggered a reaction
|
|
335
|
+
- [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033) [`d64aafec153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d64aafec153) - Fixed bug where clicking on tooltip triggered a reaction
|
|
324
336
|
- Updated dependencies
|
|
325
337
|
|
|
326
338
|
## 21.2.2
|
|
327
339
|
|
|
328
340
|
### Patch Changes
|
|
329
341
|
|
|
330
|
-
- [`58a563ece8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58a563ece8f) - Add ComponentName as part of the exported enum collection for easier consumption inside products
|
|
342
|
+
- [#20484](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20484) [`58a563ece8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58a563ece8f) - Add ComponentName as part of the exported enum collection for easier consumption inside products
|
|
331
343
|
|
|
332
344
|
## 21.2.1
|
|
333
345
|
|
|
334
346
|
### Patch Changes
|
|
335
347
|
|
|
336
|
-
- [`783c8c02335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783c8c02335) - Update the reactions rendered UFO type
|
|
348
|
+
- [#20447](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20447) [`783c8c02335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783c8c02335) - Update the reactions rendered UFO type
|
|
337
349
|
|
|
338
350
|
## 21.2.0
|
|
339
351
|
|
|
340
352
|
### Minor Changes
|
|
341
353
|
|
|
342
|
-
- [`ed9ab4d82a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed9ab4d82a3) - Adds "reactions-rendered", "reactions-picker-opened", "reaction-added" and "reaction-removed" to UFO experiences
|
|
354
|
+
- [#20002](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20002) [`ed9ab4d82a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed9ab4d82a3) - Adds "reactions-rendered", "reactions-picker-opened", "reaction-added" and "reaction-removed" to UFO experiences
|
|
343
355
|
|
|
344
356
|
## 21.1.0
|
|
345
357
|
|
|
346
358
|
### Minor Changes
|
|
347
359
|
|
|
348
|
-
- [`f0c986fe03a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0c986fe03a) - Migrated styles to emotion and removed typestyle dependency from atlassian-frontend dependencies.
|
|
360
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`f0c986fe03a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0c986fe03a) - Migrated styles to emotion and removed typestyle dependency from atlassian-frontend dependencies.
|
|
349
361
|
|
|
350
362
|
### Patch Changes
|
|
351
363
|
|
|
@@ -357,14 +369,14 @@
|
|
|
357
369
|
|
|
358
370
|
### Patch Changes
|
|
359
371
|
|
|
360
|
-
- [`63f11b8ade4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f11b8ade4) - support proxy via webpack config cli
|
|
372
|
+
- [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`63f11b8ade4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f11b8ade4) - support proxy via webpack config cli
|
|
361
373
|
- Updated dependencies
|
|
362
374
|
|
|
363
375
|
## 21.0.4
|
|
364
376
|
|
|
365
377
|
### Patch Changes
|
|
366
378
|
|
|
367
|
-
- [`62a37c2a5c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62a37c2a5c8) - replace `react-transition-group` with `@atlaskit/motion` and improve Counter component
|
|
379
|
+
- [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526) [`62a37c2a5c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62a37c2a5c8) - replace `react-transition-group` with `@atlaskit/motion` and improve Counter component
|
|
368
380
|
- [`696ba6c465d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/696ba6c465d) - The Reaction component now fires only one request to the service when being hovered.
|
|
369
381
|
- [`95015909035`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95015909035) - Fixed issue where some of the examples where crashing.
|
|
370
382
|
- Updated dependencies
|
|
@@ -385,13 +397,13 @@
|
|
|
385
397
|
|
|
386
398
|
### Patch Changes
|
|
387
399
|
|
|
388
|
-
- [`b44aa6749c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b44aa6749c0) - [ux] Changed the token usage for emoji name to make it visible in the reaction tooltip.
|
|
400
|
+
- [#17798](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17798) [`b44aa6749c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b44aa6749c0) - [ux] Changed the token usage for emoji name to make it visible in the reaction tooltip.
|
|
389
401
|
|
|
390
402
|
## 21.0.0
|
|
391
403
|
|
|
392
404
|
### Major Changes
|
|
393
405
|
|
|
394
|
-
- [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
406
|
+
- [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810) [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
395
407
|
|
|
396
408
|
What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with actual installed react-intl APIs.
|
|
397
409
|
Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
|
|
@@ -437,13 +449,13 @@
|
|
|
437
449
|
|
|
438
450
|
### Minor Changes
|
|
439
451
|
|
|
440
|
-
- [`e82f9588eff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e82f9588eff) - Instrumented `@atlaskit/reactions` with the new theming package, `@atlaskit/tokens`. New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
452
|
+
- [#16668](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16668) [`e82f9588eff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e82f9588eff) - Instrumented `@atlaskit/reactions` with the new theming package, `@atlaskit/tokens`. New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
441
453
|
|
|
442
454
|
## 20.0.0
|
|
443
455
|
|
|
444
456
|
### Major Changes
|
|
445
457
|
|
|
446
|
-
- [`814356508d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814356508d3) - [ux] Design changes to help distinguish reactions and users. User list tooltip now shows the emoji name in grey and the additional users past the first five users in grey.Reactions that you have reacted to now have a blue border and slightly blue transparent background.Updated the heart emoji in the default emoji set.
|
|
458
|
+
- [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`814356508d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814356508d3) - [ux] Design changes to help distinguish reactions and users. User list tooltip now shows the emoji name in grey and the additional users past the first five users in grey.Reactions that you have reacted to now have a blue border and slightly blue transparent background.Updated the heart emoji in the default emoji set.
|
|
447
459
|
|
|
448
460
|
### Minor Changes
|
|
449
461
|
|
|
@@ -459,7 +471,7 @@
|
|
|
459
471
|
|
|
460
472
|
### Patch Changes
|
|
461
473
|
|
|
462
|
-
- [`b90c0237824`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90c0237824) - Update package.jsons to remove unused dependencies.
|
|
474
|
+
- [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864) [`b90c0237824`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90c0237824) - Update package.jsons to remove unused dependencies.
|
|
463
475
|
- Updated dependencies
|
|
464
476
|
|
|
465
477
|
## 19.1.3
|
|
@@ -472,20 +484,20 @@
|
|
|
472
484
|
|
|
473
485
|
### Patch Changes
|
|
474
486
|
|
|
475
|
-
- [`4adcd7f3f2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4adcd7f3f2b) - Fixing small bug related to 19.0.0 change
|
|
487
|
+
- [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328) [`4adcd7f3f2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4adcd7f3f2b) - Fixing small bug related to 19.0.0 change
|
|
476
488
|
- Updated dependencies
|
|
477
489
|
|
|
478
490
|
## 19.1.1
|
|
479
491
|
|
|
480
492
|
### Patch Changes
|
|
481
493
|
|
|
482
|
-
- [`b15d1cda72e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b15d1cda72e) - Fixing small bug related to 19.0.0 change
|
|
494
|
+
- [#12295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12295) [`b15d1cda72e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b15d1cda72e) - Fixing small bug related to 19.0.0 change
|
|
483
495
|
|
|
484
496
|
## 19.1.0
|
|
485
497
|
|
|
486
498
|
### Minor Changes
|
|
487
499
|
|
|
488
|
-
- [`7de0b9572f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7de0b9572f0) - [ux] Updated reactions so that if there is a reaction with count 0, it will now render as just the emoji with no counter (now an empty string). Previously in this scenario it would show the emoji with the number 0 next to it. This should only affect direct usages of the standalone Reactions components, anyone using ConnectedReactionsView (the standard use case) should see no difference as this component already filters out any reactions with a count of 0.
|
|
500
|
+
- [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`7de0b9572f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7de0b9572f0) - [ux] Updated reactions so that if there is a reaction with count 0, it will now render as just the emoji with no counter (now an empty string). Previously in this scenario it would show the emoji with the number 0 next to it. This should only affect direct usages of the standalone Reactions components, anyone using ConnectedReactionsView (the standard use case) should see no difference as this component already filters out any reactions with a count of 0.
|
|
489
501
|
|
|
490
502
|
### Patch Changes
|
|
491
503
|
|
|
@@ -495,7 +507,7 @@
|
|
|
495
507
|
|
|
496
508
|
### Major Changes
|
|
497
509
|
|
|
498
|
-
- [`2f55d66e464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f55d66e464) - [ux] Updated the default emoji set that pops up when adding a new reaction and created a pill shaped outline around the reaction.
|
|
510
|
+
- [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`2f55d66e464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f55d66e464) - [ux] Updated the default emoji set that pops up when adding a new reaction and created a pill shaped outline around the reaction.
|
|
499
511
|
|
|
500
512
|
Default emoji set: replaced thumsdown with clap, heart_eyes with hearts, joy with astonished, and cry with thinking.
|
|
501
513
|
|
|
@@ -509,7 +521,7 @@
|
|
|
509
521
|
|
|
510
522
|
### Patch Changes
|
|
511
523
|
|
|
512
|
-
- [`87d5fffa13c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87d5fffa13c) - [ux] Fixed an issue where the Reaction trigger resizes and causes flickering
|
|
524
|
+
- [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083) [`87d5fffa13c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87d5fffa13c) - [ux] Fixed an issue where the Reaction trigger resizes and causes flickering
|
|
513
525
|
- Updated dependencies
|
|
514
526
|
|
|
515
527
|
## 18.2.1
|
|
@@ -522,7 +534,7 @@
|
|
|
522
534
|
|
|
523
535
|
### Minor Changes
|
|
524
536
|
|
|
525
|
-
- [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
537
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
526
538
|
|
|
527
539
|
### Patch Changes
|
|
528
540
|
|
|
@@ -532,20 +544,20 @@
|
|
|
532
544
|
|
|
533
545
|
### Patch Changes
|
|
534
546
|
|
|
535
|
-
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
547
|
+
- [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
536
548
|
|
|
537
549
|
## 18.1.8
|
|
538
550
|
|
|
539
551
|
### Patch Changes
|
|
540
552
|
|
|
541
|
-
- [`99abe1f917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99abe1f917) - Fix SLO of get reactions
|
|
553
|
+
- [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516) [`99abe1f917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99abe1f917) - Fix SLO of get reactions
|
|
542
554
|
- Updated dependencies
|
|
543
555
|
|
|
544
556
|
## 18.1.7
|
|
545
557
|
|
|
546
558
|
### Patch Changes
|
|
547
559
|
|
|
548
|
-
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
560
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
549
561
|
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
550
562
|
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
551
563
|
|
|
@@ -559,14 +571,14 @@
|
|
|
559
571
|
|
|
560
572
|
### Patch Changes
|
|
561
573
|
|
|
562
|
-
- [`c0533f4b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0533f4b35) - Upgrade analytics-next to prevent event loss (https://hello.atlassian.net/wiki/spaces/AFP/blog/2020/08/26/828144759/ACTION+REQUIRED+-+upgrade+analytics-next+to+prevent+event+loss)
|
|
574
|
+
- [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749) [`c0533f4b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0533f4b35) - Upgrade analytics-next to prevent event loss (https://hello.atlassian.net/wiki/spaces/AFP/blog/2020/08/26/828144759/ACTION+REQUIRED+-+upgrade+analytics-next+to+prevent+event+loss)
|
|
563
575
|
- Updated dependencies
|
|
564
576
|
|
|
565
577
|
## 18.1.4
|
|
566
578
|
|
|
567
579
|
### Patch Changes
|
|
568
580
|
|
|
569
|
-
- [`bee2157c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bee2157c1b) - Remove usage of @atlaskit/util-common-test package
|
|
581
|
+
- [#4932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4932) [`bee2157c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bee2157c1b) - Remove usage of @atlaskit/util-common-test package
|
|
570
582
|
|
|
571
583
|
## 18.1.3
|
|
572
584
|
|
|
@@ -578,7 +590,7 @@
|
|
|
578
590
|
|
|
579
591
|
### Patch Changes
|
|
580
592
|
|
|
581
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
593
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
582
594
|
|
|
583
595
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
584
596
|
to prevent duplicates of tslib being bundled.
|
|
@@ -587,13 +599,13 @@
|
|
|
587
599
|
|
|
588
600
|
### Patch Changes
|
|
589
601
|
|
|
590
|
-
- [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
602
|
+
- [#4393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4393) [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
591
603
|
|
|
592
604
|
## 18.1.0
|
|
593
605
|
|
|
594
606
|
### Minor Changes
|
|
595
607
|
|
|
596
|
-
- [`940cde5773`](https://bitbucket.org/atlassian/atlassian-frontend/commits/940cde5773) - - The Reactions popup menu has been moved from the now-deprecated `@atlaskit/layer` to `@atlaskit/popper`.
|
|
608
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`940cde5773`](https://bitbucket.org/atlassian/atlassian-frontend/commits/940cde5773) - - The Reactions popup menu has been moved from the now-deprecated `@atlaskit/layer` to `@atlaskit/popper`.
|
|
597
609
|
- (bugfix) The full emoji picker now repositions to stay in the window boundaries.
|
|
598
610
|
|
|
599
611
|
### Patch Changes
|
|
@@ -604,13 +616,13 @@
|
|
|
604
616
|
|
|
605
617
|
### Patch Changes
|
|
606
618
|
|
|
607
|
-
- [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
|
|
619
|
+
- [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369) [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
|
|
608
620
|
|
|
609
621
|
## 18.0.0
|
|
610
622
|
|
|
611
623
|
### Major Changes
|
|
612
624
|
|
|
613
|
-
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
625
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
614
626
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
615
627
|
|
|
616
628
|
### Patch Changes
|
|
@@ -621,13 +633,13 @@
|
|
|
621
633
|
|
|
622
634
|
### Patch Changes
|
|
623
635
|
|
|
624
|
-
- [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
|
|
636
|
+
- [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576) [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
|
|
625
637
|
|
|
626
638
|
## 17.3.3
|
|
627
639
|
|
|
628
640
|
### Patch Changes
|
|
629
641
|
|
|
630
|
-
- [`4560b65a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4560b65a4f) - upgrade react-transition-group to latest
|
|
642
|
+
- [#2677](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2677) [`4560b65a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4560b65a4f) - upgrade react-transition-group to latest
|
|
631
643
|
|
|
632
644
|
## 17.3.2
|
|
633
645
|
|
|
@@ -11,15 +11,13 @@ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/
|
|
|
11
11
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
12
12
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
13
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
14
|
-
var
|
|
15
|
-
function ownKeys(
|
|
16
|
-
function _objectSpread(
|
|
17
|
-
var containerAri = 'ari:cloud:owner:demo-cloud-id:container/1';
|
|
18
|
-
exports.
|
|
19
|
-
var
|
|
20
|
-
|
|
21
|
-
var getReactionSummary = function getReactionSummary(shortName, count, reacted, extendedReactions) {
|
|
22
|
-
var getReactionsByShortName = extendedReactions ? _shared.constants.ExtendedReactionsByShortName.get(shortName) : _shared.constants.DefaultReactionsByShortName.get(shortName);
|
|
14
|
+
var _constants = require("./shared/constants");
|
|
15
|
+
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; }
|
|
16
|
+
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; }
|
|
17
|
+
var containerAri = exports.containerAri = 'ari:cloud:owner:demo-cloud-id:container/1';
|
|
18
|
+
var ari = exports.ari = 'ari:cloud:owner:demo-cloud-id:item/1';
|
|
19
|
+
var getReactionSummary = exports.getReactionSummary = function getReactionSummary(shortName, count, reacted, extendedReactions) {
|
|
20
|
+
var getReactionsByShortName = extendedReactions ? _constants.ExtendedReactionsByShortName.get(shortName) : _constants.DefaultReactionsByShortName.get(shortName);
|
|
23
21
|
return {
|
|
24
22
|
ari: ari,
|
|
25
23
|
containerAri: containerAri,
|
|
@@ -28,8 +26,7 @@ var getReactionSummary = function getReactionSummary(shortName, count, reacted,
|
|
|
28
26
|
reacted: reacted
|
|
29
27
|
};
|
|
30
28
|
};
|
|
31
|
-
exports.
|
|
32
|
-
var getUser = function getUser(id, displayName) {
|
|
29
|
+
var getUser = exports.getUser = function getUser(id, displayName) {
|
|
33
30
|
return {
|
|
34
31
|
id: id,
|
|
35
32
|
displayName: displayName,
|
|
@@ -38,20 +35,19 @@ var getUser = function getUser(id, displayName) {
|
|
|
38
35
|
}
|
|
39
36
|
};
|
|
40
37
|
};
|
|
41
|
-
exports.getUser = getUser;
|
|
42
38
|
var getReactionKey = function getReactionKey(containerAri, ari) {
|
|
43
39
|
return "".concat(containerAri, "|").concat(ari);
|
|
44
40
|
};
|
|
45
41
|
var defaultUsers = [getUser('oscar', 'Oscar Wallhult'), getUser('julien', 'Julien Michel Hoarau'), getUser('craig', 'Craig Petchell'), getUser('jerome', 'Jerome Touffe-Blin'), getUser('esoares', 'Eduardo Soares'), getUser('lpereira', 'Luiz Pereira'), getUser('pcurren', 'Paul Curren'), getUser('ttjandra', 'Tara Tjandra'), getUser('severington', 'Ste Everington'), getUser('sguillope', 'Sylvain Guillope'), getUser('alunnon', 'Alex Lunnon'), getUser('bsmith', 'Bob Smith'), getUser('jdoe', 'Jane Doe'), getUser('mhomes', 'Mary Homes'), getUser('ckent', 'Clark Kent')];
|
|
46
|
-
var simpleMockData = (0, _defineProperty2.default)({}, getReactionKey(containerAri, ari), [getReactionSummary(':fire:', 1, true), getReactionSummary(':thumbsup:', 33, false), getReactionSummary(':astonished:', 99, false), getReactionSummary(':heart:', 44, false) // Widest character
|
|
42
|
+
var simpleMockData = exports.simpleMockData = (0, _defineProperty2.default)({}, getReactionKey(containerAri, ari), [getReactionSummary(':fire:', 1, true), getReactionSummary(':thumbsup:', 33, false), getReactionSummary(':astonished:', 99, false), getReactionSummary(':heart:', 44, false) // Widest character
|
|
47
43
|
]);
|
|
48
|
-
|
|
44
|
+
|
|
49
45
|
var extendedMockData = (0, _defineProperty2.default)({}, getReactionKey(containerAri, ari), [getReactionSummary(':fire:', 1, true, true), getReactionSummary(':thumbsup:', 999, false, true), getReactionSummary(':astonished:', 9, false, true), getReactionSummary(':heart:', 99, false, true), getReactionSummary(':thinking:', 10, false, true), getReactionSummary(':clap:', 99, false, true), getReactionSummary(':thumbsdown:', 2, false, true), getReactionSummary(':bulb:', 16, false, true), getReactionSummary(':star:', 9999, false, true), getReactionSummary(':green_heart:', 9, false, true), getReactionSummary(':blue_heart:', 8392, false, true), getReactionSummary(':broken_heart:', 1, false, true), getReactionSummary(':grinning:', 10601, false, true), getReactionSummary(':slight_smile:', 99, false, true)]);
|
|
50
46
|
|
|
51
47
|
/**
|
|
52
48
|
* Mocked version of the client to fetch user information
|
|
53
49
|
*/
|
|
54
|
-
var MockReactionsClient = /*#__PURE__*/function () {
|
|
50
|
+
var MockReactionsClient = exports.MockReactionsClient = /*#__PURE__*/function () {
|
|
55
51
|
function MockReactionsClient() {
|
|
56
52
|
var _this = this;
|
|
57
53
|
var delay = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
|
|
@@ -227,5 +223,4 @@ var MockReactionsClient = /*#__PURE__*/function () {
|
|
|
227
223
|
}()
|
|
228
224
|
}]);
|
|
229
225
|
return MockReactionsClient;
|
|
230
|
-
}();
|
|
231
|
-
exports.MockReactionsClient = MockReactionsClient;
|
|
226
|
+
}();
|