@atlaskit/editor-plugin-layout 0.1.3 → 0.1.5
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 +32 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-layout
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646) [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make feature flags plugin optional in all plugins including:
|
|
8
|
+
|
|
9
|
+
- analytics
|
|
10
|
+
- base
|
|
11
|
+
- card
|
|
12
|
+
- code-block
|
|
13
|
+
- expand
|
|
14
|
+
- extension
|
|
15
|
+
- floating-toolbar
|
|
16
|
+
- hyperlink
|
|
17
|
+
- insert-block
|
|
18
|
+
- layout
|
|
19
|
+
- layout
|
|
20
|
+
- list
|
|
21
|
+
- media
|
|
22
|
+
- paste
|
|
23
|
+
- rule
|
|
24
|
+
- table
|
|
25
|
+
- tasks-and-decisions
|
|
26
|
+
|
|
27
|
+
We already treat it as optional in the plugins, so this is just ensuring that the plugin is not mandatory to be added to the preset.
|
|
28
|
+
|
|
29
|
+
## 0.1.4
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417) [`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971 Upgrade adf-schema package to ^34.0.0
|
|
34
|
+
|
|
3
35
|
## 0.1.3
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-layout",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Layout plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
".": "./src/index.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/adf-schema": "^
|
|
34
|
+
"@atlaskit/adf-schema": "^34.0.0",
|
|
35
35
|
"@atlaskit/editor-common": "^76.22.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^0.3.0",
|
|
37
37
|
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|