@atlaskit/editor-plugin-avatar-group 0.1.2 → 0.1.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/editor-plugin-avatar-group
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572) [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) - Upgrading @atlaskit/editor-prosemirror dependency
8
+
9
+ ## 0.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#71136](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71136) [`c803fea1e6a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c803fea1e6a4) - Move all plugin translations to editor-common
14
+ - Updated dependencies
15
+
3
16
  ## 0.1.2
4
17
 
5
18
  ### Patch Changes
@@ -10,7 +10,7 @@ var _react = require("react");
10
10
  var _react2 = require("@emotion/react");
11
11
  var _reactIntlNext = require("react-intl-next");
12
12
  var _analytics = require("@atlaskit/editor-common/analytics");
13
- var _messages = require("../messages");
13
+ var _messages = require("@atlaskit/editor-common/messages");
14
14
  var _avatarsWithPluginState = _interopRequireDefault(require("./avatars-with-plugin-state"));
15
15
  var _templateObject, _templateObject2;
16
16
  /** @jsx jsx */
@@ -3,7 +3,7 @@ import { useEffect } from 'react';
3
3
  import { css, jsx } from '@emotion/react';
4
4
  import { useIntl } from 'react-intl-next';
5
5
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
6
- import { avatarGroupMessages } from '../messages';
6
+ import { avatarGroupMessages } from '@atlaskit/editor-common/messages';
7
7
  import AvatarsWithPluginState from './avatars-with-plugin-state';
8
8
 
9
9
  // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
@@ -5,7 +5,7 @@ import { useEffect } from 'react';
5
5
  import { css, jsx } from '@emotion/react';
6
6
  import { useIntl } from 'react-intl-next';
7
7
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
8
- import { avatarGroupMessages } from '../messages';
8
+ import { avatarGroupMessages } from '@atlaskit/editor-common/messages';
9
9
  import AvatarsWithPluginState from './avatars-with-plugin-state';
10
10
 
11
11
  // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-avatar-group",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Avatar Group plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@atlaskit/avatar-group": "^9.5.0",
41
- "@atlaskit/editor-common": "^77.2.0",
41
+ "@atlaskit/editor-common": "^77.3.0",
42
42
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
43
43
  "@atlaskit/editor-plugin-collab-edit": "^0.1.0",
44
44
  "@atlaskit/editor-plugin-feature-flags": "^1.0.0",
45
- "@atlaskit/editor-prosemirror": "1.1.0",
45
+ "@atlaskit/editor-prosemirror": "3.0.0",
46
46
  "@atlaskit/editor-shared-styles": "^2.9.0",
47
47
  "@atlaskit/icon": "^22.0.0",
48
48
  "@atlaskit/theme": "^12.6.0",
@@ -60,7 +60,7 @@
60
60
  "@af/visual-regression": "*",
61
61
  "@atlaskit/editor-plugin-mentions": "^0.2.0",
62
62
  "@atlaskit/editor-plugin-type-ahead": "^0.9.0",
63
- "@atlaskit/editor-test-helpers": "^18.15.0",
63
+ "@atlaskit/editor-test-helpers": "^18.18.0",
64
64
  "@atlaskit/ssr": "*",
65
65
  "@atlaskit/synchrony-test-helpers": "^2.3.0",
66
66
  "@atlaskit/visual-regression": "*",
@@ -1,14 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.avatarGroupMessages = void 0;
7
- var _reactIntlNext = require("react-intl-next");
8
- var avatarGroupMessages = exports.avatarGroupMessages = (0, _reactIntlNext.defineMessages)({
9
- editors: {
10
- id: 'fabric.editor.editors',
11
- defaultMessage: 'Editors',
12
- description: 'classifying the people that are currently editing the document'
13
- }
14
- });
@@ -1,8 +0,0 @@
1
- import { defineMessages } from 'react-intl-next';
2
- export const avatarGroupMessages = defineMessages({
3
- editors: {
4
- id: 'fabric.editor.editors',
5
- defaultMessage: 'Editors',
6
- description: 'classifying the people that are currently editing the document'
7
- }
8
- });
@@ -1,8 +0,0 @@
1
- import { defineMessages } from 'react-intl-next';
2
- export var avatarGroupMessages = defineMessages({
3
- editors: {
4
- id: 'fabric.editor.editors',
5
- defaultMessage: 'Editors',
6
- description: 'classifying the people that are currently editing the document'
7
- }
8
- });
@@ -1,7 +0,0 @@
1
- export declare const avatarGroupMessages: {
2
- editors: {
3
- id: string;
4
- defaultMessage: string;
5
- description: string;
6
- };
7
- };
@@ -1,7 +0,0 @@
1
- export declare const avatarGroupMessages: {
2
- editors: {
3
- id: string;
4
- defaultMessage: string;
5
- description: string;
6
- };
7
- };