@atlaskit/editor-plugin-selection 8.0.26 → 8.0.27

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-selection
2
2
 
3
+ ## 8.0.27
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.26
4
12
 
5
13
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
1
+ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
2
2
  import { type JSONNode } from '@atlaskit/editor-json-transformer';
3
3
  import { Fragment } from '@atlaskit/editor-prosemirror/model';
4
4
  import { type Selection } from '@atlaskit/editor-prosemirror/state';
@@ -1,4 +1,4 @@
1
1
  import { type Selection } from '@atlaskit/editor-prosemirror/state';
2
- import { type EditorView } from '@atlaskit/editor-prosemirror/view';
2
+ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
3
3
  export declare function isValidSelection(selection: Selection): boolean;
4
4
  export declare function onMouseOut(view: EditorView, event: MouseEvent): boolean;
@@ -1,4 +1,4 @@
1
- import { type Mark } from '@atlaskit/editor-prosemirror/model';
1
+ import type { Mark } from '@atlaskit/editor-prosemirror/model';
2
2
  import { MarksSide } from '../marks-side';
3
3
  type GetInlineCodeCursorSideOptions = {
4
4
  leftMarks: readonly Mark[];
@@ -1,4 +1,4 @@
1
- import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
1
+ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
2
2
  import { type JSONNode } from '@atlaskit/editor-json-transformer';
3
3
  import { Fragment } from '@atlaskit/editor-prosemirror/model';
4
4
  import { type Selection } from '@atlaskit/editor-prosemirror/state';
@@ -1,4 +1,4 @@
1
1
  import { type Selection } from '@atlaskit/editor-prosemirror/state';
2
- import { type EditorView } from '@atlaskit/editor-prosemirror/view';
2
+ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
3
3
  export declare function isValidSelection(selection: Selection): boolean;
4
4
  export declare function onMouseOut(view: EditorView, event: MouseEvent): boolean;
@@ -1,4 +1,4 @@
1
- import { type Mark } from '@atlaskit/editor-prosemirror/model';
1
+ import type { Mark } from '@atlaskit/editor-prosemirror/model';
2
2
  import { MarksSide } from '../marks-side';
3
3
  type GetInlineCodeCursorSideOptions = {
4
4
  leftMarks: readonly Mark[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-selection",
3
- "version": "8.0.26",
3
+ "version": "8.0.27",
4
4
  "description": "Selection plugin for @atlaskit/editor-core",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"