@atlaskit/editor-plugin-expand 7.0.3 → 7.0.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/editor-plugin-expand
2
2
 
3
+ ## 7.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`d24d26320c940`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d24d26320c940) -
8
+ FD-100510 clean up fg platform_editor_breakout_resizing_hello_release
9
+ - Updated dependencies
10
+
3
11
  ## 7.0.3
4
12
 
5
13
  ### Patch Changes
@@ -208,7 +208,7 @@ var ExpandNodeView = exports.ExpandNodeView = /*#__PURE__*/function () {
208
208
  _this.handleUndoFromTitle(event);
209
209
  return;
210
210
  }
211
- if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_hello_release')) {
211
+ if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing', 'isEnabled', true)) {
212
212
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
213
213
  _this.view.dispatchEvent(new KeyboardEvent('keydown', {
214
214
  key: event.key,
@@ -165,7 +165,7 @@ var ExpandNodeView = exports.ExpandNodeView = /*#__PURE__*/function () {
165
165
  _this.handleUndoFromTitle(event);
166
166
  return;
167
167
  }
168
- if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_breakout_resizing_hello_release')) {
168
+ if ((0, _expValEquals.expValEquals)('platform_editor_breakout_resizing', 'isEnabled', true)) {
169
169
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
170
170
  _this.view.dispatchEvent(new KeyboardEvent('keydown', {
171
171
  key: event.key,
@@ -193,7 +193,7 @@ export class ExpandNodeView {
193
193
  this.handleUndoFromTitle(event);
194
194
  return;
195
195
  }
196
- if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true) && fg('platform_editor_breakout_resizing_hello_release')) {
196
+ if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true)) {
197
197
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
198
198
  this.view.dispatchEvent(new KeyboardEvent('keydown', {
199
199
  key: event.key,
@@ -150,7 +150,7 @@ export class ExpandNodeView {
150
150
  this.handleUndoFromTitle(event);
151
151
  return;
152
152
  }
153
- if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true) && fg('platform_editor_breakout_resizing_hello_release')) {
153
+ if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true)) {
154
154
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
155
155
  this.view.dispatchEvent(new KeyboardEvent('keydown', {
156
156
  key: event.key,
@@ -200,7 +200,7 @@ export var ExpandNodeView = /*#__PURE__*/function () {
200
200
  _this.handleUndoFromTitle(event);
201
201
  return;
202
202
  }
203
- if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true) && fg('platform_editor_breakout_resizing_hello_release')) {
203
+ if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true)) {
204
204
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
205
205
  _this.view.dispatchEvent(new KeyboardEvent('keydown', {
206
206
  key: event.key,
@@ -157,7 +157,7 @@ export var ExpandNodeView = /*#__PURE__*/function () {
157
157
  _this.handleUndoFromTitle(event);
158
158
  return;
159
159
  }
160
- if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true) && fg('platform_editor_breakout_resizing_hello_release')) {
160
+ if (expValEquals('platform_editor_breakout_resizing', 'isEnabled', true)) {
161
161
  if ((event.ctrlKey || event.metaKey) && event.altKey && (event.code === 'BracketLeft' || event.code === 'BracketRight')) {
162
162
  _this.view.dispatchEvent(new KeyboardEvent('keydown', {
163
163
  key: event.key,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-expand",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "description": "Expand plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -111,9 +111,6 @@
111
111
  "platform_editor_disable_unnecessary_expand_renders": {
112
112
  "type": "boolean"
113
113
  },
114
- "platform_editor_breakout_resizing_hello_release": {
115
- "type": "boolean"
116
- },
117
114
  "platform_editor_adf_with_localid": {
118
115
  "type": "boolean"
119
116
  },