@atlaskit/editor-plugins 10.1.82 → 10.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 +11 -0
- package/dist/cjs/synced-block/index.js +12 -0
- package/dist/cjs/synced-block/ui/extensions/synced-block/index.js +18 -0
- package/dist/es2019/synced-block/index.js +4 -0
- package/dist/es2019/synced-block/ui/extensions/synced-block/index.js +4 -0
- package/dist/esm/synced-block/index.js +4 -0
- package/dist/esm/synced-block/ui/extensions/synced-block/index.js +4 -0
- package/dist/types/synced-block/index.d.ts +2 -0
- package/dist/types/synced-block/ui/extensions/synced-block/index.d.ts +1 -0
- package/dist/types-ts4.5/synced-block/index.d.ts +2 -0
- package/dist/types-ts4.5/synced-block/ui/extensions/synced-block/index.d.ts +1 -0
- package/package.json +5 -2
- package/synced-block/SyncedBlock/package.json +14 -0
- package/synced-block/package.json +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 10.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c29118e6ca79d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c29118e6ca79d) -
|
|
8
|
+
ED-28986 create initial version of synced blocks
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 10.1.82
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "syncedBlockPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _editorPluginSyncedBlock.syncedBlockPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _editorPluginSyncedBlock = require("@atlaskit/editor-plugin-synced-block");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "getSyncedBlockExtensionProvider", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _SyncedBlock.getSyncedBlockExtensionProvider;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "getSyncedBlockManifest", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _SyncedBlock.getSyncedBlockManifest;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _SyncedBlock = require("@atlaskit/editor-plugin-synced-block/SyncedBlock");
|
|
@@ -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 { syncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
|
|
@@ -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 { getSyncedBlockExtensionProvider, getSyncedBlockManifest } from '@atlaskit/editor-plugin-synced-block/SyncedBlock';
|
|
@@ -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 { syncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
|
|
@@ -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 { getSyncedBlockExtensionProvider, getSyncedBlockManifest } from '@atlaskit/editor-plugin-synced-block/SyncedBlock';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getSyncedBlockExtensionProvider, getSyncedBlockManifest, } from '@atlaskit/editor-plugin-synced-block/SyncedBlock';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getSyncedBlockExtensionProvider, getSyncedBlockManifest, } from '@atlaskit/editor-plugin-synced-block/SyncedBlock';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.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",
|
|
@@ -115,6 +115,8 @@
|
|
|
115
115
|
"./show-diff": "./src/show-diff/index.ts",
|
|
116
116
|
"./status": "./src/status/index.ts",
|
|
117
117
|
"./submit-editor": "./src/submit-editor/index.ts",
|
|
118
|
+
"./synced-block/SyncedBlock": "./src/synced-block/ui/extensions/synced-block/index.ts",
|
|
119
|
+
"./synced-block": "./src/synced-block/index.ts",
|
|
118
120
|
"./table/ui/common-styles": "./src/table/ui/common-styles.ts",
|
|
119
121
|
"./table/types": "./src/table/types/index.ts",
|
|
120
122
|
"./table": "./src/table/index.ts",
|
|
@@ -212,12 +214,13 @@
|
|
|
212
214
|
"@atlaskit/editor-plugin-save-on-enter": "3.0.1",
|
|
213
215
|
"@atlaskit/editor-plugin-scroll-into-view": "3.0.2",
|
|
214
216
|
"@atlaskit/editor-plugin-selection": "3.2.1",
|
|
215
|
-
"@atlaskit/editor-plugin-selection-extension": "3.
|
|
217
|
+
"@atlaskit/editor-plugin-selection-extension": "3.6.0",
|
|
216
218
|
"@atlaskit/editor-plugin-selection-marker": "3.0.8",
|
|
217
219
|
"@atlaskit/editor-plugin-selection-toolbar": "4.3.10",
|
|
218
220
|
"@atlaskit/editor-plugin-show-diff": "0.1.6",
|
|
219
221
|
"@atlaskit/editor-plugin-status": "4.1.9",
|
|
220
222
|
"@atlaskit/editor-plugin-submit-editor": "3.1.1",
|
|
223
|
+
"@atlaskit/editor-plugin-synced-block": "0.1.0",
|
|
221
224
|
"@atlaskit/editor-plugin-table": "12.3.1",
|
|
222
225
|
"@atlaskit/editor-plugin-tasks-and-decisions": "6.4.5",
|
|
223
226
|
"@atlaskit/editor-plugin-text-color": "3.1.15",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/synced-block/SyncedBlock",
|
|
3
|
+
"main": "../../dist/cjs/synced-block/ui/extensions/synced-block/index.js",
|
|
4
|
+
"module": "../../dist/esm/synced-block/ui/extensions/synced-block/index.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/synced-block/ui/extensions/synced-block/index.js",
|
|
6
|
+
"types": "../../dist/types/synced-block/ui/extensions/synced-block/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.9": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../../dist/types-ts4.5/synced-block/ui/extensions/synced-block/index.d.ts"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugins/synced-block",
|
|
3
|
+
"main": "../dist/cjs/synced-block/index.js",
|
|
4
|
+
"module": "../dist/esm/synced-block/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/synced-block/index.js",
|
|
6
|
+
"types": "../dist/types/synced-block/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.9": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/synced-block/index.d.ts"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|