@atlaskit/editor-plugin-emoji 11.0.18 → 11.1.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 +17 -0
- package/EmojiNodeDataProvider/package.json +17 -0
- package/dist/cjs/entry-points/EmojiNodeDataProvider.js +12 -0
- package/dist/cjs/entry-points/emojiPlugin.js +12 -0
- package/dist/cjs/entry-points/emojiPluginType.js +1 -0
- package/dist/es2019/entry-points/EmojiNodeDataProvider.js +2 -0
- package/dist/es2019/entry-points/emojiPlugin.js +2 -0
- package/dist/es2019/entry-points/emojiPluginType.js +0 -0
- package/dist/esm/entry-points/EmojiNodeDataProvider.js +2 -0
- package/dist/esm/entry-points/emojiPlugin.js +2 -0
- package/dist/esm/entry-points/emojiPluginType.js +0 -0
- package/dist/types/entry-points/EmojiNodeDataProvider.d.ts +1 -0
- package/dist/types/entry-points/emojiPlugin.d.ts +1 -0
- package/dist/types/entry-points/emojiPluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/EmojiNodeDataProvider.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/emojiPlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/emojiPluginType.d.ts +1 -0
- package/emojiPlugin/package.json +17 -0
- package/emojiPluginType/package.json +17 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-emoji
|
|
2
2
|
|
|
3
|
+
## 11.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 11.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`acbb2aa5cc917`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acbb2aa5cc917) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 11.0.18
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-emoji/EmojiNodeDataProvider",
|
|
3
|
+
"main": "../dist/cjs/entry-points/EmojiNodeDataProvider.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/EmojiNodeDataProvider.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/EmojiNodeDataProvider.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/EmojiNodeDataProvider.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/EmojiNodeDataProvider.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "EmojiNodeDataProvider", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _EmojiNodeDataProvider.EmojiNodeDataProvider;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _EmojiNodeDataProvider = require("../pm-plugins/providers/EmojiNodeDataProvider");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "emojiPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _emojiPlugin.emojiPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _emojiPlugin = require("../emojiPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { EmojiNodeDataProvider } from '../pm-plugins/providers/EmojiNodeDataProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { emojiPlugin } from '../emojiPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, EmojiPluginDependencies, EmojiPluginActions, EmojiPluginCommands, } from '../emojiPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { EmojiNodeDataProvider } from '../pm-plugins/providers/EmojiNodeDataProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { emojiPlugin } from '../emojiPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { EmojiPlugin, EmojiPluginOptions, EmojiPluginState, EmojiPluginSharedState, EmojiPluginDependencies, EmojiPluginActions, EmojiPluginCommands, } from '../emojiPluginType';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-emoji/emojiPlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/emojiPlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/emojiPlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/emojiPlugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/emojiPlugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/emojiPlugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-emoji/emojiPluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/emojiPluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/emojiPluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/emojiPluginType.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/emojiPluginType.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/emojiPluginType.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.1.1",
|
|
4
4
|
"description": "Emoji plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@atlaskit/adf-schema": "^52.11.0",
|
|
25
|
-
"@atlaskit/editor-plugin-analytics": "^10.
|
|
26
|
-
"@atlaskit/editor-plugin-annotation": "^10.
|
|
27
|
-
"@atlaskit/editor-plugin-base": "^11.
|
|
28
|
-
"@atlaskit/editor-plugin-connectivity": "^10.
|
|
29
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^12.
|
|
30
|
-
"@atlaskit/editor-plugin-metrics": "^11.
|
|
31
|
-
"@atlaskit/editor-plugin-type-ahead": "^10.
|
|
25
|
+
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
26
|
+
"@atlaskit/editor-plugin-annotation": "^10.4.0",
|
|
27
|
+
"@atlaskit/editor-plugin-base": "^11.1.0",
|
|
28
|
+
"@atlaskit/editor-plugin-connectivity": "^10.1.0",
|
|
29
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
|
|
30
|
+
"@atlaskit/editor-plugin-metrics": "^11.1.0",
|
|
31
|
+
"@atlaskit/editor-plugin-type-ahead": "^10.1.0",
|
|
32
32
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
33
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
34
|
-
"@atlaskit/emoji": "^70.
|
|
33
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
34
|
+
"@atlaskit/emoji": "^70.7.0",
|
|
35
35
|
"@atlaskit/icon": "^34.5.0",
|
|
36
|
-
"@atlaskit/node-data-provider": "^11.
|
|
36
|
+
"@atlaskit/node-data-provider": "^11.1.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/prosemirror-input-rules": "^3.
|
|
39
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
38
|
+
"@atlaskit/prosemirror-input-rules": "^3.7.0",
|
|
39
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
40
40
|
"@atlaskit/tokens": "^13.0.0",
|
|
41
41
|
"@babel/runtime": "^7.0.0",
|
|
42
42
|
"@emotion/react": "^11.7.1",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"react-loadable": "^5.1.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@atlaskit/editor-common": "^114.
|
|
47
|
+
"@atlaskit/editor-common": "^114.32.0",
|
|
48
48
|
"react": "^18.2.0",
|
|
49
49
|
"react-dom": "^18.2.0",
|
|
50
50
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|