@atlaskit/editor-plugin-save-on-enter 11.0.0 → 12.0.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,31 @@
1
1
  # @atlaskit/editor-plugin-save-on-enter
2
2
 
3
+ ## 12.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`f2dc9097319f0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2dc9097319f0) - ###
8
+ Dropped support for _legacy_ Typescript 4 types. **Typescript 5 is now the new minimum**.
9
+
10
+ Removes the `typesVersions` property and `dist/types-ts4.5` directory from the dist.
11
+
12
+ Types are now exclusively via the `"types": "dist/types/index.d.ts"` property.
13
+
14
+ ```diff
15
+ - "typesVersions": {
16
+ - ">=4.5 <4.9": {
17
+ - "*": [
18
+ - "dist/types-ts4.5/*",
19
+ - "dist/types-ts4.5/index.d.ts"
20
+ - ]
21
+ - }
22
+ - },
23
+ ```
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies
28
+
3
29
  ## 11.0.0
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-save-on-enter",
3
- "version": "11.0.0",
3
+ "version": "12.0.0",
4
4
  "description": "Save-on-enter plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -16,24 +16,16 @@
16
16
  "module": "dist/esm/index.js",
17
17
  "module:es2019": "dist/es2019/index.js",
18
18
  "types": "dist/types/index.d.ts",
19
- "typesVersions": {
20
- ">=4.5 <4.9": {
21
- "*": [
22
- "dist/types-ts4.5/*",
23
- "dist/types-ts4.5/index.d.ts"
24
- ]
25
- }
26
- },
27
19
  "sideEffects": false,
28
20
  "atlaskit:src": "src/index.ts",
29
21
  "dependencies": {
30
- "@atlaskit/editor-prosemirror": "^7.3.0",
31
- "@atlaskit/link": "^3.4.0",
32
- "@atlaskit/platform-feature-flags": "^1.1.0",
22
+ "@atlaskit/editor-prosemirror": "^8.0.0",
23
+ "@atlaskit/link": "^4.0.0",
24
+ "@atlaskit/platform-feature-flags": "^2.0.0",
33
25
  "@babel/runtime": "^7.0.0"
34
26
  },
35
27
  "peerDependencies": {
36
- "@atlaskit/editor-common": "^115.0.0",
28
+ "@atlaskit/editor-common": "^116.0.0",
37
29
  "react": "^18.2.0"
38
30
  },
39
31
  "techstack": {
@@ -4,12 +4,5 @@
4
4
  "module": "../dist/esm/entry-points/save-on-enter-plugin.js",
5
5
  "module:es2019": "../dist/es2019/entry-points/save-on-enter-plugin.js",
6
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
- }
7
+ "types": "../dist/types/entry-points/save-on-enter-plugin.d.ts"
15
8
  }
@@ -4,12 +4,5 @@
4
4
  "module": "../dist/esm/entry-points/save-on-enter-plugin-type.js",
5
5
  "module:es2019": "../dist/es2019/entry-points/save-on-enter-plugin-type.js",
6
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
- }
7
+ "types": "../dist/types/entry-points/save-on-enter-plugin-type.d.ts"
15
8
  }
@@ -1 +0,0 @@
1
- export type { SaveOnEnterPlugin } from '../saveOnEnterPluginType';
@@ -1 +0,0 @@
1
- export { saveOnEnterPlugin } from '../saveOnEnterPlugin';
@@ -1,2 +0,0 @@
1
- export { saveOnEnterPlugin } from './saveOnEnterPlugin';
2
- export type { SaveOnEnterPlugin } from './saveOnEnterPluginType';
@@ -1,7 +0,0 @@
1
- import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
2
- import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
- import type { EditorView } from '@atlaskit/editor-prosemirror/view';
4
- import type { SaveOnEnterPlugin } from './saveOnEnterPluginType';
5
- export type CreatePlugin = (eventDispatch: Dispatch, onSave?: (editorView: EditorView) => void) => SafePlugin | undefined;
6
- export declare const createPlugin: CreatePlugin;
7
- export declare const saveOnEnterPlugin: SaveOnEnterPlugin;
@@ -1,6 +0,0 @@
1
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
2
- import type { EditorView } from '@atlaskit/editor-prosemirror/view';
3
- export type Config = (editorView: EditorView) => void;
4
- export type SaveOnEnterPlugin = NextEditorPlugin<'saveOnEnter', {
5
- pluginConfiguration: Config | undefined;
6
- }>;