@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 +8 -0
- package/dist/es2019/legacyExpand/plugin.js +1 -1
- package/dist/es2019/plugin.js +1 -1
- package/dist/es2019/singlePlayerExpand/plugin.js +1 -1
- package/dist/types/legacyExpand/plugin.d.ts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/dist/types/singlePlayerExpand/plugin.d.ts +1 -1
- package/dist/types-ts4.5/legacyExpand/plugin.d.ts +1 -1
- package/dist/types-ts4.5/plugin.d.ts +1 -1
- package/dist/types-ts4.5/singlePlayerExpand/plugin.d.ts +1 -1
- package/package.json +1 -1
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
|
|
12
|
+
export let expandPlugin = ({
|
|
13
13
|
config: options = {},
|
|
14
14
|
api
|
|
15
15
|
}) => {
|
package/dist/es2019/plugin.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ExpandPlugin } from './types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ExpandPlugin } from '../types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ExpandPlugin } from '../types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ExpandPlugin } from './types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { ExpandPlugin } from '../types';
|
|
2
|
-
export declare
|
|
2
|
+
export declare let expandPlugin: ExpandPlugin;
|