@atlaskit/editor-plugin-extension 11.0.1 → 11.0.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 +8 -0
- package/README.md +14 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-extension
|
|
2
2
|
|
|
3
|
+
## 11.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5985f38f7104e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5985f38f7104e) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 11.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Extension
|
|
2
2
|
|
|
3
3
|
Extension plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
5
|
**Note:** This component is designed for internal Atlassian development.
|
|
6
6
|
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
7
|
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Extension plugin provides comprehensive support for managing extensions and macros within the Atlassian Editor. It enables editing, configuration, and rendering of extension nodes with support for multiple extension types and dynamic parameter configuration through an intuitive configuration panel.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Extension node support** - Handle multiple extension types including standard extensions, inline extensions, bodied extensions, and multi-bodied extensions
|
|
15
|
+
- **Configuration panel** - Dynamic form-based UI for editing extension parameters with support for various field types
|
|
16
|
+
- **Macro integration** - Support for macro browser integration and macro auto-conversion
|
|
17
|
+
- **Context panel** - Seamless context panel integration for extension editing workflows
|
|
18
|
+
- **Auto-save and auto-convert** - Automatic saving and conversion of extension content
|
|
19
|
+
- **Analytics integration** - Built-in analytics event tracking for extension operations
|
|
20
|
+
|
|
8
21
|
## Install
|
|
9
22
|
---
|
|
10
23
|
- **Install** - *yarn add @atlaskit/editor-plugin-extension*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.2",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@atlaskit/textarea": "^8.2.0",
|
|
61
61
|
"@atlaskit/textfield": "^8.2.0",
|
|
62
62
|
"@atlaskit/theme": "^22.0.0",
|
|
63
|
-
"@atlaskit/tmp-editor-statsig": "^36.
|
|
63
|
+
"@atlaskit/tmp-editor-statsig": "^36.3.0",
|
|
64
64
|
"@atlaskit/toggle": "^15.2.0",
|
|
65
65
|
"@atlaskit/tokens": "^11.1.0",
|
|
66
66
|
"@atlaskit/tooltip": "^20.14.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"uuid": "^3.1.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"@atlaskit/editor-common": "^112.
|
|
77
|
+
"@atlaskit/editor-common": "^112.2.0",
|
|
78
78
|
"react": "^18.2.0",
|
|
79
79
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
80
80
|
},
|