@atlaskit/editor-plugin-code-block 12.0.20 → 12.1.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 +11 -0
- package/codeBlockPlugin/package.json +15 -0
- package/codeBlockPluginType/package.json +15 -0
- package/dist/cjs/entry-points/codeBlockPlugin.js +13 -0
- package/dist/cjs/entry-points/codeBlockPluginType.js +1 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/codeBlockPlugin.js +2 -0
- package/dist/es2019/entry-points/codeBlockPluginType.js +0 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/codeBlockPlugin.js +2 -0
- package/dist/esm/entry-points/codeBlockPluginType.js +0 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/codeBlockPlugin.d.ts +1 -0
- package/dist/types/entry-points/codeBlockPluginType.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/codeBlockPlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/codeBlockPluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/package.json +12 -12
- package/types/package.json +15 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-code-block
|
|
2
2
|
|
|
3
|
+
## 12.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f1eebdf4ed96b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1eebdf4ed96b) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 12.0.20
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-code-block/codeBlockPlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/codeBlockPlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/codeBlockPlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/codeBlockPlugin.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/codeBlockPlugin.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/codeBlockPlugin.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-code-block/codeBlockPluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/codeBlockPluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/codeBlockPluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/codeBlockPluginType.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/codeBlockPluginType.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/codeBlockPluginType.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "codeBlockPlugin", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _codeBlockPlugin.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _codeBlockPlugin = _interopRequireDefault(require("../codeBlockPlugin"));
|
|
@@ -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 { default as codeBlockPlugin } from '../codeBlockPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CodeBlockPlugin } from '../codeBlockPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CodeBlockOptions, CodeBlockPluginOptions } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as codeBlockPlugin } from '../codeBlockPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CodeBlockPlugin } from '../codeBlockPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CodeBlockOptions, CodeBlockPluginOptions } from '../types/index';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-code-block",
|
|
3
|
-
"version": "12.0
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "Code block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,20 +30,20 @@
|
|
|
30
30
|
"@atlaskit/adf-schema": "^52.11.0",
|
|
31
31
|
"@atlaskit/code": "^17.5.0",
|
|
32
32
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
33
|
-
"@atlaskit/editor-plugin-block-menu": "^9.
|
|
34
|
-
"@atlaskit/editor-plugin-composition": "^9.
|
|
35
|
-
"@atlaskit/editor-plugin-decorations": "^10.
|
|
36
|
-
"@atlaskit/editor-plugin-editor-disabled": "^10.
|
|
37
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^12.
|
|
38
|
-
"@atlaskit/editor-plugin-interaction": "^19.
|
|
39
|
-
"@atlaskit/editor-plugin-selection": "^10.
|
|
40
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
33
|
+
"@atlaskit/editor-plugin-block-menu": "^9.2.0",
|
|
34
|
+
"@atlaskit/editor-plugin-composition": "^9.1.0",
|
|
35
|
+
"@atlaskit/editor-plugin-decorations": "^10.1.0",
|
|
36
|
+
"@atlaskit/editor-plugin-editor-disabled": "^10.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
|
|
38
|
+
"@atlaskit/editor-plugin-interaction": "^19.1.0",
|
|
39
|
+
"@atlaskit/editor-plugin-selection": "^10.1.0",
|
|
40
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
41
41
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
42
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
42
|
+
"@atlaskit/editor-toolbar": "^1.4.0",
|
|
43
43
|
"@atlaskit/icon": "^34.5.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
|
-
"@atlaskit/prosemirror-input-rules": "^3.
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^80.
|
|
45
|
+
"@atlaskit/prosemirror-input-rules": "^3.7.0",
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^80.3.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-code-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": 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
|
+
}
|