@atlaskit/editor-plugin-undo-redo 8.0.25 → 8.0.26

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-undo-redo
2
2
 
3
+ ## 8.0.26
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.25
4
12
 
5
13
  ### Patch Changes
@@ -4,7 +4,7 @@ import type { HistoryPlugin } from '@atlaskit/editor-plugin-history';
4
4
  import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
5
5
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
6
6
  import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
7
- import { type InputSource } from './pm-plugins/enums';
7
+ import type { InputSource } from './pm-plugins/enums';
8
8
  export type UndoRedoAction = (inputSource?: InputSource) => boolean;
9
9
  export type UndoRedoPlugin = NextEditorPlugin<'undoRedoPlugin', {
10
10
  actions: {
@@ -4,7 +4,7 @@ import type { HistoryPlugin } from '@atlaskit/editor-plugin-history';
4
4
  import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
5
5
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
6
6
  import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
7
- import { type InputSource } from './pm-plugins/enums';
7
+ import type { InputSource } from './pm-plugins/enums';
8
8
  export type UndoRedoAction = (inputSource?: InputSource) => boolean;
9
9
  export type UndoRedoPlugin = NextEditorPlugin<'undoRedoPlugin', {
10
10
  actions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-undo-redo",
3
- "version": "8.0.25",
3
+ "version": "8.0.26",
4
4
  "description": "Undo redo plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",