@atlaskit/editor-plugin-expand 2.10.10 → 2.10.11

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-expand
2
2
 
3
+ ## 2.10.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [#182077](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/182077)
8
+ [`efe589f6d9ed0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/efe589f6d9ed0) -
9
+ (internal) Minor code changes; updated tests to be compatible with SWC transpilation
10
+
3
11
  ## 2.10.10
4
12
 
5
13
  ### Patch Changes
@@ -9,7 +9,7 @@ import { createExpandNode, insertExpand, insertExpandWithInputMethod } from './c
9
9
  import { expandKeymap } from './pm-plugins/keymap';
10
10
  import { createPlugin } from './pm-plugins/main';
11
11
  import { getToolbarConfig } from './toolbar';
12
- export const expandPlugin = ({
12
+ export let expandPlugin = ({
13
13
  config: options = {},
14
14
  api
15
15
  }) => {
@@ -1,7 +1,7 @@
1
1
  import { fg } from '@atlaskit/platform-feature-flags';
2
2
  import { expandPlugin as legacyExpandPlugin } from './legacyExpand/plugin';
3
3
  import { expandPlugin as singlePlayerExpandPlugin } from './singlePlayerExpand/plugin';
4
- export const expandPlugin = ({
4
+ export let expandPlugin = ({
5
5
  config: options = {},
6
6
  api
7
7
  }) => {
@@ -9,7 +9,7 @@ import { createExpandNode, insertExpand, insertExpandWithInputMethod } from './c
9
9
  import { expandKeymap } from './pm-plugins/keymap';
10
10
  import { createPlugin } from './pm-plugins/main';
11
11
  import { getToolbarConfig } from './toolbar';
12
- export const expandPlugin = ({
12
+ export let expandPlugin = ({
13
13
  config: options = {},
14
14
  api
15
15
  }) => {
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from '../types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from './types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from '../types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from '../types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from './types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
@@ -1,2 +1,2 @@
1
1
  import type { ExpandPlugin } from '../types';
2
- export declare const expandPlugin: ExpandPlugin;
2
+ export declare let expandPlugin: ExpandPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-expand",
3
- "version": "2.10.10",
3
+ "version": "2.10.11",
4
4
  "description": "Expand plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",