@atlaskit/editor-plugin-panel 0.2.5 → 0.2.7
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 +12 -0
- package/dist/cjs/toolbar.js +1 -0
- package/dist/es2019/toolbar.js +1 -0
- package/dist/esm/toolbar.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-panel
|
|
2
2
|
|
|
3
|
+
## 0.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#67948](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67948) [`28fcdf6793a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28fcdf6793a4) - Expand/collapse for panel and table color pickers
|
|
8
|
+
|
|
9
|
+
## 0.2.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 0.2.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -195,6 +195,7 @@ var getToolbarItems = exports.getToolbarItems = function getToolbarItems(formatM
|
|
|
195
195
|
var colorPicker = {
|
|
196
196
|
id: 'editor.panel.colorPicker',
|
|
197
197
|
title: formatMessage(_message.messages.backgroundColor),
|
|
198
|
+
isAriaExpanded: true,
|
|
198
199
|
type: 'select',
|
|
199
200
|
selectType: 'color',
|
|
200
201
|
defaultValue: defaultPalette,
|
package/dist/es2019/toolbar.js
CHANGED
|
@@ -185,6 +185,7 @@ export const getToolbarItems = (formatMessage, panelNodeType, isCustomPanelEnabl
|
|
|
185
185
|
const colorPicker = {
|
|
186
186
|
id: 'editor.panel.colorPicker',
|
|
187
187
|
title: formatMessage(messages.backgroundColor),
|
|
188
|
+
isAriaExpanded: true,
|
|
188
189
|
type: 'select',
|
|
189
190
|
selectType: 'color',
|
|
190
191
|
defaultValue: defaultPalette,
|
package/dist/esm/toolbar.js
CHANGED
|
@@ -188,6 +188,7 @@ export var getToolbarItems = function getToolbarItems(formatMessage, panelNodeTy
|
|
|
188
188
|
var colorPicker = {
|
|
189
189
|
id: 'editor.panel.colorPicker',
|
|
190
190
|
title: formatMessage(messages.backgroundColor),
|
|
191
|
+
isAriaExpanded: true,
|
|
191
192
|
type: 'select',
|
|
192
193
|
selectType: 'color',
|
|
193
194
|
defaultValue: defaultPalette,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-panel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "Panel plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/adf-schema": "^35.3.0",
|
|
37
|
-
"@atlaskit/editor-common": "^
|
|
37
|
+
"@atlaskit/editor-common": "^77.0.0",
|
|
38
38
|
"@atlaskit/editor-palette": "1.5.2",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|