@atlaskit/editor-plugin-ufo 8.0.23 → 8.0.24

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,13 @@
1
1
  # @atlaskit/editor-plugin-ufo
2
2
 
3
+ ## 8.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7b7c52dff5d7d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b7c52dff5d7d) -
8
+ Fix eslint violations for type import syntax
9
+ - Updated dependencies
10
+
3
11
  ## 8.0.23
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-ufo",
3
- "version": "8.0.23",
3
+ "version": "8.0.24",
4
4
  "description": "Ufo plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -1,8 +1,8 @@
1
1
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
2
2
  import { atTheBeginningOfDoc } from '@atlaskit/editor-common/selection';
3
3
  import { isEmptyDocument } from '@atlaskit/editor-common/utils';
4
- import { type EditorState } from '@atlaskit/editor-prosemirror/state';
5
- import { type EditorView } from '@atlaskit/editor-prosemirror/view';
4
+ import type { EditorState } from '@atlaskit/editor-prosemirror/state';
5
+ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
6
6
  import { abortAll, getActiveInteraction } from '@atlaskit/react-ufo/interaction-metrics';
7
7
 
8
8
  export const traceUFOInteractionOnFirstInteraction = (): SafePlugin => {