@atlaskit/editor-plugin-help-dialog 2.0.8 → 2.1.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,18 @@
1
1
  # @atlaskit/editor-plugin-help-dialog
2
2
 
3
+ ## 2.1.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
+
3
16
  ## 2.0.8
4
17
 
5
18
  ### Patch Changes
@@ -9,9 +9,10 @@ export type HelpDialogDependencies = [
9
9
  OptionalPlugin<AnalyticsPlugin>,
10
10
  OptionalPlugin<QuickInsertPlugin>
11
11
  ];
12
+ export type HelpDialogPluginOptions = boolean;
12
13
  export type HelpDialogPlugin = NextEditorPlugin<'helpDialog', {
13
14
  dependencies: HelpDialogDependencies;
14
- pluginConfiguration: boolean;
15
+ pluginConfiguration: HelpDialogPluginOptions;
15
16
  sharedState: HelpDialogSharedState | null;
16
17
  actions: {
17
18
  openHelp(): void;
@@ -1,4 +1,4 @@
1
- export type { HelpDialogPlugin, HelpDialogSharedState } from './helpDialogPluginType';
1
+ export type { HelpDialogPlugin, HelpDialogSharedState, HelpDialogPluginOptions, } from './helpDialogPluginType';
2
2
  export { helpDialogPlugin } from './helpDialogPlugin';
3
3
  export {
4
4
  /**
@@ -9,9 +9,10 @@ export type HelpDialogDependencies = [
9
9
  OptionalPlugin<AnalyticsPlugin>,
10
10
  OptionalPlugin<QuickInsertPlugin>
11
11
  ];
12
+ export type HelpDialogPluginOptions = boolean;
12
13
  export type HelpDialogPlugin = NextEditorPlugin<'helpDialog', {
13
14
  dependencies: HelpDialogDependencies;
14
- pluginConfiguration: boolean;
15
+ pluginConfiguration: HelpDialogPluginOptions;
15
16
  sharedState: HelpDialogSharedState | null;
16
17
  actions: {
17
18
  openHelp(): void;
@@ -1,4 +1,4 @@
1
- export type { HelpDialogPlugin, HelpDialogSharedState } from './helpDialogPluginType';
1
+ export type { HelpDialogPlugin, HelpDialogSharedState, HelpDialogPluginOptions, } from './helpDialogPluginType';
2
2
  export { helpDialogPlugin } from './helpDialogPlugin';
3
3
  export {
4
4
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-help-dialog",
3
- "version": "2.0.8",
3
+ "version": "2.1.0",
4
4
  "description": "Help Dialog plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,16 +33,16 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/editor-common": "^103.0.0",
36
+ "@atlaskit/editor-common": "^103.4.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^2.2.0",
38
- "@atlaskit/editor-plugin-quick-insert": "^2.2.0",
38
+ "@atlaskit/editor-plugin-quick-insert": "^2.3.0",
39
39
  "@atlaskit/editor-prosemirror": "7.0.0",
40
40
  "@atlaskit/editor-shared-styles": "^3.4.0",
41
- "@atlaskit/heading": "^5.1.0",
41
+ "@atlaskit/heading": "^5.2.0",
42
42
  "@atlaskit/icon": "^25.5.0",
43
43
  "@atlaskit/modal-dialog": "^14.1.0",
44
44
  "@atlaskit/platform-feature-flags": "^1.1.0",
45
- "@atlaskit/primitives": "^14.3.0",
45
+ "@atlaskit/primitives": "^14.4.0",
46
46
  "@atlaskit/theme": "^18.0.0",
47
47
  "@atlaskit/tokens": "^4.7.0",
48
48
  "@babel/runtime": "^7.0.0",