@atlaskit/editor-plugin-save-on-enter 1.0.1 → 1.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/.eslintrc.js CHANGED
@@ -3,12 +3,4 @@ module.exports = {
3
3
  '@typescript-eslint/no-duplicate-imports': 'error',
4
4
  '@typescript-eslint/no-explicit-any': 'error',
5
5
  },
6
- overrides: [
7
- {
8
- files: ['**/__tests__/**/*.{js,ts,tsx}', '**/examples/**/*.{js,ts,tsx}'],
9
- rules: {
10
- '@typescript-eslint/no-explicit-any': 'off',
11
- },
12
- },
13
- ],
14
6
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @atlaskit/editor-plugin-save-on-enter
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934) [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) - bumped editor-prosemirror version to 4.0.0
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
13
+ ## 1.0.2
14
+
15
+ ### Patch Changes
16
+
17
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
18
+
3
19
  ## 1.0.1
4
20
 
5
21
  ### Patch Changes
@@ -47,7 +47,6 @@ var analyticsPayload = function analyticsPayload(state) {
47
47
  documentSize: state.doc.nodeSize
48
48
  // TODO add individual node counts - tables, headings, lists, mediaSingles, mediaGroups, mediaCards, panels, extensions, decisions, action, codeBlocks
49
49
  },
50
-
51
50
  eventType: _analytics.EVENT_TYPE.UI
52
51
  }
53
52
  };
@@ -43,7 +43,6 @@ const analyticsPayload = state => ({
43
43
  documentSize: state.doc.nodeSize
44
44
  // TODO add individual node counts - tables, headings, lists, mediaSingles, mediaGroups, mediaCards, panels, extensions, decisions, action, codeBlocks
45
45
  },
46
-
47
46
  eventType: EVENT_TYPE.UI
48
47
  }
49
48
  });
@@ -40,7 +40,6 @@ var analyticsPayload = function analyticsPayload(state) {
40
40
  documentSize: state.doc.nodeSize
41
41
  // TODO add individual node counts - tables, headings, lists, mediaSingles, mediaGroups, mediaCards, panels, extensions, decisions, action, codeBlocks
42
42
  },
43
-
44
43
  eventType: EVENT_TYPE.UI
45
44
  }
46
45
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-save-on-enter",
3
- "version": "1.0.1",
3
+ "version": "1.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",
@@ -33,8 +33,8 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/editor-common": "^78.0.0",
37
- "@atlaskit/editor-prosemirror": "3.0.0",
36
+ "@atlaskit/editor-common": "^78.31.0",
37
+ "@atlaskit/editor-prosemirror": "4.0.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
45
- "typescript": "~4.9.5"
45
+ "typescript": "~5.4.2"
46
46
  },
47
47
  "techstack": {
48
48
  "@atlassian/frontend": {
@@ -67,11 +67,9 @@
67
67
  "ui-components": [
68
68
  "lite-mode"
69
69
  ],
70
- "deprecation": [
71
- "no-deprecated-imports"
72
- ],
70
+ "deprecation": "no-deprecated-imports",
73
71
  "styling": [
74
- "static",
72
+ "emotion",
75
73
  "emotion"
76
74
  ],
77
75
  "imports": [
@@ -85,4 +83,4 @@
85
83
  "checkDevDependencies": true
86
84
  }
87
85
  }
88
- }
86
+ }