@atlaskit/editor-plugin-toolbar 7.3.8 → 7.3.10

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,25 @@
1
1
  # @atlaskit/editor-plugin-toolbar
2
2
 
3
+ ## 7.3.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 7.3.9
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 7.3.8
16
+
17
+ ### Patch Changes
18
+
19
+ - [`aae236457e46a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aae236457e46a) -
20
+ Dismiss the contextual formatting toolbar when the Remix modal is opened from the editor selection
21
+ toolbar.
22
+
3
23
  ## 7.3.8
4
24
 
5
25
  ### Patch Changes
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "editorToolbarPluginKey", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _pluginKey.editorToolbarPluginKey;
10
+ }
11
+ });
12
+ var _pluginKey = require("../pm-plugins/plugin-key");
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { editorToolbarPluginKey } from '../pm-plugins/plugin-key';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { editorToolbarPluginKey } from '../pm-plugins/plugin-key';
@@ -0,0 +1 @@
1
+ export { editorToolbarPluginKey } from '../pm-plugins/plugin-key';
@@ -0,0 +1 @@
1
+ export { editorToolbarPluginKey } from '../pm-plugins/plugin-key';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-toolbar",
3
- "version": "7.3.8",
3
+ "version": "7.3.10",
4
4
  "description": "Toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -37,15 +37,15 @@
37
37
  "@atlaskit/editor-plugin-user-preferences": "^8.2.0",
38
38
  "@atlaskit/editor-prosemirror": "^7.3.0",
39
39
  "@atlaskit/editor-shared-styles": "^3.11.0",
40
- "@atlaskit/editor-toolbar": "^1.8.0",
40
+ "@atlaskit/editor-toolbar": "^1.9.0",
41
41
  "@atlaskit/editor-toolbar-model": "^0.5.0",
42
42
  "@atlaskit/platform-feature-flags": "^1.1.0",
43
- "@atlaskit/tmp-editor-statsig": "^85.0.0",
43
+ "@atlaskit/tmp-editor-statsig": "^87.0.0",
44
44
  "@babel/runtime": "^7.0.0",
45
45
  "bind-event-listener": "^3.0.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "@atlaskit/editor-common": "^114.50.0",
48
+ "@atlaskit/editor-common": "^114.55.0",
49
49
  "react": "^18.2.0",
50
50
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
51
51
  },
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-toolbar/plugin-key",
3
+ "main": "../dist/cjs/entry-points/plugin-key.js",
4
+ "module": "../dist/esm/entry-points/plugin-key.js",
5
+ "module:es2019": "../dist/es2019/entry-points/plugin-key.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/plugin-key.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/plugin-key.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }