@atlaskit/editor-json-transformer 8.10.11 → 8.10.13

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,17 @@
1
1
  # @atlaskit/editor-json-transformer
2
2
 
3
+ ## 8.10.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#43379](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43379) [`482c025520d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/482c025520d) - ED-20763 Upgrade ADF schema version to 33.2.3 for MBE nodes.
8
+
9
+ ## 8.10.12
10
+
11
+ ### Patch Changes
12
+
13
+ - [#42995](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42995) [`a527682dee6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a527682dee6) - add in missing dependencies for imported types
14
+
3
15
  ## 8.10.11
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
2
- import { JSONDocNode, JSONNode } from './types';
2
+ import type { JSONDocNode, JSONNode } from './types';
3
3
  export type { JSONDocNode, JSONNode } from './types';
4
4
  interface Transformer<T> {
5
5
  encode(node: PMNode): T;
@@ -1,5 +1,5 @@
1
1
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
2
- import { JSONDocNode, JSONNode } from './types';
2
+ import type { JSONDocNode, JSONNode } from './types';
3
3
  export type { JSONDocNode, JSONNode } from './types';
4
4
  interface Transformer<T> {
5
5
  encode(node: PMNode): T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-json-transformer",
3
- "version": "8.10.11",
3
+ "version": "8.10.13",
4
4
  "description": "JSON transformer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -40,13 +40,13 @@
40
40
  "./types": "./src/types.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@atlaskit/adf-schema": "^32.0.0",
43
+ "@atlaskit/adf-schema": "^33.2.3",
44
44
  "@atlaskit/adf-utils": "^19.0.0",
45
+ "@atlaskit/editor-prosemirror": "1.1.0",
45
46
  "@babel/runtime": "^7.0.0",
46
47
  "lodash": "^4.17.21"
47
48
  },
48
49
  "devDependencies": {
49
- "@atlaskit/editor-prosemirror": "1.1.0",
50
50
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
51
51
  "react": "^16.8.0",
52
52
  "typescript": "~4.9.5"