@atlaskit/editor-plugin-floating-toolbar 1.13.18 → 1.13.19

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.13.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [#155735](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/155735)
8
+ [`1beeeda29023a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1beeeda29023a) -
9
+ Upgrades editor packages to react 18
10
+ - Updated dependencies
11
+
3
12
  ## 1.13.18
4
13
 
5
14
  ### Patch Changes
@@ -193,6 +193,7 @@ export declare const EmojiPickerButton: (props: {
193
193
  openTypeAhead: (inputMethod: import("@atlaskit/editor-plugin-type-ahead").TypeAheadInputMethod) => boolean;
194
194
  insertItem: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem, source?: import("@atlaskit/editor-common/analytics").INPUT_METHOD.QUICK_INSERT | import("@atlaskit/editor-common/analytics").INPUT_METHOD.TOOLBAR | undefined) => import("@atlaskit/editor-common/types").Command;
195
195
  getSuggestions: (searchOptions: import("@atlaskit/editor-common/types").QuickInsertSearchOptions) => import("@atlaskit/editor-common/provider-factory").QuickInsertItem[];
196
+ onInsert: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem) => void;
196
197
  };
197
198
  commands: {
198
199
  openElementBrowserModal: import("@atlaskit/editor-common/types").EditorCommand;
@@ -230,6 +230,7 @@ export declare const EmojiPickerButton: (props: {
230
230
  openTypeAhead: (inputMethod: import("@atlaskit/editor-plugin-type-ahead").TypeAheadInputMethod) => boolean;
231
231
  insertItem: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem, source?: import("@atlaskit/editor-common/analytics").INPUT_METHOD.QUICK_INSERT | import("@atlaskit/editor-common/analytics").INPUT_METHOD.TOOLBAR | undefined) => import("@atlaskit/editor-common/types").Command;
232
232
  getSuggestions: (searchOptions: import("@atlaskit/editor-common/types").QuickInsertSearchOptions) => import("@atlaskit/editor-common/provider-factory").QuickInsertItem[];
233
+ onInsert: (item: import("@atlaskit/editor-common/provider-factory").QuickInsertItem) => void;
233
234
  };
234
235
  commands: {
235
236
  openElementBrowserModal: import("@atlaskit/editor-common/types").EditorCommand;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-floating-toolbar",
3
- "version": "1.13.18",
3
+ "version": "1.13.19",
4
4
  "description": "Floating toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -10,7 +10,7 @@
10
10
  "atlassian": {
11
11
  "team": "Editor: Lego",
12
12
  "singleton": true,
13
- "runReact18": false
13
+ "runReact18": true
14
14
  },
15
15
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
16
16
  "main": "dist/cjs/index.js",
@@ -23,12 +23,12 @@
23
23
  ".": "./src/index.ts"
24
24
  },
25
25
  "dependencies": {
26
- "@atlaskit/adf-utils": "^19.9.0",
27
- "@atlaskit/button": "^20.2.0",
28
- "@atlaskit/checkbox": "^15.0.0",
29
- "@atlaskit/editor-common": "^94.0.0",
30
- "@atlaskit/editor-palette": "1.6.1",
31
- "@atlaskit/editor-plugin-block-controls": "^2.9.0",
26
+ "@atlaskit/adf-utils": "^19.10.0",
27
+ "@atlaskit/button": "^20.3.0",
28
+ "@atlaskit/checkbox": "^15.1.0",
29
+ "@atlaskit/editor-common": "^94.2.0",
30
+ "@atlaskit/editor-palette": "1.6.2",
31
+ "@atlaskit/editor-plugin-block-controls": "^2.10.0",
32
32
  "@atlaskit/editor-plugin-context-panel": "^1.3.0",
33
33
  "@atlaskit/editor-plugin-copy-button": "^1.3.0",
34
34
  "@atlaskit/editor-plugin-decorations": "^1.3.0",
@@ -39,12 +39,12 @@
39
39
  "@atlaskit/editor-plugin-table": "^7.29.0",
40
40
  "@atlaskit/editor-prosemirror": "6.0.0",
41
41
  "@atlaskit/emoji": "^67.8.0",
42
- "@atlaskit/icon": "^22.23.0",
42
+ "@atlaskit/icon": "^22.24.0",
43
43
  "@atlaskit/menu": "^2.13.0",
44
44
  "@atlaskit/modal-dialog": "^12.17.0",
45
45
  "@atlaskit/platform-feature-flags": "^0.3.0",
46
46
  "@atlaskit/primitives": "^12.2.0",
47
- "@atlaskit/select": "^18.1.0",
47
+ "@atlaskit/select": "^18.2.0",
48
48
  "@atlaskit/theme": "^14.0.0",
49
49
  "@atlaskit/tokens": "^2.0.0",
50
50
  "@atlaskit/tooltip": "^18.8.0",
@@ -56,7 +56,8 @@
56
56
  "react-loadable": "^5.1.0"
57
57
  },
58
58
  "peerDependencies": {
59
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
59
+ "react": "^16.8.0 || ^17.0.0 || ~18.2.0",
60
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.2.0"
60
61
  },
61
62
  "devDependencies": {
62
63
  "@atlaskit/visual-regression": "*",
@@ -64,7 +65,6 @@
64
65
  "@testing-library/react": "^12.1.5",
65
66
  "@testing-library/user-event": "^14.4.3",
66
67
  "enzyme": "^3.10.0",
67
- "react-dom": "^16.8.0",
68
68
  "typescript": "~5.4.2",
69
69
  "wait-for-expect": "^1.2.0"
70
70
  },