@atlaskit/editor-plugin-extension 0.3.0 → 0.4.0

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/editor-plugin-extension
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#43164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43164) [`3aeedf55e29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3aeedf55e29) - [ED-20068] Move editSelectedExtension to ExtensionPluginActions
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
@@ -35,6 +35,7 @@ export type ExtensionPlugin = NextEditorPlugin<'extension', {
35
35
  OptionalPlugin<ContextPanelPlugin>
36
36
  ];
37
37
  actions: {
38
+ editSelectedExtension: () => boolean;
38
39
  api: () => ExtensionAPI;
39
40
  insertMacroFromMacroBrowser: InsertMacroFromMacroBrowser;
40
41
  runMacroAutoConvert: RunMacroAutoConvert;
@@ -35,6 +35,7 @@ export type ExtensionPlugin = NextEditorPlugin<'extension', {
35
35
  OptionalPlugin<ContextPanelPlugin>
36
36
  ];
37
37
  actions: {
38
+ editSelectedExtension: () => boolean;
38
39
  api: () => ExtensionAPI;
39
40
  insertMacroFromMacroBrowser: InsertMacroFromMacroBrowser;
40
41
  runMacroAutoConvert: RunMacroAutoConvert;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-extension",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "editor-plugin-extension plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -23,7 +23,7 @@
23
23
  ".": "./src/index.ts"
24
24
  },
25
25
  "dependencies": {
26
- "@atlaskit/editor-common": "^76.18.0",
26
+ "@atlaskit/editor-common": "^76.21.0",
27
27
  "@atlaskit/editor-plugin-analytics": "^0.3.0",
28
28
  "@atlaskit/editor-plugin-context-panel": "^0.2.0",
29
29
  "@atlaskit/editor-plugin-decorations": "^0.2.0",
package/report.api.md CHANGED
@@ -63,6 +63,7 @@ export type ExtensionPlugin = NextEditorPlugin<
63
63
  OptionalPlugin<ContextPanelPlugin>,
64
64
  ];
65
65
  actions: {
66
+ editSelectedExtension: () => boolean;
66
67
  api: () => ExtensionAPI;
67
68
  insertMacroFromMacroBrowser: InsertMacroFromMacroBrowser;
68
69
  runMacroAutoConvert: RunMacroAutoConvert;
@@ -48,6 +48,7 @@ export type ExtensionPlugin = NextEditorPlugin<'extension', {
48
48
  OptionalPlugin<ContextPanelPlugin>
49
49
  ];
50
50
  actions: {
51
+ editSelectedExtension: () => boolean;
51
52
  api: () => ExtensionAPI;
52
53
  insertMacroFromMacroBrowser: InsertMacroFromMacroBrowser;
53
54
  runMacroAutoConvert: RunMacroAutoConvert;