@atlaskit/editor-plugins 7.1.9 → 7.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 7.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#107474](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107474)
8
+ [`5b698c7925d2b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5b698c7925d2b) -
9
+ [ux] ED-26365 first release of editor-plugin-selection-extension
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 7.1.10
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 7.1.9
4
22
 
5
23
  ### Patch Changes
@@ -9,4 +9,10 @@ Object.defineProperty(exports, "editorViewModePlugin", {
9
9
  return _editorPluginEditorViewmode.editorViewModePlugin;
10
10
  }
11
11
  });
12
+ Object.defineProperty(exports, "editorViewModeWithGracefulEditPlugin", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _editorPluginEditorViewmode.editorViewModeWithGracefulEditPlugin;
16
+ }
17
+ });
12
18
  var _editorPluginEditorViewmode = require("@atlaskit/editor-plugin-editor-viewmode");
@@ -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 _editorPluginSelectionExtension.selectionExtensionPlugin;
10
+ }
11
+ });
12
+ var _editorPluginSelectionExtension = require("@atlaskit/editor-plugin-selection-extension");
@@ -1,4 +1,4 @@
1
1
  // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
2
  // Disable no-re-export rule for entry point files
3
3
  /* eslint-disable @atlaskit/editor/no-re-export */
4
- export { editorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
4
+ export { editorViewModePlugin, editorViewModeWithGracefulEditPlugin } from '@atlaskit/editor-plugin-editor-viewmode';
@@ -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 { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
@@ -1,4 +1,4 @@
1
1
  // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
2
  // Disable no-re-export rule for entry point files
3
3
  /* eslint-disable @atlaskit/editor/no-re-export */
4
- export { editorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
4
+ export { editorViewModePlugin, editorViewModeWithGracefulEditPlugin } from '@atlaskit/editor-plugin-editor-viewmode';
@@ -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 { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
@@ -1,2 +1,2 @@
1
- export { editorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
1
+ export { editorViewModePlugin, editorViewModeWithGracefulEditPlugin, } from '@atlaskit/editor-plugin-editor-viewmode';
2
2
  export type { EditorViewModePluginConfig, EditorViewModePluginState, EditorViewModePlugin, ViewMode, ContentMode, } from '@atlaskit/editor-plugin-editor-viewmode';
@@ -0,0 +1,2 @@
1
+ export { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
2
+ export type { SelectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
@@ -1,2 +1,2 @@
1
- export { editorViewModePlugin } from '@atlaskit/editor-plugin-editor-viewmode';
1
+ export { editorViewModePlugin, editorViewModeWithGracefulEditPlugin, } from '@atlaskit/editor-plugin-editor-viewmode';
2
2
  export type { EditorViewModePluginConfig, EditorViewModePluginState, EditorViewModePlugin, ViewMode, ContentMode, } from '@atlaskit/editor-plugin-editor-viewmode';
@@ -0,0 +1,2 @@
1
+ export { selectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
2
+ export type { SelectionExtensionPlugin } from '@atlaskit/editor-plugin-selection-extension';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "7.1.9",
3
+ "version": "7.2.0",
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",
@@ -104,6 +104,7 @@
104
104
  "./scroll-into-view": "./src/scroll-into-view/index.ts",
105
105
  "./selection/types": "./src/selection/types/index.ts",
106
106
  "./selection": "./src/selection/index.ts",
107
+ "./selection-extension": "./src/selection-extension/index.ts",
107
108
  "./selection-marker": "./src/selection-marker/index.ts",
108
109
  "./selection-toolbar": "./src/selection-toolbar/index.ts",
109
110
  "./status": "./src/status/index.ts",
@@ -159,7 +160,7 @@
159
160
  "@atlaskit/editor-plugin-date": "2.5.1",
160
161
  "@atlaskit/editor-plugin-decorations": "1.4.0",
161
162
  "@atlaskit/editor-plugin-editor-disabled": "1.4.0",
162
- "@atlaskit/editor-plugin-editor-viewmode": "2.1.17",
163
+ "@atlaskit/editor-plugin-editor-viewmode": "2.1.18",
163
164
  "@atlaskit/editor-plugin-editor-viewmode-effects": "1.1.19",
164
165
  "@atlaskit/editor-plugin-emoji": "2.8.1",
165
166
  "@atlaskit/editor-plugin-engagement-platform": "2.2.7",
@@ -182,7 +183,7 @@
182
183
  "@atlaskit/editor-plugin-insert-block": "2.5.1",
183
184
  "@atlaskit/editor-plugin-layout": "1.13.1",
184
185
  "@atlaskit/editor-plugin-list": "3.9.11",
185
- "@atlaskit/editor-plugin-loom": "3.2.2",
186
+ "@atlaskit/editor-plugin-loom": "3.2.3",
186
187
  "@atlaskit/editor-plugin-max-content-size": "1.4.0",
187
188
  "@atlaskit/editor-plugin-media": "1.44.13",
188
189
  "@atlaskit/editor-plugin-media-insert": "5.0.5",
@@ -198,13 +199,14 @@
198
199
  "@atlaskit/editor-plugin-rule": "1.10.0",
199
200
  "@atlaskit/editor-plugin-save-on-enter": "1.3.15",
200
201
  "@atlaskit/editor-plugin-scroll-into-view": "1.4.0",
201
- "@atlaskit/editor-plugin-selection": "1.6.26",
202
+ "@atlaskit/editor-plugin-selection": "1.6.27",
203
+ "@atlaskit/editor-plugin-selection-extension": "1.0.0",
202
204
  "@atlaskit/editor-plugin-selection-marker": "1.7.1",
203
205
  "@atlaskit/editor-plugin-selection-toolbar": "1.6.1",
204
206
  "@atlaskit/editor-plugin-status": "2.7.1",
205
207
  "@atlaskit/editor-plugin-submit-editor": "1.4.0",
206
208
  "@atlaskit/editor-plugin-table": "9.3.4",
207
- "@atlaskit/editor-plugin-tasks-and-decisions": "2.13.2",
209
+ "@atlaskit/editor-plugin-tasks-and-decisions": "2.13.4",
208
210
  "@atlaskit/editor-plugin-text-color": "1.17.1",
209
211
  "@atlaskit/editor-plugin-text-formatting": "1.17.1",
210
212
  "@atlaskit/editor-plugin-toolbar-lists-indentation": "1.15.1",
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugins/selection-extension",
3
+ "main": "../dist/cjs/selection-extension/index.js",
4
+ "module": "../dist/esm/selection-extension/index.js",
5
+ "module:es2019": "../dist/es2019/selection-extension/index.js",
6
+ "types": "../dist/types/selection-extension/index.d.ts",
7
+ "typesVersions": {
8
+ ">=4.5 <5.4": {
9
+ "*": [
10
+ "../dist/types-ts4.5/selection-extension/index.d.ts"
11
+ ]
12
+ }
13
+ }
14
+ }