@atlaskit/editor-plugins 6.2.6 → 6.3.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 +22 -0
- package/code-block-advanced/package.json +14 -0
- package/dist/cjs/code-block-advanced/index.js +12 -0
- package/dist/es2019/code-block-advanced/index.js +4 -0
- package/dist/esm/code-block-advanced/index.js +4 -0
- package/dist/types/code-block-advanced/index.d.ts +2 -0
- package/dist/types-ts4.5/code-block-advanced/index.d.ts +2 -0
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 6.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#100411](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100411)
|
|
8
|
+
[`14499ab145534`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/14499ab145534) -
|
|
9
|
+
[ux] Introduces advanced code block as per:
|
|
10
|
+
https://hello.atlassian.net/wiki/spaces/EDITOR/pages/4632293323/Editor+RFC+063+Advanced+code+blocks.
|
|
11
|
+
This can be added to an existing editor preset to enrich the code block experience with syntax
|
|
12
|
+
highlighting and can be extended for other features via CodeMirror extensions (ie. autocompletion,
|
|
13
|
+
code folding etc.).
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
19
|
+
## 6.2.7
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
|
|
3
25
|
## 6.2.6
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/code-block-advanced",
|
|
3
|
+
"main": "../dist/cjs/code-block-advanced/index.js",
|
|
4
|
+
"module": "../dist/esm/code-block-advanced/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/code-block-advanced/index.js",
|
|
6
|
+
"types": "../dist/types/code-block-advanced/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.4": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/code-block-advanced/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, "codeBlockAdvancedPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _editorPluginCodeBlockAdvanced.codeBlockAdvancedPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _editorPluginCodeBlockAdvanced = require("@atlaskit/editor-plugin-code-block-advanced");
|
|
@@ -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 { codeBlockAdvancedPlugin } from '@atlaskit/editor-plugin-code-block-advanced';
|
|
@@ -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 { codeBlockAdvancedPlugin } from '@atlaskit/editor-plugin-code-block-advanced';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.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",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"./clipboard": "./src/clipboard/index.ts",
|
|
48
48
|
"./code-bidi-warning": "./src/code-bidi-warning/index.ts",
|
|
49
49
|
"./code-block": "./src/code-block/index.ts",
|
|
50
|
+
"./code-block-advanced": "./src/code-block-advanced/index.ts",
|
|
50
51
|
"./collab-edit": "./src/collab-edit/index.ts",
|
|
51
52
|
"./composition": "./src/composition/index.ts",
|
|
52
53
|
"./connectivity": "./src/connectivity/index.ts",
|
|
@@ -137,7 +138,7 @@
|
|
|
137
138
|
"@atlaskit/editor-plugin-batch-attribute-updates": "1.1.11",
|
|
138
139
|
"@atlaskit/editor-plugin-before-primary-toolbar": "1.3.16",
|
|
139
140
|
"@atlaskit/editor-plugin-better-type-history": "1.9.11",
|
|
140
|
-
"@atlaskit/editor-plugin-block-controls": "2.19.
|
|
141
|
+
"@atlaskit/editor-plugin-block-controls": "2.19.1",
|
|
141
142
|
"@atlaskit/editor-plugin-block-type": "4.1.3",
|
|
142
143
|
"@atlaskit/editor-plugin-border": "1.7.12",
|
|
143
144
|
"@atlaskit/editor-plugin-breakout": "1.9.15",
|
|
@@ -146,7 +147,8 @@
|
|
|
146
147
|
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "1.3.16",
|
|
147
148
|
"@atlaskit/editor-plugin-clipboard": "1.3.15",
|
|
148
149
|
"@atlaskit/editor-plugin-code-bidi-warning": "1.2.17",
|
|
149
|
-
"@atlaskit/editor-plugin-code-block": "3.5.
|
|
150
|
+
"@atlaskit/editor-plugin-code-block": "3.5.16",
|
|
151
|
+
"@atlaskit/editor-plugin-code-block-advanced": "1.0.0",
|
|
150
152
|
"@atlaskit/editor-plugin-collab-edit": "2.1.3",
|
|
151
153
|
"@atlaskit/editor-plugin-composition": "1.2.16",
|
|
152
154
|
"@atlaskit/editor-plugin-connectivity": "1.1.4",
|
|
@@ -169,7 +171,7 @@
|
|
|
169
171
|
"@atlaskit/editor-plugin-feature-flags": "1.2.16",
|
|
170
172
|
"@atlaskit/editor-plugin-feedback-dialog": "1.1.14",
|
|
171
173
|
"@atlaskit/editor-plugin-find-replace": "1.7.22",
|
|
172
|
-
"@atlaskit/editor-plugin-floating-toolbar": "1.14.
|
|
174
|
+
"@atlaskit/editor-plugin-floating-toolbar": "1.14.18",
|
|
173
175
|
"@atlaskit/editor-plugin-focus": "1.4.11",
|
|
174
176
|
"@atlaskit/editor-plugin-fragment": "1.9.11",
|
|
175
177
|
"@atlaskit/editor-plugin-grid": "1.2.19",
|
|
@@ -180,16 +182,16 @@
|
|
|
180
182
|
"@atlaskit/editor-plugin-hyperlink": "3.2.31",
|
|
181
183
|
"@atlaskit/editor-plugin-image-upload": "1.2.17",
|
|
182
184
|
"@atlaskit/editor-plugin-indentation": "1.8.12",
|
|
183
|
-
"@atlaskit/editor-plugin-insert-block": "2.4.
|
|
185
|
+
"@atlaskit/editor-plugin-insert-block": "2.4.32",
|
|
184
186
|
"@atlaskit/editor-plugin-layout": "1.12.21",
|
|
185
187
|
"@atlaskit/editor-plugin-list": "3.9.11",
|
|
186
188
|
"@atlaskit/editor-plugin-loom": "3.1.33",
|
|
187
189
|
"@atlaskit/editor-plugin-max-content-size": "1.3.15",
|
|
188
190
|
"@atlaskit/editor-plugin-media": "1.44.2",
|
|
189
191
|
"@atlaskit/editor-plugin-media-insert": "5.0.0",
|
|
190
|
-
"@atlaskit/editor-plugin-mentions": "2.11.
|
|
192
|
+
"@atlaskit/editor-plugin-mentions": "2.11.3",
|
|
191
193
|
"@atlaskit/editor-plugin-panel": "3.2.3",
|
|
192
|
-
"@atlaskit/editor-plugin-paste": "2.0.
|
|
194
|
+
"@atlaskit/editor-plugin-paste": "2.0.15",
|
|
193
195
|
"@atlaskit/editor-plugin-paste-options-toolbar": "1.4.7",
|
|
194
196
|
"@atlaskit/editor-plugin-placeholder": "1.3.2",
|
|
195
197
|
"@atlaskit/editor-plugin-placeholder-text": "1.9.2",
|
|
@@ -198,7 +200,7 @@
|
|
|
198
200
|
"@atlaskit/editor-plugin-rule": "1.9.11",
|
|
199
201
|
"@atlaskit/editor-plugin-save-on-enter": "1.3.15",
|
|
200
202
|
"@atlaskit/editor-plugin-scroll-into-view": "1.3.15",
|
|
201
|
-
"@atlaskit/editor-plugin-selection": "1.6.
|
|
203
|
+
"@atlaskit/editor-plugin-selection": "1.6.15",
|
|
202
204
|
"@atlaskit/editor-plugin-selection-marker": "1.5.19",
|
|
203
205
|
"@atlaskit/editor-plugin-selection-toolbar": "1.5.4",
|
|
204
206
|
"@atlaskit/editor-plugin-status": "2.6.6",
|