@atlaskit/editor-plugin-selection-marker 1.5.1 → 1.5.2
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 +8 -0
- package/dist/cjs/index.js +2 -2
- package/dist/es2019/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/pm-plugins/main.d.ts +1 -1
- package/dist/types/selectionMarkerPlugin.d.ts +2 -0
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/main.d.ts +1 -1
- package/dist/types-ts4.5/selectionMarkerPlugin.d.ts +2 -0
- package/package.json +7 -6
- package/dist/types/plugin.d.ts +0 -2
- package/dist/types-ts4.5/plugin.d.ts +0 -2
- /package/dist/cjs/{plugin.js → selectionMarkerPlugin.js} +0 -0
- /package/dist/cjs/{types.js → selectionMarkerPluginType.js} +0 -0
- /package/dist/es2019/{plugin.js → selectionMarkerPlugin.js} +0 -0
- /package/dist/es2019/{types.js → selectionMarkerPluginType.js} +0 -0
- /package/dist/esm/{plugin.js → selectionMarkerPlugin.js} +0 -0
- /package/dist/esm/{types.js → selectionMarkerPluginType.js} +0 -0
- /package/dist/types/{types.d.ts → selectionMarkerPluginType.d.ts} +0 -0
- /package/dist/types-ts4.5/{types.d.ts → selectionMarkerPluginType.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-selection-marker
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#136545](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/136545)
|
|
8
|
+
[`4a5302d052562`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4a5302d052562) -
|
|
9
|
+
Update file names due to stricter linting. No code changes
|
|
10
|
+
|
|
3
11
|
## 1.5.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "selectionMarkerPlugin", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function get() {
|
|
9
|
-
return
|
|
9
|
+
return _selectionMarkerPlugin.selectionMarkerPlugin;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
var
|
|
12
|
+
var _selectionMarkerPlugin = require("./selectionMarkerPlugin");
|
package/dist/es2019/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { selectionMarkerPlugin } from './
|
|
1
|
+
export { selectionMarkerPlugin } from './selectionMarkerPlugin';
|
package/dist/esm/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { selectionMarkerPlugin } from './
|
|
1
|
+
export { selectionMarkerPlugin } from './selectionMarkerPlugin';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { selectionMarkerPlugin } from './
|
|
2
|
-
export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './
|
|
1
|
+
export { selectionMarkerPlugin } from './selectionMarkerPlugin';
|
|
2
|
+
export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './selectionMarkerPluginType';
|
|
@@ -3,7 +3,7 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
|
3
3
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
6
|
-
import type { SelectionMarkerPlugin } from '../
|
|
6
|
+
import type { SelectionMarkerPlugin } from '../selectionMarkerPluginType';
|
|
7
7
|
interface PluginState {
|
|
8
8
|
decorations: DecorationSet;
|
|
9
9
|
shouldHideDecorations: boolean;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { selectionMarkerPlugin } from './
|
|
2
|
-
export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './
|
|
1
|
+
export { selectionMarkerPlugin } from './selectionMarkerPlugin';
|
|
2
|
+
export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './selectionMarkerPluginType';
|
|
@@ -3,7 +3,7 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
|
3
3
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
6
|
-
import type { SelectionMarkerPlugin } from '../
|
|
6
|
+
import type { SelectionMarkerPlugin } from '../selectionMarkerPluginType';
|
|
7
7
|
interface PluginState {
|
|
8
8
|
decorations: DecorationSet;
|
|
9
9
|
shouldHideDecorations: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-marker",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Selection marker plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
"registry": "https://registry.npmjs.org/"
|
|
9
9
|
},
|
|
10
10
|
"atlassian": {
|
|
11
|
-
"team": "Editor: Lego"
|
|
12
|
-
"inPublicMirror": false,
|
|
13
|
-
"releaseModel": "continuous"
|
|
11
|
+
"team": "Editor: Lego"
|
|
14
12
|
},
|
|
15
13
|
"repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
|
|
16
14
|
"main": "dist/cjs/index.js",
|
|
@@ -31,12 +29,12 @@
|
|
|
31
29
|
".": "./src/index.ts"
|
|
32
30
|
},
|
|
33
31
|
"dependencies": {
|
|
34
|
-
"@atlaskit/editor-common": "^88.
|
|
32
|
+
"@atlaskit/editor-common": "^88.9.0",
|
|
35
33
|
"@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
|
|
36
34
|
"@atlaskit/editor-plugin-focus": "^1.3.0",
|
|
37
35
|
"@atlaskit/editor-plugin-type-ahead": "^1.8.0",
|
|
38
36
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
39
|
-
"@atlaskit/primitives": "^12.
|
|
37
|
+
"@atlaskit/primitives": "^12.1.0",
|
|
40
38
|
"@atlaskit/theme": "^13.0.0",
|
|
41
39
|
"@atlaskit/tokens": "^1.59.0",
|
|
42
40
|
"@babel/runtime": "^7.0.0",
|
|
@@ -58,6 +56,9 @@
|
|
|
58
56
|
},
|
|
59
57
|
"techstack": {
|
|
60
58
|
"@atlassian/frontend": {
|
|
59
|
+
"code-structure": [
|
|
60
|
+
"editor-plugin"
|
|
61
|
+
],
|
|
61
62
|
"import-structure": [
|
|
62
63
|
"atlassian-conventions"
|
|
63
64
|
],
|
package/dist/types/plugin.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|