@atlaskit/editor-plugin-emoji 4.0.3 → 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,30 @@
|
|
|
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
|
+
|
|
16
|
+
## 4.1.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [#189314](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/189314)
|
|
21
|
+
[`22c6251496010`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/22c6251496010) -
|
|
22
|
+
Exported missing types that were already being inferred from existing exports
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 4.0.3
|
|
4
29
|
|
|
5
30
|
### Patch 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 = {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, } from './emojiPluginType';
|
|
1
|
+
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, EmojiPluginDependencies, EmojiPluginActions, EmojiPluginCommands, } from './emojiPluginType';
|
|
2
2
|
export { emojiPlugin } from './emojiPlugin';
|
|
@@ -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 = {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, } from './emojiPluginType';
|
|
1
|
+
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, EmojiPluginDependencies, EmojiPluginActions, EmojiPluginCommands, } from './emojiPluginType';
|
|
2
2
|
export { emojiPlugin } from './emojiPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "4.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/"
|
|
@@ -23,28 +23,27 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@atlaskit/adf-schema": "^49.0.6",
|
|
25
25
|
"@atlaskit/editor-plugin-analytics": "^3.0.0",
|
|
26
|
-
"@atlaskit/editor-plugin-annotation": "^3.
|
|
27
|
-
"@atlaskit/editor-plugin-base": "^4.
|
|
26
|
+
"@atlaskit/editor-plugin-annotation": "^3.1.0",
|
|
27
|
+
"@atlaskit/editor-plugin-base": "^4.1.0",
|
|
28
28
|
"@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
|
|
29
29
|
"@atlaskit/editor-plugin-metrics": "^4.0.0",
|
|
30
|
-
"@atlaskit/editor-plugin-type-ahead": "^3.
|
|
30
|
+
"@atlaskit/editor-plugin-type-ahead": "^3.1.0",
|
|
31
31
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
32
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
32
|
+
"@atlaskit/editor-shared-styles": "^3.5.0",
|
|
33
33
|
"@atlaskit/emoji": "^69.3.0",
|
|
34
|
-
"@atlaskit/icon": "^27.
|
|
35
|
-
"@atlaskit/node-data-provider": "^4.1.0",
|
|
34
|
+
"@atlaskit/icon": "^27.5.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",
|
|
39
|
-
"@atlaskit/tmp-editor-statsig": "^9.
|
|
40
|
-
"@atlaskit/tokens": "^5.
|
|
38
|
+
"@atlaskit/tmp-editor-statsig": "^9.9.0",
|
|
39
|
+
"@atlaskit/tokens": "^5.6.0",
|
|
41
40
|
"@babel/runtime": "^7.0.0",
|
|
42
41
|
"@emotion/react": "^11.7.1",
|
|
43
42
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
44
43
|
"react-loadable": "^5.1.0"
|
|
45
44
|
},
|
|
46
45
|
"peerDependencies": {
|
|
47
|
-
"@atlaskit/editor-common": "^107.
|
|
46
|
+
"@atlaskit/editor-common": "^107.9.0",
|
|
48
47
|
"react": "^18.2.0",
|
|
49
48
|
"react-dom": "^18.2.0"
|
|
50
49
|
},
|