@atlaskit/editor-plugin-highlight 6.3.20 → 7.0.0

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
+ ## 7.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [`ae731d9e5c7e0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ae731d9e5c7e0) -
8
+ ENGHEALTH-47538: Fix literal string a11y violation
9
+ - Updated dependencies
10
+
3
11
  ## 6.3.20
4
12
 
5
13
  ### Patch Changes
@@ -38,7 +38,6 @@ var PaletteDropdown = exports.PaletteDropdown = function PaletteDropdown(props)
38
38
  colorPalette = _uiColor.highlightColorPalette.map(function (item) {
39
39
  if (item.label === 'Orange') {
40
40
  return _objectSpread(_objectSpread({}, item), {}, {
41
- // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
42
41
  label: 'Yellow',
43
42
  message: _uiColor.colorPaletteMessages.yellow
44
43
  });
@@ -31,7 +31,6 @@ export const PaletteDropdown = props => {
31
31
  if (item.label === 'Orange') {
32
32
  return {
33
33
  ...item,
34
- // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
35
34
  label: 'Yellow',
36
35
  message: colorPaletteMessages.yellow
37
36
  };
@@ -31,7 +31,6 @@ export var PaletteDropdown = function PaletteDropdown(props) {
31
31
  colorPalette = highlightColorPalette.map(function (item) {
32
32
  if (item.label === 'Orange') {
33
33
  return _objectSpread(_objectSpread({}, item), {}, {
34
- // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
35
34
  label: 'Yellow',
36
35
  message: colorPaletteMessages.yellow
37
36
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-highlight",
3
- "version": "6.3.20",
3
+ "version": "7.0.0",
4
4
  "description": "Highlight plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -36,11 +36,11 @@
36
36
  "@atlaskit/button": "^23.9.0",
37
37
  "@atlaskit/css": "^0.19.0",
38
38
  "@atlaskit/editor-palette": "^2.1.0",
39
- "@atlaskit/editor-plugin-analytics": "^6.2.0",
40
- "@atlaskit/editor-plugin-primary-toolbar": "^7.0.0",
41
- "@atlaskit/editor-plugin-selection-toolbar": "^7.2.0",
42
- "@atlaskit/editor-plugin-text-formatting": "^6.1.0",
43
- "@atlaskit/editor-plugin-toolbar": "^3.5.0",
39
+ "@atlaskit/editor-plugin-analytics": "^7.0.0",
40
+ "@atlaskit/editor-plugin-primary-toolbar": "^8.0.0",
41
+ "@atlaskit/editor-plugin-selection-toolbar": "^8.0.0",
42
+ "@atlaskit/editor-plugin-text-formatting": "^7.0.0",
43
+ "@atlaskit/editor-plugin-toolbar": "^4.0.0",
44
44
  "@atlaskit/editor-prosemirror": "^7.2.0",
45
45
  "@atlaskit/editor-shared-styles": "^3.10.0",
46
46
  "@atlaskit/editor-tables": "^2.9.0",
@@ -56,7 +56,7 @@
56
56
  "@emotion/react": "^11.7.1"
57
57
  },
58
58
  "peerDependencies": {
59
- "@atlaskit/editor-common": "^110.50.0",
59
+ "@atlaskit/editor-common": "^111.0.0",
60
60
  "react": "^18.2.0",
61
61
  "react-intl-next": "npm:react-intl@^5.18.1"
62
62
  },