@atlaskit/editor-plugin-selection-extension 13.1.16 → 13.2.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/dist/cjs/entry-points/selection-extension-plugin-type.js +1 -0
- package/dist/cjs/entry-points/selection-extension-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/selection-extension-plugin-type.js +0 -0
- package/dist/es2019/entry-points/selection-extension-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/selection-extension-plugin-type.js +0 -0
- package/dist/esm/entry-points/selection-extension-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/selection-extension-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/selection-extension-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/selection-extension-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/selection-extension-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/package.json +7 -7
- package/selection-extension-plugin/package.json +17 -0
- package/selection-extension-plugin-type/package.json +17 -0
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-selection-extension
|
|
2
2
|
|
|
3
|
+
## 13.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`41168b2bd2790`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41168b2bd2790) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 13.1.16
|
|
4
15
|
|
|
5
16
|
### 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, "selectionExtensionPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _selectionExtensionPlugin.selectionExtensionPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _selectionExtensionPlugin = require("../selectionExtensionPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { SelectionExtensionPlugin } from '../selectionExtensionPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { selectionExtensionPlugin } from '../selectionExtensionPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BlockMenuExtensionConfiguration, ExtensionConfiguration, ExtensionMenuItemConfiguration, ExtensionToolbarItemConfiguration, InsertAdfAtEndOfDocResult, LinkInsertionOption, ReplaceWithAdfResult, SelectionExtension, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, ToolbarExtensionConfiguration, SelectionAdfResult, SelectionExtensionCallbackOptions, SelectionRange, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { SelectionExtensionPlugin } from '../selectionExtensionPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { selectionExtensionPlugin } from '../selectionExtensionPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { BlockMenuExtensionConfiguration, ExtensionConfiguration, ExtensionMenuItemConfiguration, ExtensionToolbarItemConfiguration, InsertAdfAtEndOfDocResult, LinkInsertionOption, ReplaceWithAdfResult, SelectionExtension, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, ToolbarExtensionConfiguration, SelectionAdfResult, SelectionExtensionCallbackOptions, SelectionRange, } from '../types/index';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-extension",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.2.0",
|
|
4
4
|
"description": "editor-plugin-selection-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-block-controls": "^11.2.0",
|
|
40
40
|
"@atlaskit/editor-plugin-block-menu": "^9.1.0",
|
|
41
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^12.
|
|
42
|
-
"@atlaskit/editor-plugin-editor-viewmode-effects": "^10.
|
|
43
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
44
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^11.
|
|
45
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
46
|
-
"@atlaskit/editor-plugin-user-preferences": "^8.
|
|
41
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
|
|
42
|
+
"@atlaskit/editor-plugin-editor-viewmode-effects": "^10.1.0",
|
|
43
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
44
|
+
"@atlaskit/editor-plugin-selection-toolbar": "^11.3.0",
|
|
45
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
46
|
+
"@atlaskit/editor-plugin-user-preferences": "^8.2.0",
|
|
47
47
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
48
48
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
49
49
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-selection-extension/selection-extension-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/selection-extension-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/selection-extension-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/selection-extension-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/selection-extension-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/selection-extension-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-selection-extension/selection-extension-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/selection-extension-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/selection-extension-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/selection-extension-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/selection-extension-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/selection-extension-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-selection-extension/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
|
+
}
|