@atlaskit/editor-plugin-help-dialog 0.3.4 → 0.3.5

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,11 @@
1
1
  # @atlaskit/editor-plugin-help-dialog
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 0.3.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-help-dialog",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Help Dialog plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,15 +31,15 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/editor-common": "^76.22.0",
35
- "@atlaskit/editor-plugin-analytics": "^0.3.0",
34
+ "@atlaskit/editor-common": "^76.26.0",
35
+ "@atlaskit/editor-plugin-analytics": "^0.4.0",
36
36
  "@atlaskit/editor-plugin-quick-insert": "^0.2.0",
37
37
  "@atlaskit/editor-prosemirror": "1.1.0",
38
38
  "@atlaskit/editor-shared-styles": "^2.8.0",
39
39
  "@atlaskit/icon": "^22.0.0",
40
- "@atlaskit/modal-dialog": "^12.8.0",
40
+ "@atlaskit/modal-dialog": "^12.10.0",
41
41
  "@atlaskit/theme": "^12.6.0",
42
- "@atlaskit/tokens": "^1.28.0",
42
+ "@atlaskit/tokens": "^1.29.0",
43
43
  "@babel/runtime": "^7.0.0",
44
44
  "@emotion/react": "^11.7.1",
45
45
  "react-intl-next": "npm:react-intl@^5.18.1",
@@ -1,39 +0,0 @@
1
- ## API Report File for "@atlaskit/editor-plugin-help-dialog"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
8
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
9
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
10
- import type { QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
11
- import type { Transaction } from '@atlaskit/editor-prosemirror/state';
12
-
13
- // @public (undocumented)
14
- export const deprecatedOpenHelpCommand: (tr: Transaction, dispatch?: Function) => boolean;
15
-
16
- // @public (undocumented)
17
- export type HelpDialogPlugin = NextEditorPlugin<'helpDialog', {
18
- dependencies: [
19
- OptionalPlugin<AnalyticsPlugin>,
20
- OptionalPlugin<QuickInsertPlugin>
21
- ];
22
- pluginConfiguration: boolean;
23
- sharedState: HelpDialogSharedState | null;
24
- }>;
25
-
26
- // @public (undocumented)
27
- export const helpDialogPlugin: HelpDialogPlugin;
28
-
29
- // @public (undocumented)
30
- export interface HelpDialogSharedState {
31
- // (undocumented)
32
- imageEnabled: boolean;
33
- // (undocumented)
34
- isVisible: boolean;
35
- }
36
-
37
- // (No @packageDocumentation comment for this package)
38
-
39
- ```