@atlaskit/editor-plugins 7.1.10 → 7.2.1
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/cjs/editor-viewmode/index.js +6 -0
- package/dist/cjs/selection-extension/index.js +12 -0
- package/dist/es2019/editor-viewmode/index.js +1 -1
- package/dist/es2019/selection-extension/index.js +4 -0
- package/dist/esm/editor-viewmode/index.js +1 -1
- package/dist/esm/selection-extension/index.js +4 -0
- package/dist/types/editor-viewmode/index.d.ts +1 -1
- package/dist/types/selection-extension/index.d.ts +2 -0
- package/dist/types-ts4.5/editor-viewmode/index.d.ts +1 -1
- package/dist/types-ts4.5/selection-extension/index.d.ts +2 -0
- package/package.json +12 -10
- package/selection-extension/package.json +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 7.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 7.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#107474](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107474)
|
|
14
|
+
[`5b698c7925d2b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5b698c7925d2b) -
|
|
15
|
+
[ux] ED-26365 first release of editor-plugin-selection-extension
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 7.1.10
|
|
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';
|
|
@@ -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';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "7.1
|
|
3
|
+
"version": "7.2.1",
|
|
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",
|
|
@@ -137,7 +138,7 @@
|
|
|
137
138
|
"@atlaskit/editor-plugin-batch-attribute-updates": "1.2.0",
|
|
138
139
|
"@atlaskit/editor-plugin-before-primary-toolbar": "1.4.0",
|
|
139
140
|
"@atlaskit/editor-plugin-better-type-history": "1.10.0",
|
|
140
|
-
"@atlaskit/editor-plugin-block-controls": "2.
|
|
141
|
+
"@atlaskit/editor-plugin-block-controls": "2.22.0",
|
|
141
142
|
"@atlaskit/editor-plugin-block-type": "4.2.2",
|
|
142
143
|
"@atlaskit/editor-plugin-border": "1.8.0",
|
|
143
144
|
"@atlaskit/editor-plugin-breakout": "1.10.2",
|
|
@@ -152,23 +153,23 @@
|
|
|
152
153
|
"@atlaskit/editor-plugin-connectivity": "1.1.4",
|
|
153
154
|
"@atlaskit/editor-plugin-content-insertion": "1.12.0",
|
|
154
155
|
"@atlaskit/editor-plugin-context-identifier": "1.3.15",
|
|
155
|
-
"@atlaskit/editor-plugin-context-panel": "
|
|
156
|
+
"@atlaskit/editor-plugin-context-panel": "2.0.0",
|
|
156
157
|
"@atlaskit/editor-plugin-copy-button": "1.4.0",
|
|
157
158
|
"@atlaskit/editor-plugin-custom-autoformat": "1.5.0",
|
|
158
159
|
"@atlaskit/editor-plugin-data-consumer": "1.8.0",
|
|
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.
|
|
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",
|
|
166
167
|
"@atlaskit/editor-plugin-expand": "2.11.1",
|
|
167
|
-
"@atlaskit/editor-plugin-extension": "3.1.
|
|
168
|
+
"@atlaskit/editor-plugin-extension": "3.1.5",
|
|
168
169
|
"@atlaskit/editor-plugin-feature-flags": "1.2.16",
|
|
169
170
|
"@atlaskit/editor-plugin-feedback-dialog": "1.2.0",
|
|
170
171
|
"@atlaskit/editor-plugin-find-replace": "1.8.1",
|
|
171
|
-
"@atlaskit/editor-plugin-floating-toolbar": "1.16.
|
|
172
|
+
"@atlaskit/editor-plugin-floating-toolbar": "1.16.2",
|
|
172
173
|
"@atlaskit/editor-plugin-focus": "1.4.11",
|
|
173
174
|
"@atlaskit/editor-plugin-fragment": "1.9.11",
|
|
174
175
|
"@atlaskit/editor-plugin-grid": "1.3.0",
|
|
@@ -180,9 +181,9 @@
|
|
|
180
181
|
"@atlaskit/editor-plugin-image-upload": "1.3.0",
|
|
181
182
|
"@atlaskit/editor-plugin-indentation": "1.9.0",
|
|
182
183
|
"@atlaskit/editor-plugin-insert-block": "2.5.1",
|
|
183
|
-
"@atlaskit/editor-plugin-layout": "1.
|
|
184
|
+
"@atlaskit/editor-plugin-layout": "1.14.0",
|
|
184
185
|
"@atlaskit/editor-plugin-list": "3.9.11",
|
|
185
|
-
"@atlaskit/editor-plugin-loom": "3.2.
|
|
186
|
+
"@atlaskit/editor-plugin-loom": "3.2.4",
|
|
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.
|
|
202
|
+
"@atlaskit/editor-plugin-selection": "1.6.28",
|
|
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.
|
|
209
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "2.13.5",
|
|
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
|
+
}
|