@atlaskit/reactions 33.2.3 → 33.2.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/reactions
2
2
 
3
+ ## 33.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#188592](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188592)
8
+ [`c6827409589d7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c6827409589d7) -
9
+ Exported 'ReactionSummary' type
10
+
3
11
  ## 33.2.3
4
12
 
5
13
  ### Patch Changes
@@ -0,0 +1,99 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.townsquare.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../townsquare/tsDist/@atlaskit__reactions/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-gas-types/afm-townsquare/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../analytics/analytics-namespaced-context/afm-townsquare/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/avatar/afm-townsquare/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/button/afm-townsquare/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/css/afm-townsquare/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../emoji/afm-townsquare/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../design-system/heading/afm-townsquare/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../design-system/link/afm-townsquare/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../design-system/modal-dialog/afm-townsquare/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../design-system/motion/afm-townsquare/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../platform/feature-flags-react/afm-townsquare/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../../design-system/popper/afm-townsquare/tsconfig.json"
64
+ },
65
+ {
66
+ "path": "../../../design-system/popup/afm-townsquare/tsconfig.json"
67
+ },
68
+ {
69
+ "path": "../../../design-system/portal/afm-townsquare/tsconfig.json"
70
+ },
71
+ {
72
+ "path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
73
+ },
74
+ {
75
+ "path": "../../../react-ufo/atlaskit/afm-townsquare/tsconfig.json"
76
+ },
77
+ {
78
+ "path": "../../../design-system/spinner/afm-townsquare/tsconfig.json"
79
+ },
80
+ {
81
+ "path": "../../../design-system/tabs/afm-townsquare/tsconfig.json"
82
+ },
83
+ {
84
+ "path": "../../../design-system/theme/afm-townsquare/tsconfig.json"
85
+ },
86
+ {
87
+ "path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
88
+ },
89
+ {
90
+ "path": "../../../design-system/tooltip/afm-townsquare/tsconfig.json"
91
+ },
92
+ {
93
+ "path": "../../../data/ufo-external/afm-townsquare/tsconfig.json"
94
+ },
95
+ {
96
+ "path": "../../util-service-support/afm-townsquare/tsconfig.json"
97
+ }
98
+ ]
99
+ }
@@ -9,7 +9,7 @@ export { useCloseManager } from './hooks/useCloseManager';
9
9
  export { ConnectedReactionPicker, ConnectedReactionsView } from './containers';
10
10
  export { MemoryReactionsStore, ReactionConsumer } from './store';
11
11
  export type { Client as ReactionClient, Request as ReactionRequest, Store as ReactionsStore, StorePropInput, State, } from './types';
12
- export { ReactionUpdateType, ReactionStatus } from './types';
12
+ export { ReactionUpdateType, ReactionStatus, type ReactionSummary } from './types';
13
13
  export declare const constants: {
14
14
  DefaultReactions: import("@atlaskit/emoji").EmojiId[];
15
15
  DefaultReactionsByShortName: Map<string, import("@atlaskit/emoji").EmojiId>;
@@ -9,7 +9,7 @@ export { useCloseManager } from './hooks/useCloseManager';
9
9
  export { ConnectedReactionPicker, ConnectedReactionsView } from './containers';
10
10
  export { MemoryReactionsStore, ReactionConsumer } from './store';
11
11
  export type { Client as ReactionClient, Request as ReactionRequest, Store as ReactionsStore, StorePropInput, State, } from './types';
12
- export { ReactionUpdateType, ReactionStatus } from './types';
12
+ export { ReactionUpdateType, ReactionStatus, type ReactionSummary } from './types';
13
13
  export declare const constants: {
14
14
  DefaultReactions: import("@atlaskit/emoji").EmojiId[];
15
15
  DefaultReactionsByShortName: Map<string, import("@atlaskit/emoji").EmojiId>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/reactions",
3
- "version": "33.2.3",
3
+ "version": "33.2.4",
4
4
  "description": "Reactions component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -39,7 +39,7 @@
39
39
  "@atlaskit/css": "^0.12.0",
40
40
  "@atlaskit/emoji": "^69.3.0",
41
41
  "@atlaskit/heading": "^5.2.0",
42
- "@atlaskit/icon": "^27.3.0",
42
+ "@atlaskit/icon": "^27.4.0",
43
43
  "@atlaskit/link": "^3.2.0",
44
44
  "@atlaskit/modal-dialog": "^14.2.0",
45
45
  "@atlaskit/motion": "^5.1.0",