@atlaskit/editor-plugin-emoji 3.1.0 → 3.1.2
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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-emoji
|
|
2
2
|
|
|
3
|
+
## 3.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#122140](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122140)
|
|
8
|
+
[`3f7b2bc0c6ef0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3f7b2bc0c6ef0) -
|
|
9
|
+
Add missing dependencies to the package.json file
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 3.1.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 3.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -20,7 +20,7 @@ var isSSR = Boolean(process.env.REACT_SSR);
|
|
|
20
20
|
* @returns
|
|
21
21
|
*/
|
|
22
22
|
var emojiNodeSpec = exports.emojiNodeSpec = function emojiNodeSpec() {
|
|
23
|
-
if (isSSR || (0, _experiments.editorExperiment)(
|
|
23
|
+
if (isSSR || (0, _experiments.editorExperiment)('platform_editor_inline_node_virtualization', 'off')) {
|
|
24
24
|
return _adfSchema.emoji;
|
|
25
25
|
}
|
|
26
26
|
return _objectSpread(_objectSpread({}, _adfSchema.emoji), {}, {
|
|
@@ -10,7 +10,7 @@ const isSSR = Boolean(process.env.REACT_SSR);
|
|
|
10
10
|
* @returns
|
|
11
11
|
*/
|
|
12
12
|
export const emojiNodeSpec = () => {
|
|
13
|
-
if (isSSR || editorExperiment(
|
|
13
|
+
if (isSSR || editorExperiment('platform_editor_inline_node_virtualization', 'off')) {
|
|
14
14
|
return emoji;
|
|
15
15
|
}
|
|
16
16
|
return {
|
|
@@ -13,7 +13,7 @@ var isSSR = Boolean(process.env.REACT_SSR);
|
|
|
13
13
|
* @returns
|
|
14
14
|
*/
|
|
15
15
|
export var emojiNodeSpec = function emojiNodeSpec() {
|
|
16
|
-
if (isSSR || editorExperiment(
|
|
16
|
+
if (isSSR || editorExperiment('platform_editor_inline_node_virtualization', 'off')) {
|
|
17
17
|
return emoji;
|
|
18
18
|
}
|
|
19
19
|
return _objectSpread(_objectSpread({}, emoji), {}, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "Emoji plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
26
|
-
"@atlaskit/editor-common": "^
|
|
26
|
+
"@atlaskit/editor-common": "^101.1.0",
|
|
27
27
|
"@atlaskit/editor-plugin-analytics": "^2.1.0",
|
|
28
|
-
"@atlaskit/editor-plugin-annotation": "2.1.
|
|
28
|
+
"@atlaskit/editor-plugin-annotation": "2.1.1",
|
|
29
29
|
"@atlaskit/editor-plugin-base": "^2.3.0",
|
|
30
30
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.0.0",
|
|
31
31
|
"@atlaskit/editor-plugin-type-ahead": "^2.1.0",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
37
37
|
"@atlaskit/prosemirror-input-rules": "^3.3.0",
|
|
38
38
|
"@atlaskit/theme": "^17.0.0",
|
|
39
|
+
"@atlaskit/tmp-editor-statsig": "^3.4.0",
|
|
39
40
|
"@atlaskit/tokens": "^4.3.0",
|
|
40
41
|
"@babel/runtime": "^7.0.0",
|
|
41
42
|
"@emotion/react": "^11.7.1",
|