@atlaskit/editor-plugin-floating-toolbar 0.7.28 → 0.7.29

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/editor-plugin-floating-toolbar
2
2
 
3
+ ## 0.7.29
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
  ## 0.7.28
4
10
 
5
11
  ### Patch Changes
@@ -175,6 +175,7 @@ var ToolbarItems = /*#__PURE__*/_react.default.memo(function (_ref) {
175
175
  return (0, _react2.jsx)(_uiMenu.ColorPickerButton, {
176
176
  skipFocusButtonAfterPick: true,
177
177
  key: idx,
178
+ isAriaExpanded: item.isAriaExpanded,
178
179
  title: item.title,
179
180
  onChange: function onChange(selected) {
180
181
  dispatchCommand(item.onChange(selected));
@@ -141,6 +141,7 @@ const ToolbarItems = /*#__PURE__*/React.memo(({
141
141
  return jsx(ColorPickerButton, {
142
142
  skipFocusButtonAfterPick: true,
143
143
  key: idx,
144
+ isAriaExpanded: item.isAriaExpanded,
144
145
  title: item.title,
145
146
  onChange: selected => {
146
147
  dispatchCommand(item.onChange(selected));
@@ -166,6 +166,7 @@ var ToolbarItems = /*#__PURE__*/React.memo(function (_ref) {
166
166
  return jsx(ColorPickerButton, {
167
167
  skipFocusButtonAfterPick: true,
168
168
  key: idx,
169
+ isAriaExpanded: item.isAriaExpanded,
169
170
  title: item.title,
170
171
  onChange: function onChange(selected) {
171
172
  dispatchCommand(item.onChange(selected));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-floating-toolbar",
3
- "version": "0.7.28",
3
+ "version": "0.7.29",
4
4
  "description": "Floating toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",