@atlaskit/editor-common 74.28.0 → 74.29.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,17 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 74.29.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f0153f75b5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0153f75b5d) - Added generateDefaultGuideline to editor-common/guideline
8
+
9
+ ## 74.29.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`e83596269e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e83596269e5) - Add isResizing support into media plugin
14
+
3
15
  ## 74.28.0
4
16
 
5
17
  ### Minor Changes
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.generateDefaultGuidelines = void 0;
8
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
9
+ var _memoizeOne = _interopRequireDefault(require("memoize-one"));
10
+ var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
11
+ var _utils = require("./utils");
12
+ var getDefaultGuidelines = (0, _memoizeOne.default)(function (editorWidth) {
13
+ return [-6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6].map(function (val, index) {
14
+ return {
15
+ key: "grid_".concat(index),
16
+ position: {
17
+ x: val / 12 * editorWidth
18
+ }
19
+ };
20
+ });
21
+ });
22
+ var getWideGuidelines = (0, _memoizeOne.default)(function (editorWidth) {
23
+ var wideSpacing = editorWidth * _editorSharedStyles.breakoutWideScaleRatio / 2;
24
+ return [{
25
+ key: "wide_left",
26
+ position: {
27
+ x: -wideSpacing
28
+ }
29
+ }, {
30
+ key: "wide_right",
31
+ position: {
32
+ x: wideSpacing
33
+ }
34
+ }];
35
+ });
36
+ var getFullWidthGuidelines = (0, _memoizeOne.default)(function (containerWidth) {
37
+ var fullWidth = (0, _utils.getContainerWidthOrFullEditorWidth)(containerWidth);
38
+ return [{
39
+ key: "full_width_left",
40
+ position: {
41
+ x: -fullWidth
42
+ }
43
+ }, {
44
+ key: "full_width_right",
45
+ position: {
46
+ x: fullWidth
47
+ }
48
+ }];
49
+ });
50
+ var generateDefaultGuidelines = function generateDefaultGuidelines(editorWidth, containerWidth) {
51
+ var isFullWidthMode = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
52
+ var innerGrids = getDefaultGuidelines(editorWidth);
53
+ var wideGuidelines = !isFullWidthMode ? getWideGuidelines(editorWidth) : [];
54
+ var fullWidthGuidelines = !isFullWidthMode ? getFullWidthGuidelines(containerWidth) : [];
55
+ return [].concat((0, _toConsumableArray2.default)(innerGrids), (0, _toConsumableArray2.default)(wideGuidelines), (0, _toConsumableArray2.default)(fullWidthGuidelines));
56
+ };
57
+ exports.generateDefaultGuidelines = generateDefaultGuidelines;
@@ -21,12 +21,24 @@ Object.defineProperty(exports, "createGuidesFromLengths", {
21
21
  return _fixedGuideline.createGuidesFromLengths;
22
22
  }
23
23
  });
24
+ Object.defineProperty(exports, "generateDefaultGuidelines", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _defaultGuideline.generateDefaultGuidelines;
28
+ }
29
+ });
24
30
  Object.defineProperty(exports, "generateDynamicGuidelines", {
25
31
  enumerable: true,
26
32
  get: function get() {
27
33
  return _dynamicGuideline.generateDynamicGuidelines;
28
34
  }
29
35
  });
36
+ Object.defineProperty(exports, "getContainerWidthOrFullEditorWidth", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _utils.getContainerWidthOrFullEditorWidth;
40
+ }
41
+ });
30
42
  Object.defineProperty(exports, "getGuidelinesWithHighlights", {
31
43
  enumerable: true,
32
44
  get: function get() {
@@ -41,6 +53,7 @@ Object.defineProperty(exports, "isVerticalPosition", {
41
53
  });
42
54
  var _dynamicGuideline = require("./dynamicGuideline");
43
55
  var _fixedGuideline = require("./fixedGuideline");
56
+ var _defaultGuideline = require("./defaultGuideline");
44
57
  var _updateGuideline = require("./updateGuideline");
45
58
  var _constants = require("./constants");
46
59
  var _utils = require("./utils");
@@ -3,7 +3,8 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.isVerticalPosition = exports.isNumber = void 0;
6
+ exports.isVerticalPosition = exports.isNumber = exports.getContainerWidthOrFullEditorWidth = void 0;
7
+ var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
7
8
  var isNumber = function isNumber(x) {
8
9
  return typeof x === 'number' && !isNaN(x) && isFinite(x);
9
10
  };
@@ -11,4 +12,13 @@ exports.isNumber = isNumber;
11
12
  var isVerticalPosition = function isVerticalPosition(pos) {
12
13
  return isNumber(pos.x);
13
14
  };
14
- exports.isVerticalPosition = isVerticalPosition;
15
+
16
+ /**
17
+ * Calculates container or full editor width taking in account editor full width layout
18
+ * width and editor gutter padding.
19
+ */
20
+ exports.isVerticalPosition = isVerticalPosition;
21
+ var getContainerWidthOrFullEditorWidth = function getContainerWidthOrFullEditorWidth(containerWidth) {
22
+ return Math.min(containerWidth - _editorSharedStyles.akEditorGutterPadding * 2, _editorSharedStyles.akEditorFullWidthLayoutWidth) / 2;
23
+ };
24
+ exports.getContainerWidthOrFullEditorWidth = getContainerWidthOrFullEditorWidth;
@@ -16,7 +16,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
16
16
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
17
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
18
18
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
19
- var packageVersion = "74.28.0";
19
+ var packageVersion = "74.29.1";
20
20
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
21
21
  // Remove URL as it has UGC
22
22
  // TODO: Sanitise the URL instead of just removing it
@@ -24,7 +24,7 @@ var _templateObject, _templateObject2, _templateObject3;
24
24
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
25
25
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /** @jsx jsx */
26
26
  var packageName = "@atlaskit/editor-common";
27
- var packageVersion = "74.28.0";
27
+ var packageVersion = "74.29.1";
28
28
  var halfFocusRing = 1;
29
29
  var dropOffset = '0, 8';
30
30
  var DropList = /*#__PURE__*/function (_Component) {
@@ -64,7 +64,6 @@ var Resizer = /*#__PURE__*/function (_React$Component) {
64
64
  layout = _this$props.layout,
65
65
  width = _this$props.width,
66
66
  snapPoints = _this$props.snapPoints;
67
-
68
67
  // prevent creating a drag event on Firefox
69
68
  event.preventDefault();
70
69
  _this.setState({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "74.28.0",
3
+ "version": "74.29.1",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,45 @@
1
+ import memoizeOne from 'memoize-one';
2
+ import { breakoutWideScaleRatio } from '@atlaskit/editor-shared-styles';
3
+ import { getContainerWidthOrFullEditorWidth } from './utils';
4
+ const getDefaultGuidelines = memoizeOne(editorWidth => {
5
+ return [-6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6].map((val, index) => ({
6
+ key: `grid_${index}`,
7
+ position: {
8
+ x: val / 12 * editorWidth
9
+ }
10
+ }));
11
+ });
12
+ const getWideGuidelines = memoizeOne(editorWidth => {
13
+ const wideSpacing = editorWidth * breakoutWideScaleRatio / 2;
14
+ return [{
15
+ key: `wide_left`,
16
+ position: {
17
+ x: -wideSpacing
18
+ }
19
+ }, {
20
+ key: `wide_right`,
21
+ position: {
22
+ x: wideSpacing
23
+ }
24
+ }];
25
+ });
26
+ const getFullWidthGuidelines = memoizeOne(containerWidth => {
27
+ const fullWidth = getContainerWidthOrFullEditorWidth(containerWidth);
28
+ return [{
29
+ key: `full_width_left`,
30
+ position: {
31
+ x: -fullWidth
32
+ }
33
+ }, {
34
+ key: `full_width_right`,
35
+ position: {
36
+ x: fullWidth
37
+ }
38
+ }];
39
+ });
40
+ export const generateDefaultGuidelines = (editorWidth, containerWidth, isFullWidthMode = false) => {
41
+ const innerGrids = getDefaultGuidelines(editorWidth);
42
+ const wideGuidelines = !isFullWidthMode ? getWideGuidelines(editorWidth) : [];
43
+ const fullWidthGuidelines = !isFullWidthMode ? getFullWidthGuidelines(containerWidth) : [];
44
+ return [...innerGrids, ...wideGuidelines, ...fullWidthGuidelines];
45
+ };
@@ -1,5 +1,6 @@
1
1
  export { generateDynamicGuidelines } from './dynamicGuideline';
2
2
  export { createFixedGuidelinesFromLengths, createGuidesFromLengths } from './fixedGuideline';
3
+ export { generateDefaultGuidelines } from './defaultGuideline';
3
4
  export { getGuidelinesWithHighlights } from './updateGuideline';
4
5
  export { MEDIA_DYNAMIC_GUIDELINE_PREFIX } from './constants';
5
- export { isVerticalPosition } from './utils';
6
+ export { isVerticalPosition, getContainerWidthOrFullEditorWidth } from './utils';
@@ -1,4 +1,11 @@
1
+ import { akEditorFullWidthLayoutWidth, akEditorGutterPadding } from '@atlaskit/editor-shared-styles';
1
2
  export const isNumber = x => typeof x === 'number' && !isNaN(x) && isFinite(x);
2
3
  export const isVerticalPosition = pos => {
3
4
  return isNumber(pos.x);
4
- };
5
+ };
6
+
7
+ /**
8
+ * Calculates container or full editor width taking in account editor full width layout
9
+ * width and editor gutter padding.
10
+ */
11
+ export const getContainerWidthOrFullEditorWidth = containerWidth => Math.min(containerWidth - akEditorGutterPadding * 2, akEditorFullWidthLayoutWidth) / 2;
@@ -1,6 +1,6 @@
1
1
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
2
2
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
3
- const packageVersion = "74.28.0";
3
+ const packageVersion = "74.29.1";
4
4
  const sanitiseSentryEvents = (data, _hint) => {
5
5
  // Remove URL as it has UGC
6
6
  // TODO: Sanitise the URL instead of just removing it
@@ -8,7 +8,7 @@ import { themed } from '@atlaskit/theme/components';
8
8
  import { borderRadius } from '@atlaskit/theme/constants';
9
9
  import Layer from '../Layer';
10
10
  const packageName = "@atlaskit/editor-common";
11
- const packageVersion = "74.28.0";
11
+ const packageVersion = "74.29.1";
12
12
  const halfFocusRing = 1;
13
13
  const dropOffset = '0, 8';
14
14
  class DropList extends Component {
@@ -42,7 +42,6 @@ export default class Resizer extends React.Component {
42
42
  width,
43
43
  snapPoints
44
44
  } = this.props;
45
-
46
45
  // prevent creating a drag event on Firefox
47
46
  event.preventDefault();
48
47
  this.setState({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "74.28.0",
3
+ "version": "74.29.1",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,49 @@
1
+ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
2
+ import memoizeOne from 'memoize-one';
3
+ import { breakoutWideScaleRatio } from '@atlaskit/editor-shared-styles';
4
+ import { getContainerWidthOrFullEditorWidth } from './utils';
5
+ var getDefaultGuidelines = memoizeOne(function (editorWidth) {
6
+ return [-6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6].map(function (val, index) {
7
+ return {
8
+ key: "grid_".concat(index),
9
+ position: {
10
+ x: val / 12 * editorWidth
11
+ }
12
+ };
13
+ });
14
+ });
15
+ var getWideGuidelines = memoizeOne(function (editorWidth) {
16
+ var wideSpacing = editorWidth * breakoutWideScaleRatio / 2;
17
+ return [{
18
+ key: "wide_left",
19
+ position: {
20
+ x: -wideSpacing
21
+ }
22
+ }, {
23
+ key: "wide_right",
24
+ position: {
25
+ x: wideSpacing
26
+ }
27
+ }];
28
+ });
29
+ var getFullWidthGuidelines = memoizeOne(function (containerWidth) {
30
+ var fullWidth = getContainerWidthOrFullEditorWidth(containerWidth);
31
+ return [{
32
+ key: "full_width_left",
33
+ position: {
34
+ x: -fullWidth
35
+ }
36
+ }, {
37
+ key: "full_width_right",
38
+ position: {
39
+ x: fullWidth
40
+ }
41
+ }];
42
+ });
43
+ export var generateDefaultGuidelines = function generateDefaultGuidelines(editorWidth, containerWidth) {
44
+ var isFullWidthMode = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
45
+ var innerGrids = getDefaultGuidelines(editorWidth);
46
+ var wideGuidelines = !isFullWidthMode ? getWideGuidelines(editorWidth) : [];
47
+ var fullWidthGuidelines = !isFullWidthMode ? getFullWidthGuidelines(containerWidth) : [];
48
+ return [].concat(_toConsumableArray(innerGrids), _toConsumableArray(wideGuidelines), _toConsumableArray(fullWidthGuidelines));
49
+ };
@@ -1,5 +1,6 @@
1
1
  export { generateDynamicGuidelines } from './dynamicGuideline';
2
2
  export { createFixedGuidelinesFromLengths, createGuidesFromLengths } from './fixedGuideline';
3
+ export { generateDefaultGuidelines } from './defaultGuideline';
3
4
  export { getGuidelinesWithHighlights } from './updateGuideline';
4
5
  export { MEDIA_DYNAMIC_GUIDELINE_PREFIX } from './constants';
5
- export { isVerticalPosition } from './utils';
6
+ export { isVerticalPosition, getContainerWidthOrFullEditorWidth } from './utils';
@@ -1,6 +1,15 @@
1
+ import { akEditorFullWidthLayoutWidth, akEditorGutterPadding } from '@atlaskit/editor-shared-styles';
1
2
  export var isNumber = function isNumber(x) {
2
3
  return typeof x === 'number' && !isNaN(x) && isFinite(x);
3
4
  };
4
5
  export var isVerticalPosition = function isVerticalPosition(pos) {
5
6
  return isNumber(pos.x);
7
+ };
8
+
9
+ /**
10
+ * Calculates container or full editor width taking in account editor full width layout
11
+ * width and editor gutter padding.
12
+ */
13
+ export var getContainerWidthOrFullEditorWidth = function getContainerWidthOrFullEditorWidth(containerWidth) {
14
+ return Math.min(containerWidth - akEditorGutterPadding * 2, akEditorFullWidthLayoutWidth) / 2;
6
15
  };
@@ -6,7 +6,7 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
6
6
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
7
7
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
8
8
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
9
- var packageVersion = "74.28.0";
9
+ var packageVersion = "74.29.1";
10
10
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
11
11
  // Remove URL as it has UGC
12
12
  // TODO: Sanitise the URL instead of just removing it
@@ -18,7 +18,7 @@ import { themed } from '@atlaskit/theme/components';
18
18
  import { borderRadius } from '@atlaskit/theme/constants';
19
19
  import Layer from '../Layer';
20
20
  var packageName = "@atlaskit/editor-common";
21
- var packageVersion = "74.28.0";
21
+ var packageVersion = "74.29.1";
22
22
  var halfFocusRing = 1;
23
23
  var dropOffset = '0, 8';
24
24
  var DropList = /*#__PURE__*/function (_Component) {
@@ -57,7 +57,6 @@ var Resizer = /*#__PURE__*/function (_React$Component) {
57
57
  layout = _this$props.layout,
58
58
  width = _this$props.width,
59
59
  snapPoints = _this$props.snapPoints;
60
-
61
60
  // prevent creating a drag event on Firefox
62
61
  event.preventDefault();
63
62
  _this.setState({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "74.28.0",
3
+ "version": "74.29.1",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,2 @@
1
+ import type { GuidelineConfig } from './types';
2
+ export declare const generateDefaultGuidelines: (editorWidth: number, containerWidth: number, isFullWidthMode?: boolean | undefined) => GuidelineConfig[];
@@ -1,6 +1,7 @@
1
1
  export { generateDynamicGuidelines } from './dynamicGuideline';
2
2
  export { createFixedGuidelinesFromLengths, createGuidesFromLengths, } from './fixedGuideline';
3
+ export { generateDefaultGuidelines } from './defaultGuideline';
3
4
  export { getGuidelinesWithHighlights } from './updateGuideline';
4
5
  export { MEDIA_DYNAMIC_GUIDELINE_PREFIX } from './constants';
5
6
  export type { WidthTypes, Position, GuidelineConfig, GuidelinePluginState, GuidelinePluginOptions, DisplayGuideline, DisplayGrid, VerticalPosition, HorizontalPosition, } from './types';
6
- export { isVerticalPosition } from './utils';
7
+ export { isVerticalPosition, getContainerWidthOrFullEditorWidth, } from './utils';
@@ -1,3 +1,8 @@
1
1
  import { Position, VerticalPosition } from './types';
2
2
  export declare const isNumber: (x: unknown) => x is number;
3
3
  export declare const isVerticalPosition: (pos: Position) => pos is VerticalPosition;
4
+ /**
5
+ * Calculates container or full editor width taking in account editor full width layout
6
+ * width and editor gutter padding.
7
+ */
8
+ export declare const getContainerWidthOrFullEditorWidth: (containerWidth: number) => number;
@@ -0,0 +1,2 @@
1
+ import type { GuidelineConfig } from './types';
2
+ export declare const generateDefaultGuidelines: (editorWidth: number, containerWidth: number, isFullWidthMode?: boolean | undefined) => GuidelineConfig[];
@@ -1,6 +1,7 @@
1
1
  export { generateDynamicGuidelines } from './dynamicGuideline';
2
2
  export { createFixedGuidelinesFromLengths, createGuidesFromLengths, } from './fixedGuideline';
3
+ export { generateDefaultGuidelines } from './defaultGuideline';
3
4
  export { getGuidelinesWithHighlights } from './updateGuideline';
4
5
  export { MEDIA_DYNAMIC_GUIDELINE_PREFIX } from './constants';
5
6
  export type { WidthTypes, Position, GuidelineConfig, GuidelinePluginState, GuidelinePluginOptions, DisplayGuideline, DisplayGrid, VerticalPosition, HorizontalPosition, } from './types';
6
- export { isVerticalPosition } from './utils';
7
+ export { isVerticalPosition, getContainerWidthOrFullEditorWidth, } from './utils';
@@ -1,3 +1,8 @@
1
1
  import { Position, VerticalPosition } from './types';
2
2
  export declare const isNumber: (x: unknown) => x is number;
3
3
  export declare const isVerticalPosition: (pos: Position) => pos is VerticalPosition;
4
+ /**
5
+ * Calculates container or full editor width taking in account editor full width layout
6
+ * width and editor gutter padding.
7
+ */
8
+ export declare const getContainerWidthOrFullEditorWidth: (containerWidth: number) => number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "74.28.0",
3
+ "version": "74.29.1",
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/"
@@ -78,7 +78,7 @@
78
78
  },
79
79
  "dependencies": {
80
80
  "@atlaskit/activity-provider": "^2.4.0",
81
- "@atlaskit/adf-schema": "^26.3.0",
81
+ "@atlaskit/adf-schema": "^26.4.0",
82
82
  "@atlaskit/adf-utils": "^19.0.0",
83
83
  "@atlaskit/analytics-listeners": "^8.7.0",
84
84
  "@atlaskit/analytics-namespaced-context": "^6.7.0",