@atlaskit/editor-plugin-table 14.0.1 → 14.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,24 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 14.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`64ec65231b4cf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/64ec65231b4cf) -
8
+ EDITOR-1568 bump adf-schema for afm
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 14.0.2
15
+
16
+ ### Patch Changes
17
+
18
+ - [`33f34d6fd24f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/33f34d6fd24f3) -
19
+ NO-ISSUE Prevent tableLocalId plugin running if platform_editor_adf_with_localid is true
20
+ - Updated dependencies
21
+
3
22
  ## 14.0.1
4
23
 
5
24
  ### Patch Changes
@@ -374,7 +374,7 @@ var tablePlugin = function tablePlugin(_ref) {
374
374
  name: 'tableLocalId',
375
375
  plugin: function plugin(_ref12) {
376
376
  var dispatch = _ref12.dispatch;
377
- return (0, _tableLocalId.createPlugin)(dispatch);
377
+ return !(0, _platformFeatureFlags.fg)('platform_editor_adf_with_localid') ? (0, _tableLocalId.createPlugin)(dispatch) : undefined;
378
378
  }
379
379
  }, {
380
380
  name: 'tableWidth',
@@ -361,7 +361,7 @@ const tablePlugin = ({
361
361
  name: 'tableLocalId',
362
362
  plugin: ({
363
363
  dispatch
364
- }) => createTableLocalIdPlugin(dispatch)
364
+ }) => !fg('platform_editor_adf_with_localid') ? createTableLocalIdPlugin(dispatch) : undefined
365
365
  }, {
366
366
  name: 'tableWidth',
367
367
  plugin: ({
@@ -365,7 +365,7 @@ var tablePlugin = function tablePlugin(_ref) {
365
365
  name: 'tableLocalId',
366
366
  plugin: function plugin(_ref12) {
367
367
  var dispatch = _ref12.dispatch;
368
- return createTableLocalIdPlugin(dispatch);
368
+ return !fg('platform_editor_adf_with_localid') ? createTableLocalIdPlugin(dispatch) : undefined;
369
369
  }
370
370
  }, {
371
371
  name: 'tableWidth',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "14.0.1",
3
+ "version": "14.1.0",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -28,16 +28,16 @@
28
28
  "singleton": true
29
29
  },
30
30
  "dependencies": {
31
- "@atlaskit/adf-schema": "^51.0.0",
31
+ "@atlaskit/adf-schema": "^51.1.1",
32
32
  "@atlaskit/button": "^23.4.0",
33
- "@atlaskit/custom-steps": "^0.11.0",
33
+ "@atlaskit/custom-steps": "^0.12.0",
34
34
  "@atlaskit/editor-palette": "^2.1.0",
35
35
  "@atlaskit/editor-plugin-accessibility-utils": "^5.0.0",
36
- "@atlaskit/editor-plugin-analytics": "^5.0.0",
37
- "@atlaskit/editor-plugin-batch-attribute-updates": "^5.0.0",
36
+ "@atlaskit/editor-plugin-analytics": "^5.1.0",
37
+ "@atlaskit/editor-plugin-batch-attribute-updates": "^5.1.0",
38
38
  "@atlaskit/editor-plugin-content-insertion": "^5.0.0",
39
39
  "@atlaskit/editor-plugin-editor-viewmode": "^7.0.0",
40
- "@atlaskit/editor-plugin-extension": "8.0.1",
40
+ "@atlaskit/editor-plugin-extension": "8.1.0",
41
41
  "@atlaskit/editor-plugin-guideline": "^5.0.0",
42
42
  "@atlaskit/editor-plugin-interaction": "^7.0.0",
43
43
  "@atlaskit/editor-plugin-limited-mode": "^2.0.0",
@@ -59,7 +59,7 @@
59
59
  "@atlaskit/primitives": "^14.14.0",
60
60
  "@atlaskit/react-ufo": "^4.6.0",
61
61
  "@atlaskit/theme": "^21.0.0",
62
- "@atlaskit/tmp-editor-statsig": "^12.10.0",
62
+ "@atlaskit/tmp-editor-statsig": "^12.14.0",
63
63
  "@atlaskit/toggle": "^15.1.0",
64
64
  "@atlaskit/tokens": "^6.3.0",
65
65
  "@atlaskit/tooltip": "^20.4.0",
@@ -72,7 +72,7 @@
72
72
  "uuid": "^3.1.0"
73
73
  },
74
74
  "peerDependencies": {
75
- "@atlaskit/editor-common": "^109.1.0",
75
+ "@atlaskit/editor-common": "^109.3.0",
76
76
  "react": "^18.2.0",
77
77
  "react-dom": "^18.2.0",
78
78
  "react-intl-next": "npm:react-intl@^5.18.1"