@atlaskit/editor-plugin-table 7.0.0 → 7.0.1
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 +6 -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 +1 -1
- package/src/toolbar.tsx +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 7.0.1
|
|
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
|
+
|
|
3
9
|
## 7.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -485,6 +485,7 @@ var getColorPicker = function getColorPicker(state, menu, _ref5, editorAnalytics
|
|
|
485
485
|
id: 'editor.table.colorPicker',
|
|
486
486
|
title: formatMessage(_messages.tableMessages.cellBackground),
|
|
487
487
|
type: 'select',
|
|
488
|
+
isAriaExpanded: true,
|
|
488
489
|
selectType: 'color',
|
|
489
490
|
defaultValue: defaultPalette,
|
|
490
491
|
options: _uiColor.cellBackgroundColorPalette,
|
package/dist/es2019/toolbar.js
CHANGED
|
@@ -462,6 +462,7 @@ const getColorPicker = (state, menu, {
|
|
|
462
462
|
id: 'editor.table.colorPicker',
|
|
463
463
|
title: formatMessage(messages.cellBackground),
|
|
464
464
|
type: 'select',
|
|
465
|
+
isAriaExpanded: true,
|
|
465
466
|
selectType: 'color',
|
|
466
467
|
defaultValue: defaultPalette,
|
|
467
468
|
options: cellBackgroundColorPalette,
|
package/dist/esm/toolbar.js
CHANGED
|
@@ -474,6 +474,7 @@ var getColorPicker = function getColorPicker(state, menu, _ref5, editorAnalytics
|
|
|
474
474
|
id: 'editor.table.colorPicker',
|
|
475
475
|
title: formatMessage(messages.cellBackground),
|
|
476
476
|
type: 'select',
|
|
477
|
+
isAriaExpanded: true,
|
|
477
478
|
selectType: 'color',
|
|
478
479
|
defaultValue: defaultPalette,
|
|
479
480
|
options: cellBackgroundColorPalette,
|
package/package.json
CHANGED
package/src/toolbar.tsx
CHANGED
|
@@ -727,6 +727,7 @@ const getColorPicker = (
|
|
|
727
727
|
id: 'editor.table.colorPicker',
|
|
728
728
|
title: formatMessage(messages.cellBackground),
|
|
729
729
|
type: 'select',
|
|
730
|
+
isAriaExpanded: true,
|
|
730
731
|
selectType: 'color',
|
|
731
732
|
defaultValue: defaultPalette,
|
|
732
733
|
options: cellBackgroundColorPalette,
|