@atlaskit/editor-plugin-block-menu 9.1.2 → 9.2.1
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 +17 -0
- package/blockMenuPlugin/package.json +15 -0
- package/blockMenuPluginType/package.json +15 -0
- package/dist/cjs/entry-points/blockMenuPlugin.js +12 -0
- package/dist/cjs/entry-points/blockMenuPluginType.js +1 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/blockMenuPlugin.js +2 -0
- package/dist/es2019/entry-points/blockMenuPluginType.js +0 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/blockMenuPlugin.js +2 -0
- package/dist/esm/entry-points/blockMenuPluginType.js +0 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/blockMenuPlugin.d.ts +1 -0
- package/dist/types/entry-points/blockMenuPluginType.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/entry-points/blockMenuPlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/blockMenuPluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/docs/0-intro.tsx +1 -1
- package/package.json +11 -11
- package/types/package.json +15 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-menu
|
|
2
2
|
|
|
3
|
+
## 9.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`f1eebdf4ed96b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1eebdf4ed96b) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 9.1.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-block-menu/blockMenuPlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/blockMenuPlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/blockMenuPlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/blockMenuPlugin.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/blockMenuPlugin.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/blockMenuPlugin.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-block-menu/blockMenuPluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/blockMenuPluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/blockMenuPluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/blockMenuPluginType.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/blockMenuPluginType.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/blockMenuPluginType.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "blockMenuPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _blockMenuPlugin.blockMenuPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _blockMenuPlugin = require("../blockMenuPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { blockMenuPlugin } from '../blockMenuPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BlockMenuPlugin, RegisterBlockMenuComponent, Parent, BlockMenuPluginOptions, BlockMenuSharedState, } from '../blockMenuPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TransformNodeMetadata, TransfromNodeTargetType } from '../editor-commands/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { blockMenuPlugin } from './blockMenuPlugin';
|
|
2
2
|
export type { BlockMenuPlugin, RegisterBlockMenuComponent, Parent, BlockMenuPluginOptions, BlockMenuSharedState, } from './blockMenuPluginType';
|
|
3
|
-
export type { TransformNodeMetadata, TransfromNodeTargetType
|
|
3
|
+
export type { TransformNodeMetadata, TransfromNodeTargetType } from './editor-commands/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { blockMenuPlugin } from '../blockMenuPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BlockMenuPlugin, RegisterBlockMenuComponent, Parent, BlockMenuPluginOptions, BlockMenuSharedState, } from '../blockMenuPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { TransformNodeMetadata, TransfromNodeTargetType } from '../editor-commands/types';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { blockMenuPlugin } from './blockMenuPlugin';
|
|
2
2
|
export type { BlockMenuPlugin, RegisterBlockMenuComponent, Parent, BlockMenuPluginOptions, BlockMenuSharedState, } from './blockMenuPluginType';
|
|
3
|
-
export type { TransformNodeMetadata, TransfromNodeTargetType
|
|
3
|
+
export type { TransformNodeMetadata, TransfromNodeTargetType } from './editor-commands/types';
|
package/docs/0-intro.tsx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-menu",
|
|
3
|
-
"version": "9.1
|
|
3
|
+
"version": "9.2.1",
|
|
4
4
|
"description": "BlockMenu plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,27 +30,27 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/browser-apis": "^0.0.1",
|
|
32
32
|
"@atlaskit/css": "^0.19.0",
|
|
33
|
-
"@atlaskit/editor-plugin-analytics": "^10.
|
|
34
|
-
"@atlaskit/editor-plugin-block-controls": "^11.
|
|
35
|
-
"@atlaskit/editor-plugin-decorations": "^10.
|
|
36
|
-
"@atlaskit/editor-plugin-selection": "^10.
|
|
37
|
-
"@atlaskit/editor-plugin-user-intent": "^8.
|
|
33
|
+
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
34
|
+
"@atlaskit/editor-plugin-block-controls": "^11.4.0",
|
|
35
|
+
"@atlaskit/editor-plugin-decorations": "^10.1.0",
|
|
36
|
+
"@atlaskit/editor-plugin-selection": "^10.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-user-intent": "^8.2.0",
|
|
38
38
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
39
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
40
|
-
"@atlaskit/editor-tables": "^2.
|
|
41
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
39
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
40
|
+
"@atlaskit/editor-tables": "^2.10.0",
|
|
41
|
+
"@atlaskit/editor-toolbar": "^1.5.0",
|
|
42
42
|
"@atlaskit/flag": "^17.11.0",
|
|
43
43
|
"@atlaskit/icon": "^34.5.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
45
|
"@atlaskit/primitives": "^19.0.0",
|
|
46
46
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
48
48
|
"@atlaskit/tokens": "^13.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"bind-event-listener": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@atlaskit/editor-common": "^114.
|
|
53
|
+
"@atlaskit/editor-common": "^114.32.0",
|
|
54
54
|
"react": "^18.2.0",
|
|
55
55
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
56
56
|
},
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-block-menu/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|