@atlaskit/editor-plugin-table 10.5.2 → 10.5.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 +12 -0
- package/package.json +3 -3
- package/src/nodeviews/TableComponent.tsx +1 -4
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "10.5.
|
|
3
|
+
"version": "10.5.4",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-batch-attribute-updates": "^2.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-content-insertion": "^2.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.0.0",
|
|
42
|
-
"@atlaskit/editor-plugin-extension": "5.0.
|
|
42
|
+
"@atlaskit/editor-plugin-extension": "5.0.10",
|
|
43
43
|
"@atlaskit/editor-plugin-guideline": "^2.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-selection": "^2.1.0",
|
|
45
45
|
"@atlaskit/editor-plugin-width": "^3.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
|
|
55
55
|
"@atlaskit/primitives": "^14.2.0",
|
|
56
56
|
"@atlaskit/theme": "^18.0.0",
|
|
57
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
57
|
+
"@atlaskit/tmp-editor-statsig": "^4.4.0",
|
|
58
58
|
"@atlaskit/toggle": "^15.0.0",
|
|
59
59
|
"@atlaskit/tokens": "^4.5.0",
|
|
60
60
|
"@atlaskit/tooltip": "^20.0.0",
|
|
@@ -1191,10 +1191,7 @@ class TableComponent extends React.Component<ComponentProps, TableState> {
|
|
|
1191
1191
|
|
|
1192
1192
|
let parentWidth = this.getParentNodeWidth();
|
|
1193
1193
|
|
|
1194
|
-
if (
|
|
1195
|
-
isNested &&
|
|
1196
|
-
isTableNestedInMoreThanOneNode(this.props.view.state, this.props.getPos())
|
|
1197
|
-
) {
|
|
1194
|
+
if (isNested && isTableNestedInMoreThanOneNode(this.props.view.state, this.props.getPos())) {
|
|
1198
1195
|
const resizeObsWrapperWidth = this.wrapperWidth || 0;
|
|
1199
1196
|
|
|
1200
1197
|
const wrapperWidthDiffBetweenRerenders = Math.abs(
|