@atlaskit/editor-plugin-insert-block 11.2.9 → 11.3.0
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/dist/cjs/entry-points/insert-block-plugin-type.js +1 -0
- package/dist/cjs/entry-points/insert-block-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/insert-block-plugin-type.js +0 -0
- package/dist/es2019/entry-points/insert-block-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/insert-block-plugin-type.js +0 -0
- package/dist/esm/entry-points/insert-block-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/insert-block-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/insert-block-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/insert-block-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/insert-block-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/insert-block-plugin/package.json +17 -0
- package/insert-block-plugin-type/package.json +17 -0
- package/package.json +24 -24
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 11.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 11.2.10
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 11.2.9
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "insertBlockPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _insertBlockPlugin.insertBlockPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _insertBlockPlugin = require("../insertBlockPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertBlockPlugin } from '../insertBlockPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { insertBlockPlugin } from '../insertBlockPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertBlockOptions, InsertBlockPluginOptions, InsertBlockPluginDependencies, InsertBlockPluginState, ToolbarInsertBlockButtonsConfig, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertBlockPlugin } from '../insertBlockPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { insertBlockPlugin } from '../insertBlockPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertBlockOptions, InsertBlockPluginOptions, InsertBlockPluginDependencies, InsertBlockPluginState, ToolbarInsertBlockButtonsConfig, } from '../types/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-insert-block/insert-block-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/insert-block-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/insert-block-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/insert-block-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/insert-block-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/insert-block-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-insert-block/insert-block-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/insert-block-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/insert-block-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/insert-block-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/insert-block-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/insert-block-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.3.0",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,37 +34,37 @@
|
|
|
34
34
|
"@atlaskit/editor-plugin-block-type": "^14.0.0",
|
|
35
35
|
"@atlaskit/editor-plugin-code-block": "^12.0.0",
|
|
36
36
|
"@atlaskit/editor-plugin-connectivity": "^10.0.0",
|
|
37
|
-
"@atlaskit/editor-plugin-date": "^12.
|
|
38
|
-
"@atlaskit/editor-plugin-emoji": "^11.
|
|
39
|
-
"@atlaskit/editor-plugin-expand": "^11.
|
|
40
|
-
"@atlaskit/editor-plugin-extension": "^13.
|
|
41
|
-
"@atlaskit/editor-plugin-feature-flags": "^9.
|
|
42
|
-
"@atlaskit/editor-plugin-hyperlink": "^12.
|
|
43
|
-
"@atlaskit/editor-plugin-image-upload": "^10.
|
|
44
|
-
"@atlaskit/editor-plugin-layout": "^10.
|
|
45
|
-
"@atlaskit/editor-plugin-media": "^12.
|
|
46
|
-
"@atlaskit/editor-plugin-media-insert": "^23.
|
|
47
|
-
"@atlaskit/editor-plugin-mentions": "^12.
|
|
48
|
-
"@atlaskit/editor-plugin-metrics": "^11.
|
|
49
|
-
"@atlaskit/editor-plugin-panel": "^12.
|
|
50
|
-
"@atlaskit/editor-plugin-placeholder-text": "^11.
|
|
51
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
52
|
-
"@atlaskit/editor-plugin-quick-insert": "^10.
|
|
53
|
-
"@atlaskit/editor-plugin-rule": "^10.
|
|
37
|
+
"@atlaskit/editor-plugin-date": "^12.2.0",
|
|
38
|
+
"@atlaskit/editor-plugin-emoji": "^11.1.0",
|
|
39
|
+
"@atlaskit/editor-plugin-expand": "^11.2.0",
|
|
40
|
+
"@atlaskit/editor-plugin-extension": "^13.4.0",
|
|
41
|
+
"@atlaskit/editor-plugin-feature-flags": "^9.1.0",
|
|
42
|
+
"@atlaskit/editor-plugin-hyperlink": "^12.1.0",
|
|
43
|
+
"@atlaskit/editor-plugin-image-upload": "^10.1.0",
|
|
44
|
+
"@atlaskit/editor-plugin-layout": "^10.2.0",
|
|
45
|
+
"@atlaskit/editor-plugin-media": "^12.6.0",
|
|
46
|
+
"@atlaskit/editor-plugin-media-insert": "^23.3.0",
|
|
47
|
+
"@atlaskit/editor-plugin-mentions": "^12.2.0",
|
|
48
|
+
"@atlaskit/editor-plugin-metrics": "^11.1.0",
|
|
49
|
+
"@atlaskit/editor-plugin-panel": "^12.1.0",
|
|
50
|
+
"@atlaskit/editor-plugin-placeholder-text": "^11.1.0",
|
|
51
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
52
|
+
"@atlaskit/editor-plugin-quick-insert": "^10.4.0",
|
|
53
|
+
"@atlaskit/editor-plugin-rule": "^10.1.0",
|
|
54
54
|
"@atlaskit/editor-plugin-status": "^11.0.0",
|
|
55
|
-
"@atlaskit/editor-plugin-table": "^22.
|
|
55
|
+
"@atlaskit/editor-plugin-table": "^22.3.0",
|
|
56
56
|
"@atlaskit/editor-plugin-tasks-and-decisions": "^13.1.0",
|
|
57
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
57
|
+
"@atlaskit/editor-plugin-toolbar": "^7.2.0",
|
|
58
58
|
"@atlaskit/editor-plugin-type-ahead": "^10.0.0",
|
|
59
59
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
60
60
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
61
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
61
|
+
"@atlaskit/editor-toolbar": "^1.2.0",
|
|
62
62
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
63
|
-
"@atlaskit/emoji": "^70.
|
|
63
|
+
"@atlaskit/emoji": "^70.6.0",
|
|
64
64
|
"@atlaskit/icon": "^34.5.0",
|
|
65
65
|
"@atlaskit/icon-lab": "^6.9.0",
|
|
66
66
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
67
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
67
|
+
"@atlaskit/tmp-editor-statsig": "^80.0.0",
|
|
68
68
|
"@atlaskit/tokens": "^13.0.0",
|
|
69
69
|
"@babel/runtime": "^7.0.0",
|
|
70
70
|
"@emotion/react": "^11.7.1",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"react-virtualized": "^9.22.6"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"@atlaskit/editor-common": "^114.
|
|
77
|
+
"@atlaskit/editor-common": "^114.30.0",
|
|
78
78
|
"react": "^18.2.0",
|
|
79
79
|
"react-dom": "^18.2.0",
|
|
80
80
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-insert-block/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": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|