@atlaskit/editor-common 111.8.2 → 111.8.3

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,14 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 111.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`ef0c088fb17f6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ef0c088fb17f6) -
8
+ [ux] Fix the flickering extensions icon issue in the table's floating toolbar `View more` dropdown
9
+ options.
10
+ - Updated dependencies
11
+
3
12
  ## 111.8.2
4
13
 
5
14
  ### Patch Changes
@@ -8,14 +8,18 @@ Object.defineProperty(exports, "__esModule", {
8
8
  exports.DropdownMenuExtensionItems = void 0;
9
9
  var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
10
10
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
11
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
12
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
12
13
  var _react = _interopRequireWildcard(require("react"));
13
14
  var _reactLoadable = _interopRequireDefault(require("react-loadable"));
15
+ var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
14
16
  var _extensions = require("../extensions");
15
17
  var _utils = require("../utils");
16
18
  var _DropdownMenuItem = require("./DropdownMenuItem");
17
19
  var _DropdownSeparator = require("./DropdownSeparator");
18
20
  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); }
21
+ 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; }
22
+ 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) { (0, _defineProperty2.default)(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; }
19
23
  var noop = function noop() {
20
24
  return null;
21
25
  };
@@ -53,7 +57,8 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
53
57
  var item = _ref2.item,
54
58
  disabled = _ref2.disabled,
55
59
  node = _ref2.node,
56
- extension = _ref2.extension;
60
+ extension = _ref2.extension,
61
+ IconComponent = _ref2.IconComponent;
57
62
  var ButtonIcon = item.icon ? (0, _reactLoadable.default)({
58
63
  // Ignored via go/ees005
59
64
  // eslint-disable-next-line require-await
@@ -85,11 +90,20 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
85
90
  title = item.ariaLabel;
86
91
  }
87
92
  item.disabled = (disabled === null || disabled === void 0 ? void 0 : disabled(item.key)) || false;
93
+ var getIcon = function getIcon() {
94
+ var label = item.label || '';
95
+ if ((0, _expValEquals.expValEquals)('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
96
+ return IconComponent ? /*#__PURE__*/_react.default.createElement(IconComponent, {
97
+ label: label
98
+ }) : undefined;
99
+ }
100
+ return ButtonIcon ? /*#__PURE__*/_react.default.createElement(ButtonIcon, {
101
+ label: label
102
+ }) : undefined;
103
+ };
88
104
  return {
89
105
  title: title,
90
- icon: ButtonIcon ? /*#__PURE__*/_react.default.createElement(ButtonIcon, {
91
- label: item.label || ''
92
- }) : undefined,
106
+ icon: getIcon(),
93
107
  disabled: item.disabled,
94
108
  onClick: function onClick() {
95
109
  if (typeof item.action !== 'function') {
@@ -102,18 +116,47 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
102
116
  };
103
117
  };
104
118
  var DropdownMenuExtensionItem = function DropdownMenuExtensionItem(_ref3) {
119
+ var _iconRef$current;
105
120
  var item = _ref3.item,
106
121
  editorView = _ref3.editorView,
107
122
  disabled = _ref3.disabled,
108
123
  node = _ref3.node,
109
124
  extension = _ref3.extension,
110
125
  dropdownOptions = _ref3.dropdownOptions;
111
- var dropdownItem = convertExtensionToDropdownMenuItem({
126
+ // Use ref to keep icon component stable across renders
127
+ var iconRef = (0, _react.useRef)(null);
128
+ if (!iconRef.current && item.icon && (0, _expValEquals.expValEquals)('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
129
+ iconRef.current = (0, _reactLoadable.default)({
130
+ // Ignored via go/ees005
131
+ // eslint-disable-next-line require-await
132
+ loader: function () {
133
+ var _loader2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
134
+ return _regenerator.default.wrap(function _callee3$(_context3) {
135
+ while (1) switch (_context3.prev = _context3.next) {
136
+ case 0:
137
+ return _context3.abrupt("return", resolveExtensionIcon(item.icon));
138
+ case 1:
139
+ case "end":
140
+ return _context3.stop();
141
+ }
142
+ }, _callee3);
143
+ }));
144
+ function loader() {
145
+ return _loader2.apply(this, arguments);
146
+ }
147
+ return loader;
148
+ }(),
149
+ loading: noop
150
+ });
151
+ }
152
+ var dropdownItem = convertExtensionToDropdownMenuItem(_objectSpread({
112
153
  item: item,
113
154
  disabled: disabled,
114
155
  node: node,
115
156
  extension: extension
116
- });
157
+ }, (0, _expValEquals.expValEquals)('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true) ? {
158
+ IconComponent: (_iconRef$current = iconRef.current) !== null && _iconRef$current !== void 0 ? _iconRef$current : undefined
159
+ } : {}));
117
160
  if (!dropdownItem) {
118
161
  return null;
119
162
  }
@@ -147,30 +190,30 @@ var DropdownMenuExtensionItems = exports.DropdownMenuExtensionItems = function D
147
190
  return _getExtensions.apply(this, arguments);
148
191
  }
149
192
  function _getExtensions() {
150
- _getExtensions = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
193
+ _getExtensions = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4() {
151
194
  var provider;
152
- return _regenerator.default.wrap(function _callee3$(_context3) {
153
- while (1) switch (_context3.prev = _context3.next) {
195
+ return _regenerator.default.wrap(function _callee4$(_context4) {
196
+ while (1) switch (_context4.prev = _context4.next) {
154
197
  case 0:
155
- _context3.next = 2;
198
+ _context4.next = 2;
156
199
  return extension.extensionProvider;
157
200
  case 2:
158
- provider = _context3.sent;
201
+ provider = _context4.sent;
159
202
  if (!provider) {
160
- _context3.next = 9;
203
+ _context4.next = 9;
161
204
  break;
162
205
  }
163
- _context3.t0 = setExtensions;
164
- _context3.next = 7;
206
+ _context4.t0 = setExtensions;
207
+ _context4.next = 7;
165
208
  return provider.getExtensions();
166
209
  case 7:
167
- _context3.t1 = _context3.sent;
168
- (0, _context3.t0)(_context3.t1);
210
+ _context4.t1 = _context4.sent;
211
+ (0, _context4.t0)(_context4.t1);
169
212
  case 9:
170
213
  case "end":
171
- return _context3.stop();
214
+ return _context4.stop();
172
215
  }
173
- }, _callee3);
216
+ }, _callee4);
174
217
  }));
175
218
  return _getExtensions.apply(this, arguments);
176
219
  }
@@ -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.1";
22
+ var packageVersion = "0.0.0-development";
23
23
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
24
24
  // Remove URL as it has UGC
25
25
  // Ignored via go/ees007
@@ -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.1";
27
+ var packageVersion = "0.0.0-development";
28
28
  var halfFocusRing = 1;
29
29
  var dropOffset = '0, 8';
30
30
  var fadeIn = (0, _react2.keyframes)({
@@ -1,5 +1,6 @@
1
- import React, { useEffect, useState } from 'react';
1
+ import React, { useEffect, useRef, useState } from 'react';
2
2
  import Loadable from 'react-loadable';
3
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
3
4
  import { getContextualToolbarItemsFromModule } from '../extensions';
4
5
  import { nodeToJSON } from '../utils';
5
6
  import { DropdownMenuItem } from './DropdownMenuItem';
@@ -19,7 +20,8 @@ const convertExtensionToDropdownMenuItem = ({
19
20
  item,
20
21
  disabled,
21
22
  node,
22
- extension
23
+ extension,
24
+ IconComponent
23
25
  }) => {
24
26
  const ButtonIcon = item.icon ? Loadable({
25
27
  // Ignored via go/ees005
@@ -36,11 +38,20 @@ const convertExtensionToDropdownMenuItem = ({
36
38
  title = item.ariaLabel;
37
39
  }
38
40
  item.disabled = (disabled === null || disabled === void 0 ? void 0 : disabled(item.key)) || false;
41
+ const getIcon = () => {
42
+ const label = item.label || '';
43
+ if (expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
44
+ return IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
45
+ label: label
46
+ }) : undefined;
47
+ }
48
+ return ButtonIcon ? /*#__PURE__*/React.createElement(ButtonIcon, {
49
+ label: label
50
+ }) : undefined;
51
+ };
39
52
  return {
40
53
  title,
41
- icon: ButtonIcon ? /*#__PURE__*/React.createElement(ButtonIcon, {
42
- label: item.label || ''
43
- }) : undefined,
54
+ icon: getIcon(),
44
55
  disabled: item.disabled,
45
56
  onClick: () => {
46
57
  if (typeof item.action !== 'function') {
@@ -60,11 +71,25 @@ const DropdownMenuExtensionItem = ({
60
71
  extension,
61
72
  dropdownOptions
62
73
  }) => {
74
+ var _iconRef$current;
75
+ // Use ref to keep icon component stable across renders
76
+ const iconRef = useRef(null);
77
+ if (!iconRef.current && item.icon && expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
78
+ iconRef.current = Loadable({
79
+ // Ignored via go/ees005
80
+ // eslint-disable-next-line require-await
81
+ loader: async () => resolveExtensionIcon(item.icon),
82
+ loading: noop
83
+ });
84
+ }
63
85
  const dropdownItem = convertExtensionToDropdownMenuItem({
64
86
  item,
65
87
  disabled,
66
88
  node,
67
- extension
89
+ extension,
90
+ ...(expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true) ? {
91
+ IconComponent: (_iconRef$current = iconRef.current) !== null && _iconRef$current !== void 0 ? _iconRef$current : undefined
92
+ } : {})
68
93
  });
69
94
  if (!dropdownItem) {
70
95
  return null;
@@ -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.1";
7
+ const packageVersion = "0.0.0-development";
8
8
  const sanitiseSentryEvents = (data, _hint) => {
9
9
  // Remove URL as it has UGC
10
10
  // Ignored via go/ees007
@@ -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.1";
17
+ const packageVersion = "0.0.0-development";
18
18
  const halfFocusRing = 1;
19
19
  const dropOffset = '0, 8';
20
20
  const fadeIn = keyframes({
@@ -1,8 +1,12 @@
1
1
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
2
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
3
  import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
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
+ 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; }
3
6
  import _regeneratorRuntime from "@babel/runtime/regenerator";
4
- import React, { useEffect, useState } from 'react';
7
+ import React, { useEffect, useRef, useState } from 'react';
5
8
  import Loadable from 'react-loadable';
9
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
6
10
  import { getContextualToolbarItemsFromModule } from '../extensions';
7
11
  import { nodeToJSON } from '../utils';
8
12
  import { DropdownMenuItem } from './DropdownMenuItem';
@@ -44,7 +48,8 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
44
48
  var item = _ref2.item,
45
49
  disabled = _ref2.disabled,
46
50
  node = _ref2.node,
47
- extension = _ref2.extension;
51
+ extension = _ref2.extension,
52
+ IconComponent = _ref2.IconComponent;
48
53
  var ButtonIcon = item.icon ? Loadable({
49
54
  // Ignored via go/ees005
50
55
  // eslint-disable-next-line require-await
@@ -76,11 +81,20 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
76
81
  title = item.ariaLabel;
77
82
  }
78
83
  item.disabled = (disabled === null || disabled === void 0 ? void 0 : disabled(item.key)) || false;
84
+ var getIcon = function getIcon() {
85
+ var label = item.label || '';
86
+ if (expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
87
+ return IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
88
+ label: label
89
+ }) : undefined;
90
+ }
91
+ return ButtonIcon ? /*#__PURE__*/React.createElement(ButtonIcon, {
92
+ label: label
93
+ }) : undefined;
94
+ };
79
95
  return {
80
96
  title: title,
81
- icon: ButtonIcon ? /*#__PURE__*/React.createElement(ButtonIcon, {
82
- label: item.label || ''
83
- }) : undefined,
97
+ icon: getIcon(),
84
98
  disabled: item.disabled,
85
99
  onClick: function onClick() {
86
100
  if (typeof item.action !== 'function') {
@@ -93,18 +107,47 @@ var convertExtensionToDropdownMenuItem = function convertExtensionToDropdownMenu
93
107
  };
94
108
  };
95
109
  var DropdownMenuExtensionItem = function DropdownMenuExtensionItem(_ref3) {
110
+ var _iconRef$current;
96
111
  var item = _ref3.item,
97
112
  editorView = _ref3.editorView,
98
113
  disabled = _ref3.disabled,
99
114
  node = _ref3.node,
100
115
  extension = _ref3.extension,
101
116
  dropdownOptions = _ref3.dropdownOptions;
102
- var dropdownItem = convertExtensionToDropdownMenuItem({
117
+ // Use ref to keep icon component stable across renders
118
+ var iconRef = useRef(null);
119
+ if (!iconRef.current && item.icon && expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true)) {
120
+ iconRef.current = Loadable({
121
+ // Ignored via go/ees005
122
+ // eslint-disable-next-line require-await
123
+ loader: function () {
124
+ var _loader2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() {
125
+ return _regeneratorRuntime.wrap(function _callee3$(_context3) {
126
+ while (1) switch (_context3.prev = _context3.next) {
127
+ case 0:
128
+ return _context3.abrupt("return", resolveExtensionIcon(item.icon));
129
+ case 1:
130
+ case "end":
131
+ return _context3.stop();
132
+ }
133
+ }, _callee3);
134
+ }));
135
+ function loader() {
136
+ return _loader2.apply(this, arguments);
137
+ }
138
+ return loader;
139
+ }(),
140
+ loading: noop
141
+ });
142
+ }
143
+ var dropdownItem = convertExtensionToDropdownMenuItem(_objectSpread({
103
144
  item: item,
104
145
  disabled: disabled,
105
146
  node: node,
106
147
  extension: extension
107
- });
148
+ }, expValEquals('platform_editor_table_toolbar_icon_ext_fix_exp', 'isEnabled', true) ? {
149
+ IconComponent: (_iconRef$current = iconRef.current) !== null && _iconRef$current !== void 0 ? _iconRef$current : undefined
150
+ } : {}));
108
151
  if (!dropdownItem) {
109
152
  return null;
110
153
  }
@@ -138,30 +181,30 @@ export var DropdownMenuExtensionItems = function DropdownMenuExtensionItems(prop
138
181
  return _getExtensions.apply(this, arguments);
139
182
  }
140
183
  function _getExtensions() {
141
- _getExtensions = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() {
184
+ _getExtensions = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4() {
142
185
  var provider;
143
- return _regeneratorRuntime.wrap(function _callee3$(_context3) {
144
- while (1) switch (_context3.prev = _context3.next) {
186
+ return _regeneratorRuntime.wrap(function _callee4$(_context4) {
187
+ while (1) switch (_context4.prev = _context4.next) {
145
188
  case 0:
146
- _context3.next = 2;
189
+ _context4.next = 2;
147
190
  return extension.extensionProvider;
148
191
  case 2:
149
- provider = _context3.sent;
192
+ provider = _context4.sent;
150
193
  if (!provider) {
151
- _context3.next = 9;
194
+ _context4.next = 9;
152
195
  break;
153
196
  }
154
- _context3.t0 = setExtensions;
155
- _context3.next = 7;
197
+ _context4.t0 = setExtensions;
198
+ _context4.next = 7;
156
199
  return provider.getExtensions();
157
200
  case 7:
158
- _context3.t1 = _context3.sent;
159
- (0, _context3.t0)(_context3.t1);
201
+ _context4.t1 = _context4.sent;
202
+ (0, _context4.t0)(_context4.t1);
160
203
  case 9:
161
204
  case "end":
162
- return _context3.stop();
205
+ return _context4.stop();
163
206
  }
164
- }, _callee3);
207
+ }, _callee4);
165
208
  }));
166
209
  return _getExtensions.apply(this, arguments);
167
210
  }
@@ -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.1";
13
+ var packageVersion = "0.0.0-development";
14
14
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
15
15
  // Remove URL as it has UGC
16
16
  // Ignored via go/ees007
@@ -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.1";
24
+ var packageVersion = "0.0.0-development";
25
25
  var halfFocusRing = 1;
26
26
  var dropOffset = '0, 8';
27
27
  var fadeIn = keyframes({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "111.8.2",
3
+ "version": "111.8.3",
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/"
@@ -81,7 +81,7 @@
81
81
  "@atlaskit/task-decision": "^19.2.0",
82
82
  "@atlaskit/textfield": "^8.2.0",
83
83
  "@atlaskit/theme": "^21.0.0",
84
- "@atlaskit/tmp-editor-statsig": "^16.22.0",
84
+ "@atlaskit/tmp-editor-statsig": "^16.23.0",
85
85
  "@atlaskit/tokens": "^9.1.0",
86
86
  "@atlaskit/tooltip": "^20.14.0",
87
87
  "@atlaskit/width-detector": "^5.0.0",