@atlaskit/editor-plugin-table 8.4.0 → 8.4.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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 8.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#168321](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/168321)
|
|
8
|
+
[`01cada6d7a4d7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/01cada6d7a4d7) -
|
|
9
|
+
Fix bug where new icon types had an additional prop isFacadeDisabled that was not used
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 8.4.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -86,8 +86,7 @@ var FloatingContextualButtonInner = /*#__PURE__*/_react.default.memo(function (p
|
|
|
86
86
|
onClick: handleClick,
|
|
87
87
|
iconBefore: (0, _react2.jsx)(_chevronDown.default, {
|
|
88
88
|
label: "",
|
|
89
|
-
color: "currentColor"
|
|
90
|
-
isFacadeDisabled: true
|
|
89
|
+
color: "currentColor"
|
|
91
90
|
}),
|
|
92
91
|
"aria-label": labelCellOptions,
|
|
93
92
|
"aria-expanded": isContextualMenuOpen
|
|
@@ -83,8 +83,7 @@ const FloatingContextualButtonInner = /*#__PURE__*/React.memo(props => {
|
|
|
83
83
|
onClick: handleClick,
|
|
84
84
|
iconBefore: jsx(ExpandIcon, {
|
|
85
85
|
label: "",
|
|
86
|
-
color: "currentColor"
|
|
87
|
-
isFacadeDisabled: true
|
|
86
|
+
color: "currentColor"
|
|
88
87
|
}),
|
|
89
88
|
"aria-label": labelCellOptions,
|
|
90
89
|
"aria-expanded": isContextualMenuOpen
|
|
@@ -75,8 +75,7 @@ var FloatingContextualButtonInner = /*#__PURE__*/React.memo(function (props) {
|
|
|
75
75
|
onClick: handleClick,
|
|
76
76
|
iconBefore: jsx(ExpandIcon, {
|
|
77
77
|
label: "",
|
|
78
|
-
color: "currentColor"
|
|
79
|
-
isFacadeDisabled: true
|
|
78
|
+
color: "currentColor"
|
|
80
79
|
}),
|
|
81
80
|
"aria-label": labelCellOptions,
|
|
82
81
|
"aria-expanded": isContextualMenuOpen
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.1",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
31
31
|
"@atlaskit/button": "^20.3.0",
|
|
32
32
|
"@atlaskit/custom-steps": "^0.9.0",
|
|
33
|
-
"@atlaskit/editor-common": "^
|
|
33
|
+
"@atlaskit/editor-common": "^96.0.0",
|
|
34
34
|
"@atlaskit/editor-palette": "1.6.3",
|
|
35
35
|
"@atlaskit/editor-plugin-accessibility-utils": "^1.2.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^1.10.0",
|
|
37
|
-
"@atlaskit/editor-plugin-batch-attribute-updates": "1.1.
|
|
37
|
+
"@atlaskit/editor-plugin-batch-attribute-updates": "1.1.7",
|
|
38
38
|
"@atlaskit/editor-plugin-content-insertion": "^1.11.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-guideline": "^1.2.0",
|
|
@@ -105,7 +105,7 @@ const FloatingContextualButtonInner = React.memo((props: Props & WrappedComponen
|
|
|
105
105
|
title={labelCellOptions}
|
|
106
106
|
keymap={focusToContextMenuTrigger}
|
|
107
107
|
onClick={handleClick}
|
|
108
|
-
iconBefore={<ExpandIcon label="" color="currentColor"
|
|
108
|
+
iconBefore={<ExpandIcon label="" color="currentColor" />}
|
|
109
109
|
aria-label={labelCellOptions}
|
|
110
110
|
aria-expanded={isContextualMenuOpen}
|
|
111
111
|
/>
|