@atlaskit/editor-plugin-selection 1.4.9 → 1.5.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 +18 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-selection
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#152197](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152197)
|
|
8
|
+
[`dddd3eca66a62`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dddd3eca66a62) -
|
|
9
|
+
Expose SelectionPluginOptions type.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 1.4.10
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 1.4.9
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { selectionPlugin } from './plugin';
|
|
2
2
|
export type { SelectionPlugin } from './plugin';
|
|
3
|
-
export type { EditorSelectionAPI, SetSelectionRelativeToNode } from './types';
|
|
3
|
+
export type { EditorSelectionAPI, SetSelectionRelativeToNode, SelectionPluginOptions, } from './types';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { selectionPlugin } from './plugin';
|
|
2
2
|
export type { SelectionPlugin } from './plugin';
|
|
3
|
-
export type { EditorSelectionAPI, SetSelectionRelativeToNode } from './types';
|
|
3
|
+
export type { EditorSelectionAPI, SetSelectionRelativeToNode, SelectionPluginOptions, } from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Selection plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"runReact18": false
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@atlaskit/editor-common": "^
|
|
23
|
+
"@atlaskit/editor-common": "^93.5.0",
|
|
24
24
|
"@atlaskit/editor-prosemirror": "6.0.0",
|
|
25
25
|
"@atlaskit/editor-shared-styles": "^3.0.0",
|
|
26
26
|
"@atlaskit/editor-tables": "^2.8.0",
|