@atlaskit/editor-plugin-undo-redo 1.2.5 → 1.3.1

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,23 @@
1
1
  # @atlaskit/editor-plugin-undo-redo
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#124209](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124209)
14
+ [`8aa1792f12ed3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8aa1792f12ed3) -
15
+ bump @atlaskit/editor-prosemirror to 5.0.0, bump @atlaskit/adf-schema to 40.1.0
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.2.5
4
22
 
5
23
  ### Patch Changes
@@ -15,7 +15,10 @@ var _uiMenu = require("@atlaskit/editor-common/ui-menu");
15
15
  var _redo = _interopRequireDefault(require("@atlaskit/icon/glyph/redo"));
16
16
  var _undo = _interopRequireDefault(require("@atlaskit/icon/glyph/undo"));
17
17
  var _commands = require("../../commands");
18
- /** @jsx jsx */
18
+ /**
19
+ * @jsxRuntime classic
20
+ * @jsx jsx
21
+ */
19
22
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
20
23
 
21
24
  var closeTypeAheadAndRunCommand = function closeTypeAheadAndRunCommand(editorView, api) {
@@ -1,4 +1,7 @@
1
- /** @jsx jsx */
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
2
5
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
3
6
  import { jsx } from '@emotion/react';
4
7
  import { injectIntl } from 'react-intl-next';
@@ -1,4 +1,7 @@
1
- /** @jsx jsx */
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
2
5
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
3
6
  import { jsx } from '@emotion/react';
4
7
  import { injectIntl } from 'react-intl-next';
@@ -1,5 +1,8 @@
1
1
  /// <reference types="react" />
2
- /** @jsx jsx */
2
+ /**
3
+ * @jsxRuntime classic
4
+ * @jsx jsx
5
+ */
3
6
  import { jsx } from '@emotion/react';
4
7
  import type { WrappedComponentProps } from 'react-intl-next';
5
8
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
@@ -1,5 +1,8 @@
1
1
  /// <reference types="react" />
2
- /** @jsx jsx */
2
+ /**
3
+ * @jsxRuntime classic
4
+ * @jsx jsx
5
+ */
3
6
  import { jsx } from '@emotion/react';
4
7
  import type { WrappedComponentProps } from 'react-intl-next';
5
8
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-undo-redo",
3
- "version": "1.2.5",
3
+ "version": "1.3.1",
4
4
  "description": "Undo redo plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,12 +32,12 @@
32
32
  ".": "./src/index.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/editor-common": "^86.0.0",
36
- "@atlaskit/editor-plugin-history": "^1.1.0",
37
- "@atlaskit/editor-plugin-primary-toolbar": "^1.2.0",
38
- "@atlaskit/editor-plugin-type-ahead": "^1.4.0",
39
- "@atlaskit/editor-prosemirror": "4.0.1",
40
- "@atlaskit/icon": "^22.6.0",
35
+ "@atlaskit/editor-common": "^87.0.0",
36
+ "@atlaskit/editor-plugin-history": "^1.2.0",
37
+ "@atlaskit/editor-plugin-primary-toolbar": "^1.3.0",
38
+ "@atlaskit/editor-plugin-type-ahead": "^1.6.0",
39
+ "@atlaskit/editor-prosemirror": "5.0.1",
40
+ "@atlaskit/icon": "^22.7.0",
41
41
  "@babel/runtime": "^7.0.0",
42
42
  "@emotion/react": "^11.7.1"
43
43
  },