@atlaskit/editor-plugin-table 7.6.5 → 7.6.6

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,13 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 7.6.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#86633](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86633) [`d9780cd1adb8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d9780cd1adb8) - ED-22713: Fixed table resizing not working with keyboard shortcuts
8
+ - [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724) [`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) - [ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from 35.7.0 to 35.8.0
9
+ - Updated dependencies
10
+
3
11
  ## 7.6.5
4
12
 
5
13
  ### Patch Changes
@@ -297,6 +297,7 @@ var TableResizer = exports.TableResizer = function TableResizer(_ref) {
297
297
  if (newWidth > maxWidth || newWidth < resizerMinWidth) {
298
298
  return;
299
299
  }
300
+ setLocalTableWidth(newWidth);
300
301
  handleResizeStop({
301
302
  width: width,
302
303
  x: 0,
@@ -289,6 +289,7 @@ export const TableResizer = ({
289
289
  if (newWidth > maxWidth || newWidth < resizerMinWidth) {
290
290
  return;
291
291
  }
292
+ setLocalTableWidth(newWidth);
292
293
  handleResizeStop({
293
294
  width: width,
294
295
  x: 0,
@@ -287,6 +287,7 @@ export var TableResizer = function TableResizer(_ref) {
287
287
  if (newWidth > maxWidth || newWidth < resizerMinWidth) {
288
288
  return;
289
289
  }
290
+ setLocalTableWidth(newWidth);
290
291
  handleResizeStop({
291
292
  width: width,
292
293
  x: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "7.6.5",
3
+ "version": "7.6.6",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -28,8 +28,8 @@
28
28
  "runReact18": false
29
29
  },
30
30
  "dependencies": {
31
- "@atlaskit/adf-schema": "^35.7.0",
32
- "@atlaskit/custom-steps": "^0.0.16",
31
+ "@atlaskit/adf-schema": "^35.8.0",
32
+ "@atlaskit/custom-steps": "^0.0.17",
33
33
  "@atlaskit/editor-common": "^78.22.0",
34
34
  "@atlaskit/editor-palette": "1.5.3",
35
35
  "@atlaskit/editor-plugin-analytics": "^1.0.0",
@@ -491,6 +491,7 @@ export const TableResizer = ({
491
491
  if (newWidth > maxWidth || newWidth < resizerMinWidth) {
492
492
  return;
493
493
  }
494
+ setLocalTableWidth(newWidth);
494
495
  handleResizeStop(
495
496
  { width: width, x: 0, y: 0, height: 0 },
496
497
  { width: step, height: 0 },