@atlaskit/editor-plugin-toolbar 7.3.8 → 7.3.9
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 +14 -0
- package/dist/cjs/entry-points/plugin-key.js +12 -0
- package/dist/es2019/entry-points/plugin-key.js +2 -0
- package/dist/esm/entry-points/plugin-key.js +2 -0
- package/dist/types/entry-points/plugin-key.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/plugin-key.d.ts +1 -0
- package/package.json +4 -4
- package/plugin-key/package.json +15 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-toolbar
|
|
2
2
|
|
|
3
|
+
## 7.3.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 7.3.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`aae236457e46a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aae236457e46a) -
|
|
14
|
+
Dismiss the contextual formatting toolbar when the Remix modal is opened from the editor selection
|
|
15
|
+
toolbar.
|
|
16
|
+
|
|
3
17
|
## 7.3.8
|
|
4
18
|
|
|
5
19
|
### 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 @@
|
|
|
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.
|
|
3
|
+
"version": "7.3.9",
|
|
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.
|
|
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": "^
|
|
43
|
+
"@atlaskit/tmp-editor-statsig": "^86.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.
|
|
48
|
+
"@atlaskit/editor-common": "^114.54.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
|
+
}
|