@atlaskit/editor-plugin-quick-insert 8.0.28 → 8.0.29
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 +7 -0
- package/README.md +16 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-quick-insert
|
|
2
2
|
|
|
3
|
+
## 8.0.29
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`fa146e17e08d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fa146e17e08d6) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
|
|
3
10
|
## 8.0.28
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Quick Insert
|
|
2
2
|
|
|
3
3
|
Quick insert 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 Quick Insert plugin provides a user-friendly interface for rapidly inserting content into the Atlassian Editor. It integrates with the editor's type-ahead system to enable contextual content insertion through the forward slash (`/`) trigger, along with an optional element browser modal for discovering and inserting available content elements.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Type-ahead integration** - Trigger quick insert with the `/` key for instant content suggestions
|
|
15
|
+
- **Search and filter** - Find and filter available items with customizable search functionality
|
|
16
|
+
- **Element browser** - Optional modal interface for browsing and inserting content elements
|
|
17
|
+
- **Custom items** - Add, update, or remove custom quick insert items dynamically
|
|
18
|
+
- **Analytics support** - Track insertion actions and editor interactions
|
|
19
|
+
- **Configurable behavior** - Control empty states, item priority sorting, and element browser visibility
|
|
20
|
+
|
|
8
21
|
## Install
|
|
9
22
|
---
|
|
10
23
|
- **Install** - *yarn add @atlaskit/editor-plugin-quick-insert*
|
|
@@ -25,6 +38,7 @@ Please see [Atlaskit - Editor plugin quick insert](https://atlaskit.atlassian.co
|
|
|
25
38
|
## Support
|
|
26
39
|
---
|
|
27
40
|
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
41
|
+
|
|
28
42
|
## License
|
|
29
43
|
---
|
|
30
|
-
|
|
44
|
+
Please see [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#License) for more licensing information.
|