@atlaskit/editor-plugin-highlight 6.3.14 → 6.3.16
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 +14 -0
- package/dist/cjs/ui/HighlightColorMenuItem.js +2 -2
- package/dist/cjs/ui/shared/EditorHighlightIcon.js +2 -2
- package/dist/es2019/ui/HighlightColorMenuItem.js +1 -1
- package/dist/es2019/ui/shared/EditorHighlightIcon.js +1 -1
- package/dist/esm/ui/HighlightColorMenuItem.js +1 -1
- package/dist/esm/ui/shared/EditorHighlightIcon.js +1 -1
- package/dist/types/ui/shared/EditorHighlightIcon.d.ts +1 -1
- package/dist/types-ts4.5/ui/shared/EditorHighlightIcon.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-highlight
|
|
2
2
|
|
|
3
|
+
## 6.3.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`90abe9b926a6f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90abe9b926a6f) -
|
|
8
|
+
Icon entrypoint migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 6.3.15
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.3.14
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -21,7 +21,7 @@ var _useSharedPluginStateSelector = require("@atlaskit/editor-common/use-shared-
|
|
|
21
21
|
var _editorPalette = require("@atlaskit/editor-palette");
|
|
22
22
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
23
23
|
var _heading = _interopRequireDefault(require("@atlaskit/heading"));
|
|
24
|
-
var
|
|
24
|
+
var _checkMark = _interopRequireDefault(require("@atlaskit/icon/core/check-mark"));
|
|
25
25
|
var _textStyle = _interopRequireDefault(require("@atlaskit/icon/core/text-style"));
|
|
26
26
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
27
27
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
@@ -37,7 +37,7 @@ var TextColorIconDecorator = function TextColorIconDecorator(_ref) {
|
|
|
37
37
|
var label = _ref.label,
|
|
38
38
|
isSelected = _ref.isSelected;
|
|
39
39
|
var iconColor = "var(--ds-icon, #000000)";
|
|
40
|
-
return isSelected ? /*#__PURE__*/React.createElement(
|
|
40
|
+
return isSelected ? /*#__PURE__*/React.createElement(_checkMark.default, {
|
|
41
41
|
color: iconColor,
|
|
42
42
|
LEGACY_primaryColor: iconColor,
|
|
43
43
|
label: label
|
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.EditorHighlightIcon = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _icons = require("@atlaskit/editor-common/icons");
|
|
10
|
-
var
|
|
10
|
+
var _edit = _interopRequireDefault(require("@atlaskit/icon/core/edit"));
|
|
11
11
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
12
12
|
var EditorHighlightIcon = exports.EditorHighlightIcon = function EditorHighlightIcon(_ref) {
|
|
13
13
|
var disabled = _ref.disabled,
|
|
@@ -17,7 +17,7 @@ var EditorHighlightIcon = exports.EditorHighlightIcon = function EditorHighlight
|
|
|
17
17
|
}, /*#__PURE__*/_react.default.createElement(_icons.SteppedRainbowIconDecoration, {
|
|
18
18
|
selectedColor: selectedColor,
|
|
19
19
|
disabled: disabled,
|
|
20
|
-
icon: /*#__PURE__*/_react.default.createElement(
|
|
20
|
+
icon: /*#__PURE__*/_react.default.createElement(_edit.default, {
|
|
21
21
|
LEGACY_size: "small",
|
|
22
22
|
label: ""
|
|
23
23
|
})
|
|
@@ -12,7 +12,7 @@ import { useSharedPluginStateSelector } from '@atlaskit/editor-common/use-shared
|
|
|
12
12
|
import { hexToEditorTextBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
13
13
|
import { ColorPalette, useToolbarDropdownMenu } from '@atlaskit/editor-toolbar';
|
|
14
14
|
import Heading from '@atlaskit/heading';
|
|
15
|
-
import EditorDoneIcon from '@atlaskit/icon/core/
|
|
15
|
+
import EditorDoneIcon from '@atlaskit/icon/core/check-mark';
|
|
16
16
|
import Icon from '@atlaskit/icon/core/text-style';
|
|
17
17
|
import { Stack, Text, Box } from '@atlaskit/primitives/compiled';
|
|
18
18
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SteppedRainbowIconDecoration } from '@atlaskit/editor-common/icons';
|
|
3
|
-
import EditFilledIcon from '@atlaskit/icon/core/
|
|
3
|
+
import EditFilledIcon from '@atlaskit/icon/core/edit';
|
|
4
4
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
5
5
|
export const EditorHighlightIcon = ({
|
|
6
6
|
disabled,
|
|
@@ -15,7 +15,7 @@ import { useSharedPluginStateSelector } from '@atlaskit/editor-common/use-shared
|
|
|
15
15
|
import { hexToEditorTextBackgroundPaletteColor } from '@atlaskit/editor-palette';
|
|
16
16
|
import { ColorPalette, useToolbarDropdownMenu } from '@atlaskit/editor-toolbar';
|
|
17
17
|
import Heading from '@atlaskit/heading';
|
|
18
|
-
import EditorDoneIcon from '@atlaskit/icon/core/
|
|
18
|
+
import EditorDoneIcon from '@atlaskit/icon/core/check-mark';
|
|
19
19
|
import Icon from '@atlaskit/icon/core/text-style';
|
|
20
20
|
import { Stack, Text, Box } from '@atlaskit/primitives/compiled';
|
|
21
21
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SteppedRainbowIconDecoration } from '@atlaskit/editor-common/icons';
|
|
3
|
-
import EditFilledIcon from '@atlaskit/icon/core/
|
|
3
|
+
import EditFilledIcon from '@atlaskit/icon/core/edit';
|
|
4
4
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
5
5
|
export var EditorHighlightIcon = function EditorHighlightIcon(_ref) {
|
|
6
6
|
var disabled = _ref.disabled,
|
|
@@ -3,5 +3,5 @@ type EditorHighlightIconProps = {
|
|
|
3
3
|
disabled: boolean;
|
|
4
4
|
selectedColor?: string | null;
|
|
5
5
|
};
|
|
6
|
-
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => React.JSX.Element;
|
|
6
|
+
export declare const EditorHighlightIcon: ({ disabled, selectedColor, }: EditorHighlightIconProps) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -3,5 +3,5 @@ type EditorHighlightIconProps = {
|
|
|
3
3
|
disabled: boolean;
|
|
4
4
|
selectedColor?: string | null;
|
|
5
5
|
};
|
|
6
|
-
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => React.JSX.Element;
|
|
6
|
+
export declare const EditorHighlightIcon: ({ disabled, selectedColor, }: EditorHighlightIconProps) => React.JSX.Element;
|
|
7
7
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-highlight",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.16",
|
|
4
4
|
"description": "Highlight plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"category": "Components"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"repository": "https://
|
|
17
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
18
18
|
"main": "dist/cjs/index.js",
|
|
19
19
|
"module": "dist/esm/index.js",
|
|
20
20
|
"module:es2019": "dist/es2019/index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
],
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/adf-schema": "^51.5.
|
|
36
|
-
"@atlaskit/button": "^23.
|
|
35
|
+
"@atlaskit/adf-schema": "^51.5.0",
|
|
36
|
+
"@atlaskit/button": "^23.7.0",
|
|
37
37
|
"@atlaskit/css": "^0.17.0",
|
|
38
38
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^6.2.0",
|
|
@@ -41,22 +41,22 @@
|
|
|
41
41
|
"@atlaskit/editor-plugin-selection-toolbar": "^7.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-text-formatting": "^6.1.0",
|
|
43
43
|
"@atlaskit/editor-plugin-toolbar": "^3.4.0",
|
|
44
|
-
"@atlaskit/editor-prosemirror": "7.
|
|
44
|
+
"@atlaskit/editor-prosemirror": "^7.2.0",
|
|
45
45
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
46
46
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
47
47
|
"@atlaskit/editor-toolbar": "^0.18.0",
|
|
48
48
|
"@atlaskit/editor-toolbar-model": "^0.2.0",
|
|
49
49
|
"@atlaskit/heading": "^5.2.0",
|
|
50
|
-
"@atlaskit/icon": "^29.
|
|
50
|
+
"@atlaskit/icon": "^29.1.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
52
|
"@atlaskit/primitives": "^16.4.0",
|
|
53
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
54
|
-
"@atlaskit/tokens": "^8.
|
|
53
|
+
"@atlaskit/tmp-editor-statsig": "^15.12.0",
|
|
54
|
+
"@atlaskit/tokens": "^8.5.0",
|
|
55
55
|
"@babel/runtime": "^7.0.0",
|
|
56
56
|
"@emotion/react": "^11.7.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@atlaskit/editor-common": "^110.
|
|
59
|
+
"@atlaskit/editor-common": "^110.44.0",
|
|
60
60
|
"react": "^18.2.0",
|
|
61
61
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
62
62
|
},
|