@atlaskit/editor-plugin-floating-toolbar 0.4.4 → 0.5.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,15 @@
1
1
  # @atlaskit/editor-plugin-floating-toolbar
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`9f2365fabcc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f2365fabcc) - ED-19617 - Initial creation of editor-plugin-copy-button package
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
3
13
  ## 0.4.4
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,6 @@
1
1
  import type { FloatingToolbarConfig, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
2
  import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
3
+ import type { CopyButtonPlugin } from '@atlaskit/editor-plugin-copy-button';
3
4
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
4
5
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
5
6
  import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
@@ -28,6 +29,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
28
29
  DecorationsPlugin,
29
30
  OptionalPlugin<ContextPanelPlugin>,
30
31
  OptionalPlugin<ExtensionPlugin>,
32
+ CopyButtonPlugin,
31
33
  EditorDisabledPlugin
32
34
  ];
33
35
  actions: {
@@ -1,5 +1,6 @@
1
1
  import type { FloatingToolbarConfig, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
2
  import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
3
+ import type { CopyButtonPlugin } from '@atlaskit/editor-plugin-copy-button';
3
4
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
4
5
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
5
6
  import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
@@ -28,6 +29,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
28
29
  DecorationsPlugin,
29
30
  OptionalPlugin<ContextPanelPlugin>,
30
31
  OptionalPlugin<ExtensionPlugin>,
32
+ CopyButtonPlugin,
31
33
  EditorDisabledPlugin
32
34
  ];
33
35
  actions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-floating-toolbar",
3
- "version": "0.4.4",
3
+ "version": "0.5.0",
4
4
  "description": "Floating toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -23,8 +23,9 @@
23
23
  ".": "./src/index.ts"
24
24
  },
25
25
  "dependencies": {
26
- "@atlaskit/editor-common": "^75.0.0",
26
+ "@atlaskit/editor-common": "^75.2.0",
27
27
  "@atlaskit/editor-plugin-context-panel": "^0.2.0",
28
+ "@atlaskit/editor-plugin-copy-button": "^0.2.0",
28
29
  "@atlaskit/editor-plugin-decorations": "^0.2.0",
29
30
  "@atlaskit/editor-plugin-editor-disabled": "^0.2.0",
30
31
  "@atlaskit/editor-plugin-extension": "^0.2.0",
package/report.api.md CHANGED
@@ -16,6 +16,7 @@
16
16
 
17
17
  ```ts
18
18
  import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
19
+ import type { CopyButtonPlugin } from '@atlaskit/editor-plugin-copy-button';
19
20
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
20
21
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
21
22
  import type { EditorState } from '@atlaskit/editor-prosemirror/state';
@@ -43,6 +44,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<
43
44
  DecorationsPlugin,
44
45
  OptionalPlugin<ContextPanelPlugin>,
45
46
  OptionalPlugin<ExtensionPlugin>,
47
+ CopyButtonPlugin,
46
48
  EditorDisabledPlugin,
47
49
  ];
48
50
  actions: {
@@ -5,6 +5,7 @@
5
5
  ```ts
6
6
 
7
7
  import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
8
+ import type { CopyButtonPlugin } from '@atlaskit/editor-plugin-copy-button';
8
9
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
9
10
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
10
11
  import type { EditorState } from '@atlaskit/editor-prosemirror/state';
@@ -30,6 +31,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
30
31
  DecorationsPlugin,
31
32
  OptionalPlugin<ContextPanelPlugin>,
32
33
  OptionalPlugin<ExtensionPlugin>,
34
+ CopyButtonPlugin,
33
35
  EditorDisabledPlugin
34
36
  ];
35
37
  actions: {