@atlaskit/editor-plugin-highlight 10.0.18 → 10.1.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 +13 -0
- package/dist/cjs/entry-points/highlightPlugin.js +12 -0
- package/dist/cjs/entry-points/highlightPluginType.js +1 -0
- package/dist/cjs/entry-points/main.js +1 -0
- package/dist/es2019/entry-points/highlightPlugin.js +2 -0
- package/dist/es2019/entry-points/highlightPluginType.js +0 -0
- package/dist/es2019/entry-points/main.js +0 -0
- package/dist/esm/entry-points/highlightPlugin.js +2 -0
- package/dist/esm/entry-points/highlightPluginType.js +0 -0
- package/dist/esm/entry-points/main.js +0 -0
- package/dist/types/entry-points/highlightPlugin.d.ts +1 -0
- package/dist/types/entry-points/highlightPluginType.d.ts +1 -0
- package/dist/types/entry-points/main.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/highlightPlugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/highlightPluginType.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/main.d.ts +1 -0
- package/highlightPlugin/package.json +17 -0
- package/highlightPluginType/package.json +17 -0
- package/main/package.json +17 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-highlight
|
|
2
2
|
|
|
3
|
+
## 10.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 10.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`acbb2aa5cc917`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acbb2aa5cc917) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
3
16
|
## 10.0.18
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "highlightPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _highlightPlugin.highlightPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _highlightPlugin = require("../highlightPlugin");
|
|
@@ -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 { highlightPlugin } from '../highlightPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { HighlightPlugin } from '../highlightPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { HighlightPluginState } from '../pm-plugins/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { highlightPlugin } from '../highlightPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { HighlightPlugin } from '../highlightPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { HighlightPluginState } from '../pm-plugins/main';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-highlight/highlightPlugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/highlightPlugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/highlightPlugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/highlightPlugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/highlightPlugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/highlightPlugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-highlight/highlightPluginType",
|
|
3
|
+
"main": "../dist/cjs/entry-points/highlightPluginType.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/highlightPluginType.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/highlightPluginType.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/highlightPluginType.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/highlightPluginType.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-highlight/main",
|
|
3
|
+
"main": "../dist/cjs/entry-points/main.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/main.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/main.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/main.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/main.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-highlight",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.1.1",
|
|
4
4
|
"description": "Highlight plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"@atlaskit/css": "^0.19.0",
|
|
37
37
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
39
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
40
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^11.
|
|
41
|
-
"@atlaskit/editor-plugin-text-formatting": "^10.
|
|
42
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
39
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
40
|
+
"@atlaskit/editor-plugin-selection-toolbar": "^11.3.0",
|
|
41
|
+
"@atlaskit/editor-plugin-text-formatting": "^10.1.0",
|
|
42
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
43
43
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
44
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
45
|
-
"@atlaskit/editor-tables": "^2.
|
|
46
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
47
|
-
"@atlaskit/editor-toolbar-model": "^0.
|
|
44
|
+
"@atlaskit/editor-shared-styles": "^3.11.0",
|
|
45
|
+
"@atlaskit/editor-tables": "^2.10.0",
|
|
46
|
+
"@atlaskit/editor-toolbar": "^1.4.0",
|
|
47
|
+
"@atlaskit/editor-toolbar-model": "^0.5.0",
|
|
48
48
|
"@atlaskit/heading": "^5.4.0",
|
|
49
49
|
"@atlaskit/icon": "^34.5.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
51
|
"@atlaskit/primitives": "^19.0.0",
|
|
52
|
-
"@atlaskit/tmp-editor-statsig": "^80.
|
|
52
|
+
"@atlaskit/tmp-editor-statsig": "^80.2.0",
|
|
53
53
|
"@atlaskit/tokens": "^13.0.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0",
|
|
55
55
|
"@emotion/react": "^11.7.1"
|