@atlaskit/editor-plugin-hyperlink 10.0.0 → 10.0.2
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/pm-plugins/fake-curor-for-toolbar-plugin-key.d.ts +1 -1
- package/dist/types/ui/PrimaryToolbarComponent.d.ts +8 -3
- package/dist/types-ts4.5/pm-plugins/fake-curor-for-toolbar-plugin-key.d.ts +1 -1
- package/dist/types-ts4.5/ui/PrimaryToolbarComponent.d.ts +8 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
export declare const fakeCursorForToolbarPluginKey: PluginKey
|
|
2
|
+
export declare const fakeCursorForToolbarPluginKey: PluginKey;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @jsxRuntime classic
|
|
3
|
+
* @jsx jsx
|
|
4
|
+
*/
|
|
5
|
+
import { type ComponentType, type FC } from 'react';
|
|
6
|
+
import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
|
|
2
7
|
import { type EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
3
8
|
import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
4
9
|
import type { HyperlinkPlugin } from '../hyperlinkPluginType';
|
|
@@ -6,7 +11,7 @@ type PrimaryToolbarComponentProps = {
|
|
|
6
11
|
api: ExtractInjectionAPI<HyperlinkPlugin> | undefined;
|
|
7
12
|
editorAnalyticsAPI?: EditorAnalyticsAPI;
|
|
8
13
|
} & WrappedComponentProps;
|
|
9
|
-
export declare const PrimaryToolbarComponent:
|
|
10
|
-
WrappedComponent:
|
|
14
|
+
export declare const PrimaryToolbarComponent: FC<WithIntlProps<PrimaryToolbarComponentProps>> & {
|
|
15
|
+
WrappedComponent: ComponentType<PrimaryToolbarComponentProps>;
|
|
11
16
|
};
|
|
12
17
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
export declare const fakeCursorForToolbarPluginKey: PluginKey
|
|
2
|
+
export declare const fakeCursorForToolbarPluginKey: PluginKey;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @jsxRuntime classic
|
|
3
|
+
* @jsx jsx
|
|
4
|
+
*/
|
|
5
|
+
import { type ComponentType, type FC } from 'react';
|
|
6
|
+
import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
|
|
2
7
|
import { type EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
3
8
|
import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
4
9
|
import type { HyperlinkPlugin } from '../hyperlinkPluginType';
|
|
@@ -6,7 +11,7 @@ type PrimaryToolbarComponentProps = {
|
|
|
6
11
|
api: ExtractInjectionAPI<HyperlinkPlugin> | undefined;
|
|
7
12
|
editorAnalyticsAPI?: EditorAnalyticsAPI;
|
|
8
13
|
} & WrappedComponentProps;
|
|
9
|
-
export declare const PrimaryToolbarComponent:
|
|
10
|
-
WrappedComponent:
|
|
14
|
+
export declare const PrimaryToolbarComponent: FC<WithIntlProps<PrimaryToolbarComponentProps>> & {
|
|
15
|
+
WrappedComponent: ComponentType<PrimaryToolbarComponentProps>;
|
|
11
16
|
};
|
|
12
17
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-hyperlink",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
4
4
|
"description": "Hyperlink plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"@atlaskit/icon": "^32.0.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
47
47
|
"@atlaskit/prosemirror-input-rules": "^3.6.0",
|
|
48
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
48
|
+
"@atlaskit/tmp-editor-statsig": "^37.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@emotion/react": "^11.7.1",
|
|
51
51
|
"uuid": "^3.1.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atlaskit/editor-common": "^112.
|
|
54
|
+
"@atlaskit/editor-common": "^112.2.0",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|