@atlaskit/editor-plugin-table 2.1.3 → 2.1.4

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-table
2
2
 
3
+ ## 2.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8b891bf3590`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b891bf3590) - This change introduces `editor-plugin-hyperlink` which separates the hyperlink plugin from `editor-core`. In order to enable this change there are now new entry points on `editor-common` (such as `/link`, `/quick-insert`) in order to separate common code. Further `prosemirror-input-rules` now has new exports of `createPlugin` and `createRule` which are used in many plugins in `editor-core`.
8
+ - Updated dependencies
9
+
3
10
  ## 2.1.3
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@atlaskit/adf-schema": "^26.2.0",
31
- "@atlaskit/editor-common": "^74.19.0",
31
+ "@atlaskit/editor-common": "^74.20.0",
32
32
  "@atlaskit/editor-palette": "1.5.1",
33
33
  "@atlaskit/editor-plugin-analytics": "^0.1.0",
34
34
  "@atlaskit/editor-plugin-content-insertion": "^0.0.6",
@@ -64,7 +64,7 @@
64
64
  "@atlaskit/editor-plugin-decorations": "^0.1.0",
65
65
  "@atlaskit/editor-plugin-feature-flags": "^0.1.0",
66
66
  "@atlaskit/editor-plugin-grid": "^0.1.0",
67
- "@atlaskit/editor-plugin-hyperlink": "^0.0.0",
67
+ "@atlaskit/editor-plugin-hyperlink": "^0.1.0",
68
68
  "@atlaskit/editor-plugin-width": "^0.1.0",
69
69
  "@atlaskit/editor-test-helpers": "^18.10.0",
70
70
  "@atlaskit/visual-regression": "*",
@@ -1,104 +0,0 @@
1
- ## API Report File for "@atlaskit/editor-plugin-table"
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 { AnalyticsEventPayload } from '@atlaskit/editor-common/analytics';
8
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
9
- import type { Command } from '@atlaskit/editor-common/types';
10
- import type { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
11
- import type { EditorSelectionAPI } from '@atlaskit/editor-common/selection';
12
- import type { GetEditorFeatureFlags } from '@atlaskit/editor-common/types';
13
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
14
- import { TableLayout } from '@atlaskit/adf-schema';
15
- import type { widthPlugin } from '@atlaskit/editor-plugin-width';
16
-
17
- // @public (undocumented)
18
- type InsertTableAction = (analyticsPayload: AnalyticsEventPayload) => Command;
19
-
20
- // @public (undocumented)
21
- type PermittedLayoutsDescriptor = 'all' | TableLayout[];
22
-
23
- // @public (undocumented)
24
- interface PluginConfig {
25
- // (undocumented)
26
- advanced?: boolean;
27
- // (undocumented)
28
- allowAddColumnWithCustomStep?: boolean;
29
- // (undocumented)
30
- allowBackgroundColor?: boolean;
31
- // (undocumented)
32
- allowCellOptionsInFloatingToolbar?: boolean;
33
- // (undocumented)
34
- allowCollapse?: boolean;
35
- // (undocumented)
36
- allowColumnResizing?: boolean;
37
- // (undocumented)
38
- allowColumnSorting?: boolean;
39
- // (undocumented)
40
- allowControls?: boolean;
41
- // (undocumented)
42
- allowDistributeColumns?: boolean;
43
- // (undocumented)
44
- allowHeaderColumn?: boolean;
45
- // (undocumented)
46
- allowHeaderRow?: boolean;
47
- // (undocumented)
48
- allowMergeCells?: boolean;
49
- // (undocumented)
50
- allowNumberColumn?: boolean;
51
- // (undocumented)
52
- initialRenderOptimization?: boolean;
53
- // (undocumented)
54
- isHeaderRowRequired?: boolean;
55
- // (undocumented)
56
- mouseMoveOptimization?: boolean;
57
- // (undocumented)
58
- permittedLayouts?: PermittedLayoutsDescriptor;
59
- // (undocumented)
60
- stickyHeaders?: boolean;
61
- // (undocumented)
62
- stickyHeadersOptimization?: boolean;
63
- // (undocumented)
64
- tableCellOptimization?: boolean;
65
- // (undocumented)
66
- tableOverflowShadowsOptimization?: boolean;
67
- // (undocumented)
68
- tableRenderOptimization?: boolean;
69
- }
70
-
71
- // @public (undocumented)
72
- interface TablePluginOptions {
73
- // (undocumented)
74
- allowContextualMenu?: boolean;
75
- // (undocumented)
76
- breakoutEnabled?: boolean;
77
- // (undocumented)
78
- editorSelectionAPI?: EditorSelectionAPI;
79
- // (undocumented)
80
- fullWidthEnabled?: boolean;
81
- // (undocumented)
82
- getEditorFeatureFlags?: GetEditorFeatureFlags;
83
- // (undocumented)
84
- tableOptions: PluginConfig;
85
- // (undocumented)
86
- wasFullWidthEnabled?: boolean;
87
- }
88
-
89
- // @public (undocumented)
90
- export const tablesPlugin: NextEditorPlugin<'table', {
91
- pluginConfiguration: TablePluginOptions | undefined;
92
- actions: {
93
- insertTable: InsertTableAction;
94
- };
95
- dependencies: [
96
- typeof analyticsPlugin,
97
- typeof contentInsertionPlugin,
98
- typeof widthPlugin
99
- ];
100
- }>;
101
-
102
- // (No @packageDocumentation comment for this package)
103
-
104
- ```