@atlaskit/editor-plugin-table 12.0.1 → 12.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,17 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#189314](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/189314)
8
+ [`22c6251496010`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/22c6251496010) -
9
+ Exported missing types that were already being inferred from existing exports
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 12.0.1
4
16
 
5
17
  ### Patch Changes
@@ -4,4 +4,4 @@ export {
4
4
  * @deprecated Use {@link tablePlugin} instead.
5
5
  */
6
6
  default as tablesPlugin, default as tablePlugin, } from './tablePlugin';
7
- export type { TablePlugin, TablePluginOptions } from './tablePluginType';
7
+ export type { TablePlugin, TablePluginOptions, TablePluginDependencies, TablePluginActions, TablePluginCommands, } from './tablePluginType';
@@ -10,9 +10,9 @@ export declare const GlobalStylesWrapper: ({ featureFlags, isDragAndDropEnabledO
10
10
  isDragAndDropEnabledOption?: boolean | undefined;
11
11
  api?: import("@atlaskit/editor-common/types").EditorInjectionAPI<"table", {
12
12
  pluginConfiguration: import("..").TablePluginOptions | undefined;
13
- actions: import("../tablePluginType").TablePluginActions;
13
+ actions: import("..").TablePluginActions;
14
14
  sharedState?: import("../types").TableSharedState | undefined;
15
- commands: import("../tablePluginType").TablePluginCommands;
16
- dependencies: import("../tablePluginType").TablePluginDependencies;
15
+ commands: import("..").TablePluginCommands;
16
+ dependencies: import("..").TablePluginDependencies;
17
17
  }> | undefined;
18
18
  }) => jsx.JSX.Element;
@@ -4,4 +4,4 @@ export {
4
4
  * @deprecated Use {@link tablePlugin} instead.
5
5
  */
6
6
  default as tablesPlugin, default as tablePlugin, } from './tablePlugin';
7
- export type { TablePlugin, TablePluginOptions } from './tablePluginType';
7
+ export type { TablePlugin, TablePluginOptions, TablePluginDependencies, TablePluginActions, TablePluginCommands, } from './tablePluginType';
@@ -10,9 +10,9 @@ export declare const GlobalStylesWrapper: ({ featureFlags, isDragAndDropEnabledO
10
10
  isDragAndDropEnabledOption?: boolean | undefined;
11
11
  api?: import("@atlaskit/editor-common/types").EditorInjectionAPI<"table", {
12
12
  pluginConfiguration: import("..").TablePluginOptions | undefined;
13
- actions: import("../tablePluginType").TablePluginActions;
13
+ actions: import("..").TablePluginActions;
14
14
  sharedState?: import("../types").TableSharedState | undefined;
15
- commands: import("../tablePluginType").TablePluginCommands;
16
- dependencies: import("../tablePluginType").TablePluginDependencies;
15
+ commands: import("..").TablePluginCommands;
16
+ dependencies: import("..").TablePluginDependencies;
17
17
  }> | undefined;
18
18
  }) => jsx.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "12.0.1",
3
+ "version": "12.1.0",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -35,9 +35,9 @@
35
35
  "@atlaskit/editor-plugin-accessibility-utils": "^3.0.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^3.0.0",
37
37
  "@atlaskit/editor-plugin-batch-attribute-updates": "^3.0.0",
38
- "@atlaskit/editor-plugin-content-insertion": "^3.0.0",
38
+ "@atlaskit/editor-plugin-content-insertion": "^3.1.0",
39
39
  "@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
40
- "@atlaskit/editor-plugin-extension": "6.0.4",
40
+ "@atlaskit/editor-plugin-extension": "6.1.0",
41
41
  "@atlaskit/editor-plugin-guideline": "^3.0.0",
42
42
  "@atlaskit/editor-plugin-interaction": "^4.0.0",
43
43
  "@atlaskit/editor-plugin-selection": "^3.0.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
53
53
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
54
54
  "@atlaskit/primitives": "^14.10.0",
55
- "@atlaskit/react-ufo": "^4.0.0",
55
+ "@atlaskit/react-ufo": "^4.1.0",
56
56
  "@atlaskit/theme": "^19.0.0",
57
57
  "@atlaskit/tmp-editor-statsig": "^9.9.0",
58
58
  "@atlaskit/toggle": "^15.0.0",
package/src/index.ts CHANGED
@@ -12,4 +12,10 @@ export {
12
12
  default as tablePlugin,
13
13
  } from './tablePlugin';
14
14
  // eslint-disable-next-line @atlaskit/editor/only-export-plugin
15
- export type { TablePlugin, TablePluginOptions } from './tablePluginType';
15
+ export type {
16
+ TablePlugin,
17
+ TablePluginOptions,
18
+ TablePluginDependencies,
19
+ TablePluginActions,
20
+ TablePluginCommands,
21
+ } from './tablePluginType';