@atlaskit/editor-plugin-help-dialog 10.1.17 → 10.2.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,12 @@
1
1
  # @atlaskit/editor-plugin-help-dialog
2
2
 
3
+ ## 10.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`acbb2aa5cc917`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acbb2aa5cc917) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
3
10
  ## 10.1.17
4
11
 
5
12
  ### Patch Changes
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-help-dialog/commands",
3
+ "main": "../dist/cjs/entry-points/commands.js",
4
+ "module": "../dist/esm/entry-points/commands.js",
5
+ "module:es2019": "../dist/es2019/entry-points/commands.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/commands.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/commands.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "deprecatedOpenHelpCommand", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _commands.openHelpCommand;
10
+ }
11
+ });
12
+ var _commands = require("../pm-plugins/commands");
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "helpDialogPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _helpDialogPlugin.helpDialogPlugin;
10
+ }
11
+ });
12
+ var _helpDialogPlugin = require("../helpDialogPlugin");
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { openHelpCommand as deprecatedOpenHelpCommand } from '../pm-plugins/commands';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { helpDialogPlugin } from '../helpDialogPlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { openHelpCommand as deprecatedOpenHelpCommand } from '../pm-plugins/commands';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { helpDialogPlugin } from '../helpDialogPlugin';
File without changes
@@ -0,0 +1 @@
1
+ export { openHelpCommand as deprecatedOpenHelpCommand } from '../pm-plugins/commands';
@@ -0,0 +1 @@
1
+ export { helpDialogPlugin } from '../helpDialogPlugin';
@@ -0,0 +1 @@
1
+ export type { HelpDialogPlugin, HelpDialogSharedState, HelpDialogPluginOptions, HelpDialogDependencies, } from '../helpDialogPluginType';
@@ -0,0 +1 @@
1
+ export { openHelpCommand as deprecatedOpenHelpCommand } from '../pm-plugins/commands';
@@ -0,0 +1 @@
1
+ export { helpDialogPlugin } from '../helpDialogPlugin';
@@ -0,0 +1 @@
1
+ export type { HelpDialogPlugin, HelpDialogSharedState, HelpDialogPluginOptions, HelpDialogDependencies, } from '../helpDialogPluginType';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-help-dialog/helpDialogPlugin",
3
+ "main": "../dist/cjs/entry-points/helpDialogPlugin.js",
4
+ "module": "../dist/esm/entry-points/helpDialogPlugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/helpDialogPlugin.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/helpDialogPlugin.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/helpDialogPlugin.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-help-dialog/helpDialogPluginType",
3
+ "main": "../dist/cjs/entry-points/helpDialogPluginType.js",
4
+ "module": "../dist/esm/entry-points/helpDialogPluginType.js",
5
+ "module:es2019": "../dist/es2019/entry-points/helpDialogPluginType.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/helpDialogPluginType.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/helpDialogPluginType.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-help-dialog",
3
- "version": "10.1.17",
3
+ "version": "10.2.0",
4
4
  "description": "Help Dialog plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",