@atlaskit/editor-plugin-panel 1.1.8 → 1.1.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 +16 -0
- package/dist/cjs/toolbar.js +4 -2
- package/dist/es2019/toolbar.js +4 -2
- package/dist/esm/toolbar.js +4 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 1.1.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#98080](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98080)
|
|
8
|
+
[`23c03580e38c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/23c03580e38c) -
|
|
9
|
+
[ux] [ED-23247] Allow floating toolbar copy buttons in live pages view mode.
|
|
10
|
+
|
|
11
|
+
## 1.1.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#97599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97599)
|
|
16
|
+
[`32c3130b08fe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c3130b08fe) -
|
|
17
|
+
[ED-22282] Bump adf-schema to 36.1.0
|
|
18
|
+
|
|
3
19
|
## 1.1.8
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -231,11 +231,13 @@ var getToolbarItems = exports.getToolbarItems = function getToolbarItems(formatM
|
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
233
|
if (state) {
|
|
234
|
+
items.push({
|
|
235
|
+
type: 'separator'
|
|
236
|
+
});
|
|
234
237
|
items.push({
|
|
235
238
|
type: 'copy-button',
|
|
239
|
+
supportsViewMode: true,
|
|
236
240
|
items: [{
|
|
237
|
-
type: 'separator'
|
|
238
|
-
}, {
|
|
239
241
|
state: state,
|
|
240
242
|
formatMessage: formatMessage,
|
|
241
243
|
nodeType: panelNodeType
|
package/dist/es2019/toolbar.js
CHANGED
|
@@ -214,11 +214,13 @@ export const getToolbarItems = (formatMessage, panelNodeType, isCustomPanelEnabl
|
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
if (state) {
|
|
217
|
+
items.push({
|
|
218
|
+
type: 'separator'
|
|
219
|
+
});
|
|
217
220
|
items.push({
|
|
218
221
|
type: 'copy-button',
|
|
222
|
+
supportsViewMode: true,
|
|
219
223
|
items: [{
|
|
220
|
-
type: 'separator'
|
|
221
|
-
}, {
|
|
222
224
|
state,
|
|
223
225
|
formatMessage,
|
|
224
226
|
nodeType: panelNodeType
|
package/dist/esm/toolbar.js
CHANGED
|
@@ -221,11 +221,13 @@ export var getToolbarItems = function getToolbarItems(formatMessage, panelNodeTy
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
if (state) {
|
|
224
|
+
items.push({
|
|
225
|
+
type: 'separator'
|
|
226
|
+
});
|
|
224
227
|
items.push({
|
|
225
228
|
type: 'copy-button',
|
|
229
|
+
supportsViewMode: true,
|
|
226
230
|
items: [{
|
|
227
|
-
type: 'separator'
|
|
228
|
-
}, {
|
|
229
231
|
state: state,
|
|
230
232
|
formatMessage: formatMessage,
|
|
231
233
|
nodeType: panelNodeType
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/adf-schema": "^
|
|
37
|
-
"@atlaskit/editor-common": "^79.
|
|
36
|
+
"@atlaskit/adf-schema": "^36.1.0",
|
|
37
|
+
"@atlaskit/editor-common": "^79.4.0",
|
|
38
38
|
"@atlaskit/editor-palette": "1.6.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^1.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^1.1.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@atlaskit/emoji": "^67.6.0",
|
|
44
44
|
"@atlaskit/icon": "^22.1.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
46
|
-
"@atlaskit/theme": "^12.
|
|
46
|
+
"@atlaskit/theme": "^12.8.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|