@atlaskit/editor-plugin-avatar-group 2.0.13 → 2.0.15

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,20 @@
1
1
  # @atlaskit/editor-plugin-avatar-group
2
2
 
3
+ ## 2.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 2.0.14
10
+
11
+ ### Patch Changes
12
+
13
+ - [#167498](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/167498)
14
+ [`e275b9ee8b698`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e275b9ee8b698) -
15
+ ED-25805: refactors plugins to meet folder standards
16
+ - Updated dependencies
17
+
3
18
  ## 2.0.13
4
19
 
5
20
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
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 _plugin.avatarGroupPlugin;
9
+ return _avatarGroupPlugin.avatarGroupPlugin;
10
10
  }
11
11
  });
12
- var _plugin = require("./plugin");
12
+ var _avatarGroupPlugin = require("./avatarGroupPlugin");
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +1 @@
1
- export { avatarGroupPlugin } from './plugin';
1
+ export { avatarGroupPlugin } from './avatarGroupPlugin';
@@ -0,0 +1 @@
1
+ export {};
package/dist/esm/index.js CHANGED
@@ -1 +1 @@
1
- export { avatarGroupPlugin } from './plugin';
1
+ export { avatarGroupPlugin } from './avatarGroupPlugin';
@@ -0,0 +1,2 @@
1
+ import type { AvatarGroupPlugin } from './avatarGroupPluginType';
2
+ export declare const avatarGroupPlugin: 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 {};
@@ -1,2 +1,2 @@
1
- export type { AvatarGroupPlugin } from './plugin';
2
- export { avatarGroupPlugin } from './plugin';
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 '../plugin';
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 '../plugin';
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 '../plugin';
7
+ import type { AvatarGroupPlugin } from '../avatarGroupPluginType';
8
8
  export interface ColoredAvatarItemProps {
9
9
  sessionId: string;
10
10
  name: string;
@@ -0,0 +1,2 @@
1
+ import type { AvatarGroupPlugin } from './avatarGroupPluginType';
2
+ export declare const avatarGroupPlugin: 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 {};
@@ -1,2 +1,2 @@
1
- export type { AvatarGroupPlugin } from './plugin';
2
- export { avatarGroupPlugin } from './plugin';
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 '../plugin';
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 '../plugin';
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 '../plugin';
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.13",
3
+ "version": "2.0.15",
4
4
  "description": "Avatar Group plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -37,16 +37,16 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@atlaskit/avatar-group": "^10.0.0",
40
- "@atlaskit/editor-common": "^95.0.0",
40
+ "@atlaskit/editor-common": "^95.10.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
- "@atlaskit/editor-prosemirror": "6.0.0",
45
+ "@atlaskit/editor-prosemirror": "6.2.1",
46
46
  "@atlaskit/editor-shared-styles": "^3.2.0",
47
- "@atlaskit/icon": "^22.24.0",
47
+ "@atlaskit/icon": "^23.0.0",
48
48
  "@atlaskit/theme": "^14.0.0",
49
- "@atlaskit/tokens": "^2.3.0",
49
+ "@atlaskit/tokens": "^2.4.0",
50
50
  "@babel/runtime": "^7.0.0",
51
51
  "@emotion/react": "^11.7.1",
52
52
  "memoize-one": "^6.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