@atlaskit/editor-plugin-highlight 1.19.10 → 1.19.12
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/FloatingToolbarHighlightColor.d.ts +6 -7
- package/dist/types/ui/PrimaryToolbarHighlightColor.d.ts +8 -14
- package/dist/types-ts4.5/ui/FloatingToolbarHighlightColor.d.ts +6 -7
- package/dist/types-ts4.5/ui/PrimaryToolbarHighlightColor.d.ts +8 -14
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,11 @@ import type { WrappedComponentProps } from 'react-intl-next';
|
|
|
3
3
|
import { type DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
5
5
|
import type { HighlightPlugin } from '../highlightPluginType';
|
|
6
|
-
|
|
7
|
-
dispatchAnalyticsEvent?: DispatchAnalyticsEvent
|
|
6
|
+
type FloatingToolbarHighlightColorProps = {
|
|
7
|
+
dispatchAnalyticsEvent?: DispatchAnalyticsEvent;
|
|
8
8
|
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
9
|
-
} & WrappedComponentProps
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
13
|
-
} & WrappedComponentProps>;
|
|
9
|
+
} & WrappedComponentProps;
|
|
10
|
+
export declare const FloatingToolbarHighlightColorWithIntl: import("react").FC<import("react-intl-next").WithIntlProps<FloatingToolbarHighlightColorProps>> & {
|
|
11
|
+
WrappedComponent: import("react").ComponentType<FloatingToolbarHighlightColorProps>;
|
|
14
12
|
};
|
|
13
|
+
export {};
|
|
@@ -3,22 +3,16 @@ import type { WrappedComponentProps } from 'react-intl-next';
|
|
|
3
3
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
4
4
|
import { type EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
import type { HighlightPlugin } from '../highlightPluginType';
|
|
6
|
-
|
|
7
|
-
popupsMountPoint?: HTMLElement
|
|
8
|
-
popupsBoundariesElement?: HTMLElement
|
|
9
|
-
popupsScrollableElement?: HTMLElement
|
|
6
|
+
type PrimaryToolbarHighlightColorProps = {
|
|
7
|
+
popupsMountPoint?: HTMLElement;
|
|
8
|
+
popupsBoundariesElement?: HTMLElement;
|
|
9
|
+
popupsScrollableElement?: HTMLElement;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
isToolbarReducedSpacing: boolean;
|
|
12
12
|
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
13
13
|
editorView: EditorView;
|
|
14
|
-
} & WrappedComponentProps
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
popupsBoundariesElement?: HTMLElement | undefined;
|
|
18
|
-
popupsScrollableElement?: HTMLElement | undefined;
|
|
19
|
-
disabled: boolean;
|
|
20
|
-
isToolbarReducedSpacing: boolean;
|
|
21
|
-
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
22
|
-
editorView: EditorView;
|
|
23
|
-
} & WrappedComponentProps>;
|
|
14
|
+
} & WrappedComponentProps;
|
|
15
|
+
export declare const PrimaryToolbarHighlightColorWithIntl: import("react").FC<import("react-intl-next").WithIntlProps<PrimaryToolbarHighlightColorProps>> & {
|
|
16
|
+
WrappedComponent: import("react").ComponentType<PrimaryToolbarHighlightColorProps>;
|
|
24
17
|
};
|
|
18
|
+
export {};
|
|
@@ -3,12 +3,11 @@ import type { WrappedComponentProps } from 'react-intl-next';
|
|
|
3
3
|
import { type DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
5
5
|
import type { HighlightPlugin } from '../highlightPluginType';
|
|
6
|
-
|
|
7
|
-
dispatchAnalyticsEvent?: DispatchAnalyticsEvent
|
|
6
|
+
type FloatingToolbarHighlightColorProps = {
|
|
7
|
+
dispatchAnalyticsEvent?: DispatchAnalyticsEvent;
|
|
8
8
|
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
9
|
-
} & WrappedComponentProps
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
13
|
-
} & WrappedComponentProps>;
|
|
9
|
+
} & WrappedComponentProps;
|
|
10
|
+
export declare const FloatingToolbarHighlightColorWithIntl: import("react").FC<import("react-intl-next").WithIntlProps<FloatingToolbarHighlightColorProps>> & {
|
|
11
|
+
WrappedComponent: import("react").ComponentType<FloatingToolbarHighlightColorProps>;
|
|
14
12
|
};
|
|
13
|
+
export {};
|
|
@@ -3,22 +3,16 @@ import type { WrappedComponentProps } from 'react-intl-next';
|
|
|
3
3
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
4
4
|
import { type EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
import type { HighlightPlugin } from '../highlightPluginType';
|
|
6
|
-
|
|
7
|
-
popupsMountPoint?: HTMLElement
|
|
8
|
-
popupsBoundariesElement?: HTMLElement
|
|
9
|
-
popupsScrollableElement?: HTMLElement
|
|
6
|
+
type PrimaryToolbarHighlightColorProps = {
|
|
7
|
+
popupsMountPoint?: HTMLElement;
|
|
8
|
+
popupsBoundariesElement?: HTMLElement;
|
|
9
|
+
popupsScrollableElement?: HTMLElement;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
isToolbarReducedSpacing: boolean;
|
|
12
12
|
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
13
13
|
editorView: EditorView;
|
|
14
|
-
} & WrappedComponentProps
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
popupsBoundariesElement?: HTMLElement | undefined;
|
|
18
|
-
popupsScrollableElement?: HTMLElement | undefined;
|
|
19
|
-
disabled: boolean;
|
|
20
|
-
isToolbarReducedSpacing: boolean;
|
|
21
|
-
pluginInjectionApi: ExtractInjectionAPI<HighlightPlugin> | undefined;
|
|
22
|
-
editorView: EditorView;
|
|
23
|
-
} & WrappedComponentProps>;
|
|
14
|
+
} & WrappedComponentProps;
|
|
15
|
+
export declare const PrimaryToolbarHighlightColorWithIntl: import("react").FC<import("react-intl-next").WithIntlProps<PrimaryToolbarHighlightColorProps>> & {
|
|
16
|
+
WrappedComponent: import("react").ComponentType<PrimaryToolbarHighlightColorProps>;
|
|
24
17
|
};
|
|
18
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-highlight",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.12",
|
|
4
4
|
"description": "Highlight plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
40
|
-
"@atlaskit/editor-common": "^99.
|
|
41
|
-
"@atlaskit/editor-palette": "1.
|
|
40
|
+
"@atlaskit/editor-common": "^99.7.0",
|
|
41
|
+
"@atlaskit/editor-palette": "1.7.0",
|
|
42
42
|
"@atlaskit/editor-plugin-analytics": "^1.11.0",
|
|
43
43
|
"@atlaskit/editor-plugin-primary-toolbar": "^2.1.0",
|
|
44
|
-
"@atlaskit/editor-plugin-text-formatting": "^1.
|
|
44
|
+
"@atlaskit/editor-plugin-text-formatting": "^1.17.0",
|
|
45
45
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
46
46
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
47
47
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
48
|
-
"@atlaskit/icon": "^23.
|
|
49
|
-
"@atlaskit/platform-feature-flags": "^0.
|
|
50
|
-
"@atlaskit/primitives": "^13.
|
|
48
|
+
"@atlaskit/icon": "^23.6.0",
|
|
49
|
+
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
50
|
+
"@atlaskit/primitives": "^13.4.0",
|
|
51
51
|
"@atlaskit/tmp-editor-statsig": "^2.41.0",
|
|
52
|
-
"@atlaskit/tokens": "^3.
|
|
52
|
+
"@atlaskit/tokens": "^3.3.0",
|
|
53
53
|
"@babel/runtime": "^7.0.0",
|
|
54
54
|
"@emotion/react": "^11.7.1"
|
|
55
55
|
},
|