@atlaskit/editor-plugin-emoji 2.8.0 → 2.9.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 +18 -0
- package/dist/cjs/pm-plugins/ascii-input-rules.js +1 -0
- package/dist/esm/pm-plugins/ascii-input-rules.js +1 -0
- package/dist/types/nodeviews/emoji.d.ts +2 -2
- package/dist/types/ui/SimpleEmoji.d.ts +3 -3
- package/dist/types-ts4.5/nodeviews/emoji.d.ts +2 -2
- package/dist/types-ts4.5/ui/SimpleEmoji.d.ts +3 -3
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-emoji
|
|
2
2
|
|
|
3
|
+
## 2.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#105322](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105322)
|
|
8
|
+
[`8876083532adc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8876083532adc) -
|
|
9
|
+
Bumped editor-prosemirror version to 7.0.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 2.8.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 2.8.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
exports.inputRulePlugin = inputRulePlugin;
|
|
9
9
|
exports.stateKey = void 0;
|
|
10
|
+
var _readOnlyError2 = _interopRequireDefault(require("@babel/runtime/helpers/readOnlyError"));
|
|
10
11
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
11
12
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
12
13
|
var _get2 = _interopRequireDefault(require("@babel/runtime/helpers/get"));
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _readOnlyError from "@babel/runtime/helpers/readOnlyError";
|
|
1
2
|
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
2
3
|
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
3
4
|
import _get from "@babel/runtime/helpers/get";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
3
|
import type { InlineNodeViewComponentProps } from '@atlaskit/editor-common/react-node-view';
|
|
4
4
|
import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
@@ -8,4 +8,4 @@ export type Props = InlineNodeViewComponentProps & {
|
|
|
8
8
|
options?: EmojiPluginOptions;
|
|
9
9
|
api?: ExtractInjectionAPI<EmojiPlugin>;
|
|
10
10
|
};
|
|
11
|
-
export declare function EmojiNodeView(props: Props): JSX.Element;
|
|
11
|
+
export declare function EmojiNodeView(props: Props): React.JSX.Element;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type EmojiDescription } from '@atlaskit/emoji';
|
|
3
3
|
export type SimpleEmojiProps = {
|
|
4
4
|
emojiDescription: EmojiDescription;
|
|
5
5
|
};
|
|
6
6
|
export declare function SimpleEmoji({ emojiDescription }: {
|
|
7
7
|
emojiDescription: EmojiDescription;
|
|
8
|
-
}): JSX.Element;
|
|
8
|
+
}): React.JSX.Element;
|
|
9
9
|
export type SimpleEmojiPlaceholderProps = {
|
|
10
10
|
shortName: string;
|
|
11
11
|
};
|
|
12
12
|
export declare function SimpleEmojiPlaceholder({ shortName }: {
|
|
13
13
|
shortName: string;
|
|
14
|
-
}): JSX.Element;
|
|
14
|
+
}): React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
3
|
import type { InlineNodeViewComponentProps } from '@atlaskit/editor-common/react-node-view';
|
|
4
4
|
import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
@@ -8,4 +8,4 @@ export type Props = InlineNodeViewComponentProps & {
|
|
|
8
8
|
options?: EmojiPluginOptions;
|
|
9
9
|
api?: ExtractInjectionAPI<EmojiPlugin>;
|
|
10
10
|
};
|
|
11
|
-
export declare function EmojiNodeView(props: Props): JSX.Element;
|
|
11
|
+
export declare function EmojiNodeView(props: Props): React.JSX.Element;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type EmojiDescription } from '@atlaskit/emoji';
|
|
3
3
|
export type SimpleEmojiProps = {
|
|
4
4
|
emojiDescription: EmojiDescription;
|
|
5
5
|
};
|
|
6
6
|
export declare function SimpleEmoji({ emojiDescription }: {
|
|
7
7
|
emojiDescription: EmojiDescription;
|
|
8
|
-
}): JSX.Element;
|
|
8
|
+
}): React.JSX.Element;
|
|
9
9
|
export type SimpleEmojiPlaceholderProps = {
|
|
10
10
|
shortName: string;
|
|
11
11
|
};
|
|
12
12
|
export declare function SimpleEmojiPlaceholder({ shortName }: {
|
|
13
13
|
shortName: string;
|
|
14
|
-
}): JSX.Element;
|
|
14
|
+
}): React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Emoji plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
24
|
-
"@atlaskit/editor-common": "^99.
|
|
25
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
26
|
-
"@atlaskit/editor-plugin-annotation": "1.
|
|
27
|
-
"@atlaskit/editor-plugin-base": "^2.
|
|
28
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^2.
|
|
29
|
-
"@atlaskit/editor-plugin-type-ahead": "^1.
|
|
30
|
-
"@atlaskit/editor-prosemirror": "
|
|
24
|
+
"@atlaskit/editor-common": "^99.10.0",
|
|
25
|
+
"@atlaskit/editor-plugin-analytics": "^1.12.0",
|
|
26
|
+
"@atlaskit/editor-plugin-annotation": "1.28.0",
|
|
27
|
+
"@atlaskit/editor-plugin-base": "^2.2.0",
|
|
28
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^2.2.0",
|
|
29
|
+
"@atlaskit/editor-plugin-type-ahead": "^1.13.0",
|
|
30
|
+
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
31
31
|
"@atlaskit/emoji": "^67.13.0",
|
|
32
|
-
"@atlaskit/icon": "^23.
|
|
32
|
+
"@atlaskit/icon": "^23.7.0",
|
|
33
33
|
"@atlaskit/node-data-provider": "^3.1.0",
|
|
34
|
-
"@atlaskit/platform-feature-flags": "^0.
|
|
35
|
-
"@atlaskit/prosemirror-input-rules": "^3.
|
|
34
|
+
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
35
|
+
"@atlaskit/prosemirror-input-rules": "^3.3.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@emotion/react": "^11.7.1",
|
|
38
38
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@af/visual-regression": "*",
|
|
47
|
-
"@atlaskit/editor-plugin-composition": "^1.
|
|
48
|
-
"@atlaskit/editor-plugin-decorations": "^1.
|
|
47
|
+
"@atlaskit/editor-plugin-composition": "^1.3.0",
|
|
48
|
+
"@atlaskit/editor-plugin-decorations": "^1.5.0",
|
|
49
49
|
"@atlaskit/ssr": "*",
|
|
50
50
|
"@atlaskit/util-data-test": "^18.0.0",
|
|
51
51
|
"@atlaskit/visual-regression": "*",
|