@atlaskit/editor-plugin-breakout 6.3.0 → 6.4.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-breakout
2
2
 
3
+ ## 6.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) -
8
+ Migrated and cleaned up legacy iconography usage.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 6.3.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [`d0a60ac78aa7e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d0a60ac78aa7e) -
19
+ Remove platform_editor_breakout_resizing_width_changes FG
20
+ - Updated dependencies
21
+
3
22
  ## 6.3.0
4
23
 
5
24
  ### Minor Changes
@@ -12,7 +12,6 @@ var _react = _interopRequireWildcard(require("react"));
12
12
  var _bindEventListener = require("bind-event-listener");
13
13
  var _v = _interopRequireDefault(require("uuid/v4"));
14
14
  var _messages = require("@atlaskit/editor-common/messages");
15
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
16
15
  var _adapter = require("@atlaskit/pragmatic-drag-and-drop/element/adapter");
17
16
  var _disableNativeDragPreview = require("@atlaskit/pragmatic-drag-and-drop/element/disable-native-drag-preview");
18
17
  var _preventUnhandled = require("@atlaskit/pragmatic-drag-and-drop/prevent-unhandled");
@@ -73,9 +72,7 @@ var createPragmaticResizer = exports.createPragmaticResizer = function createPra
73
72
  var handle = document.createElement('div');
74
73
  handle.contentEditable = 'false';
75
74
  handle.classList.add('pm-breakout-resize-handle-container');
76
- if ((0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
77
- handle.style.gridColumn = side === 'left' ? '1' : '3';
78
- }
75
+ handle.style.gridColumn = side === 'left' ? '1' : '3';
79
76
  var rail = document.createElement('div');
80
77
  rail.classList.add('pm-breakout-resize-handle-rail');
81
78
  if (side === 'left') {
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.createResizerCallbacks = createResizerCallbacks;
7
7
  exports.getProposedWidth = getProposedWidth;
8
8
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
9
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
10
9
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
11
10
  var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
12
11
  var _setBreakoutWidth = require("../editor-commands/set-breakout-width");
@@ -54,7 +53,6 @@ function getProposedWidth(_ref) {
54
53
  }
55
54
  function createResizerCallbacks(_ref2) {
56
55
  var dom = _ref2.dom,
57
- contentDOM = _ref2.contentDOM,
58
56
  view = _ref2.view,
59
57
  mark = _ref2.mark,
60
58
  api = _ref2.api;
@@ -132,12 +130,9 @@ function createResizerCallbacks(_ref2) {
132
130
  return tr;
133
131
  });
134
132
  }
135
- if ((0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
136
- // dom is used for width calculations
137
- dom.style.setProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
138
- } else {
139
- contentDOM.style.setProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
140
- }
133
+
134
+ // dom is used for width calculations
135
+ dom.style.setProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
141
136
  },
142
137
  onDrop: function onDrop(_ref7) {
143
138
  var _api$guideline2, _api$editorViewMode;
@@ -179,11 +174,7 @@ function createResizerCallbacks(_ref2) {
179
174
  }
180
175
  var isEditMode = (api === null || api === void 0 || (_api$editorViewMode = api.editorViewMode) === null || _api$editorViewMode === void 0 || (_api$editorViewMode = _api$editorViewMode.sharedState.currentState()) === null || _api$editorViewMode === void 0 ? void 0 : _api$editorViewMode.mode) === 'edit';
181
176
  (0, _setBreakoutWidth.setBreakoutWidth)(newWidth, mode, pos, isEditMode)(view.state, view.dispatch);
182
- if ((0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
183
- dom.style.removeProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY);
184
- } else {
185
- contentDOM.style.removeProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY);
186
- }
177
+ dom.style.removeProperty(_resizingMarkView.LOCAL_RESIZE_PROPERTY);
187
178
  if (node) {
188
179
  var resizedPayload = (0, _analytics.generateResizedEventPayload)({
189
180
  node: node,
@@ -9,7 +9,6 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/cl
9
9
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
10
10
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
11
  var _styles = require("@atlaskit/editor-common/styles");
12
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
13
12
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
14
13
  var _pragmaticResizer = require("./pragmatic-resizer");
15
14
  var _resizerCallbacks = require("./resizer-callbacks");
@@ -47,14 +46,9 @@ var ResizingMarkView = exports.ResizingMarkView = /*#__PURE__*/function () {
47
46
  dom.style.justifyContent = 'center';
48
47
 
49
48
  // contentDOM - styles
50
- if ((0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
51
- contentDOM.style.gridColumn = '2';
52
- } else {
53
- contentDOM.style.gridRow = '1';
54
- contentDOM.style.gridColumn = '1';
55
- }
49
+ contentDOM.style.gridColumn = '2';
56
50
  contentDOM.style.zIndex = '1';
57
- if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
51
+ if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true)) {
58
52
  if (mark.attrs.width) {
59
53
  dom.style.gridTemplateColumns = "auto max(var(--ak-editor--breakout-min-width), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width))) auto");
60
54
  } else {
@@ -65,20 +59,9 @@ var ResizingMarkView = exports.ResizingMarkView = /*#__PURE__*/function () {
65
59
  contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
66
60
  }
67
61
  }
68
- } else if ((0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_width_changes')) {
69
- if (mark.attrs.width) {
70
- dom.style.gridTemplateColumns = "auto min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width)) auto");
71
- } else {
72
- if (mark.attrs.mode === 'wide') {
73
- contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
74
- }
75
- if (mark.attrs.mode === 'full-width') {
76
- contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
77
- }
78
- }
79
62
  } else {
80
63
  if (mark.attrs.width) {
81
- contentDOM.style.width = "min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding)))");
64
+ dom.style.gridTemplateColumns = "auto min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width)) auto");
82
65
  } else {
83
66
  if (mark.attrs.mode === 'wide') {
84
67
  contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
@@ -118,7 +101,6 @@ var ResizingMarkView = exports.ResizingMarkView = /*#__PURE__*/function () {
118
101
  value: function setupResizerCallbacks(dom, contentDOM, view, mark, api) {
119
102
  var callbacks = (0, _resizerCallbacks.createResizerCallbacks)({
120
103
  dom: dom,
121
- contentDOM: contentDOM,
122
104
  view: view,
123
105
  mark: mark,
124
106
  api: api
@@ -19,8 +19,6 @@ var _utils2 = require("@atlaskit/editor-prosemirror/utils");
19
19
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
20
20
  var _growHorizontal = _interopRequireDefault(require("@atlaskit/icon/core/grow-horizontal"));
21
21
  var _shrinkHorizontal = _interopRequireDefault(require("@atlaskit/icon/core/shrink-horizontal"));
22
- var _collapse = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/collapse"));
23
- var _expand = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/expand"));
24
22
  var _colors = require("@atlaskit/theme/colors");
25
23
  var _constants = require("@atlaskit/theme/constants");
26
24
  var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
@@ -174,11 +172,9 @@ var LayoutButton = function LayoutButton(_ref) {
174
172
  },
175
173
  iconBefore: breakoutMode === 'full-width' ? (0, _react2.jsx)(_shrinkHorizontal.default, {
176
174
  label: title,
177
- LEGACY_fallbackIcon: _collapse.default,
178
175
  spacing: "spacious"
179
176
  }) : (0, _react2.jsx)(_growHorizontal.default, {
180
177
  label: title,
181
- LEGACY_fallbackIcon: _expand.default,
182
178
  spacing: "spacious"
183
179
  })
184
180
  })));
@@ -3,7 +3,6 @@ import { bind } from 'bind-event-listener';
3
3
  // eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
4
4
  import uuid from 'uuid/v4';
5
5
  import { breakoutMessages as messages } from '@atlaskit/editor-common/messages';
6
- import { fg } from '@atlaskit/platform-feature-flags';
7
6
  import { draggable } from '@atlaskit/pragmatic-drag-and-drop/element/adapter';
8
7
  import { disableNativeDragPreview } from '@atlaskit/pragmatic-drag-and-drop/element/disable-native-drag-preview';
9
8
  import { preventUnhandled } from '@atlaskit/pragmatic-drag-and-drop/prevent-unhandled';
@@ -60,9 +59,7 @@ export const createPragmaticResizer = ({
60
59
  const handle = document.createElement('div');
61
60
  handle.contentEditable = 'false';
62
61
  handle.classList.add('pm-breakout-resize-handle-container');
63
- if (fg('platform_editor_breakout_resizing_width_changes')) {
64
- handle.style.gridColumn = side === 'left' ? '1' : '3';
65
- }
62
+ handle.style.gridColumn = side === 'left' ? '1' : '3';
66
63
  const rail = document.createElement('div');
67
64
  rail.classList.add('pm-breakout-resize-handle-rail');
68
65
  if (side === 'left') {
@@ -1,5 +1,4 @@
1
1
  import { akEditorGutterPaddingDynamic, akEditorGutterPadding, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorDefaultLayoutWidth, akEditorFullWidthLayoutWidth, akEditorCalculatedWideLayoutWidth, akEditorMaxLayoutWidth } from '@atlaskit/editor-shared-styles';
2
- import { fg } from '@atlaskit/platform-feature-flags';
3
2
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
4
3
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
5
4
  import { setBreakoutWidth } from '../editor-commands/set-breakout-width';
@@ -47,7 +46,6 @@ export function getProposedWidth({
47
46
  }
48
47
  export function createResizerCallbacks({
49
48
  dom,
50
- contentDOM,
51
49
  view,
52
50
  mark,
53
51
  api
@@ -129,12 +127,9 @@ export function createResizerCallbacks({
129
127
  return tr;
130
128
  });
131
129
  }
132
- if (fg('platform_editor_breakout_resizing_width_changes')) {
133
- // dom is used for width calculations
134
- dom.style.setProperty(LOCAL_RESIZE_PROPERTY, `${newWidth}px`);
135
- } else {
136
- contentDOM.style.setProperty(LOCAL_RESIZE_PROPERTY, `${newWidth}px`);
137
- }
130
+
131
+ // dom is used for width calculations
132
+ dom.style.setProperty(LOCAL_RESIZE_PROPERTY, `${newWidth}px`);
138
133
  },
139
134
  onDrop({
140
135
  location,
@@ -173,11 +168,7 @@ export function createResizerCallbacks({
173
168
  }
174
169
  const isEditMode = (api === null || api === void 0 ? void 0 : (_api$editorViewMode = api.editorViewMode) === null || _api$editorViewMode === void 0 ? void 0 : (_api$editorViewMode$s = _api$editorViewMode.sharedState.currentState()) === null || _api$editorViewMode$s === void 0 ? void 0 : _api$editorViewMode$s.mode) === 'edit';
175
170
  setBreakoutWidth(newWidth, mode, pos, isEditMode)(view.state, view.dispatch);
176
- if (fg('platform_editor_breakout_resizing_width_changes')) {
177
- dom.style.removeProperty(LOCAL_RESIZE_PROPERTY);
178
- } else {
179
- contentDOM.style.removeProperty(LOCAL_RESIZE_PROPERTY);
180
- }
171
+ dom.style.removeProperty(LOCAL_RESIZE_PROPERTY);
181
172
  if (node) {
182
173
  const resizedPayload = generateResizedEventPayload({
183
174
  node,
@@ -1,6 +1,5 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  import { BreakoutCssClassName } from '@atlaskit/editor-common/styles';
3
- import { fg } from '@atlaskit/platform-feature-flags';
4
3
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
5
4
  import { createPragmaticResizer } from './pragmatic-resizer';
6
5
  import { createResizerCallbacks } from './resizer-callbacks';
@@ -33,14 +32,9 @@ export class ResizingMarkView {
33
32
  dom.style.justifyContent = 'center';
34
33
 
35
34
  // contentDOM - styles
36
- if (fg('platform_editor_breakout_resizing_width_changes')) {
37
- contentDOM.style.gridColumn = '2';
38
- } else {
39
- contentDOM.style.gridRow = '1';
40
- contentDOM.style.gridColumn = '1';
41
- }
35
+ contentDOM.style.gridColumn = '2';
42
36
  contentDOM.style.zIndex = '1';
43
- if (expValEquals('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true) && fg('platform_editor_breakout_resizing_width_changes')) {
37
+ if (expValEquals('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true)) {
44
38
  if (mark.attrs.width) {
45
39
  dom.style.gridTemplateColumns = `auto max(var(--ak-editor--breakout-min-width), min(var(${LOCAL_RESIZE_PROPERTY}, ${mark.attrs.width}px), var(--ak-editor--breakout-fallback-width))) auto`;
46
40
  } else {
@@ -51,20 +45,9 @@ export class ResizingMarkView {
51
45
  contentDOM.style.width = `max(var(--ak-editor--line-length), min(var(${LOCAL_RESIZE_PROPERTY}, var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))`;
52
46
  }
53
47
  }
54
- } else if (fg('platform_editor_breakout_resizing_width_changes')) {
55
- if (mark.attrs.width) {
56
- dom.style.gridTemplateColumns = `auto min(var(${LOCAL_RESIZE_PROPERTY}, ${mark.attrs.width}px), var(--ak-editor--breakout-fallback-width)) auto`;
57
- } else {
58
- if (mark.attrs.mode === 'wide') {
59
- contentDOM.style.width = `max(var(--ak-editor--line-length), min(var(${LOCAL_RESIZE_PROPERTY}, var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))`;
60
- }
61
- if (mark.attrs.mode === 'full-width') {
62
- contentDOM.style.width = `max(var(--ak-editor--line-length), min(var(${LOCAL_RESIZE_PROPERTY}, var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))`;
63
- }
64
- }
65
48
  } else {
66
49
  if (mark.attrs.width) {
67
- contentDOM.style.width = `min(var(${LOCAL_RESIZE_PROPERTY}, ${mark.attrs.width}px), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding)))`;
50
+ dom.style.gridTemplateColumns = `auto min(var(${LOCAL_RESIZE_PROPERTY}, ${mark.attrs.width}px), var(--ak-editor--breakout-fallback-width)) auto`;
68
51
  } else {
69
52
  if (mark.attrs.mode === 'wide') {
70
53
  contentDOM.style.width = `max(var(--ak-editor--line-length), min(var(${LOCAL_RESIZE_PROPERTY}, var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))`;
@@ -102,7 +85,6 @@ export class ResizingMarkView {
102
85
  setupResizerCallbacks(dom, contentDOM, view, mark, api) {
103
86
  const callbacks = createResizerCallbacks({
104
87
  dom,
105
- contentDOM,
106
88
  view,
107
89
  mark,
108
90
  api
@@ -17,8 +17,6 @@ import { findDomRefAtPos, findParentDomRefOfType } from '@atlaskit/editor-prosem
17
17
  import { akEditorFullPageNarrowBreakout } from '@atlaskit/editor-shared-styles';
18
18
  import GrowHorizontalIcon from '@atlaskit/icon/core/grow-horizontal';
19
19
  import ShrinkHorizontalIcon from '@atlaskit/icon/core/shrink-horizontal';
20
- import CollapseIcon from '@atlaskit/icon/glyph/editor/collapse';
21
- import ExpandIcon from '@atlaskit/icon/glyph/editor/expand';
22
20
  import { B300, N20A, N300 } from '@atlaskit/theme/colors';
23
21
  import { layers } from '@atlaskit/theme/constants';
24
22
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
@@ -170,11 +168,9 @@ const LayoutButton = ({
170
168
  onClick: () => handleClick(nextBreakoutMode),
171
169
  iconBefore: breakoutMode === 'full-width' ? jsx(ShrinkHorizontalIcon, {
172
170
  label: title,
173
- LEGACY_fallbackIcon: CollapseIcon,
174
171
  spacing: "spacious"
175
172
  }) : jsx(GrowHorizontalIcon, {
176
173
  label: title,
177
- LEGACY_fallbackIcon: ExpandIcon,
178
174
  spacing: "spacious"
179
175
  })
180
176
  })));
@@ -5,7 +5,6 @@ import { bind } from 'bind-event-listener';
5
5
  // eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
6
6
  import uuid from 'uuid/v4';
7
7
  import { breakoutMessages as messages } from '@atlaskit/editor-common/messages';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { draggable } from '@atlaskit/pragmatic-drag-and-drop/element/adapter';
10
9
  import { disableNativeDragPreview } from '@atlaskit/pragmatic-drag-and-drop/element/disable-native-drag-preview';
11
10
  import { preventUnhandled } from '@atlaskit/pragmatic-drag-and-drop/prevent-unhandled';
@@ -63,9 +62,7 @@ export var createPragmaticResizer = function createPragmaticResizer(_ref2) {
63
62
  var handle = document.createElement('div');
64
63
  handle.contentEditable = 'false';
65
64
  handle.classList.add('pm-breakout-resize-handle-container');
66
- if (fg('platform_editor_breakout_resizing_width_changes')) {
67
- handle.style.gridColumn = side === 'left' ? '1' : '3';
68
- }
65
+ handle.style.gridColumn = side === 'left' ? '1' : '3';
69
66
  var rail = document.createElement('div');
70
67
  rail.classList.add('pm-breakout-resize-handle-rail');
71
68
  if (side === 'left') {
@@ -1,5 +1,4 @@
1
1
  import { akEditorGutterPaddingDynamic, akEditorGutterPadding, akEditorGutterPaddingReduced, akEditorFullPageNarrowBreakout, akEditorDefaultLayoutWidth, akEditorFullWidthLayoutWidth, akEditorCalculatedWideLayoutWidth, akEditorMaxLayoutWidth } from '@atlaskit/editor-shared-styles';
2
- import { fg } from '@atlaskit/platform-feature-flags';
3
2
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
4
3
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
5
4
  import { setBreakoutWidth } from '../editor-commands/set-breakout-width';
@@ -47,7 +46,6 @@ export function getProposedWidth(_ref) {
47
46
  }
48
47
  export function createResizerCallbacks(_ref2) {
49
48
  var dom = _ref2.dom,
50
- contentDOM = _ref2.contentDOM,
51
49
  view = _ref2.view,
52
50
  mark = _ref2.mark,
53
51
  api = _ref2.api;
@@ -125,12 +123,9 @@ export function createResizerCallbacks(_ref2) {
125
123
  return tr;
126
124
  });
127
125
  }
128
- if (fg('platform_editor_breakout_resizing_width_changes')) {
129
- // dom is used for width calculations
130
- dom.style.setProperty(LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
131
- } else {
132
- contentDOM.style.setProperty(LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
133
- }
126
+
127
+ // dom is used for width calculations
128
+ dom.style.setProperty(LOCAL_RESIZE_PROPERTY, "".concat(newWidth, "px"));
134
129
  },
135
130
  onDrop: function onDrop(_ref7) {
136
131
  var _api$guideline2, _api$editorViewMode;
@@ -172,11 +167,7 @@ export function createResizerCallbacks(_ref2) {
172
167
  }
173
168
  var isEditMode = (api === null || api === void 0 || (_api$editorViewMode = api.editorViewMode) === null || _api$editorViewMode === void 0 || (_api$editorViewMode = _api$editorViewMode.sharedState.currentState()) === null || _api$editorViewMode === void 0 ? void 0 : _api$editorViewMode.mode) === 'edit';
174
169
  setBreakoutWidth(newWidth, mode, pos, isEditMode)(view.state, view.dispatch);
175
- if (fg('platform_editor_breakout_resizing_width_changes')) {
176
- dom.style.removeProperty(LOCAL_RESIZE_PROPERTY);
177
- } else {
178
- contentDOM.style.removeProperty(LOCAL_RESIZE_PROPERTY);
179
- }
170
+ dom.style.removeProperty(LOCAL_RESIZE_PROPERTY);
180
171
  if (node) {
181
172
  var resizedPayload = generateResizedEventPayload({
182
173
  node: node,
@@ -4,7 +4,6 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
4
4
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
5
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
6
  import { BreakoutCssClassName } from '@atlaskit/editor-common/styles';
7
- import { fg } from '@atlaskit/platform-feature-flags';
8
7
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
9
8
  import { createPragmaticResizer } from './pragmatic-resizer';
10
9
  import { createResizerCallbacks } from './resizer-callbacks';
@@ -40,14 +39,9 @@ export var ResizingMarkView = /*#__PURE__*/function () {
40
39
  dom.style.justifyContent = 'center';
41
40
 
42
41
  // contentDOM - styles
43
- if (fg('platform_editor_breakout_resizing_width_changes')) {
44
- contentDOM.style.gridColumn = '2';
45
- } else {
46
- contentDOM.style.gridRow = '1';
47
- contentDOM.style.gridColumn = '1';
48
- }
42
+ contentDOM.style.gridColumn = '2';
49
43
  contentDOM.style.zIndex = '1';
50
- if (expValEquals('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true) && fg('platform_editor_breakout_resizing_width_changes')) {
44
+ if (expValEquals('platform_editor_breakout_resizing_vc90_fix', 'isEnabled', true)) {
51
45
  if (mark.attrs.width) {
52
46
  dom.style.gridTemplateColumns = "auto max(var(--ak-editor--breakout-min-width), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width))) auto");
53
47
  } else {
@@ -58,20 +52,9 @@ export var ResizingMarkView = /*#__PURE__*/function () {
58
52
  contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
59
53
  }
60
54
  }
61
- } else if (fg('platform_editor_breakout_resizing_width_changes')) {
62
- if (mark.attrs.width) {
63
- dom.style.gridTemplateColumns = "auto min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width)) auto");
64
- } else {
65
- if (mark.attrs.mode === 'wide') {
66
- contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
67
- }
68
- if (mark.attrs.mode === 'full-width') {
69
- contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--full-width-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
70
- }
71
- }
72
55
  } else {
73
56
  if (mark.attrs.width) {
74
- contentDOM.style.width = "min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding)))");
57
+ dom.style.gridTemplateColumns = "auto min(var(".concat(LOCAL_RESIZE_PROPERTY, ", ").concat(mark.attrs.width, "px), var(--ak-editor--breakout-fallback-width)) auto");
75
58
  } else {
76
59
  if (mark.attrs.mode === 'wide') {
77
60
  contentDOM.style.width = "max(var(--ak-editor--line-length), min(var(".concat(LOCAL_RESIZE_PROPERTY, ", var(--ak-editor--breakout-wide-layout-width)), calc(100cqw - var(--ak-editor--breakout-full-page-guttering-padding))))");
@@ -111,7 +94,6 @@ export var ResizingMarkView = /*#__PURE__*/function () {
111
94
  value: function setupResizerCallbacks(dom, contentDOM, view, mark, api) {
112
95
  var callbacks = createResizerCallbacks({
113
96
  dom: dom,
114
- contentDOM: contentDOM,
115
97
  view: view,
116
98
  mark: mark,
117
99
  api: api
@@ -18,8 +18,6 @@ import { findDomRefAtPos, findParentDomRefOfType } from '@atlaskit/editor-prosem
18
18
  import { akEditorFullPageNarrowBreakout } from '@atlaskit/editor-shared-styles';
19
19
  import GrowHorizontalIcon from '@atlaskit/icon/core/grow-horizontal';
20
20
  import ShrinkHorizontalIcon from '@atlaskit/icon/core/shrink-horizontal';
21
- import CollapseIcon from '@atlaskit/icon/glyph/editor/collapse';
22
- import ExpandIcon from '@atlaskit/icon/glyph/editor/expand';
23
21
  import { B300, N20A, N300 } from '@atlaskit/theme/colors';
24
22
  import { layers } from '@atlaskit/theme/constants';
25
23
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
@@ -166,11 +164,9 @@ var LayoutButton = function LayoutButton(_ref) {
166
164
  },
167
165
  iconBefore: breakoutMode === 'full-width' ? jsx(ShrinkHorizontalIcon, {
168
166
  label: title,
169
- LEGACY_fallbackIcon: CollapseIcon,
170
167
  spacing: "spacious"
171
168
  }) : jsx(GrowHorizontalIcon, {
172
169
  label: title,
173
- LEGACY_fallbackIcon: ExpandIcon,
174
170
  spacing: "spacious"
175
171
  })
176
172
  })));
@@ -10,9 +10,8 @@ export declare function getProposedWidth({ initialWidth, location, api, source,
10
10
  location: DragLocationHistory;
11
11
  source: ElementDragPayload;
12
12
  }): number;
13
- export declare function createResizerCallbacks({ dom, contentDOM, view, mark, api, }: {
13
+ export declare function createResizerCallbacks({ dom, view, mark, api, }: {
14
14
  api: ExtractInjectionAPI<BreakoutPlugin> | undefined;
15
- contentDOM: HTMLElement;
16
15
  dom: HTMLElement;
17
16
  mark: Mark;
18
17
  view: EditorView;
@@ -10,9 +10,8 @@ export declare function getProposedWidth({ initialWidth, location, api, source,
10
10
  location: DragLocationHistory;
11
11
  source: ElementDragPayload;
12
12
  }): number;
13
- export declare function createResizerCallbacks({ dom, contentDOM, view, mark, api, }: {
13
+ export declare function createResizerCallbacks({ dom, view, mark, api, }: {
14
14
  api: ExtractInjectionAPI<BreakoutPlugin> | undefined;
15
- contentDOM: HTMLElement;
16
15
  dom: HTMLElement;
17
16
  mark: Mark;
18
17
  view: EditorView;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-breakout",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "description": "Breakout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -29,22 +29,22 @@
29
29
  ],
30
30
  "atlaskit:src": "src/index.ts",
31
31
  "dependencies": {
32
- "@atlaskit/adf-schema": "^51.5.1",
33
- "@atlaskit/editor-plugin-block-controls": "^7.13.0",
32
+ "@atlaskit/adf-schema": "^51.5.0",
33
+ "@atlaskit/editor-plugin-block-controls": "^7.15.0",
34
34
  "@atlaskit/editor-plugin-editor-disabled": "^6.1.0",
35
35
  "@atlaskit/editor-plugin-editor-viewmode": "^8.0.0",
36
36
  "@atlaskit/editor-plugin-guideline": "^6.0.0",
37
37
  "@atlaskit/editor-plugin-interaction": "^10.0.0",
38
38
  "@atlaskit/editor-plugin-user-intent": "^4.0.0",
39
39
  "@atlaskit/editor-plugin-width": "^7.0.0",
40
- "@atlaskit/editor-prosemirror": "7.0.0",
40
+ "@atlaskit/editor-prosemirror": "^7.2.0",
41
41
  "@atlaskit/editor-shared-styles": "^3.10.0",
42
- "@atlaskit/icon": "^29.0.0",
42
+ "@atlaskit/icon": "^29.2.0",
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
45
45
  "@atlaskit/theme": "^21.0.0",
46
- "@atlaskit/tmp-editor-statsig": "^15.8.0",
47
- "@atlaskit/tokens": "^8.4.0",
46
+ "@atlaskit/tmp-editor-statsig": "^15.12.0",
47
+ "@atlaskit/tokens": "^8.6.0",
48
48
  "@atlaskit/tooltip": "^20.11.0",
49
49
  "@babel/runtime": "^7.0.0",
50
50
  "@emotion/react": "^11.7.1",
@@ -53,7 +53,7 @@
53
53
  "uuid": "^3.1.0"
54
54
  },
55
55
  "peerDependencies": {
56
- "@atlaskit/editor-common": "^110.41.0",
56
+ "@atlaskit/editor-common": "^110.45.0",
57
57
  "react": "^18.2.0",
58
58
  "react-dom": "^18.2.0",
59
59
  "react-intl-next": "npm:react-intl@^5.18.1"
@@ -101,9 +101,6 @@
101
101
  "platform-feature-flags": {
102
102
  "platform-editor-single-player-expand": {
103
103
  "type": "boolean"
104
- },
105
- "platform_editor_breakout_resizing_width_changes": {
106
- "type": "boolean"
107
104
  }
108
105
  }
109
106
  }