@atlaskit/editor-plugins 10.1.9 → 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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 10.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 10.1.10
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 10.1.9
4
16
 
5
17
  ### Patch Changes
@@ -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';
@@ -0,0 +1,2 @@
1
+ export { blockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
2
+ export type { 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';
@@ -0,0 +1,2 @@
1
+ export { blockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
2
+ export type { 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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "10.1.9",
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",
@@ -141,7 +142,8 @@
141
142
  "@atlaskit/editor-plugin-batch-attribute-updates": "3.0.2",
142
143
  "@atlaskit/editor-plugin-before-primary-toolbar": "3.0.0",
143
144
  "@atlaskit/editor-plugin-better-type-history": "3.0.2",
144
- "@atlaskit/editor-plugin-block-controls": "4.1.1",
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",
@@ -172,7 +174,7 @@
172
174
  "@atlaskit/editor-plugin-feature-flags": "2.0.0",
173
175
  "@atlaskit/editor-plugin-feedback-dialog": "3.0.0",
174
176
  "@atlaskit/editor-plugin-find-replace": "3.2.0",
175
- "@atlaskit/editor-plugin-floating-toolbar": "5.1.2",
177
+ "@atlaskit/editor-plugin-floating-toolbar": "5.1.3",
176
178
  "@atlaskit/editor-plugin-focus": "2.0.0",
177
179
  "@atlaskit/editor-plugin-fragment": "3.0.2",
178
180
  "@atlaskit/editor-plugin-grid": "3.1.0",
@@ -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.3.1",
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",