@atlaskit/editor-json-transformer 8.31.7 → 8.31.8
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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-json-transformer
|
|
2
2
|
|
|
3
|
+
## 8.31.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c9b7aaa42d05b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c9b7aaa42d05b) -
|
|
8
|
+
Mechanical type-import autofix for editor core shell packages.
|
|
9
|
+
|
|
3
10
|
## 8.31.7
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Node as PMNode, Schema } from '@atlaskit/editor-prosemirror/model';
|
|
2
|
-
import {
|
|
2
|
+
import type { SanitizeNodeOptions } from './sanitize/sanitize-node';
|
|
3
3
|
import type { JSONDocNode, JSONNode } from './types';
|
|
4
4
|
export type { JSONDocNode, JSONNode } from './types';
|
|
5
5
|
interface Transformer<T> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Node as PMNode, Schema } from '@atlaskit/editor-prosemirror/model';
|
|
2
|
-
import {
|
|
2
|
+
import type { SanitizeNodeOptions } from './sanitize/sanitize-node';
|
|
3
3
|
import type { JSONDocNode, JSONNode } from './types';
|
|
4
4
|
export type { JSONDocNode, JSONNode } from './types';
|
|
5
5
|
interface Transformer<T> {
|