@atlaskit/reactions 35.5.0 → 35.6.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 +20 -0
- package/constants/package.json +10 -0
- package/dist/cjs/analytics/index.js +1 -1
- package/dist/cjs/constants.js +29 -0
- package/dist/cjs/index.js +13 -26
- package/dist/es2019/analytics/index.js +1 -1
- package/dist/es2019/constants.js +23 -0
- package/dist/es2019/index.js +1 -23
- package/dist/esm/analytics/index.js +1 -1
- package/dist/esm/constants.js +23 -0
- package/dist/esm/index.js +1 -23
- package/dist/types/constants.d.ts +24 -0
- package/dist/types/index.d.ts +1 -24
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/reactions
|
|
2
2
|
|
|
3
|
+
## 35.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e8071bab93879`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e8071bab93879) -
|
|
8
|
+
Refactor packages with custom root `src/index` barrel logic to use dedicated entry modules (for
|
|
9
|
+
example `main`, `types`, `constants`, `screen`, and package-specific entrypoints) while keeping
|
|
10
|
+
public exports stable. This aligns the packages with barrel-file ratcheting by reducing custom
|
|
11
|
+
logic in root barrels and removing now-safe packages from the prohibited barrel-file list.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 35.5.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
3
23
|
## 35.5.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/reactions/constants",
|
|
3
|
+
"main": "../dist/cjs/constants.js",
|
|
4
|
+
"module": "../dist/esm/constants.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/constants.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/constants.d.ts"
|
|
10
|
+
}
|
|
@@ -11,7 +11,7 @@ var _analyticsGasTypes = require("@atlaskit/analytics-gas-types");
|
|
|
11
11
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
12
12
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } // eslint-disable-next-line @typescript-eslint/consistent-type-imports
|
|
13
13
|
var packageName = "@atlaskit/reactions";
|
|
14
|
-
var packageVersion = "35.
|
|
14
|
+
var packageVersion = "35.6.0";
|
|
15
15
|
/**
|
|
16
16
|
* TODO: move to utility package?
|
|
17
17
|
* A random sampling function
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.constants = exports.UFO = void 0;
|
|
7
|
+
var _constants = require("./shared/constants");
|
|
8
|
+
var _ufo = require("./ufo");
|
|
9
|
+
var constants = exports.constants = {
|
|
10
|
+
DefaultReactions: _constants.DefaultReactions,
|
|
11
|
+
DefaultReactionsByShortName: _constants.DefaultReactionsByShortName,
|
|
12
|
+
ExtendedReactions: _constants.ExtendedReactions,
|
|
13
|
+
ExtendedReactionsByShortName: _constants.ExtendedReactionsByShortName,
|
|
14
|
+
NUMBER_OF_REACTIONS_TO_DISPLAY: _constants.NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
15
|
+
SAMPLING_RATE_REACTIONS_RENDERED_EXP: _constants.SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
16
|
+
TOOLTIP_USERS_LIMIT: _constants.TOOLTIP_USERS_LIMIT
|
|
17
|
+
};
|
|
18
|
+
var UFO = exports.UFO = {
|
|
19
|
+
ComponentName: _ufo.ComponentName,
|
|
20
|
+
ExperienceName: _ufo.ExperienceName,
|
|
21
|
+
PickerRender: _ufo.PickerRender,
|
|
22
|
+
ReactionsAdd: _ufo.ReactionsAdd,
|
|
23
|
+
ReactionDetailsFetch: _ufo.ReactionDetailsFetch,
|
|
24
|
+
ReactionDialogOpened: _ufo.ReactionDialogOpened,
|
|
25
|
+
ReactionDialogSelectedReactionChanged: _ufo.ReactionDialogSelectedReactionChanged,
|
|
26
|
+
ReactionsRemove: _ufo.ReactionsRemove,
|
|
27
|
+
ReactionsRendered: _ufo.ReactionsRendered,
|
|
28
|
+
sampledReactionsRendered: _ufo.sampledReactionsRendered
|
|
29
|
+
};
|
package/dist/cjs/index.js
CHANGED
|
@@ -63,15 +63,24 @@ Object.defineProperty(exports, "Reactions", {
|
|
|
63
63
|
return _Reactions.Reactions;
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
|
-
exports
|
|
66
|
+
Object.defineProperty(exports, "UFO", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function get() {
|
|
69
|
+
return _constants.UFO;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, "constants", {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function get() {
|
|
75
|
+
return _constants.constants;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
67
78
|
Object.defineProperty(exports, "useCloseManager", {
|
|
68
79
|
enumerable: true,
|
|
69
80
|
get: function get() {
|
|
70
81
|
return _useCloseManager.useCloseManager;
|
|
71
82
|
}
|
|
72
83
|
});
|
|
73
|
-
var _constants = require("./shared/constants");
|
|
74
|
-
var _ufo = require("./ufo");
|
|
75
84
|
var _ReactionPicker = require("./components/ReactionPicker");
|
|
76
85
|
var _client = require("./client");
|
|
77
86
|
var _Reaction = require("./components/Reaction");
|
|
@@ -80,26 +89,4 @@ var _useCloseManager = require("./hooks/useCloseManager");
|
|
|
80
89
|
var _containers = require("./containers");
|
|
81
90
|
var _store = require("./store");
|
|
82
91
|
var _types = require("./types");
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
var constants = exports.constants = {
|
|
86
|
-
DefaultReactions: _constants.DefaultReactions,
|
|
87
|
-
DefaultReactionsByShortName: _constants.DefaultReactionsByShortName,
|
|
88
|
-
ExtendedReactions: _constants.ExtendedReactions,
|
|
89
|
-
ExtendedReactionsByShortName: _constants.ExtendedReactionsByShortName,
|
|
90
|
-
NUMBER_OF_REACTIONS_TO_DISPLAY: _constants.NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
91
|
-
SAMPLING_RATE_REACTIONS_RENDERED_EXP: _constants.SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
92
|
-
TOOLTIP_USERS_LIMIT: _constants.TOOLTIP_USERS_LIMIT
|
|
93
|
-
};
|
|
94
|
-
var UFO = exports.UFO = {
|
|
95
|
-
ComponentName: _ufo.ComponentName,
|
|
96
|
-
ExperienceName: _ufo.ExperienceName,
|
|
97
|
-
PickerRender: _ufo.PickerRender,
|
|
98
|
-
ReactionsAdd: _ufo.ReactionsAdd,
|
|
99
|
-
ReactionDetailsFetch: _ufo.ReactionDetailsFetch,
|
|
100
|
-
ReactionDialogOpened: _ufo.ReactionDialogOpened,
|
|
101
|
-
ReactionDialogSelectedReactionChanged: _ufo.ReactionDialogSelectedReactionChanged,
|
|
102
|
-
ReactionsRemove: _ufo.ReactionsRemove,
|
|
103
|
-
ReactionsRendered: _ufo.ReactionsRendered,
|
|
104
|
-
sampledReactionsRendered: _ufo.sampledReactionsRendered
|
|
105
|
-
};
|
|
92
|
+
var _constants = require("./constants");
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
3
3
|
import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
|
|
4
4
|
const packageName = "@atlaskit/reactions";
|
|
5
|
-
const packageVersion = "35.
|
|
5
|
+
const packageVersion = "35.6.0";
|
|
6
6
|
/**
|
|
7
7
|
* TODO: move to utility package?
|
|
8
8
|
* A random sampling function
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DefaultReactions, DefaultReactionsByShortName, ExtendedReactions, ExtendedReactionsByShortName, NUMBER_OF_REACTIONS_TO_DISPLAY, SAMPLING_RATE_REACTIONS_RENDERED_EXP, TOOLTIP_USERS_LIMIT } from './shared/constants';
|
|
2
|
+
import { ComponentName, ExperienceName, PickerRender, ReactionsAdd, ReactionDetailsFetch, ReactionDialogOpened, ReactionDialogSelectedReactionChanged, ReactionsRemove, ReactionsRendered, sampledReactionsRendered } from './ufo';
|
|
3
|
+
export const constants = {
|
|
4
|
+
DefaultReactions,
|
|
5
|
+
DefaultReactionsByShortName,
|
|
6
|
+
ExtendedReactions,
|
|
7
|
+
ExtendedReactionsByShortName,
|
|
8
|
+
NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
9
|
+
SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
10
|
+
TOOLTIP_USERS_LIMIT
|
|
11
|
+
};
|
|
12
|
+
export const UFO = {
|
|
13
|
+
ComponentName,
|
|
14
|
+
ExperienceName,
|
|
15
|
+
PickerRender,
|
|
16
|
+
ReactionsAdd,
|
|
17
|
+
ReactionDetailsFetch,
|
|
18
|
+
ReactionDialogOpened,
|
|
19
|
+
ReactionDialogSelectedReactionChanged,
|
|
20
|
+
ReactionsRemove,
|
|
21
|
+
ReactionsRendered,
|
|
22
|
+
sampledReactionsRendered
|
|
23
|
+
};
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DefaultReactions, DefaultReactionsByShortName, ExtendedReactions, ExtendedReactionsByShortName, NUMBER_OF_REACTIONS_TO_DISPLAY, SAMPLING_RATE_REACTIONS_RENDERED_EXP, TOOLTIP_USERS_LIMIT } from './shared/constants';
|
|
2
|
-
import { ComponentName, ExperienceName, PickerRender, ReactionsAdd, ReactionDetailsFetch, ReactionDialogOpened, ReactionDialogSelectedReactionChanged, ReactionsRemove, ReactionsRendered, sampledReactionsRendered } from './ufo';
|
|
3
1
|
import { ReactionPicker } from './components/ReactionPicker';
|
|
4
2
|
export { ReactionServiceClient } from './client';
|
|
5
3
|
export { Reaction } from './components/Reaction';
|
|
@@ -11,24 +9,4 @@ export { MemoryReactionsStore, ReactionConsumer } from './store';
|
|
|
11
9
|
// TODO: Convert all calls for ReactionRequest to Request, RequestClient to Client and ReactionsStore to Store
|
|
12
10
|
|
|
13
11
|
export { ReactionUpdateType, ReactionStatus } from './types';
|
|
14
|
-
export
|
|
15
|
-
DefaultReactions,
|
|
16
|
-
DefaultReactionsByShortName,
|
|
17
|
-
ExtendedReactions,
|
|
18
|
-
ExtendedReactionsByShortName,
|
|
19
|
-
NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
20
|
-
SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
21
|
-
TOOLTIP_USERS_LIMIT
|
|
22
|
-
};
|
|
23
|
-
export const UFO = {
|
|
24
|
-
ComponentName,
|
|
25
|
-
ExperienceName,
|
|
26
|
-
PickerRender,
|
|
27
|
-
ReactionsAdd,
|
|
28
|
-
ReactionDetailsFetch,
|
|
29
|
-
ReactionDialogOpened,
|
|
30
|
-
ReactionDialogSelectedReactionChanged,
|
|
31
|
-
ReactionsRemove,
|
|
32
|
-
ReactionsRendered,
|
|
33
|
-
sampledReactionsRendered
|
|
34
|
-
};
|
|
12
|
+
export { constants, UFO } from './constants';
|
|
@@ -5,7 +5,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
5
5
|
import { createAndFireEvent } from '@atlaskit/analytics-next';
|
|
6
6
|
import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
|
|
7
7
|
var packageName = "@atlaskit/reactions";
|
|
8
|
-
var packageVersion = "35.
|
|
8
|
+
var packageVersion = "35.6.0";
|
|
9
9
|
/**
|
|
10
10
|
* TODO: move to utility package?
|
|
11
11
|
* A random sampling function
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DefaultReactions, DefaultReactionsByShortName, ExtendedReactions, ExtendedReactionsByShortName, NUMBER_OF_REACTIONS_TO_DISPLAY, SAMPLING_RATE_REACTIONS_RENDERED_EXP, TOOLTIP_USERS_LIMIT } from './shared/constants';
|
|
2
|
+
import { ComponentName, ExperienceName, PickerRender, ReactionsAdd, ReactionDetailsFetch, ReactionDialogOpened, ReactionDialogSelectedReactionChanged, ReactionsRemove, ReactionsRendered, sampledReactionsRendered } from './ufo';
|
|
3
|
+
export var constants = {
|
|
4
|
+
DefaultReactions: DefaultReactions,
|
|
5
|
+
DefaultReactionsByShortName: DefaultReactionsByShortName,
|
|
6
|
+
ExtendedReactions: ExtendedReactions,
|
|
7
|
+
ExtendedReactionsByShortName: ExtendedReactionsByShortName,
|
|
8
|
+
NUMBER_OF_REACTIONS_TO_DISPLAY: NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
9
|
+
SAMPLING_RATE_REACTIONS_RENDERED_EXP: SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
10
|
+
TOOLTIP_USERS_LIMIT: TOOLTIP_USERS_LIMIT
|
|
11
|
+
};
|
|
12
|
+
export var UFO = {
|
|
13
|
+
ComponentName: ComponentName,
|
|
14
|
+
ExperienceName: ExperienceName,
|
|
15
|
+
PickerRender: PickerRender,
|
|
16
|
+
ReactionsAdd: ReactionsAdd,
|
|
17
|
+
ReactionDetailsFetch: ReactionDetailsFetch,
|
|
18
|
+
ReactionDialogOpened: ReactionDialogOpened,
|
|
19
|
+
ReactionDialogSelectedReactionChanged: ReactionDialogSelectedReactionChanged,
|
|
20
|
+
ReactionsRemove: ReactionsRemove,
|
|
21
|
+
ReactionsRendered: ReactionsRendered,
|
|
22
|
+
sampledReactionsRendered: sampledReactionsRendered
|
|
23
|
+
};
|
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DefaultReactions, DefaultReactionsByShortName, ExtendedReactions, ExtendedReactionsByShortName, NUMBER_OF_REACTIONS_TO_DISPLAY, SAMPLING_RATE_REACTIONS_RENDERED_EXP, TOOLTIP_USERS_LIMIT } from './shared/constants';
|
|
2
|
-
import { ComponentName, ExperienceName, PickerRender, ReactionsAdd, ReactionDetailsFetch, ReactionDialogOpened, ReactionDialogSelectedReactionChanged, ReactionsRemove, ReactionsRendered, sampledReactionsRendered } from './ufo';
|
|
3
1
|
import { ReactionPicker } from './components/ReactionPicker';
|
|
4
2
|
export { ReactionServiceClient } from './client';
|
|
5
3
|
export { Reaction } from './components/Reaction';
|
|
@@ -11,24 +9,4 @@ export { MemoryReactionsStore, ReactionConsumer } from './store';
|
|
|
11
9
|
// TODO: Convert all calls for ReactionRequest to Request, RequestClient to Client and ReactionsStore to Store
|
|
12
10
|
|
|
13
11
|
export { ReactionUpdateType, ReactionStatus } from './types';
|
|
14
|
-
export
|
|
15
|
-
DefaultReactions: DefaultReactions,
|
|
16
|
-
DefaultReactionsByShortName: DefaultReactionsByShortName,
|
|
17
|
-
ExtendedReactions: ExtendedReactions,
|
|
18
|
-
ExtendedReactionsByShortName: ExtendedReactionsByShortName,
|
|
19
|
-
NUMBER_OF_REACTIONS_TO_DISPLAY: NUMBER_OF_REACTIONS_TO_DISPLAY,
|
|
20
|
-
SAMPLING_RATE_REACTIONS_RENDERED_EXP: SAMPLING_RATE_REACTIONS_RENDERED_EXP,
|
|
21
|
-
TOOLTIP_USERS_LIMIT: TOOLTIP_USERS_LIMIT
|
|
22
|
-
};
|
|
23
|
-
export var UFO = {
|
|
24
|
-
ComponentName: ComponentName,
|
|
25
|
-
ExperienceName: ExperienceName,
|
|
26
|
-
PickerRender: PickerRender,
|
|
27
|
-
ReactionsAdd: ReactionsAdd,
|
|
28
|
-
ReactionDetailsFetch: ReactionDetailsFetch,
|
|
29
|
-
ReactionDialogOpened: ReactionDialogOpened,
|
|
30
|
-
ReactionDialogSelectedReactionChanged: ReactionDialogSelectedReactionChanged,
|
|
31
|
-
ReactionsRemove: ReactionsRemove,
|
|
32
|
-
ReactionsRendered: ReactionsRendered,
|
|
33
|
-
sampledReactionsRendered: sampledReactionsRendered
|
|
34
|
-
};
|
|
12
|
+
export { constants, UFO } from './constants';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ComponentName, ExperienceName } from './ufo';
|
|
2
|
+
import type { EmojiId, WithSamplingUFOExperience } from '@atlaskit/emoji';
|
|
3
|
+
import type { UFOExperience, ConcurrentExperience } from '@atlaskit/ufo';
|
|
4
|
+
export declare const constants: {
|
|
5
|
+
DefaultReactions: EmojiId[];
|
|
6
|
+
DefaultReactionsByShortName: Map<string, EmojiId>;
|
|
7
|
+
ExtendedReactions: EmojiId[];
|
|
8
|
+
ExtendedReactionsByShortName: Map<string, EmojiId>;
|
|
9
|
+
NUMBER_OF_REACTIONS_TO_DISPLAY: number;
|
|
10
|
+
SAMPLING_RATE_REACTIONS_RENDERED_EXP: number;
|
|
11
|
+
TOOLTIP_USERS_LIMIT: number;
|
|
12
|
+
};
|
|
13
|
+
export declare const UFO: {
|
|
14
|
+
ComponentName: typeof ComponentName;
|
|
15
|
+
ExperienceName: typeof ExperienceName;
|
|
16
|
+
PickerRender: UFOExperience;
|
|
17
|
+
ReactionDetailsFetch: ConcurrentExperience;
|
|
18
|
+
ReactionDialogOpened: UFOExperience;
|
|
19
|
+
ReactionDialogSelectedReactionChanged: UFOExperience;
|
|
20
|
+
ReactionsAdd: ConcurrentExperience;
|
|
21
|
+
ReactionsRemove: ConcurrentExperience;
|
|
22
|
+
ReactionsRendered: ConcurrentExperience;
|
|
23
|
+
sampledReactionsRendered: (instanceId: string) => WithSamplingUFOExperience;
|
|
24
|
+
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { ComponentName, ExperienceName } from './ufo';
|
|
2
1
|
import { ReactionPicker } from './components/ReactionPicker';
|
|
3
|
-
import type { EmojiId, WithSamplingUFOExperience } from '@atlaskit/emoji';
|
|
4
|
-
import type { UFOExperience, ConcurrentExperience } from '@atlaskit/ufo';
|
|
5
2
|
export { ReactionServiceClient } from './client';
|
|
6
3
|
export { Reaction } from './components/Reaction';
|
|
7
4
|
export { ReactionPicker };
|
|
@@ -11,24 +8,4 @@ export { ConnectedReactionPicker, ConnectedReactionsView } from './containers';
|
|
|
11
8
|
export { MemoryReactionsStore, ReactionConsumer } from './store';
|
|
12
9
|
export type { Client as ReactionClient, Request as ReactionRequest, Store as ReactionsStore, Reactions as ReactionsType, StorePropInput, State, } from './types';
|
|
13
10
|
export { ReactionUpdateType, ReactionStatus, type ReactionSummary } from './types';
|
|
14
|
-
export
|
|
15
|
-
DefaultReactions: EmojiId[];
|
|
16
|
-
DefaultReactionsByShortName: Map<string, EmojiId>;
|
|
17
|
-
ExtendedReactions: EmojiId[];
|
|
18
|
-
ExtendedReactionsByShortName: Map<string, EmojiId>;
|
|
19
|
-
NUMBER_OF_REACTIONS_TO_DISPLAY: number;
|
|
20
|
-
SAMPLING_RATE_REACTIONS_RENDERED_EXP: number;
|
|
21
|
-
TOOLTIP_USERS_LIMIT: number;
|
|
22
|
-
};
|
|
23
|
-
export declare const UFO: {
|
|
24
|
-
ComponentName: typeof ComponentName;
|
|
25
|
-
ExperienceName: typeof ExperienceName;
|
|
26
|
-
PickerRender: UFOExperience;
|
|
27
|
-
ReactionDetailsFetch: ConcurrentExperience;
|
|
28
|
-
ReactionDialogOpened: UFOExperience;
|
|
29
|
-
ReactionDialogSelectedReactionChanged: UFOExperience;
|
|
30
|
-
ReactionsAdd: ConcurrentExperience;
|
|
31
|
-
ReactionsRemove: ConcurrentExperience;
|
|
32
|
-
ReactionsRendered: ConcurrentExperience;
|
|
33
|
-
sampledReactionsRendered: (instanceId: string) => WithSamplingUFOExperience;
|
|
34
|
-
};
|
|
11
|
+
export { constants, UFO } from './constants';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reactions",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.6.0",
|
|
4
4
|
"description": "Reactions component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"@atlaskit/afm-i18n-platform-elements-reactions": "2.168.0",
|
|
34
34
|
"@atlaskit/analytics-gas-types": "^6.0.0",
|
|
35
35
|
"@atlaskit/analytics-namespaced-context": "^8.1.0",
|
|
36
|
-
"@atlaskit/analytics-next": "^12.
|
|
36
|
+
"@atlaskit/analytics-next": "^12.2.0",
|
|
37
37
|
"@atlaskit/avatar": "^26.1.0",
|
|
38
38
|
"@atlaskit/button": "^24.3.0",
|
|
39
39
|
"@atlaskit/css": "^1.0.0",
|
|
40
40
|
"@atlaskit/emoji": "^71.7.0",
|
|
41
41
|
"@atlaskit/feature-gate-js-client": "^6.0.0",
|
|
42
42
|
"@atlaskit/heading": "^6.1.0",
|
|
43
|
-
"@atlaskit/icon": "^36.
|
|
43
|
+
"@atlaskit/icon": "^36.2.0",
|
|
44
44
|
"@atlaskit/link": "^4.1.0",
|
|
45
45
|
"@atlaskit/modal-dialog": "^16.1.0",
|
|
46
46
|
"@atlaskit/motion": "^7.2.0",
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
"@atlaskit/popper": "^8.2.0",
|
|
49
49
|
"@atlaskit/popup": "^5.1.0",
|
|
50
50
|
"@atlaskit/portal": "^6.1.0",
|
|
51
|
-
"@atlaskit/primitives": "^20.
|
|
51
|
+
"@atlaskit/primitives": "^20.4.0",
|
|
52
52
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
53
53
|
"@atlaskit/react-ufo": "^7.3.0",
|
|
54
54
|
"@atlaskit/spinner": "^20.1.0",
|
|
55
55
|
"@atlaskit/tabs": "^20.1.0",
|
|
56
56
|
"@atlaskit/theme": "^26.1.0",
|
|
57
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
58
|
-
"@atlaskit/tokens": "^15.
|
|
57
|
+
"@atlaskit/tmp-editor-statsig": "^121.2.0",
|
|
58
|
+
"@atlaskit/tokens": "^15.4.0",
|
|
59
59
|
"@atlaskit/tooltip": "^23.1.0",
|
|
60
60
|
"@atlaskit/ufo": "^1.0.0",
|
|
61
|
-
"@atlaskit/util-service-support": "^7.
|
|
61
|
+
"@atlaskit/util-service-support": "^7.2.0",
|
|
62
62
|
"@babel/runtime": "^7.0.0",
|
|
63
63
|
"@compiled/react": "^0.20.0",
|
|
64
64
|
"focus-trap": "^2.4.5"
|