@atlaskit/editor-plugin-emoji 12.1.0 → 13.0.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 +26 -0
- package/package.json +20 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-emoji
|
|
2
2
|
|
|
3
|
+
## 13.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
|
|
8
|
+
Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
|
|
9
|
+
|
|
10
|
+
Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
|
|
11
|
+
|
|
12
|
+
Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
|
|
13
|
+
|
|
14
|
+
```diff
|
|
15
|
+
- "typesVersions": {
|
|
16
|
+
- ">=4.5 <4.9": {
|
|
17
|
+
- "*": [
|
|
18
|
+
- "dist/types-ts4.5/*",
|
|
19
|
+
- "dist/types-ts4.5/index.d.ts"
|
|
20
|
+
- ]
|
|
21
|
+
- }
|
|
22
|
+
- },
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
3
29
|
## 12.1.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Emoji plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -21,31 +21,31 @@
|
|
|
21
21
|
"singleton": true
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@atlaskit/adf-schema": "^
|
|
25
|
-
"@atlaskit/browser-apis": "^0.0
|
|
26
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
27
|
-
"@atlaskit/editor-plugin-annotation": "^
|
|
28
|
-
"@atlaskit/editor-plugin-base": "^
|
|
29
|
-
"@atlaskit/editor-plugin-connectivity": "^
|
|
30
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^
|
|
31
|
-
"@atlaskit/editor-plugin-metrics": "^
|
|
32
|
-
"@atlaskit/editor-plugin-type-ahead": "^
|
|
33
|
-
"@atlaskit/editor-prosemirror": "^
|
|
34
|
-
"@atlaskit/editor-shared-styles": "^
|
|
35
|
-
"@atlaskit/emoji": "^
|
|
36
|
-
"@atlaskit/icon": "^
|
|
37
|
-
"@atlaskit/node-data-provider": "^
|
|
38
|
-
"@atlaskit/platform-feature-flags": "^
|
|
39
|
-
"@atlaskit/prosemirror-input-rules": "^
|
|
40
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
41
|
-
"@atlaskit/tokens": "^
|
|
24
|
+
"@atlaskit/adf-schema": "^55.0.0",
|
|
25
|
+
"@atlaskit/browser-apis": "^1.0.0",
|
|
26
|
+
"@atlaskit/editor-plugin-analytics": "^12.0.0",
|
|
27
|
+
"@atlaskit/editor-plugin-annotation": "^12.0.0",
|
|
28
|
+
"@atlaskit/editor-plugin-base": "^13.0.0",
|
|
29
|
+
"@atlaskit/editor-plugin-connectivity": "^12.0.0",
|
|
30
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^14.0.0",
|
|
31
|
+
"@atlaskit/editor-plugin-metrics": "^13.0.0",
|
|
32
|
+
"@atlaskit/editor-plugin-type-ahead": "^12.0.0",
|
|
33
|
+
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
34
|
+
"@atlaskit/editor-shared-styles": "^4.0.0",
|
|
35
|
+
"@atlaskit/emoji": "^71.0.0",
|
|
36
|
+
"@atlaskit/icon": "^36.0.0",
|
|
37
|
+
"@atlaskit/node-data-provider": "^13.0.0",
|
|
38
|
+
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
39
|
+
"@atlaskit/prosemirror-input-rules": "^4.0.0",
|
|
40
|
+
"@atlaskit/tmp-editor-statsig": "^104.0.0",
|
|
41
|
+
"@atlaskit/tokens": "^14.0.0",
|
|
42
42
|
"@babel/runtime": "^7.0.0",
|
|
43
43
|
"@emotion/react": "^11.7.1",
|
|
44
44
|
"lodash": "^4.17.21",
|
|
45
45
|
"react-loadable": "^5.1.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@atlaskit/editor-common": "^
|
|
48
|
+
"@atlaskit/editor-common": "^116.0.0",
|
|
49
49
|
"react": "^18.2.0",
|
|
50
50
|
"react-dom": "^18.2.0",
|
|
51
51
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
@@ -93,14 +93,6 @@
|
|
|
93
93
|
]
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"typesVersions": {
|
|
97
|
-
">=4.5 <4.9": {
|
|
98
|
-
"*": [
|
|
99
|
-
"dist/types-ts4.5/*",
|
|
100
|
-
"dist/types-ts4.5/index.d.ts"
|
|
101
|
-
]
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
96
|
"platform-feature-flags": {
|
|
105
97
|
"platform_editor_ease_of_use_metrics": {
|
|
106
98
|
"type": "boolean"
|