@atlaskit/editor-plugins 10.1.10 → 10.1.11
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 +6 -0
- package/block-menu/package.json +14 -0
- package/dist/cjs/block-menu/index.js +12 -0
- package/dist/es2019/block-menu/index.js +4 -0
- package/dist/esm/block-menu/index.js +4 -0
- package/dist/types/block-menu/index.d.ts +2 -0
- package/dist/types/selection-extension/index.d.ts +1 -1
- package/dist/types-ts4.5/block-menu/index.d.ts +2 -0
- package/dist/types-ts4.5/selection-extension/index.d.ts +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/block-menu",
|
|
3
|
+
"main": "../dist/cjs/block-menu/index.js",
|
|
4
|
+
"module": "../dist/esm/block-menu/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/block-menu/index.js",
|
|
6
|
+
"types": "../dist/types/block-menu/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.4": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/block-menu/index.d.ts"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "blockMenuPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _editorPluginBlockMenu.blockMenuPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _editorPluginBlockMenu = require("@atlaskit/editor-plugin-block-menu");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
|
+
// Disable no-re-export rule for entry point files
|
|
3
|
+
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
+
export { blockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
|
+
// Disable no-re-export rule for entry point files
|
|
3
|
+
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
+
export { blockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
|
|
2
|
-
export type { SelectionExtensionPlugin, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtension, LinkInsertionOption, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, DynamicSelectionExtension, } from '@atlaskit/editor-plugin-selection-extension';
|
|
2
|
+
export type { SelectionExtensionPlugin, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtension, LinkInsertionOption, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, DynamicSelectionExtension, ReplaceWithAdfResult, } from '@atlaskit/editor-plugin-selection-extension';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
|
|
2
|
-
export type { SelectionExtensionPlugin, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtension, LinkInsertionOption, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, DynamicSelectionExtension, } from '@atlaskit/editor-plugin-selection-extension';
|
|
2
|
+
export type { SelectionExtensionPlugin, SelectionExtensionComponentProps, SelectionExtensionPluginOptions, SelectionExtension, LinkInsertionOption, SelectionExtensionPluginState, SelectionExtensionSelectionInfo, DynamicSelectionExtension, ReplaceWithAdfResult, } from '@atlaskit/editor-plugin-selection-extension';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.11",
|
|
4
4
|
"description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"./before-primary-toolbar": "./src/before-primary-toolbar/index.ts",
|
|
37
37
|
"./better-type-history": "./src/better-type-history/index.ts",
|
|
38
38
|
"./block-controls": "./src/block-controls/index.ts",
|
|
39
|
+
"./block-menu": "./src/block-menu/index.ts",
|
|
39
40
|
"./block-type/consts": "./src/block-type/ui/consts.ts",
|
|
40
41
|
"./block-type/styles": "./src/block-type/ui/styles.ts",
|
|
41
42
|
"./block-type": "./src/block-type/index.ts",
|
|
@@ -142,6 +143,7 @@
|
|
|
142
143
|
"@atlaskit/editor-plugin-before-primary-toolbar": "3.0.0",
|
|
143
144
|
"@atlaskit/editor-plugin-better-type-history": "3.0.2",
|
|
144
145
|
"@atlaskit/editor-plugin-block-controls": "4.1.2",
|
|
146
|
+
"@atlaskit/editor-plugin-block-menu": "0.0.0",
|
|
145
147
|
"@atlaskit/editor-plugin-block-type": "6.1.1",
|
|
146
148
|
"@atlaskit/editor-plugin-border": "3.0.2",
|
|
147
149
|
"@atlaskit/editor-plugin-breakout": "3.1.2",
|
|
@@ -205,7 +207,7 @@
|
|
|
205
207
|
"@atlaskit/editor-plugin-save-on-enter": "3.0.0",
|
|
206
208
|
"@atlaskit/editor-plugin-scroll-into-view": "3.0.0",
|
|
207
209
|
"@atlaskit/editor-plugin-selection": "3.0.3",
|
|
208
|
-
"@atlaskit/editor-plugin-selection-extension": "3.
|
|
210
|
+
"@atlaskit/editor-plugin-selection-extension": "3.4.0",
|
|
209
211
|
"@atlaskit/editor-plugin-selection-marker": "3.0.2",
|
|
210
212
|
"@atlaskit/editor-plugin-selection-toolbar": "4.2.0",
|
|
211
213
|
"@atlaskit/editor-plugin-show-diff": "0.0.0",
|