@atlaskit/editor-plugin-block-type 4.5.0 → 5.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 +18 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# @atlaskit/editor-plugin-block-type
|
2
2
|
|
3
|
+
## 5.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363)
|
8
|
+
[`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) -
|
9
|
+
This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the
|
10
|
+
status of only supporting React 18 going forward. No explicit breaking change to React support has
|
11
|
+
been made in this release, but this is to signify going forward, breaking changes for React 16 or
|
12
|
+
React 17 may come via non-major semver releases.
|
13
|
+
|
14
|
+
Please refer this community post for more details:
|
15
|
+
https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- Updated dependencies
|
20
|
+
|
3
21
|
## 4.5.0
|
4
22
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaskit/editor-plugin-block-type",
|
3
|
-
"version": "
|
3
|
+
"version": "5.0.0",
|
4
4
|
"description": "BlockType plugin for @atlaskit/editor-core",
|
5
5
|
"author": "Atlassian Pty Ltd",
|
6
6
|
"license": "Apache-2.0",
|
@@ -34,33 +34,33 @@
|
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"@atlaskit/adf-schema": "^47.2.1",
|
37
|
-
"@atlaskit/editor-common": "^
|
38
|
-
"@atlaskit/editor-plugin-analytics": "^
|
39
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^
|
40
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^
|
37
|
+
"@atlaskit/editor-common": "^100.0.0",
|
38
|
+
"@atlaskit/editor-plugin-analytics": "^2.0.0",
|
39
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^3.0.0",
|
40
|
+
"@atlaskit/editor-plugin-selection-toolbar": "^2.0.0",
|
41
41
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
42
42
|
"@atlaskit/editor-shared-styles": "^3.3.0",
|
43
43
|
"@atlaskit/editor-tables": "^2.9.0",
|
44
|
-
"@atlaskit/icon": "^
|
44
|
+
"@atlaskit/icon": "^24.0.0",
|
45
45
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
46
|
-
"@atlaskit/primitives": "^
|
46
|
+
"@atlaskit/primitives": "^14.0.0",
|
47
47
|
"@atlaskit/prosemirror-input-rules": "^3.3.0",
|
48
|
-
"@atlaskit/theme": "^
|
49
|
-
"@atlaskit/tmp-editor-statsig": "^
|
50
|
-
"@atlaskit/tokens": "^
|
48
|
+
"@atlaskit/theme": "^17.0.0",
|
49
|
+
"@atlaskit/tmp-editor-statsig": "^3.0.0",
|
50
|
+
"@atlaskit/tokens": "^4.0.0",
|
51
51
|
"@babel/runtime": "^7.0.0",
|
52
52
|
"@emotion/react": "^11.7.1"
|
53
53
|
},
|
54
54
|
"peerDependencies": {
|
55
|
-
"react": "^
|
56
|
-
"react-dom": "^
|
55
|
+
"react": "^18.2.0",
|
56
|
+
"react-dom": "^18.2.0",
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
58
58
|
},
|
59
59
|
"devDependencies": {
|
60
60
|
"@af/visual-regression": "*",
|
61
|
-
"@atlaskit/analytics-next": "^
|
62
|
-
"@atlaskit/editor-plugin-quick-insert": "^
|
63
|
-
"@atlaskit/editor-plugin-type-ahead": "^
|
61
|
+
"@atlaskit/analytics-next": "^11.0.0",
|
62
|
+
"@atlaskit/editor-plugin-quick-insert": "^2.0.0",
|
63
|
+
"@atlaskit/editor-plugin-type-ahead": "^2.0.0",
|
64
64
|
"@atlaskit/ssr": "*",
|
65
65
|
"@atlaskit/visual-regression": "*",
|
66
66
|
"@testing-library/react": "^13.4.0",
|