@atlaskit/editor-plugin-highlight 8.0.13 → 8.0.14

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,13 @@
1
1
  # @atlaskit/editor-plugin-highlight
2
2
 
3
+ ## 8.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - [`5892e575833a1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5892e575833a1) -
8
+ Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme`
9
+ - Updated dependencies
10
+
3
11
  ## 8.0.13
4
12
 
5
13
  ### Patch Changes
@@ -34,7 +34,7 @@ var styles = {
34
34
  var TextColorIconDecorator = function TextColorIconDecorator(_ref) {
35
35
  var label = _ref.label,
36
36
  isSelected = _ref.isSelected;
37
- var iconColor = "var(--ds-icon, #000000)";
37
+ var iconColor = "var(--ds-icon, #292A2E)";
38
38
  return isSelected ? /*#__PURE__*/React.createElement(_checkMark.default, {
39
39
  color: iconColor,
40
40
  label: label
@@ -23,7 +23,7 @@ const TextColorIconDecorator = ({
23
23
  label,
24
24
  isSelected
25
25
  }) => {
26
- const iconColor = "var(--ds-icon, #000000)";
26
+ const iconColor = "var(--ds-icon, #292A2E)";
27
27
  return isSelected ? /*#__PURE__*/React.createElement(EditorDoneIcon, {
28
28
  color: iconColor,
29
29
  label: label
@@ -25,7 +25,7 @@ var styles = {
25
25
  var TextColorIconDecorator = function TextColorIconDecorator(_ref) {
26
26
  var label = _ref.label,
27
27
  isSelected = _ref.isSelected;
28
- var iconColor = "var(--ds-icon, #000000)";
28
+ var iconColor = "var(--ds-icon, #292A2E)";
29
29
  return isSelected ? /*#__PURE__*/React.createElement(EditorDoneIcon, {
30
30
  color: iconColor,
31
31
  label: label
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-highlight",
3
- "version": "8.0.13",
3
+ "version": "8.0.14",
4
4
  "description": "Highlight plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -46,16 +46,16 @@
46
46
  "@atlaskit/editor-toolbar": "^0.20.0",
47
47
  "@atlaskit/editor-toolbar-model": "^0.4.0",
48
48
  "@atlaskit/heading": "^5.3.0",
49
- "@atlaskit/icon": "^33.0.0",
49
+ "@atlaskit/icon": "^33.1.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
51
  "@atlaskit/primitives": "^18.1.0",
52
- "@atlaskit/tmp-editor-statsig": "^46.0.0",
52
+ "@atlaskit/tmp-editor-statsig": "^46.1.0",
53
53
  "@atlaskit/tokens": "^11.2.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@emotion/react": "^11.7.1"
56
56
  },
57
57
  "peerDependencies": {
58
- "@atlaskit/editor-common": "^112.9.0",
58
+ "@atlaskit/editor-common": "^112.10.0",
59
59
  "react": "^18.2.0",
60
60
  "react-intl-next": "npm:react-intl@^5.18.1"
61
61
  },