@atlaskit/editor-plugin-avatar-group 2.0.13 → 2.0.14
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 +9 -0
- package/dist/cjs/avatarGroupPluginType.js +5 -0
- package/dist/cjs/index.js +2 -2
- package/dist/es2019/avatarGroupPluginType.js +1 -0
- package/dist/es2019/index.js +1 -1
- package/dist/esm/avatarGroupPluginType.js +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/types/avatarGroupPlugin.d.ts +2 -0
- package/dist/{types-ts4.5/plugin.d.ts → types/avatarGroupPluginType.d.ts} +0 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/ui/avatars-with-plugin-state.d.ts +1 -1
- package/dist/types/ui/avatars.d.ts +1 -1
- package/dist/types/ui/colored-avatar-item.d.ts +1 -1
- package/dist/types-ts4.5/avatarGroupPlugin.d.ts +2 -0
- package/dist/{types/plugin.d.ts → types-ts4.5/avatarGroupPluginType.d.ts} +0 -1
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/avatars-with-plugin-state.d.ts +1 -1
- package/dist/types-ts4.5/ui/avatars.d.ts +1 -1
- package/dist/types-ts4.5/ui/colored-avatar-item.d.ts +1 -1
- package/package.json +6 -3
- /package/dist/cjs/{plugin.js → avatarGroupPlugin.js} +0 -0
- /package/dist/es2019/{plugin.js → avatarGroupPlugin.js} +0 -0
- /package/dist/esm/{plugin.js → avatarGroupPlugin.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-avatar-group
|
|
2
2
|
|
|
3
|
+
## 2.0.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#167498](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/167498)
|
|
8
|
+
[`e275b9ee8b698`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e275b9ee8b698) -
|
|
9
|
+
ED-25805: refactors plugins to meet folder standards
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 2.0.13
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "avatarGroupPlugin", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function get() {
|
|
9
|
-
return
|
|
9
|
+
return _avatarGroupPlugin.avatarGroupPlugin;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
var
|
|
12
|
+
var _avatarGroupPlugin = require("./avatarGroupPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/es2019/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { avatarGroupPlugin } from './
|
|
1
|
+
export { avatarGroupPlugin } from './avatarGroupPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/esm/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { avatarGroupPlugin } from './
|
|
1
|
+
export { avatarGroupPlugin } from './avatarGroupPlugin';
|
|
@@ -22,5 +22,4 @@ export type AvatarGroupPlugin = NextEditorPlugin<'avatarGroup', {
|
|
|
22
22
|
getToolbarItem: ({ inviteToEditHandler, isInviteToEditButtonSelected, inviteToEditComponent, }: CollabInviteToEditProps) => JSX.Element | null;
|
|
23
23
|
};
|
|
24
24
|
}>;
|
|
25
|
-
export declare const avatarGroupPlugin: AvatarGroupPlugin;
|
|
26
25
|
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { AvatarGroupPlugin } from './
|
|
2
|
-
export { avatarGroupPlugin } from './
|
|
1
|
+
export type { AvatarGroupPlugin } from './avatarGroupPluginType';
|
|
2
|
+
export { avatarGroupPlugin } from './avatarGroupPlugin';
|
|
@@ -5,7 +5,7 @@ import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
|
5
5
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
6
6
|
import type { CollabInviteToEditProps } from '@atlaskit/editor-plugin-collab-edit';
|
|
7
7
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
8
|
-
import type { AvatarGroupPlugin } from '../
|
|
8
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
9
9
|
export type AvatarsWithPluginStateProps = {
|
|
10
10
|
editorView?: EditorView;
|
|
11
11
|
eventDispatcher?: EventDispatcher;
|
|
@@ -10,7 +10,7 @@ import type { CollabParticipant } from '@atlaskit/editor-common/collab';
|
|
|
10
10
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
11
11
|
import type { ReadOnlyParticipants } from '@atlaskit/editor-plugin-collab-edit';
|
|
12
12
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
13
|
-
import type { AvatarGroupPlugin } from '../
|
|
13
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
14
14
|
export interface AvatarsProps {
|
|
15
15
|
sessionId?: string;
|
|
16
16
|
participants: ReadOnlyParticipants | undefined;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { jsx } from '@emotion/react';
|
|
6
6
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
7
|
-
import type { AvatarGroupPlugin } from '../
|
|
7
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
8
8
|
export interface ColoredAvatarItemProps {
|
|
9
9
|
sessionId: string;
|
|
10
10
|
name: string;
|
|
@@ -22,5 +22,4 @@ export type AvatarGroupPlugin = NextEditorPlugin<'avatarGroup', {
|
|
|
22
22
|
getToolbarItem: ({ inviteToEditHandler, isInviteToEditButtonSelected, inviteToEditComponent, }: CollabInviteToEditProps) => JSX.Element | null;
|
|
23
23
|
};
|
|
24
24
|
}>;
|
|
25
|
-
export declare const avatarGroupPlugin: AvatarGroupPlugin;
|
|
26
25
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { AvatarGroupPlugin } from './
|
|
2
|
-
export { avatarGroupPlugin } from './
|
|
1
|
+
export type { AvatarGroupPlugin } from './avatarGroupPluginType';
|
|
2
|
+
export { avatarGroupPlugin } from './avatarGroupPlugin';
|
|
@@ -5,7 +5,7 @@ import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
|
5
5
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
6
6
|
import type { CollabInviteToEditProps } from '@atlaskit/editor-plugin-collab-edit';
|
|
7
7
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
8
|
-
import type { AvatarGroupPlugin } from '../
|
|
8
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
9
9
|
export type AvatarsWithPluginStateProps = {
|
|
10
10
|
editorView?: EditorView;
|
|
11
11
|
eventDispatcher?: EventDispatcher;
|
|
@@ -10,7 +10,7 @@ import type { CollabParticipant } from '@atlaskit/editor-common/collab';
|
|
|
10
10
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
11
11
|
import type { ReadOnlyParticipants } from '@atlaskit/editor-plugin-collab-edit';
|
|
12
12
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
13
|
-
import type { AvatarGroupPlugin } from '../
|
|
13
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
14
14
|
export interface AvatarsProps {
|
|
15
15
|
sessionId?: string;
|
|
16
16
|
participants: ReadOnlyParticipants | undefined;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { jsx } from '@emotion/react';
|
|
6
6
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
7
|
-
import type { AvatarGroupPlugin } from '../
|
|
7
|
+
import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
|
|
8
8
|
export interface ColoredAvatarItemProps {
|
|
9
9
|
sessionId: string;
|
|
10
10
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-avatar-group",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "Avatar Group plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@atlaskit/avatar-group": "^10.0.0",
|
|
40
|
-
"@atlaskit/editor-common": "^95.
|
|
40
|
+
"@atlaskit/editor-common": "^95.6.0",
|
|
41
41
|
"@atlaskit/editor-plugin-analytics": "^1.10.0",
|
|
42
42
|
"@atlaskit/editor-plugin-collab-edit": "^1.23.0",
|
|
43
43
|
"@atlaskit/editor-plugin-feature-flags": "^1.2.0",
|
|
44
44
|
"@atlaskit/editor-plugin-primary-toolbar": "^2.0.0",
|
|
45
45
|
"@atlaskit/editor-prosemirror": "6.0.0",
|
|
46
46
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
47
|
-
"@atlaskit/icon": "^22.
|
|
47
|
+
"@atlaskit/icon": "^22.26.0",
|
|
48
48
|
"@atlaskit/theme": "^14.0.0",
|
|
49
49
|
"@atlaskit/tokens": "^2.3.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
@@ -60,6 +60,9 @@
|
|
|
60
60
|
},
|
|
61
61
|
"techstack": {
|
|
62
62
|
"@atlassian/frontend": {
|
|
63
|
+
"code-structure": [
|
|
64
|
+
"editor-plugin"
|
|
65
|
+
],
|
|
63
66
|
"import-structure": [
|
|
64
67
|
"atlassian-conventions"
|
|
65
68
|
],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|