@atlaskit/editor-plugin-layout 8.1.1 → 8.1.3
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 +14 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-layout
|
|
2
2
|
|
|
3
|
+
## 8.1.3
|
|
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
|
+
|
|
11
|
+
## 8.1.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 8.1.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Layout
|
|
2
2
|
|
|
3
3
|
Layout 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 Layout plugin provides layout section and column functionality for the Atlassian Editor. It enables users to create and manage multi-column layouts with support for various preset configurations including single column, two-column, three-column, four-column, and five-column layouts with optional sidebar arrangements.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Multiple layout presets** - Support for various layout configurations (single, two-equal, three-equal, two-column with sidebars, three-column with sidebars, four-equal, five-equal)
|
|
15
|
+
- **Column management** - Create, insert, and manage layout sections with multiple columns
|
|
16
|
+
- **Resizing support** - Dynamically resize layout columns
|
|
17
|
+
- **Block menu integration** - Integrate layout options into the editor's block menu
|
|
18
|
+
- **Toolbar support** - Floating toolbar for quick layout editing
|
|
19
|
+
- **Analytics integration** - Track layout-related user actions and interactions
|
|
20
|
+
|
|
8
21
|
## Install
|
|
9
22
|
---
|
|
10
23
|
- **Install** - *yarn add @atlaskit/editor-plugin-layout*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-layout",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.3",
|
|
4
4
|
"description": "Layout plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@atlaskit/editor-plugin-decorations": "^8.0.0",
|
|
37
37
|
"@atlaskit/editor-plugin-editor-disabled": "^8.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-guideline": "^8.0.0",
|
|
39
|
-
"@atlaskit/editor-plugin-interaction": "^
|
|
39
|
+
"@atlaskit/editor-plugin-interaction": "^16.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-selection": "^8.0.0",
|
|
41
41
|
"@atlaskit/editor-plugin-toolbar": "^5.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-width": "^9.0.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@atlaskit/icon": "^34.0.0",
|
|
47
47
|
"@atlaskit/icon-lab": "^6.4.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
49
|
-
"@atlaskit/tmp-editor-statsig": "^55.
|
|
50
|
-
"@atlaskit/tokens": "^
|
|
49
|
+
"@atlaskit/tmp-editor-statsig": "^55.1.0",
|
|
50
|
+
"@atlaskit/tokens": "^12.0.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
52
52
|
"@emotion/react": "^11.7.1",
|
|
53
53
|
"bind-event-listener": "^3.0.0"
|