@atlaskit/editor-plugin-block-controls 11.0.2 → 11.1.1

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,28 @@
1
1
  # @atlaskit/editor-plugin-block-controls
2
2
 
3
+ ## 11.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 11.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`675d310a49c28`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/675d310a49c28) -
14
+ Remix entrypoints: ensure `cc-maui-experiment` exposures only fire on user-interactive surfaces.
15
+ - Fire exposure for: editor toolbar remix button, right-side hover button, highlight toolbar,
16
+ inline comment nudge, whiteboard AI action badge
17
+ - Use no-exposure for: props/infrastructure/layout-only checks (e.g., embedded header padding,
18
+ native-embed extension registration)
19
+ - Fix drag-handle controlSide ordering to avoid right-side controls on layout columns
20
+ - Restore layout column drag-handle VR test file
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+
3
26
  ## 11.0.2
4
27
 
5
28
  ### Patch Changes
@@ -1224,7 +1224,7 @@ var DragHandleWithVisibility = exports.DragHandleWithVisibility = function DragH
1224
1224
  var isLayoutColumn = nodeType === 'layoutColumn';
1225
1225
  return (0, _react2.jsx)(_visibilityContainer.VisibilityContainer, {
1226
1226
  api: api,
1227
- controlSide: rightSideControlsEnabled && !isLayoutColumn ? 'left' : undefined,
1227
+ controlSide: !isLayoutColumn && rightSideControlsEnabled ? 'left' : undefined,
1228
1228
  forceVisibleOnMouseOut: (0, _expValEquals.expValEquals)('platform_editor_drag_handle_keyboard_a11y', 'isEnabled', true) && !!(handleOptions !== null && handleOptions !== void 0 && handleOptions.isFocused)
1229
1229
  }, (0, _react2.jsx)(DragHandle, {
1230
1230
  view: view,
@@ -1199,7 +1199,7 @@ export const DragHandleWithVisibility = ({
1199
1199
  const isLayoutColumn = nodeType === 'layoutColumn';
1200
1200
  return jsx(VisibilityContainer, {
1201
1201
  api: api,
1202
- controlSide: rightSideControlsEnabled && !isLayoutColumn ? 'left' : undefined,
1202
+ controlSide: !isLayoutColumn && rightSideControlsEnabled ? 'left' : undefined,
1203
1203
  forceVisibleOnMouseOut: expValEquals('platform_editor_drag_handle_keyboard_a11y', 'isEnabled', true) && !!(handleOptions !== null && handleOptions !== void 0 && handleOptions.isFocused)
1204
1204
  }, jsx(DragHandle, {
1205
1205
  view: view,
@@ -1220,7 +1220,7 @@ export var DragHandleWithVisibility = function DragHandleWithVisibility(_ref1) {
1220
1220
  var isLayoutColumn = nodeType === 'layoutColumn';
1221
1221
  return jsx(VisibilityContainer, {
1222
1222
  api: api,
1223
- controlSide: rightSideControlsEnabled && !isLayoutColumn ? 'left' : undefined,
1223
+ controlSide: !isLayoutColumn && rightSideControlsEnabled ? 'left' : undefined,
1224
1224
  forceVisibleOnMouseOut: expValEquals('platform_editor_drag_handle_keyboard_a11y', 'isEnabled', true) && !!(handleOptions !== null && handleOptions !== void 0 && handleOptions.isFocused)
1225
1225
  }, jsx(DragHandle, {
1226
1226
  view: view,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-controls",
3
- "version": "11.0.2",
3
+ "version": "11.1.1",
4
4
  "description": "Block controls plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -56,7 +56,7 @@
56
56
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
57
57
  "@atlaskit/primitives": "^19.0.0",
58
58
  "@atlaskit/theme": "^23.1.0",
59
- "@atlaskit/tmp-editor-statsig": "^63.0.0",
59
+ "@atlaskit/tmp-editor-statsig": "^64.0.0",
60
60
  "@atlaskit/tokens": "^13.0.0",
61
61
  "@atlaskit/tooltip": "^21.1.0",
62
62
  "@babel/runtime": "^7.0.0",
@@ -67,7 +67,7 @@
67
67
  "uuid": "^3.1.0"
68
68
  },
69
69
  "peerDependencies": {
70
- "@atlaskit/editor-common": "^114.3.0",
70
+ "@atlaskit/editor-common": "^114.5.0",
71
71
  "react": "^18.2.0",
72
72
  "react-dom": "^18.2.0",
73
73
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"