@atlaskit/editor-plugin-avatar-group 1.0.4 → 1.0.5
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,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-avatar-group
|
|
2
2
|
|
|
3
|
+
## 1.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#80883](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80883) [`5ecfa883d4ba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ecfa883d4ba) - React 18 types for alignment, annotation, avatar-group and blocktype plugins.
|
|
8
|
+
|
|
3
9
|
## 1.0.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -5,7 +5,7 @@ import type { InviteToEditComponentProps } from '@atlaskit/editor-common/collab'
|
|
|
5
5
|
export type InviteToEditButtonProps = PropsWithChildren<{
|
|
6
6
|
onClick?: React.MouseEventHandler;
|
|
7
7
|
selected?: boolean;
|
|
8
|
-
Component?: React.ComponentType<InviteToEditComponentProps
|
|
8
|
+
Component?: React.ComponentType<React.PropsWithChildren<InviteToEditComponentProps>>;
|
|
9
9
|
title: string;
|
|
10
10
|
}>;
|
|
11
11
|
export declare const InviteToEditButton: (props: InviteToEditButtonProps) => jsx.JSX.Element | null;
|
|
@@ -5,7 +5,7 @@ import type { InviteToEditComponentProps } from '@atlaskit/editor-common/collab'
|
|
|
5
5
|
export type InviteToEditButtonProps = PropsWithChildren<{
|
|
6
6
|
onClick?: React.MouseEventHandler;
|
|
7
7
|
selected?: boolean;
|
|
8
|
-
Component?: React.ComponentType<InviteToEditComponentProps
|
|
8
|
+
Component?: React.ComponentType<React.PropsWithChildren<InviteToEditComponentProps>>;
|
|
9
9
|
title: string;
|
|
10
10
|
}>;
|
|
11
11
|
export declare const InviteToEditButton: (props: InviteToEditButtonProps) => jsx.JSX.Element | null;
|