@atlaskit/editor-plugin-selection-extension 11.1.22 → 11.1.24
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 +14 -0
- package/README.md +13 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-selection-extension
|
|
2
2
|
|
|
3
|
+
## 11.1.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 11.1.23
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`fa146e17e08d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fa146e17e08d6) -
|
|
14
|
+
Update README.md and 0-intro.tsx
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 11.1.22
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Selection Extension
|
|
2
2
|
|
|
3
3
|
Selection Extension plugin for confluence
|
|
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 Selection Extension plugin provides a framework for extending the Atlassian Editor with custom actions triggered by text and block selections. It enables the creation of custom menus, toolbars, and interactive components that respond to user selections within the editor.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Custom selection extensions** - Register and manage custom extensions that respond to text and block selections
|
|
15
|
+
- **Toolbar and menu integration** - Seamlessly integrate custom actions into editor toolbars and block menus
|
|
16
|
+
- **Document manipulation** - Insert and replace content using ADF (Atlassian Document Format) at selected positions
|
|
17
|
+
- **Selection tracking** - Track and access detailed selection information including coordinates and content
|
|
18
|
+
- **Block menu support** - Extend block-level menus with custom actions and configurations
|
|
19
|
+
|
|
8
20
|
## Install
|
|
9
21
|
---
|
|
10
22
|
- **Install** - *yarn add @atlaskit/editor-plugin-selection-extension*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-extension",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.24",
|
|
4
4
|
"description": "editor-plugin-selection-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"@atlaskit/icon": "^34.0.0",
|
|
52
52
|
"@atlaskit/lozenge": "^13.6.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
54
|
-
"@atlaskit/primitives": "^
|
|
55
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
56
|
-
"@atlaskit/tokens": "^
|
|
54
|
+
"@atlaskit/primitives": "^19.0.0",
|
|
55
|
+
"@atlaskit/tmp-editor-statsig": "^59.1.0",
|
|
56
|
+
"@atlaskit/tokens": "^13.0.0",
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
59
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
60
60
|
"uuid": "^3.1.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@atlaskit/editor-common": "^112.
|
|
63
|
+
"@atlaskit/editor-common": "^112.20.0",
|
|
64
64
|
"react": "^18.2.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|