@atlaskit/editor-plugin-hyperlink 4.3.3 → 4.4.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,24 @@
1
1
  # @atlaskit/editor-plugin-hyperlink
2
2
 
3
+ ## 4.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#139139](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139139)
8
+ [`7f6b665d778dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6b665d778dd) -
9
+ [https://product-fabric.atlassian.net/browse/ED-27499](ED-27499) - the new
10
+ `@atlassian/confluence-presets` package with Confluence `full-page` preset is created
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
16
+ ## 4.3.4
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+
3
22
  ## 4.3.3
4
23
 
5
24
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  import type { HyperlinkState } from '@atlaskit/editor-common/link';
2
- import type { EditorCommand, HyperlinkPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
+ import type { EditorCommand, HyperlinkPluginOptions as CommonHyperlinkPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
3
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
4
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
5
5
  import type { ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
@@ -58,6 +58,7 @@ export type HyperlinkPluginActions = {
58
58
  insertLink: InsertLink;
59
59
  updateLink: UpdateLink;
60
60
  };
61
+ export type HyperlinkPluginOptions = CommonHyperlinkPluginOptions;
61
62
  export type HyperlinkPluginSharedState = HyperlinkState | undefined;
62
63
  export type HyperlinkPlugin = NextEditorPlugin<'hyperlink', {
63
64
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -1,3 +1,3 @@
1
1
  export { hyperlinkPlugin } from './hyperlinkPlugin';
2
- export type { HyperlinkPlugin } from './hyperlinkPluginType';
2
+ export type { HyperlinkPlugin, HyperlinkPluginOptions } from './hyperlinkPluginType';
3
3
  export type { HideLinkToolbar, ShowLinkToolbar, InsertLink, UpdateLink, } from './editor-commands/commands';
@@ -1,5 +1,5 @@
1
1
  import type { HyperlinkState } from '@atlaskit/editor-common/link';
2
- import type { EditorCommand, HyperlinkPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
+ import type { EditorCommand, HyperlinkPluginOptions as CommonHyperlinkPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
3
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
4
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
5
5
  import type { ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
@@ -58,6 +58,7 @@ export type HyperlinkPluginActions = {
58
58
  insertLink: InsertLink;
59
59
  updateLink: UpdateLink;
60
60
  };
61
+ export type HyperlinkPluginOptions = CommonHyperlinkPluginOptions;
61
62
  export type HyperlinkPluginSharedState = HyperlinkState | undefined;
62
63
  export type HyperlinkPlugin = NextEditorPlugin<'hyperlink', {
63
64
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -1,3 +1,3 @@
1
1
  export { hyperlinkPlugin } from './hyperlinkPlugin';
2
- export type { HyperlinkPlugin } from './hyperlinkPluginType';
2
+ export type { HyperlinkPlugin, HyperlinkPluginOptions } from './hyperlinkPluginType';
3
3
  export type { HideLinkToolbar, ShowLinkToolbar, InsertLink, UpdateLink, } from './editor-commands/commands';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-hyperlink",
3
- "version": "4.3.3",
3
+ "version": "4.4.0",
4
4
  "description": "Hyperlink plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -35,13 +35,13 @@
35
35
  "dependencies": {
36
36
  "@atlaskit/adf-schema": "^47.6.0",
37
37
  "@atlaskit/analytics-next": "^11.0.0",
38
- "@atlaskit/editor-common": "^102.19.0",
38
+ "@atlaskit/editor-common": "^103.4.0",
39
39
  "@atlaskit/editor-plugin-analytics": "^2.2.0",
40
40
  "@atlaskit/editor-plugin-card": "^5.4.0",
41
41
  "@atlaskit/editor-plugin-connectivity": "^2.0.0",
42
- "@atlaskit/editor-plugin-editor-viewmode": "^3.0.0",
43
- "@atlaskit/editor-plugin-primary-toolbar": "^3.1.0",
44
- "@atlaskit/editor-plugin-selection-toolbar": "^3.1.0",
42
+ "@atlaskit/editor-plugin-editor-viewmode": "^3.1.0",
43
+ "@atlaskit/editor-plugin-primary-toolbar": "^3.2.0",
44
+ "@atlaskit/editor-plugin-selection-toolbar": "^3.4.0",
45
45
  "@atlaskit/editor-prosemirror": "7.0.0",
46
46
  "@atlaskit/icon": "^25.5.0",
47
47
  "@atlaskit/platform-feature-flags": "^1.1.0",