@atlaskit/editor-plugin-media 12.5.6 → 12.6.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-plugin-media
2
2
 
3
+ ## 12.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
3
14
  ## 12.5.6
4
15
 
5
16
  ### Patch Changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "mediaPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _mediaPlugin.mediaPlugin;
10
+ }
11
+ });
12
+ var _mediaPlugin = require("../mediaPlugin");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "computeReplacementDisplayWidth", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _nodeviewHelpers.computeReplacementDisplayWidth;
10
+ }
11
+ });
12
+ var _nodeviewHelpers = require("../nodeviews/nodeviewHelpers");
@@ -0,0 +1 @@
1
+ "use strict";
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { mediaPlugin } from '../mediaPlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { computeReplacementDisplayWidth } from '../nodeviews/nodeviewHelpers';
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { mediaPlugin } from '../mediaPlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { computeReplacementDisplayWidth } from '../nodeviews/nodeviewHelpers';
File without changes
@@ -0,0 +1 @@
1
+ export type { MediaNextEditorPluginType as MediaPlugin, MediaPluginDependencies, } from '../mediaPluginType';
@@ -0,0 +1 @@
1
+ export { mediaPlugin } from '../mediaPlugin';
@@ -0,0 +1 @@
1
+ export { computeReplacementDisplayWidth } from '../nodeviews/nodeviewHelpers';
@@ -0,0 +1 @@
1
+ export type { CustomMediaPicker, ForwardRef, InsertMediaAsMediaSingle, Listener, MediaCopyScope, MediaDecorationSpec, MediaEditorState, MediaFloatingToolbarOptions, MediaOptions, MediaPluginOptions, MediaPluginState, MediaSingleOptions, MediaSingleWithType, MediaState, MediaStateEventListener, MediaStateEventSubscriber, MediaStateStatus, MediaToolbarBaseConfig, MobileUploadEndEventPayload, ProsemirrorGetPosHandler, ReactNodeProps, SupportedMediaAttributes, getPosHandler, getPosHandlerNode, } from '../types/index';
@@ -0,0 +1 @@
1
+ export type { MediaNextEditorPluginType as MediaPlugin, MediaPluginDependencies, } from '../mediaPluginType';
@@ -0,0 +1 @@
1
+ export { mediaPlugin } from '../mediaPlugin';
@@ -0,0 +1 @@
1
+ export { computeReplacementDisplayWidth } from '../nodeviews/nodeviewHelpers';
@@ -0,0 +1 @@
1
+ export type { CustomMediaPicker, ForwardRef, InsertMediaAsMediaSingle, Listener, MediaCopyScope, MediaDecorationSpec, MediaEditorState, MediaFloatingToolbarOptions, MediaOptions, MediaPluginOptions, MediaPluginState, MediaSingleOptions, MediaSingleWithType, MediaState, MediaStateEventListener, MediaStateEventSubscriber, MediaStateStatus, MediaToolbarBaseConfig, MobileUploadEndEventPayload, ProsemirrorGetPosHandler, ReactNodeProps, SupportedMediaAttributes, getPosHandler, getPosHandlerNode, } from '../types/index';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-media/media-plugin",
3
+ "main": "../dist/cjs/entry-points/media-plugin.js",
4
+ "module": "../dist/esm/entry-points/media-plugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/media-plugin.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/media-plugin.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/media-plugin.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-media/media-plugin-type",
3
+ "main": "../dist/cjs/entry-points/media-plugin-type.js",
4
+ "module": "../dist/esm/entry-points/media-plugin-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/media-plugin-type.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/media-plugin-type.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/media-plugin-type.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-media/nodeviewHelpers",
3
- "main": "../dist/cjs/nodeviews/nodeviewHelpers.js",
4
- "module": "../dist/esm/nodeviews/nodeviewHelpers.js",
5
- "module:es2019": "../dist/es2019/nodeviews/nodeviewHelpers.js",
3
+ "main": "../dist/cjs/entry-points/nodeview-helpers.js",
4
+ "module": "../dist/esm/entry-points/nodeview-helpers.js",
5
+ "module:es2019": "../dist/es2019/entry-points/nodeview-helpers.js",
6
6
  "sideEffects": [
7
7
  "*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/nodeviews/nodeviewHelpers.d.ts",
9
+ "types": "../dist/types/entry-points/nodeview-helpers.d.ts",
10
10
  "typesVersions": {
11
11
  ">=4.5 <5.9": {
12
12
  "*": [
13
- "../dist/types-ts4.5/nodeviews/nodeviewHelpers.d.ts"
13
+ "../dist/types-ts4.5/entry-points/nodeview-helpers.d.ts"
14
14
  ]
15
15
  }
16
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-media",
3
- "version": "12.5.6",
3
+ "version": "12.6.0",
4
4
  "description": "Media plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -37,14 +37,14 @@
37
37
  "@atlaskit/editor-plugin-analytics": "^10.0.0",
38
38
  "@atlaskit/editor-plugin-annotation": "^10.3.0",
39
39
  "@atlaskit/editor-plugin-connectivity": "^10.0.0",
40
- "@atlaskit/editor-plugin-decorations": "^10.0.0",
41
- "@atlaskit/editor-plugin-editor-disabled": "^10.0.0",
42
- "@atlaskit/editor-plugin-editor-viewmode": "^12.0.0",
43
- "@atlaskit/editor-plugin-floating-toolbar": "^12.0.0",
44
- "@atlaskit/editor-plugin-focus": "^9.0.0",
45
- "@atlaskit/editor-plugin-grid": "^10.1.0",
46
- "@atlaskit/editor-plugin-guideline": "^10.0.0",
47
- "@atlaskit/editor-plugin-interaction": "^19.0.0",
40
+ "@atlaskit/editor-plugin-decorations": "^10.1.0",
41
+ "@atlaskit/editor-plugin-editor-disabled": "^10.1.0",
42
+ "@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
43
+ "@atlaskit/editor-plugin-floating-toolbar": "^12.1.0",
44
+ "@atlaskit/editor-plugin-focus": "^9.1.0",
45
+ "@atlaskit/editor-plugin-grid": "^10.2.0",
46
+ "@atlaskit/editor-plugin-guideline": "^10.1.0",
47
+ "@atlaskit/editor-plugin-interaction": "^19.1.0",
48
48
  "@atlaskit/editor-plugin-selection": "^10.0.0",
49
49
  "@atlaskit/editor-plugin-toolbar": "^7.2.0",
50
50
  "@atlaskit/editor-plugin-width": "^11.0.0",
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-media/types",
3
- "main": "../dist/cjs/types/index.js",
4
- "module": "../dist/esm/types/index.js",
5
- "module:es2019": "../dist/es2019/types/index.js",
3
+ "main": "../dist/cjs/entry-points/types.js",
4
+ "module": "../dist/esm/entry-points/types.js",
5
+ "module:es2019": "../dist/es2019/entry-points/types.js",
6
6
  "sideEffects": [
7
7
  "*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/types/index.d.ts",
9
+ "types": "../dist/types/entry-points/types.d.ts",
10
10
  "typesVersions": {
11
11
  ">=4.5 <5.9": {
12
12
  "*": [
13
- "../dist/types-ts4.5/types/index.d.ts"
13
+ "../dist/types-ts4.5/entry-points/types.d.ts"
14
14
  ]
15
15
  }
16
16
  }