@atlaskit/reactions 21.2.3 → 21.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 +7 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/analytics/index.d.ts +1 -1
- package/dist/types/components/Reaction.d.ts +1 -1
- package/dist/types/components/Reactions.d.ts +1 -1
- package/dist/types/containers/ConnectedReactionsView.d.ts +1 -1
- package/dist/types/store/ReactionConsumer.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -3,7 +3,7 @@ import { EventType } from '@atlaskit/analytics-gas-types';
|
|
|
3
3
|
import { ReactionSummary, ReactionSource } from '../types';
|
|
4
4
|
export * as UFO from './ufo';
|
|
5
5
|
export declare type PreviousState = 'new' | 'existingNotReacted' | 'existingReacted';
|
|
6
|
-
export declare const createAndFireEventInElementsChannel: (payload:
|
|
6
|
+
export declare const createAndFireEventInElementsChannel: (payload: AnalyticsEventPayload) => (createAnalyticsEvent: CreateUIAnalyticsEvent) => import("@atlaskit/analytics-next").UIAnalyticsEvent;
|
|
7
7
|
export declare const createAndFireSafe: <U extends any[], T extends (...args: U) => AnalyticsEventPayload>(createAnalyticsEvent: CreateUIAnalyticsEvent | void, creator: T, ...args: U) => void;
|
|
8
8
|
export declare const createRestSucceededEvent: (actionSubject: string) => {
|
|
9
9
|
action: string;
|
|
@@ -17,7 +17,7 @@ export interface Props {
|
|
|
17
17
|
export interface State {
|
|
18
18
|
emojiName?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare const Reaction: React.ForwardRefExoticComponent<Pick<
|
|
20
|
+
export declare const Reaction: React.ForwardRefExoticComponent<Pick<Omit<Props & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps>, "reaction" | "emojiProvider" | "onClick"> & Partial<Pick<Omit<Props & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps>, "className" | "onMouseEnter" | "flash">> & Partial<Pick<{
|
|
21
21
|
flash: boolean;
|
|
22
22
|
className: undefined;
|
|
23
23
|
onMouseEnter: undefined;
|
|
@@ -43,7 +43,7 @@ export declare class ReactionsWithoutAnalytics extends React.PureComponent<Props
|
|
|
43
43
|
private renderReaction;
|
|
44
44
|
render(): JSX.Element;
|
|
45
45
|
}
|
|
46
|
-
export declare const Reactions: React.ForwardRefExoticComponent<Pick<
|
|
46
|
+
export declare const Reactions: React.ForwardRefExoticComponent<Pick<Omit<Props & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps>, "emojiProvider" | "onSelection" | "boundariesElement" | "allowAllEmojis" | "loadReaction" | "onReactionClick" | "onReactionHover" | "errorMessage" | "status"> & Partial<Pick<Omit<Props & WithAnalyticsEventsProps, keyof WithAnalyticsEventsProps>, "reactions" | "flash">> & Partial<Pick<{
|
|
47
47
|
flash: {};
|
|
48
48
|
reactions: never[];
|
|
49
49
|
}, never>> & React.RefAttributes<any>>;
|
|
@@ -16,4 +16,4 @@ export declare type Props = {
|
|
|
16
16
|
emojiProvider: Promise<EmojiProvider>;
|
|
17
17
|
store: ReactionStoreProp;
|
|
18
18
|
};
|
|
19
|
-
export declare const ConnectedReactionsView: React.ForwardRefExoticComponent<
|
|
19
|
+
export declare const ConnectedReactionsView: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<Props & WithAnalyticsEventsProps>, keyof WithAnalyticsEventsProps> & React.RefAttributes<any>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reactions",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.4",
|
|
4
4
|
"description": "Reactions component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@atlaskit/analytics-gas-types": "^5.0.0",
|
|
29
29
|
"@atlaskit/analytics-namespaced-context": "^6.4.0",
|
|
30
30
|
"@atlaskit/analytics-next": "^8.2.0",
|
|
31
|
-
"@atlaskit/button": "^16.
|
|
31
|
+
"@atlaskit/button": "^16.3.0",
|
|
32
32
|
"@atlaskit/ds-lib": "^1.4.0",
|
|
33
33
|
"@atlaskit/emoji": "^64.5.0",
|
|
34
34
|
"@atlaskit/icon": "^21.10.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"jest-fetch-mock": "^3.0.3",
|
|
65
65
|
"react": "^16.8.0",
|
|
66
66
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
67
|
-
"typescript": "
|
|
67
|
+
"typescript": "4.2.4",
|
|
68
68
|
"wait-for-expect": "^1.2.0",
|
|
69
69
|
"webpack-dev-server": "^3.11.2"
|
|
70
70
|
},
|