@atlaskit/editor-plugin-table 5.3.37 → 5.3.38
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,33 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 5.3.38
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646) [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make feature flags plugin optional in all plugins including:
|
|
8
|
+
|
|
9
|
+
- analytics
|
|
10
|
+
- base
|
|
11
|
+
- card
|
|
12
|
+
- code-block
|
|
13
|
+
- expand
|
|
14
|
+
- extension
|
|
15
|
+
- floating-toolbar
|
|
16
|
+
- hyperlink
|
|
17
|
+
- insert-block
|
|
18
|
+
- layout
|
|
19
|
+
- layout
|
|
20
|
+
- list
|
|
21
|
+
- media
|
|
22
|
+
- paste
|
|
23
|
+
- rule
|
|
24
|
+
- table
|
|
25
|
+
- tasks-and-decisions
|
|
26
|
+
|
|
27
|
+
We already treat it as optional in the plugins, so this is just ensuring that the plugin is not mandatory to be added to the preset.
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
|
|
3
31
|
## 5.3.37
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.38",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@atlaskit/pragmatic-drag-and-drop": "^0.24.0",
|
|
45
45
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^0.7.0",
|
|
46
46
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^0.12.0",
|
|
47
|
-
"@atlaskit/primitives": "^1.
|
|
47
|
+
"@atlaskit/primitives": "^1.12.0",
|
|
48
48
|
"@atlaskit/theme": "^12.6.0",
|
|
49
49
|
"@atlaskit/tokens": "^1.28.0",
|
|
50
50
|
"@atlaskit/tooltip": "^18.0.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|
|
67
67
|
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
68
68
|
"@atlaskit/editor-plugin-grid": "^0.3.0",
|
|
69
|
-
"@atlaskit/editor-plugin-hyperlink": "^0.
|
|
69
|
+
"@atlaskit/editor-plugin-hyperlink": "^0.6.0",
|
|
70
70
|
"@atlaskit/visual-regression": "*",
|
|
71
71
|
"@atlaskit/webdriver-runner": "*",
|
|
72
72
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
@@ -2,7 +2,6 @@ import type { DocBuilder } from '@atlaskit/editor-common/types';
|
|
|
2
2
|
// eslint-disable-next-line import/no-extraneous-dependencies -- Removed import for fixing circular dependencies
|
|
3
3
|
import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
4
4
|
import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
|
|
5
|
-
import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
6
5
|
import { guidelinePlugin } from '@atlaskit/editor-plugin-guideline';
|
|
7
6
|
import { selectionPlugin } from '@atlaskit/editor-plugin-selection';
|
|
8
7
|
import { widthPlugin } from '@atlaskit/editor-plugin-width';
|
|
@@ -37,7 +36,6 @@ describe('table merging logic', () => {
|
|
|
37
36
|
createEditor({
|
|
38
37
|
doc,
|
|
39
38
|
preset: new Preset<LightEditorPlugin>()
|
|
40
|
-
.add([featureFlagsPlugin, {}])
|
|
41
39
|
.add([analyticsPlugin, {}])
|
|
42
40
|
.add(contentInsertionPlugin)
|
|
43
41
|
.add(widthPlugin)
|
|
@@ -3,7 +3,6 @@ import type { DocBuilder } from '@atlaskit/editor-common/types';
|
|
|
3
3
|
// eslint-disable-next-line import/no-extraneous-dependencies -- Removed import for fixing circular dependencies
|
|
4
4
|
import { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
5
5
|
import { contentInsertionPlugin } from '@atlaskit/editor-plugin-content-insertion';
|
|
6
|
-
import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
7
6
|
import { guidelinePlugin } from '@atlaskit/editor-plugin-guideline';
|
|
8
7
|
import { selectionPlugin } from '@atlaskit/editor-plugin-selection';
|
|
9
8
|
import { widthPlugin } from '@atlaskit/editor-plugin-width';
|
|
@@ -46,7 +45,6 @@ describe('table plugin: utils/row-controls.js', () => {
|
|
|
46
45
|
createEditor({
|
|
47
46
|
doc,
|
|
48
47
|
preset: new Preset<LightEditorPlugin>()
|
|
49
|
-
.add([featureFlagsPlugin, {}])
|
|
50
48
|
.add([analyticsPlugin, {}])
|
|
51
49
|
.add(contentInsertionPlugin)
|
|
52
50
|
.add(widthPlugin)
|