@atlaskit/editor-plugin-panel 0.2.7 → 0.3.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 +12 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +8 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790) [`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) - Support maybeAdd plugins in usePreset. Add typing support for universal preset.
|
|
8
|
+
|
|
9
|
+
Now when using the editor API with the universal preset
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 0.2.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/adf-schema": "^35.3.0",
|
|
37
|
-
"@atlaskit/editor-common": "^77.
|
|
37
|
+
"@atlaskit/editor-common": "^77.1.0",
|
|
38
38
|
"@atlaskit/editor-palette": "1.5.2",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|
|
@@ -52,18 +52,11 @@
|
|
|
52
52
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@af/integration-testing": "*",
|
|
56
|
-
"@af/visual-regression": "*",
|
|
57
|
-
"@atlaskit/editor-plugin-emoji": "^1.0.0",
|
|
58
55
|
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
59
|
-
"@atlaskit/ssr": "*",
|
|
60
56
|
"@atlaskit/util-data-test": "^17.8.0",
|
|
61
|
-
"@atlaskit/visual-regression": "*",
|
|
62
57
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
|
63
|
-
"@testing-library/react": "^12.1.5",
|
|
64
58
|
"react-dom": "^16.8.0",
|
|
65
|
-
"typescript": "~4.9.5"
|
|
66
|
-
"wait-for-expect": "^1.2.0"
|
|
59
|
+
"typescript": "~4.9.5"
|
|
67
60
|
},
|
|
68
61
|
"techstack": {
|
|
69
62
|
"@atlassian/frontend": {
|
|
@@ -108,5 +101,10 @@
|
|
|
108
101
|
"platform.editor.allow-extended-panel": {
|
|
109
102
|
"type": "boolean"
|
|
110
103
|
}
|
|
104
|
+
},
|
|
105
|
+
"stricter": {
|
|
106
|
+
"no-unused-dependencies": {
|
|
107
|
+
"checkDevDependencies": true
|
|
108
|
+
}
|
|
111
109
|
}
|
|
112
110
|
}
|