@atlaskit/editor-plugin-floating-toolbar 0.4.0 → 0.4.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 +12 -0
- package/dist/types/types.d.ts +2 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/package.json +3 -3
- package/report.api.md +2 -0
- package/tmp/api-report-tmp.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-floating-toolbar
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`da629b62ef9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da629b62ef9) - ED-19617 Refactor actions to remove createExtenstionAPI and call it instead during initialisation
|
|
8
|
+
|
|
9
|
+
## 0.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 0.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { FloatingToolbarConfig, NextEditorPlugin, OptionalPlugin } from '@a
|
|
|
2
2
|
import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
3
3
|
import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
4
4
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
5
|
+
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
5
6
|
import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
6
7
|
import type { Node } from '@atlaskit/editor-prosemirror/model';
|
|
7
8
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
@@ -26,6 +27,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
|
26
27
|
FeatureFlagsPlugin,
|
|
27
28
|
DecorationsPlugin,
|
|
28
29
|
OptionalPlugin<ContextPanelPlugin>,
|
|
30
|
+
OptionalPlugin<ExtensionPlugin>,
|
|
29
31
|
EditorDisabledPlugin
|
|
30
32
|
];
|
|
31
33
|
actions: {
|
|
@@ -2,6 +2,7 @@ import type { FloatingToolbarConfig, NextEditorPlugin, OptionalPlugin } from '@a
|
|
|
2
2
|
import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
3
3
|
import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
4
4
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
5
|
+
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
5
6
|
import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
6
7
|
import type { Node } from '@atlaskit/editor-prosemirror/model';
|
|
7
8
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
@@ -26,6 +27,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
|
26
27
|
FeatureFlagsPlugin,
|
|
27
28
|
DecorationsPlugin,
|
|
28
29
|
OptionalPlugin<ContextPanelPlugin>,
|
|
30
|
+
OptionalPlugin<ExtensionPlugin>,
|
|
29
31
|
EditorDisabledPlugin
|
|
30
32
|
];
|
|
31
33
|
actions: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-floating-toolbar",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Floating toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
".": "./src/index.ts"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/editor-common": "^74.
|
|
26
|
+
"@atlaskit/editor-common": "^74.58.0",
|
|
27
27
|
"@atlaskit/editor-plugin-context-panel": "^0.2.0",
|
|
28
28
|
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|
|
29
29
|
"@atlaskit/editor-plugin-editor-disabled": "^0.2.0",
|
|
30
|
-
"@atlaskit/editor-plugin-feature-flags": "^0.
|
|
30
|
+
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
31
31
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0"
|
|
33
33
|
},
|
package/report.api.md
CHANGED
|
@@ -19,6 +19,7 @@ import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
|
19
19
|
import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
20
20
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
21
21
|
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
22
|
+
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
22
23
|
import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
23
24
|
import type { FloatingToolbarConfig } from '@atlaskit/editor-common/types';
|
|
24
25
|
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
@@ -41,6 +42,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<
|
|
|
41
42
|
FeatureFlagsPlugin,
|
|
42
43
|
DecorationsPlugin,
|
|
43
44
|
OptionalPlugin<ContextPanelPlugin>,
|
|
45
|
+
OptionalPlugin<ExtensionPlugin>,
|
|
44
46
|
EditorDisabledPlugin,
|
|
45
47
|
];
|
|
46
48
|
actions: {
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import type { ContextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
|
8
8
|
import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
9
9
|
import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
10
10
|
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
11
|
+
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
11
12
|
import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
12
13
|
import type { FloatingToolbarConfig } from '@atlaskit/editor-common/types';
|
|
13
14
|
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
@@ -28,6 +29,7 @@ export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
|
28
29
|
FeatureFlagsPlugin,
|
|
29
30
|
DecorationsPlugin,
|
|
30
31
|
OptionalPlugin<ContextPanelPlugin>,
|
|
32
|
+
OptionalPlugin<ExtensionPlugin>,
|
|
31
33
|
EditorDisabledPlugin
|
|
32
34
|
];
|
|
33
35
|
actions: {
|