@atlaskit/editor-plugin-save-on-enter 15.0.1 → 16.1.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,22 @@
1
1
  # @atlaskit/editor-plugin-save-on-enter
2
2
 
3
+ ## 16.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`bd2c5b0112185`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd2c5b0112185) -
8
+ Remove stale API report artifacts from published Platform packages.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 16.0.0
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 15.0.1
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-save-on-enter",
3
- "version": "15.0.1",
3
+ "version": "16.1.0",
4
4
  "description": "Save-on-enter plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -21,12 +21,12 @@
21
21
  "dependencies": {
22
22
  "@atlaskit/editor-prosemirror": "^8.0.0",
23
23
  "@atlaskit/link": "^5.1.0",
24
- "@atlaskit/platform-feature-flags": "^2.1.0",
25
- "@atlaskit/section-message": "^10.1.0",
24
+ "@atlaskit/platform-feature-flags": "^2.2.0",
25
+ "@atlaskit/section-message": "^10.2.0",
26
26
  "@babel/runtime": "^7.0.0"
27
27
  },
28
28
  "peerDependencies": {
29
- "@atlaskit/editor-common": "^119.16.0",
29
+ "@atlaskit/editor-common": "^120.9.0",
30
30
  "react": "^18.2.0 || ^19.2.0"
31
31
  },
32
32
  "techstack": {
package/report.api.md DELETED
@@ -1,51 +0,0 @@
1
- <!-- API Report Version: 2.3 -->
2
-
3
- ## API Report File for "@atlaskit/editor-plugin-save-on-enter"
4
-
5
- > Do not edit this file. This report is auto-generated using
6
- > [API Extractor](https://api-extractor.com/).
7
- > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
8
-
9
- ### Table of contents
10
-
11
- - [Main Entry Types](#main-entry-types)
12
- - [Peer Dependencies](#peer-dependencies)
13
-
14
- ### Main Entry Types
15
-
16
- <!--SECTION START: Main Entry Types-->
17
-
18
- ```ts
19
- import type { EditorView } from '@atlaskit/editor-prosemirror/view';
20
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
21
-
22
- // @public (undocumented)
23
- type Config = (editorView: EditorView) => void;
24
-
25
- // @public (undocumented)
26
- export type SaveOnEnterPlugin = NextEditorPlugin<
27
- 'saveOnEnter',
28
- {
29
- pluginConfiguration: Config | undefined;
30
- }
31
- >;
32
-
33
- // @public (undocumented)
34
- export const saveOnEnterPlugin: SaveOnEnterPlugin;
35
-
36
- // (No @packageDocumentation comment for this package)
37
- ```
38
-
39
- <!--SECTION END: Main Entry Types-->
40
-
41
- ### Peer Dependencies
42
-
43
- <!--SECTION START: Peer Dependencies-->
44
-
45
- ```json
46
- {
47
- "react": "^16.8.0"
48
- }
49
- ```
50
-
51
- <!--SECTION END: Peer Dependencies-->