@atlaskit/editor-plugin-emoji 4.1.0 → 4.2.1

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,27 @@
1
1
  # @atlaskit/editor-plugin-emoji
2
2
 
3
+ ## 4.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#189696](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/189696)
8
+ [`a28dd0703ccac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a28dd0703ccac) -
9
+ [ux] Adjust emoji CSS selectors to be more specific/accurate and not target content byline
10
+ - Updated dependencies
11
+
12
+ ## 4.2.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#188356](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188356)
17
+ [`5a2110350abd3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a2110350abd3) -
18
+ [https://product-fabric.atlassian.net/browse/ED-28554](ED-28554) - clean up EmojiNodeDataProvider
19
+ spike
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 4.1.0
4
26
 
5
27
  ### Minor Changes
@@ -9,7 +9,6 @@ import type { MetricsPlugin } from '@atlaskit/editor-plugin-metrics';
9
9
  import type { TypeAheadInputMethod, TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
10
10
  import type { SelectionBookmark } from '@atlaskit/editor-prosemirror/state';
11
11
  import type { EmojiDescription, EmojiId, EmojiProvider, EmojiResourceConfig } from '@atlaskit/emoji';
12
- import { type EmojiNodeDataProvider } from '@atlaskit/node-data-provider/emoji-provider';
13
12
  type SetInlineCommentDraftState = (drafting: boolean, inputMethod: InlineCommentInputMethod) => Command;
14
13
  type AnnotationPluginType = NextEditorPlugin<'annotation', {
15
14
  sharedState: {
@@ -29,7 +28,6 @@ type EditorViewModePluginType = NextEditorPlugin<'editorViewMode', {
29
28
  }>;
30
29
  export interface EmojiPluginOptions {
31
30
  headless?: boolean;
32
- emojiNodeDataProvider?: EmojiNodeDataProvider;
33
31
  emojiProvider?: Promise<EmojiProvider>;
34
32
  }
35
33
  export type EmojiPluginState = {
@@ -9,7 +9,6 @@ import type { MetricsPlugin } from '@atlaskit/editor-plugin-metrics';
9
9
  import type { TypeAheadInputMethod, TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
10
10
  import type { SelectionBookmark } from '@atlaskit/editor-prosemirror/state';
11
11
  import type { EmojiDescription, EmojiId, EmojiProvider, EmojiResourceConfig } from '@atlaskit/emoji';
12
- import { type EmojiNodeDataProvider } from '@atlaskit/node-data-provider/emoji-provider';
13
12
  type SetInlineCommentDraftState = (drafting: boolean, inputMethod: InlineCommentInputMethod) => Command;
14
13
  type AnnotationPluginType = NextEditorPlugin<'annotation', {
15
14
  sharedState: {
@@ -29,7 +28,6 @@ type EditorViewModePluginType = NextEditorPlugin<'editorViewMode', {
29
28
  }>;
30
29
  export interface EmojiPluginOptions {
31
30
  headless?: boolean;
32
- emojiNodeDataProvider?: EmojiNodeDataProvider;
33
31
  emojiProvider?: Promise<EmojiProvider>;
34
32
  }
35
33
  export type EmojiPluginState = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-emoji",
3
- "version": "4.1.0",
3
+ "version": "4.2.1",
4
4
  "description": "Emoji plugin for @atlaskit/editor-core",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,8 +31,7 @@
31
31
  "@atlaskit/editor-prosemirror": "7.0.0",
32
32
  "@atlaskit/editor-shared-styles": "^3.5.0",
33
33
  "@atlaskit/emoji": "^69.3.0",
34
- "@atlaskit/icon": "^27.5.0",
35
- "@atlaskit/node-data-provider": "^4.1.0",
34
+ "@atlaskit/icon": "^27.6.0",
36
35
  "@atlaskit/platform-feature-flags": "^1.1.0",
37
36
  "@atlaskit/prosemirror-input-rules": "^3.3.0",
38
37
  "@atlaskit/theme": "^19.0.0",