@atlaskit/editor-plugin-table 10.3.1 → 10.3.2

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,14 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 10.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#122372](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122372)
8
+ [`888a32882ccad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/888a32882ccad) -
9
+ [ED-26327] Disable corner control on live page view mode
10
+ - Updated dependencies
11
+
3
12
  ## 10.3.1
4
13
 
5
14
  ### Patch Changes
@@ -79,7 +79,7 @@ var TableComponentWithSharedState = exports.TableComponentWithSharedState = func
79
79
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
80
80
  allowTableAlignment: allowTableAlignment,
81
81
  allowTableResizing: allowTableResizing,
82
- tableActive: tableActive,
82
+ tableActive: tableActive && !isLivePageViewMode,
83
83
  ordering: ordering,
84
84
  isResizing: isResizing,
85
85
  getNode: getNode
@@ -76,7 +76,7 @@ export const TableComponentWithSharedState = ({
76
76
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
77
77
  allowTableAlignment: allowTableAlignment,
78
78
  allowTableResizing: allowTableResizing,
79
- tableActive: tableActive,
79
+ tableActive: tableActive && !isLivePageViewMode,
80
80
  ordering: ordering,
81
81
  isResizing: isResizing,
82
82
  getNode: getNode
@@ -73,7 +73,7 @@ export var TableComponentWithSharedState = function TableComponentWithSharedStat
73
73
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
74
74
  allowTableAlignment: allowTableAlignment,
75
75
  allowTableResizing: allowTableResizing,
76
- tableActive: tableActive,
76
+ tableActive: tableActive && !isLivePageViewMode,
77
77
  ordering: ordering,
78
78
  isResizing: isResizing,
79
79
  getNode: getNode
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "10.3.1",
3
+ "version": "10.3.2",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -32,7 +32,7 @@
32
32
  "@atlaskit/adf-schema": "^47.6.0",
33
33
  "@atlaskit/button": "^21.1.0",
34
34
  "@atlaskit/custom-steps": "^0.11.0",
35
- "@atlaskit/editor-common": "^101.0.0",
35
+ "@atlaskit/editor-common": "^101.1.0",
36
36
  "@atlaskit/editor-palette": "2.0.0",
37
37
  "@atlaskit/editor-plugin-accessibility-utils": "^2.0.0",
38
38
  "@atlaskit/editor-plugin-analytics": "^2.1.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
53
53
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
54
54
  "@atlaskit/primitives": "^14.1.0",
55
- "@atlaskit/theme": "^17.0.0",
55
+ "@atlaskit/theme": "^18.0.0",
56
56
  "@atlaskit/tmp-editor-statsig": "^3.4.0",
57
57
  "@atlaskit/toggle": "^15.0.0",
58
58
  "@atlaskit/tokens": "^4.3.0",
@@ -110,7 +110,7 @@ export const TableComponentWithSharedState = ({
110
110
  isTableScalingEnabled={options?.isTableScalingEnabled}
111
111
  allowTableAlignment={allowTableAlignment}
112
112
  allowTableResizing={allowTableResizing}
113
- tableActive={tableActive}
113
+ tableActive={tableActive && !isLivePageViewMode}
114
114
  ordering={ordering}
115
115
  isResizing={isResizing}
116
116
  getNode={getNode}