@atlaskit/editor-plugin-help-dialog 16.0.8 → 16.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +12 -12
  3. package/report.api.md +0 -64
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @atlaskit/editor-plugin-help-dialog
2
2
 
3
+ ## 16.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`bd2c5b0112185`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd2c5b0112185) -
8
+ Remove stale API report artifacts from published Platform packages.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
3
14
  ## 16.0.8
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-help-dialog",
3
- "version": "16.0.8",
3
+ "version": "16.1.0",
4
4
  "description": "Help Dialog plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -21,18 +21,18 @@
21
21
  ],
22
22
  "atlaskit:src": "src/index.ts",
23
23
  "dependencies": {
24
- "@atlaskit/editor-plugin-analytics": "^16.0.0",
25
- "@atlaskit/editor-plugin-quick-insert": "^16.1.0",
24
+ "@atlaskit/editor-plugin-analytics": "^16.1.0",
25
+ "@atlaskit/editor-plugin-quick-insert": "^16.2.0",
26
26
  "@atlaskit/editor-prosemirror": "^8.0.0",
27
- "@atlaskit/editor-shared-styles": "^4.0.0",
28
- "@atlaskit/heading": "^7.1.0",
29
- "@atlaskit/icon": "^37.5.0",
30
- "@atlaskit/modal-dialog": "^16.5.0",
31
- "@atlaskit/platform-feature-flags": "^2.1.0",
32
- "@atlaskit/primitives": "^22.4.0",
27
+ "@atlaskit/editor-shared-styles": "^4.1.0",
28
+ "@atlaskit/heading": "^7.2.0",
29
+ "@atlaskit/icon": "^37.6.0",
30
+ "@atlaskit/modal-dialog": "^16.6.0",
31
+ "@atlaskit/platform-feature-flags": "^2.2.0",
32
+ "@atlaskit/primitives": "^22.5.0",
33
33
  "@atlaskit/tmp-editor-statsig": "^168.0.0",
34
- "@atlaskit/tokens": "^16.9.0",
35
- "@atlaskit/tooltip": "^24.2.0",
34
+ "@atlaskit/tokens": "^16.10.0",
35
+ "@atlaskit/tooltip": "^24.3.0",
36
36
  "@babel/runtime": "^7.0.0",
37
37
  "@emotion/react": "^11.7.1",
38
38
  "react-loadable": "^5.1.0"
@@ -43,7 +43,7 @@
43
43
  "react-intl": "^7.0.0"
44
44
  },
45
45
  "peerDependencies": {
46
- "@atlaskit/editor-common": "^120.7.0",
46
+ "@atlaskit/editor-common": "^120.9.0",
47
47
  "react": "^18.2.0 || ^19.2.0",
48
48
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
49
49
  },
package/report.api.md DELETED
@@ -1,64 +0,0 @@
1
- <!-- API Report Version: 2.3 -->
2
-
3
- ## API Report File for "@atlaskit/editor-plugin-help-dialog"
4
-
5
- > Do not edit this file. This report is auto-generated using
6
- > [API Extractor](https://api-extractor.com/).
7
- > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
8
-
9
- ### Table of contents
10
-
11
- - [Main Entry Types](#main-entry-types)
12
- - [Peer Dependencies](#peer-dependencies)
13
-
14
- ### Main Entry Types
15
-
16
- <!--SECTION START: Main Entry Types-->
17
-
18
- ```ts
19
- import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
20
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
21
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
22
- import type { QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
23
- import type { Transaction } from '@atlaskit/editor-prosemirror/state';
24
-
25
- // @public (undocumented)
26
- export const deprecatedOpenHelpCommand: (tr: Transaction, dispatch?: Function) => boolean;
27
-
28
- // @public (undocumented)
29
- export type HelpDialogPlugin = NextEditorPlugin<
30
- 'helpDialog',
31
- {
32
- dependencies: [OptionalPlugin<AnalyticsPlugin>, OptionalPlugin<QuickInsertPlugin>];
33
- pluginConfiguration: boolean;
34
- sharedState: HelpDialogSharedState | null;
35
- }
36
- >;
37
-
38
- // @public (undocumented)
39
- export const helpDialogPlugin: HelpDialogPlugin;
40
-
41
- // @public (undocumented)
42
- export interface HelpDialogSharedState {
43
- // (undocumented)
44
- imageEnabled: boolean;
45
- // (undocumented)
46
- isVisible: boolean;
47
- }
48
-
49
- // (No @packageDocumentation comment for this package)
50
- ```
51
-
52
- <!--SECTION END: Main Entry Types-->
53
-
54
- ### Peer Dependencies
55
-
56
- <!--SECTION START: Peer Dependencies-->
57
-
58
- ```json
59
- {
60
- "react": "^16.8.0"
61
- }
62
- ```
63
-
64
- <!--SECTION END: Peer Dependencies-->