@atlaskit/editor-plugin-expand 1.6.9 → 1.6.10
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/cjs/legacyExpand/plugin.js +1 -1
- package/dist/cjs/singlePlayerExpand/plugin.js +1 -1
- package/dist/es2019/legacyExpand/plugin.js +2 -2
- package/dist/es2019/singlePlayerExpand/plugin.js +2 -2
- package/dist/esm/legacyExpand/plugin.js +2 -2
- package/dist/esm/singlePlayerExpand/plugin.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-expand
|
|
2
2
|
|
|
3
|
+
## 1.6.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#97599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97599)
|
|
8
|
+
[`32c3130b08fe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c3130b08fe) -
|
|
9
|
+
[ED-22282] Bump adf-schema to 36.1.0
|
|
10
|
+
|
|
3
11
|
## 1.6.9
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { expand,
|
|
2
|
+
import { expand, nestedExpand } from '@atlaskit/adf-schema';
|
|
3
3
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { IconExpand } from '@atlaskit/editor-common/quick-insert';
|
|
@@ -22,7 +22,7 @@ export const expandPlugin = ({
|
|
|
22
22
|
node: expand
|
|
23
23
|
}, {
|
|
24
24
|
name: 'nestedExpand',
|
|
25
|
-
node:
|
|
25
|
+
node: nestedExpand
|
|
26
26
|
}];
|
|
27
27
|
},
|
|
28
28
|
actions: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { expand,
|
|
2
|
+
import { expand, nestedExpand } from '@atlaskit/adf-schema';
|
|
3
3
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { IconExpand } from '@atlaskit/editor-common/quick-insert';
|
|
@@ -21,7 +21,7 @@ export const expandPlugin = ({
|
|
|
21
21
|
node: expand
|
|
22
22
|
}, {
|
|
23
23
|
name: 'nestedExpand',
|
|
24
|
-
node:
|
|
24
|
+
node: nestedExpand
|
|
25
25
|
}];
|
|
26
26
|
},
|
|
27
27
|
actions: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { expand,
|
|
2
|
+
import { expand, nestedExpand } from '@atlaskit/adf-schema';
|
|
3
3
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { IconExpand } from '@atlaskit/editor-common/quick-insert';
|
|
@@ -22,7 +22,7 @@ export var expandPlugin = function expandPlugin(_ref) {
|
|
|
22
22
|
node: expand
|
|
23
23
|
}, {
|
|
24
24
|
name: 'nestedExpand',
|
|
25
|
-
node:
|
|
25
|
+
node: nestedExpand
|
|
26
26
|
}];
|
|
27
27
|
},
|
|
28
28
|
actions: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { expand,
|
|
2
|
+
import { expand, nestedExpand } from '@atlaskit/adf-schema';
|
|
3
3
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { IconExpand } from '@atlaskit/editor-common/quick-insert';
|
|
@@ -21,7 +21,7 @@ export var expandPlugin = function expandPlugin(_ref) {
|
|
|
21
21
|
node: expand
|
|
22
22
|
}, {
|
|
23
23
|
name: 'nestedExpand',
|
|
24
|
-
node:
|
|
24
|
+
node: nestedExpand
|
|
25
25
|
}];
|
|
26
26
|
},
|
|
27
27
|
actions: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-expand",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.10",
|
|
4
4
|
"description": "Expand plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/adf-schema": "^
|
|
36
|
+
"@atlaskit/adf-schema": "^36.1.0",
|
|
37
37
|
"@atlaskit/button": "^17.14.0",
|
|
38
38
|
"@atlaskit/editor-common": "^79.2.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^1.1.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@atlaskit/editor-plugin-content-insertion": "^1.1.0",
|
|
62
62
|
"@atlaskit/editor-plugin-guideline": "^1.1.0",
|
|
63
63
|
"@atlaskit/editor-plugin-quick-insert": "^1.1.0",
|
|
64
|
-
"@atlaskit/editor-plugin-table": "^7.
|
|
64
|
+
"@atlaskit/editor-plugin-table": "^7.13.0",
|
|
65
65
|
"@atlaskit/editor-plugin-type-ahead": "^1.1.0",
|
|
66
66
|
"@atlaskit/editor-plugin-width": "^1.1.0",
|
|
67
67
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|