@atlaskit/editor-plugins 10.3.17 → 10.4.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,16 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 10.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`168d76bdf8be6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/168d76bdf8be6) -
8
+ Created new synced-block plugin (scaffolding only)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
3
14
  ## 10.3.17
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,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 { syncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
@@ -0,0 +1,2 @@
1
+ export { syncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
2
+ export type { SyncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
@@ -0,0 +1,2 @@
1
+ export { syncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
2
+ export type { SyncedBlockPlugin } from '@atlaskit/editor-plugin-synced-block';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "10.3.17",
3
+ "version": "10.4.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",
@@ -87,7 +87,7 @@
87
87
  "@atlaskit/editor-plugin-limited-mode": "1.0.2",
88
88
  "@atlaskit/editor-plugin-list": "6.0.2",
89
89
  "@atlaskit/editor-plugin-local-id": "2.0.1",
90
- "@atlaskit/editor-plugin-loom": "6.0.4",
90
+ "@atlaskit/editor-plugin-loom": "6.0.5",
91
91
  "@atlaskit/editor-plugin-max-content-size": "4.0.0",
92
92
  "@atlaskit/editor-plugin-media": "6.1.0",
93
93
  "@atlaskit/editor-plugin-media-insert": "10.0.1",
@@ -107,10 +107,11 @@
107
107
  "@atlaskit/editor-plugin-selection": "4.0.0",
108
108
  "@atlaskit/editor-plugin-selection-extension": "4.2.1",
109
109
  "@atlaskit/editor-plugin-selection-marker": "4.0.1",
110
- "@atlaskit/editor-plugin-selection-toolbar": "5.0.5",
110
+ "@atlaskit/editor-plugin-selection-toolbar": "5.0.6",
111
111
  "@atlaskit/editor-plugin-show-diff": "1.0.1",
112
112
  "@atlaskit/editor-plugin-status": "5.0.1",
113
113
  "@atlaskit/editor-plugin-submit-editor": "4.0.0",
114
+ "@atlaskit/editor-plugin-synced-block": "1.0.0",
114
115
  "@atlaskit/editor-plugin-synced-block-prototype": "1.1.0",
115
116
  "@atlaskit/editor-plugin-table": "13.0.8",
116
117
  "@atlaskit/editor-plugin-tasks-and-decisions": "7.0.6",
@@ -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
+ }