@atlaskit/editor-plugin-emoji 4.1.0 → 4.2.0

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-emoji
2
2
 
3
+ ## 4.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#188356](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188356)
8
+ [`5a2110350abd3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a2110350abd3) -
9
+ [https://product-fabric.atlassian.net/browse/ED-28554](ED-28554) - clean up EmojiNodeDataProvider
10
+ spike
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
3
16
  ## 4.1.0
4
17
 
5
18
  ### 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.0",
4
4
  "description": "Emoji plugin for @atlaskit/editor-core",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -32,7 +32,6 @@
32
32
  "@atlaskit/editor-shared-styles": "^3.5.0",
33
33
  "@atlaskit/emoji": "^69.3.0",
34
34
  "@atlaskit/icon": "^27.5.0",
35
- "@atlaskit/node-data-provider": "^4.1.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",