@atlaskit/editor-plugin-save-on-enter 10.0.0 → 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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugin-save-on-enter
2
2
 
3
+ ## 10.2.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
+ ## 10.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`1a60935ff6ea6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a60935ff6ea6) -
15
+ Remove flag to increase accessibility in links.
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 10.0.0
4
22
 
5
23
  ### 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, "saveOnEnterPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _saveOnEnterPlugin.saveOnEnterPlugin;
10
+ }
11
+ });
12
+ var _saveOnEnterPlugin = require("../saveOnEnterPlugin");
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { saveOnEnterPlugin } from '../saveOnEnterPlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { saveOnEnterPlugin } from '../saveOnEnterPlugin';
@@ -0,0 +1 @@
1
+ export type { SaveOnEnterPlugin } from '../saveOnEnterPluginType';
@@ -0,0 +1 @@
1
+ export { saveOnEnterPlugin } from '../saveOnEnterPlugin';
@@ -0,0 +1 @@
1
+ export type { SaveOnEnterPlugin } from '../saveOnEnterPluginType';
@@ -0,0 +1 @@
1
+ export { saveOnEnterPlugin } from '../saveOnEnterPlugin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-save-on-enter",
3
- "version": "10.0.0",
3
+ "version": "10.2.0",
4
4
  "description": "Save-on-enter plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  "@babel/runtime": "^7.0.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@atlaskit/editor-common": "^114.0.0",
36
+ "@atlaskit/editor-common": "^114.30.0",
37
37
  "react": "^18.2.0"
38
38
  },
39
39
  "techstack": {
@@ -77,9 +77,5 @@
77
77
  "checkDevDependencies": true
78
78
  }
79
79
  },
80
- "platform-feature-flags": {
81
- "dst-a11y__replace-anchor-with-link__editor-lego": {
82
- "type": "boolean"
83
- }
84
- }
80
+ "platform-feature-flags": {}
85
81
  }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-save-on-enter/save-on-enter-plugin",
3
+ "main": "../dist/cjs/entry-points/save-on-enter-plugin.js",
4
+ "module": "../dist/esm/entry-points/save-on-enter-plugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/save-on-enter-plugin.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/save-on-enter-plugin.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/save-on-enter-plugin.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-save-on-enter/save-on-enter-plugin-type",
3
+ "main": "../dist/cjs/entry-points/save-on-enter-plugin-type.js",
4
+ "module": "../dist/esm/entry-points/save-on-enter-plugin-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/save-on-enter-plugin-type.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/save-on-enter-plugin-type.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/save-on-enter-plugin-type.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }