@atlaskit/editor-plugin-floating-toolbar 1.13.12 → 1.13.13

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-floating-toolbar
2
2
 
3
+ ## 1.13.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#152399](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152399)
8
+ [`fbd7217f0cb51`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fbd7217f0cb51) -
9
+ [ux] ED-25092: Migrated table toolbar icons
10
+ - Updated dependencies
11
+
3
12
  ## 1.13.12
4
13
 
5
14
  ### Patch Changes
@@ -111,7 +111,7 @@ var ToolbarItems = /*#__PURE__*/_react.default.memo(function (_ref) {
111
111
  title: item.title,
112
112
  href: item.href,
113
113
  icon: item.icon ? item.iconFallback ? (0, _react2.jsx)(ButtonIcon, {
114
- color: "var(--ds-icon, #44546F)",
114
+ color: item.disabled ? "var(--ds-icon-disabled, #091E424F)" : "var(--ds-icon, #44546F)",
115
115
  spacing: "spacious",
116
116
  label: item.title,
117
117
  LEGACY_fallbackIcon: item.iconFallback,
@@ -99,7 +99,7 @@ const ToolbarItems = /*#__PURE__*/React.memo(({
99
99
  title: item.title,
100
100
  href: item.href,
101
101
  icon: item.icon ? item.iconFallback ? jsx(ButtonIcon, {
102
- color: "var(--ds-icon, #44546F)",
102
+ color: item.disabled ? "var(--ds-icon-disabled, #091E424F)" : "var(--ds-icon, #44546F)",
103
103
  spacing: "spacious",
104
104
  label: item.title,
105
105
  LEGACY_fallbackIcon: item.iconFallback,
@@ -104,7 +104,7 @@ var ToolbarItems = /*#__PURE__*/React.memo(function (_ref) {
104
104
  title: item.title,
105
105
  href: item.href,
106
106
  icon: item.icon ? item.iconFallback ? jsx(ButtonIcon, {
107
- color: "var(--ds-icon, #44546F)",
107
+ color: item.disabled ? "var(--ds-icon-disabled, #091E424F)" : "var(--ds-icon, #44546F)",
108
108
  spacing: "spacious",
109
109
  label: item.title,
110
110
  LEGACY_fallbackIcon: item.iconFallback,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-floating-toolbar",
3
- "version": "1.13.12",
3
+ "version": "1.13.13",
4
4
  "description": "Floating toolbar plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -26,9 +26,9 @@
26
26
  "@atlaskit/adf-utils": "^19.9.0",
27
27
  "@atlaskit/button": "^20.2.0",
28
28
  "@atlaskit/checkbox": "^14.0.0",
29
- "@atlaskit/editor-common": "^93.4.0",
29
+ "@atlaskit/editor-common": "^93.5.0",
30
30
  "@atlaskit/editor-palette": "1.6.1",
31
- "@atlaskit/editor-plugin-block-controls": "^2.5.0",
31
+ "@atlaskit/editor-plugin-block-controls": "^2.6.0",
32
32
  "@atlaskit/editor-plugin-context-panel": "^1.3.0",
33
33
  "@atlaskit/editor-plugin-copy-button": "^1.3.0",
34
34
  "@atlaskit/editor-plugin-decorations": "^1.3.0",