@atlaskit/editor-common 111.8.11 → 111.8.12

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,15 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 111.8.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [`87abc5dda86fe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87abc5dda86fe) -
8
+ [ux] Show last edited time in sync block tooltip
9
+ - [`9041ec452a104`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9041ec452a104) -
10
+ [EDITOR-4515] clean up fg platform_editor_toolbar_aifc_patch_7
11
+ - Updated dependencies
12
+
3
13
  ## 111.8.11
4
14
 
5
15
  ### Patch Changes
@@ -86,6 +86,11 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntlNext.defineMes
86
86
  defaultMessage: 'Synced from: {title}',
87
87
  description: 'Tooltip that shows the source page title of the synced block'
88
88
  },
89
+ referenceSyncBlockLastEdited: {
90
+ id: 'fabric.editor.referenceSyncBlockLastEdited',
91
+ defaultMessage: 'Last edited: ',
92
+ description: 'Tooltip that shows the last edited time of the synced block'
93
+ },
89
94
  taskInDestinationSyncedBlockTooltip: {
90
95
  id: 'fabric.editor.taskInDestinationSyncedBlockTooltip',
91
96
  defaultMessage: 'This content is synced. Edit it at the source.',
@@ -19,7 +19,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
19
19
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
20
20
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
21
21
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
22
- var packageVersion = "111.8.10";
22
+ var packageVersion = "111.8.11";
23
23
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
24
24
  // Remove URL as it has UGC
25
25
  // Ignored via go/ees007
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.EditorToolbarUIProvider = void 0;
8
8
  var _react = _interopRequireWildcard(require("react"));
9
9
  var _editorToolbar = require("@atlaskit/editor-toolbar");
10
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
11
10
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
12
11
  var EditorToolbarUIProvider = exports.EditorToolbarUIProvider = function EditorToolbarUIProvider(_ref) {
13
12
  var children = _ref.children,
@@ -22,23 +21,11 @@ var EditorToolbarUIProvider = exports.EditorToolbarUIProvider = function EditorT
22
21
  var isOpen = _ref2.isOpen,
23
22
  event = _ref2.event;
24
23
  if (!isOpen) {
25
- if ((0, _platformFeatureFlags.fg)('platform_editor_toolbar_aifc_patch_7')) {
26
- // Only refocus the editor when the dropdown closes via mouse or programmatic close.
27
- // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
28
- var isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
29
- var shouldFocusEditor = !isKeyboardEscape;
30
- if (shouldFocusEditor) {
31
- // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
32
- // Hence, `.focus()` should also be called in requestAnimationFrame
33
- setTimeout(function () {
34
- return requestAnimationFrame(function () {
35
- api === null || api === void 0 || api.core.actions.focus({
36
- scrollIntoView: false
37
- });
38
- });
39
- }, 1);
40
- }
41
- } else {
24
+ // Only refocus the editor when the dropdown closes via mouse or programmatic close.
25
+ // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
26
+ var isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
27
+ var shouldFocusEditor = !isKeyboardEscape;
28
+ if (shouldFocusEditor) {
42
29
  // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
43
30
  // Hence, `.focus()` should also be called in requestAnimationFrame
44
31
  setTimeout(function () {
@@ -50,6 +37,7 @@ var EditorToolbarUIProvider = exports.EditorToolbarUIProvider = function EditorT
50
37
  }, 1);
51
38
  }
52
39
  }
40
+ ;
53
41
  }, [api]);
54
42
  return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarUIProvider, {
55
43
  onDropdownOpenChanged: onDropdownOpenChanged,
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
24
24
  * @jsx jsx
25
25
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
26
26
  var packageName = "@atlaskit/editor-common";
27
- var packageVersion = "111.8.10";
27
+ var packageVersion = "111.8.11";
28
28
  var halfFocusRing = 1;
29
29
  var dropOffset = '0, 8';
30
30
  var fadeIn = (0, _react2.keyframes)({
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.ToolbarArrowKeyNavigationProvider = exports.KeyDownHandlerContext = void 0;
8
8
  var _react = _interopRequireWildcard(require("react"));
9
9
  var _react2 = require("@emotion/react");
10
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
11
10
  var _elementBrowser = require("../../element-browser");
12
11
  var _messages = require("../../messages");
13
12
  var _mediaInsert = require("../../messages/media-insert");
@@ -272,15 +271,8 @@ function isElementOrAncestorHiddenOrDisabled(element, rootNode) {
272
271
  function getFilteredFocusableElements(rootNode) {
273
272
  // The focusable elements from child components such as dropdown menus / popups are ignored
274
273
  return getFocusableElements(rootNode).filter(function (elm) {
275
- var style = window.getComputedStyle(elm);
276
- // ignore invisible element to avoid losing focus
277
- var isVisible = style.visibility !== 'hidden' && style.display !== 'none';
278
-
279
274
  // Check if element or any ancestor is hidden or disabled
280
275
  var isHiddenOrDisabled = isElementOrAncestorHiddenOrDisabled(elm, rootNode);
281
- if ((0, _platformFeatureFlags.fg)('platform_editor_toolbar_aifc_patch_7')) {
282
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
283
- }
284
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && isVisible;
276
+ return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
285
277
  });
286
278
  }
@@ -80,6 +80,11 @@ export const syncBlockMessages = defineMessages({
80
80
  defaultMessage: 'Synced from: {title}',
81
81
  description: 'Tooltip that shows the source page title of the synced block'
82
82
  },
83
+ referenceSyncBlockLastEdited: {
84
+ id: 'fabric.editor.referenceSyncBlockLastEdited',
85
+ defaultMessage: 'Last edited: ',
86
+ description: 'Tooltip that shows the last edited time of the synced block'
87
+ },
83
88
  taskInDestinationSyncedBlockTooltip: {
84
89
  id: 'fabric.editor.taskInDestinationSyncedBlockTooltip',
85
90
  defaultMessage: 'This content is synced. Edit it at the source.',
@@ -4,7 +4,7 @@ import { isFedRamp } from './environment';
4
4
  import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
5
5
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
6
6
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
7
- const packageVersion = "111.8.10";
7
+ const packageVersion = "111.8.11";
8
8
  const sanitiseSentryEvents = (data, _hint) => {
9
9
  // Remove URL as it has UGC
10
10
  // Ignored via go/ees007
@@ -1,6 +1,5 @@
1
1
  import React, { useCallback } from 'react';
2
2
  import { ToolbarUIProvider } from '@atlaskit/editor-toolbar';
3
- import { fg } from '@atlaskit/platform-feature-flags';
4
3
  export const EditorToolbarUIProvider = ({
5
4
  children,
6
5
  api,
@@ -16,21 +15,11 @@ export const EditorToolbarUIProvider = ({
16
15
  event
17
16
  }) => {
18
17
  if (!isOpen) {
19
- if (fg('platform_editor_toolbar_aifc_patch_7')) {
20
- // Only refocus the editor when the dropdown closes via mouse or programmatic close.
21
- // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
22
- const isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
23
- const shouldFocusEditor = !isKeyboardEscape;
24
- if (shouldFocusEditor) {
25
- // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
26
- // Hence, `.focus()` should also be called in requestAnimationFrame
27
- setTimeout(() => requestAnimationFrame(() => {
28
- api === null || api === void 0 ? void 0 : api.core.actions.focus({
29
- scrollIntoView: false
30
- });
31
- }), 1);
32
- }
33
- } else {
18
+ // Only refocus the editor when the dropdown closes via mouse or programmatic close.
19
+ // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
20
+ const isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
21
+ const shouldFocusEditor = !isKeyboardEscape;
22
+ if (shouldFocusEditor) {
34
23
  // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
35
24
  // Hence, `.focus()` should also be called in requestAnimationFrame
36
25
  setTimeout(() => requestAnimationFrame(() => {
@@ -40,6 +29,7 @@ export const EditorToolbarUIProvider = ({
40
29
  }), 1);
41
30
  }
42
31
  }
32
+ ;
43
33
  }, [api]);
44
34
  return /*#__PURE__*/React.createElement(ToolbarUIProvider, {
45
35
  onDropdownOpenChanged: onDropdownOpenChanged,
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import { fg } from '@atlaskit/platform-feature-flags';
15
15
  import Layer from '../Layer';
16
16
  const packageName = "@atlaskit/editor-common";
17
- const packageVersion = "111.8.10";
17
+ const packageVersion = "111.8.11";
18
18
  const halfFocusRing = 1;
19
19
  const dropOffset = '0, 8';
20
20
  const fadeIn = keyframes({
@@ -7,7 +7,6 @@ import React, { useCallback, useLayoutEffect, useMemo, useRef } from 'react';
7
7
 
8
8
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
9
9
  import { css, jsx } from '@emotion/react';
10
- import { fg } from '@atlaskit/platform-feature-flags';
11
10
  import { ELEMENT_BROWSER_ID } from '../../element-browser';
12
11
  import { fullPageMessages } from '../../messages';
13
12
  import { mediaInsertMessages } from '../../messages/media-insert';
@@ -264,15 +263,8 @@ function isElementOrAncestorHiddenOrDisabled(element, rootNode) {
264
263
  function getFilteredFocusableElements(rootNode) {
265
264
  // The focusable elements from child components such as dropdown menus / popups are ignored
266
265
  return getFocusableElements(rootNode).filter(elm => {
267
- const style = window.getComputedStyle(elm);
268
- // ignore invisible element to avoid losing focus
269
- const isVisible = style.visibility !== 'hidden' && style.display !== 'none';
270
-
271
266
  // Check if element or any ancestor is hidden or disabled
272
267
  const isHiddenOrDisabled = isElementOrAncestorHiddenOrDisabled(elm, rootNode);
273
- if (fg('platform_editor_toolbar_aifc_patch_7')) {
274
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
275
- }
276
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && isVisible;
268
+ return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
277
269
  });
278
270
  }
@@ -80,6 +80,11 @@ export var syncBlockMessages = defineMessages({
80
80
  defaultMessage: 'Synced from: {title}',
81
81
  description: 'Tooltip that shows the source page title of the synced block'
82
82
  },
83
+ referenceSyncBlockLastEdited: {
84
+ id: 'fabric.editor.referenceSyncBlockLastEdited',
85
+ defaultMessage: 'Last edited: ',
86
+ description: 'Tooltip that shows the last edited time of the synced block'
87
+ },
83
88
  taskInDestinationSyncedBlockTooltip: {
84
89
  id: 'fabric.editor.taskInDestinationSyncedBlockTooltip',
85
90
  defaultMessage: 'This content is synced. Edit it at the source.',
@@ -10,7 +10,7 @@ import { isFedRamp } from './environment';
10
10
  import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
11
11
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
12
12
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
13
- var packageVersion = "111.8.10";
13
+ var packageVersion = "111.8.11";
14
14
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
15
15
  // Remove URL as it has UGC
16
16
  // Ignored via go/ees007
@@ -1,6 +1,5 @@
1
1
  import React, { useCallback } from 'react';
2
2
  import { ToolbarUIProvider } from '@atlaskit/editor-toolbar';
3
- import { fg } from '@atlaskit/platform-feature-flags';
4
3
  export var EditorToolbarUIProvider = function EditorToolbarUIProvider(_ref) {
5
4
  var children = _ref.children,
6
5
  api = _ref.api,
@@ -14,23 +13,11 @@ export var EditorToolbarUIProvider = function EditorToolbarUIProvider(_ref) {
14
13
  var isOpen = _ref2.isOpen,
15
14
  event = _ref2.event;
16
15
  if (!isOpen) {
17
- if (fg('platform_editor_toolbar_aifc_patch_7')) {
18
- // Only refocus the editor when the dropdown closes via mouse or programmatic close.
19
- // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
20
- var isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
21
- var shouldFocusEditor = !isKeyboardEscape;
22
- if (shouldFocusEditor) {
23
- // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
24
- // Hence, `.focus()` should also be called in requestAnimationFrame
25
- setTimeout(function () {
26
- return requestAnimationFrame(function () {
27
- api === null || api === void 0 || api.core.actions.focus({
28
- scrollIntoView: false
29
- });
30
- });
31
- }, 1);
32
- }
33
- } else {
16
+ // Only refocus the editor when the dropdown closes via mouse or programmatic close.
17
+ // When closed via keyboard Escape, keep focus on the trigger for better keyboard UX.
18
+ var isKeyboardEscape = event instanceof KeyboardEvent && event.key === 'Escape';
19
+ var shouldFocusEditor = !isKeyboardEscape;
20
+ if (shouldFocusEditor) {
34
21
  // On Dropdown closed, focus is returned to trigger button by default in requestAnimationFrame
35
22
  // Hence, `.focus()` should also be called in requestAnimationFrame
36
23
  setTimeout(function () {
@@ -42,6 +29,7 @@ export var EditorToolbarUIProvider = function EditorToolbarUIProvider(_ref) {
42
29
  }, 1);
43
30
  }
44
31
  }
32
+ ;
45
33
  }, [api]);
46
34
  return /*#__PURE__*/React.createElement(ToolbarUIProvider, {
47
35
  onDropdownOpenChanged: onDropdownOpenChanged,
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
21
21
  import { fg } from '@atlaskit/platform-feature-flags';
22
22
  import Layer from '../Layer';
23
23
  var packageName = "@atlaskit/editor-common";
24
- var packageVersion = "111.8.10";
24
+ var packageVersion = "111.8.11";
25
25
  var halfFocusRing = 1;
26
26
  var dropOffset = '0, 8';
27
27
  var fadeIn = keyframes({
@@ -7,7 +7,6 @@ import React, { useCallback, useLayoutEffect, useMemo, useRef } from 'react';
7
7
 
8
8
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
9
9
  import { css, jsx } from '@emotion/react';
10
- import { fg } from '@atlaskit/platform-feature-flags';
11
10
  import { ELEMENT_BROWSER_ID } from '../../element-browser';
12
11
  import { fullPageMessages } from '../../messages';
13
12
  import { mediaInsertMessages } from '../../messages/media-insert';
@@ -264,15 +263,8 @@ function isElementOrAncestorHiddenOrDisabled(element, rootNode) {
264
263
  function getFilteredFocusableElements(rootNode) {
265
264
  // The focusable elements from child components such as dropdown menus / popups are ignored
266
265
  return getFocusableElements(rootNode).filter(function (elm) {
267
- var style = window.getComputedStyle(elm);
268
- // ignore invisible element to avoid losing focus
269
- var isVisible = style.visibility !== 'hidden' && style.display !== 'none';
270
-
271
266
  // Check if element or any ancestor is hidden or disabled
272
267
  var isHiddenOrDisabled = isElementOrAncestorHiddenOrDisabled(elm, rootNode);
273
- if (fg('platform_editor_toolbar_aifc_patch_7')) {
274
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
275
- }
276
- return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && isVisible;
268
+ return !elm.closest('[data-role="droplistContent"]') && !elm.closest('[data-emoji-picker-container="true"]') && !elm.closest('[data-test-id="color-picker-menu"]') && !elm.closest('.scroll-buttons') && !isHiddenOrDisabled;
277
269
  });
278
270
  }
@@ -79,6 +79,11 @@ export declare const syncBlockMessages: {
79
79
  defaultMessage: string;
80
80
  description: string;
81
81
  };
82
+ referenceSyncBlockLastEdited: {
83
+ id: string;
84
+ defaultMessage: string;
85
+ description: string;
86
+ };
82
87
  taskInDestinationSyncedBlockTooltip: {
83
88
  id: string;
84
89
  defaultMessage: string;
@@ -79,6 +79,11 @@ export declare const syncBlockMessages: {
79
79
  defaultMessage: string;
80
80
  description: string;
81
81
  };
82
+ referenceSyncBlockLastEdited: {
83
+ id: string;
84
+ defaultMessage: string;
85
+ description: string;
86
+ };
82
87
  taskInDestinationSyncedBlockTooltip: {
83
88
  id: string;
84
89
  defaultMessage: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "111.8.11",
3
+ "version": "111.8.12",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -50,7 +50,7 @@
50
50
  "@atlaskit/editor-toolbar": "^0.19.0",
51
51
  "@atlaskit/editor-toolbar-model": "^0.3.0",
52
52
  "@atlaskit/emoji": "^69.10.0",
53
- "@atlaskit/icon": "^29.4.0",
53
+ "@atlaskit/icon": "^30.0.0",
54
54
  "@atlaskit/icon-object": "^7.4.0",
55
55
  "@atlaskit/link": "^3.3.0",
56
56
  "@atlaskit/link-datasource": "^4.32.0",
@@ -120,7 +120,7 @@
120
120
  },
121
121
  "devDependencies": {
122
122
  "@atlaskit/media-core": "^37.0.0",
123
- "@atlassian/a11y-jest-testing": "^0.7.0",
123
+ "@atlassian/a11y-jest-testing": "^0.8.0",
124
124
  "@testing-library/dom": "^10.1.0",
125
125
  "@testing-library/jest-dom": "^6.4.5",
126
126
  "@testing-library/react": "^16.3.0",
@@ -232,9 +232,6 @@
232
232
  "platform_editor_link_picker_width_fix": {
233
233
  "type": "boolean"
234
234
  },
235
- "platform_editor_toolbar_aifc_patch_7": {
236
- "type": "boolean"
237
- },
238
235
  "platform_editor_content_mode_button_mvp": {
239
236
  "type": "boolean"
240
237
  },