@atlaskit/editor-plugin-insert-block 9.1.1 → 9.1.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 +17 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 9.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`14803a836f641`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14803a836f641) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 9.1.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Insert Block
|
|
2
2
|
|
|
3
3
|
Insert block 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 Insert Block plugin provides a comprehensive toolbar interface for inserting various content types and block elements into the Atlassian Editor. It manages the insert menu, toolbar buttons, and element browser, enabling users to add rich content such as tables, media, code blocks, emojis, mentions, and other block-level elements.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Toolbar insert buttons** - Provides individual toolbar buttons for quickly inserting common content types (tables, media, emojis, mentions, etc.)
|
|
15
|
+
- **Insert menu dropdown** - Offers a comprehensive dropdown menu with all available insert options organized by category
|
|
16
|
+
- **Element browser** - Displays a searchable, categorized browser for discovering and inserting elements
|
|
17
|
+
- **Responsive toolbar** - Automatically adjusts the number of visible buttons based on available toolbar space
|
|
18
|
+
- **Configurable buttons** - Allows customization of which insert buttons are visible in the toolbar
|
|
19
|
+
- **Block type insertion** - Supports inserting block types like code blocks, panels, and block quotes
|
|
20
|
+
- **Media integration** - Integrates with media plugin to enable image and media uploads
|
|
21
|
+
- **Offline mode support** - Adapts UI based on connectivity status
|
|
22
|
+
- **Performance optimized** - Lazy loads element browser for improved initial rendering performance
|
|
23
|
+
|
|
8
24
|
## Install
|
|
9
25
|
---
|
|
10
26
|
- **Install** - *yarn add @atlaskit/editor-plugin-insert-block*
|