@atlaskit/editor-plugin-floating-toolbar 1.7.3 → 1.7.4
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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-floating-toolbar
|
|
2
2
|
|
|
3
|
+
## 1.7.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#110942](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110942)
|
|
8
|
+
[`aa339aee9aa7d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aa339aee9aa7d) -
|
|
9
|
+
[ED-23431] Fix EditorPluginAPI type system
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 1.7.3
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -5,12 +5,10 @@ import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
|
5
5
|
import type { ExtensionProvider } from '@atlaskit/editor-common/extensions';
|
|
6
6
|
import type { Item } from '@atlaskit/editor-common/floating-toolbar';
|
|
7
7
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
8
|
-
import type {
|
|
9
|
-
import type { contextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
10
|
-
import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
11
|
-
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
8
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
12
9
|
import type { Node } from '@atlaskit/editor-prosemirror/model';
|
|
13
10
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
11
|
+
import type { FloatingToolbarPlugin } from '../types';
|
|
14
12
|
export type { Item };
|
|
15
13
|
export interface Props {
|
|
16
14
|
items: Array<Item>;
|
|
@@ -28,11 +26,7 @@ export interface Props {
|
|
|
28
26
|
node: Node;
|
|
29
27
|
extensionsProvider?: Promise<ExtensionProvider>;
|
|
30
28
|
scrollable?: boolean;
|
|
31
|
-
api:
|
|
32
|
-
typeof decorationsPlugin,
|
|
33
|
-
OptionalPlugin<typeof contextPanelPlugin>,
|
|
34
|
-
OptionalPlugin<ExtensionPlugin>
|
|
35
|
-
]> | undefined;
|
|
29
|
+
api: ExtractInjectionAPI<FloatingToolbarPlugin> | undefined;
|
|
36
30
|
mediaAssistiveMessage?: string;
|
|
37
31
|
}
|
|
38
32
|
type GroupedItems = (Item | Item[])[];
|
|
@@ -5,12 +5,10 @@ import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
|
5
5
|
import type { ExtensionProvider } from '@atlaskit/editor-common/extensions';
|
|
6
6
|
import type { Item } from '@atlaskit/editor-common/floating-toolbar';
|
|
7
7
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
8
|
-
import type {
|
|
9
|
-
import type { contextPanelPlugin } from '@atlaskit/editor-plugin-context-panel';
|
|
10
|
-
import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
|
|
11
|
-
import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
|
|
8
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
12
9
|
import type { Node } from '@atlaskit/editor-prosemirror/model';
|
|
13
10
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
11
|
+
import type { FloatingToolbarPlugin } from '../types';
|
|
14
12
|
export type { Item };
|
|
15
13
|
export interface Props {
|
|
16
14
|
items: Array<Item>;
|
|
@@ -28,11 +26,7 @@ export interface Props {
|
|
|
28
26
|
node: Node;
|
|
29
27
|
extensionsProvider?: Promise<ExtensionProvider>;
|
|
30
28
|
scrollable?: boolean;
|
|
31
|
-
api:
|
|
32
|
-
typeof decorationsPlugin,
|
|
33
|
-
OptionalPlugin<typeof contextPanelPlugin>,
|
|
34
|
-
OptionalPlugin<ExtensionPlugin>
|
|
35
|
-
]> | undefined;
|
|
29
|
+
api: ExtractInjectionAPI<FloatingToolbarPlugin> | undefined;
|
|
36
30
|
mediaAssistiveMessage?: string;
|
|
37
31
|
}
|
|
38
32
|
type GroupedItems = (Item | Item[])[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-floating-toolbar",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "Floating toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
".": "./src/index.ts"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-utils": "^19.
|
|
27
|
+
"@atlaskit/adf-utils": "^19.3.0",
|
|
28
28
|
"@atlaskit/button": "^18.0.0",
|
|
29
29
|
"@atlaskit/checkbox": "^13.5.0",
|
|
30
|
-
"@atlaskit/editor-common": "^
|
|
30
|
+
"@atlaskit/editor-common": "^83.0.0",
|
|
31
31
|
"@atlaskit/editor-palette": "1.6.0",
|
|
32
32
|
"@atlaskit/editor-plugin-block-controls": "^1.4.1",
|
|
33
33
|
"@atlaskit/editor-plugin-context-panel": "^1.1.0",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@atlaskit/editor-plugin-decorations": "^1.1.0",
|
|
36
36
|
"@atlaskit/editor-plugin-editor-disabled": "^1.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.0.0",
|
|
38
|
-
"@atlaskit/editor-plugin-extension": "^1.
|
|
39
|
-
"@atlaskit/editor-plugin-table": "^7.
|
|
38
|
+
"@atlaskit/editor-plugin-extension": "^1.8.0",
|
|
39
|
+
"@atlaskit/editor-plugin-table": "^7.18.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
41
41
|
"@atlaskit/emoji": "^67.6.0",
|
|
42
42
|
"@atlaskit/icon": "^22.4.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^0.2.5",
|
|
46
46
|
"@atlaskit/select": "^17.11.0",
|
|
47
47
|
"@atlaskit/theme": "^12.11.0",
|
|
48
|
-
"@atlaskit/tokens": "^1.
|
|
48
|
+
"@atlaskit/tokens": "^1.53.0",
|
|
49
49
|
"@atlaskit/tooltip": "^18.5.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1",
|