@atlaskit/editor-plugin-highlight 1.19.12 → 1.20.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 +12 -0
- package/dist/types/ui/shared/EditorHighlightIcon.d.ts +2 -2
- package/dist/types/ui/shared/PaletteDropdown.d.ts +1 -1
- package/dist/types-ts4.5/ui/shared/EditorHighlightIcon.d.ts +2 -2
- package/dist/types-ts4.5/ui/shared/PaletteDropdown.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-highlight
|
|
2
2
|
|
|
3
|
+
## 1.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#105322](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105322)
|
|
8
|
+
[`8876083532adc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8876083532adc) -
|
|
9
|
+
Bumped editor-prosemirror version to 7.0.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 1.19.12
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
type EditorHighlightIconProps = {
|
|
3
3
|
disabled: boolean;
|
|
4
4
|
selectedColor?: string | null;
|
|
5
5
|
};
|
|
6
|
-
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => JSX.Element;
|
|
6
|
+
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -10,5 +10,5 @@ type PaletteDropdownProps = {
|
|
|
10
10
|
onColorChange: (color: string) => void;
|
|
11
11
|
isOpenedByKeyboard: boolean;
|
|
12
12
|
} & WithOutsideClickProps;
|
|
13
|
-
export declare const PaletteDropdown: (props: PaletteDropdownProps) => JSX.Element;
|
|
13
|
+
export declare const PaletteDropdown: (props: PaletteDropdownProps) => React.JSX.Element;
|
|
14
14
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
type EditorHighlightIconProps = {
|
|
3
3
|
disabled: boolean;
|
|
4
4
|
selectedColor?: string | null;
|
|
5
5
|
};
|
|
6
|
-
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => JSX.Element;
|
|
6
|
+
export declare const EditorHighlightIcon: ({ disabled, selectedColor }: EditorHighlightIconProps) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -10,5 +10,5 @@ type PaletteDropdownProps = {
|
|
|
10
10
|
onColorChange: (color: string) => void;
|
|
11
11
|
isOpenedByKeyboard: boolean;
|
|
12
12
|
} & WithOutsideClickProps;
|
|
13
|
-
export declare const PaletteDropdown: (props: PaletteDropdownProps) => JSX.Element;
|
|
13
|
+
export declare const PaletteDropdown: (props: PaletteDropdownProps) => React.JSX.Element;
|
|
14
14
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-highlight",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Highlight plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
40
|
-
"@atlaskit/editor-common": "^99.
|
|
40
|
+
"@atlaskit/editor-common": "^99.10.0",
|
|
41
41
|
"@atlaskit/editor-palette": "1.7.0",
|
|
42
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
43
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^2.
|
|
44
|
-
"@atlaskit/editor-plugin-text-formatting": "^1.
|
|
45
|
-
"@atlaskit/editor-prosemirror": "
|
|
42
|
+
"@atlaskit/editor-plugin-analytics": "^1.12.0",
|
|
43
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^2.2.0",
|
|
44
|
+
"@atlaskit/editor-plugin-text-formatting": "^1.18.0",
|
|
45
|
+
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
46
46
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
47
|
-
"@atlaskit/editor-tables": "^2.
|
|
48
|
-
"@atlaskit/icon": "^23.
|
|
47
|
+
"@atlaskit/editor-tables": "^2.9.0",
|
|
48
|
+
"@atlaskit/icon": "^23.7.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
50
|
-
"@atlaskit/primitives": "^13.
|
|
51
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
50
|
+
"@atlaskit/primitives": "^13.5.0",
|
|
51
|
+
"@atlaskit/tmp-editor-statsig": "^2.43.0",
|
|
52
52
|
"@atlaskit/tokens": "^3.3.0",
|
|
53
53
|
"@babel/runtime": "^7.0.0",
|
|
54
54
|
"@emotion/react": "^11.7.1"
|