@atlaskit/editor-plugin-status 3.1.11 → 3.1.13
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 +17 -0
- package/dist/cjs/nodeviews/StatusNodeView.js +15 -36
- package/dist/cjs/nodeviews/statusNodeSpec.js +2 -2
- package/dist/es2019/nodeviews/StatusNodeView.js +16 -33
- package/dist/es2019/nodeviews/statusNodeSpec.js +2 -2
- package/dist/esm/nodeviews/StatusNodeView.js +15 -36
- package/dist/esm/nodeviews/statusNodeSpec.js +2 -2
- package/dist/types/nodeviews/StatusNodeView.d.ts +2 -3
- package/dist/types-ts4.5/nodeviews/StatusNodeView.d.ts +2 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-status
|
|
2
2
|
|
|
3
|
+
## 3.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#148798](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148798)
|
|
8
|
+
[`8112e98809756`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8112e98809756) -
|
|
9
|
+
[No Issue] Clean up virtualization feature flag
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 3.1.12
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#148210](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148210)
|
|
17
|
+
[`10eb0681e9681`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/10eb0681e9681) -
|
|
18
|
+
fix SSR issues
|
|
19
|
+
|
|
3
20
|
## 3.1.11
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -9,50 +9,36 @@ 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 _messages = require("@atlaskit/editor-common/messages");
|
|
12
|
-
var _monitoring = require("@atlaskit/editor-common/monitoring");
|
|
13
12
|
var _model = require("@atlaskit/editor-prosemirror/model");
|
|
14
13
|
var _statusNodeSpec = require("./statusNodeSpec");
|
|
15
14
|
var StatusNodeView = exports.StatusNodeView = /*#__PURE__*/function () {
|
|
16
15
|
function StatusNodeView(node, intl) {
|
|
17
16
|
(0, _classCallCheck2.default)(this, StatusNodeView);
|
|
18
|
-
(0, _defineProperty2.default)(this, "dom", document.createElement('div'));
|
|
19
17
|
(0, _defineProperty2.default)(this, "box", null);
|
|
20
18
|
(0, _defineProperty2.default)(this, "textContainer", null);
|
|
21
19
|
this.node = node;
|
|
22
20
|
this.intl = intl;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
this.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
this.setPlaceholder();
|
|
35
|
-
}
|
|
36
|
-
} catch (error) {
|
|
37
|
-
StatusNodeView.logError(error instanceof Error ? error : new Error('Unknown error on StatusNodeView constructor'));
|
|
38
|
-
this.renderFallback();
|
|
21
|
+
var spec = (0, _statusNodeSpec.statusToDOM)(node);
|
|
22
|
+
var _DOMSerializer$render = _model.DOMSerializer.renderSpec(document, spec),
|
|
23
|
+
dom = _DOMSerializer$render.dom;
|
|
24
|
+
this.dom = dom;
|
|
25
|
+
this.domElement = dom instanceof HTMLElement ? dom : undefined;
|
|
26
|
+
if (this.domElement) {
|
|
27
|
+
this.box = this.domElement.querySelector('.status-lozenge-span');
|
|
28
|
+
this.textContainer = this.domElement.querySelector('.lozenge-text');
|
|
29
|
+
}
|
|
30
|
+
if (!node.attrs.text) {
|
|
31
|
+
this.setPlaceholder();
|
|
39
32
|
}
|
|
40
33
|
}
|
|
41
34
|
return (0, _createClass2.default)(StatusNodeView, [{
|
|
42
35
|
key: "setPlaceholder",
|
|
43
36
|
value: function setPlaceholder() {
|
|
44
|
-
if (this.textContainer) {
|
|
37
|
+
if (this.textContainer && this.domElement) {
|
|
45
38
|
this.textContainer.textContent = this.intl.formatMessage(_messages.statusMessages.placeholder);
|
|
46
|
-
this.
|
|
39
|
+
this.domElement.style.setProperty('opacity', '0.5');
|
|
47
40
|
}
|
|
48
41
|
}
|
|
49
|
-
}, {
|
|
50
|
-
key: "renderFallback",
|
|
51
|
-
value: function renderFallback() {
|
|
52
|
-
var fallbackElement = document.createElement('span');
|
|
53
|
-
fallbackElement.innerText = this.node.attrs.text;
|
|
54
|
-
this.dom.appendChild(fallbackElement);
|
|
55
|
-
}
|
|
56
42
|
}, {
|
|
57
43
|
key: "update",
|
|
58
44
|
value: function update(node) {
|
|
@@ -69,18 +55,11 @@ var StatusNodeView = exports.StatusNodeView = /*#__PURE__*/function () {
|
|
|
69
55
|
if (!node.attrs.text) {
|
|
70
56
|
this.setPlaceholder();
|
|
71
57
|
}
|
|
72
|
-
if (node.attrs.text) {
|
|
73
|
-
this.
|
|
58
|
+
if (node.attrs.text && this.domElement) {
|
|
59
|
+
this.domElement.style.setProperty('opacity', '1');
|
|
74
60
|
}
|
|
75
61
|
this.node = node;
|
|
76
62
|
return true;
|
|
77
63
|
}
|
|
78
|
-
}], [{
|
|
79
|
-
key: "logError",
|
|
80
|
-
value: function logError(error) {
|
|
81
|
-
void (0, _monitoring.logException)(error, {
|
|
82
|
-
location: 'editor-plugin-status/StatusNodeView'
|
|
83
|
-
});
|
|
84
|
-
}
|
|
85
64
|
}]);
|
|
86
65
|
}();
|
|
@@ -11,7 +11,6 @@ var _adfSchema = require("@atlaskit/adf-schema");
|
|
|
11
11
|
var _lazyNodeView = require("@atlaskit/editor-common/lazy-node-view");
|
|
12
12
|
var _whitespace = require("@atlaskit/editor-common/whitespace");
|
|
13
13
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
|
-
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
15
14
|
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; }
|
|
16
15
|
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; }
|
|
17
16
|
var isSSR = Boolean(process.env.REACT_SSR);
|
|
@@ -101,7 +100,7 @@ var isAndroidChromium = typeof window !== 'undefined' && /Version\/(?:[\0-\t\x0B
|
|
|
101
100
|
* @returns
|
|
102
101
|
*/
|
|
103
102
|
var statusNodeSpec = exports.statusNodeSpec = function statusNodeSpec() {
|
|
104
|
-
if (isSSR
|
|
103
|
+
if (isSSR) {
|
|
105
104
|
return _adfSchema.status;
|
|
106
105
|
}
|
|
107
106
|
return _objectSpread(_objectSpread({}, _adfSchema.status), {}, {
|
|
@@ -230,6 +229,7 @@ var statusToDOM = exports.statusToDOM = function statusToDOM(node) {
|
|
|
230
229
|
class: 'statusView-content-wrap inlineNodeView',
|
|
231
230
|
'data-testid': 'statusContainerView',
|
|
232
231
|
'data-prosemirror-node-view-type': 'vanilla',
|
|
232
|
+
'data-prosemirror-node-name': 'status',
|
|
233
233
|
'local-id': localId
|
|
234
234
|
};
|
|
235
235
|
var statusElementAttrs = {
|
|
@@ -1,50 +1,33 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
import { statusMessages as messages } from '@atlaskit/editor-common/messages';
|
|
3
|
-
import { logException } from '@atlaskit/editor-common/monitoring';
|
|
4
3
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
5
4
|
import { statusToDOM } from './statusNodeSpec';
|
|
6
5
|
export class StatusNodeView {
|
|
7
|
-
static logError(error) {
|
|
8
|
-
void logException(error, {
|
|
9
|
-
location: 'editor-plugin-status/StatusNodeView'
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
6
|
constructor(node, intl) {
|
|
13
|
-
_defineProperty(this, "dom", document.createElement('div'));
|
|
14
7
|
_defineProperty(this, "box", null);
|
|
15
8
|
_defineProperty(this, "textContainer", null);
|
|
16
9
|
this.node = node;
|
|
17
10
|
this.intl = intl;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
this.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
this.setPlaceholder();
|
|
31
|
-
}
|
|
32
|
-
} catch (error) {
|
|
33
|
-
StatusNodeView.logError(error instanceof Error ? error : new Error('Unknown error on StatusNodeView constructor'));
|
|
34
|
-
this.renderFallback();
|
|
11
|
+
const spec = statusToDOM(node);
|
|
12
|
+
const {
|
|
13
|
+
dom
|
|
14
|
+
} = DOMSerializer.renderSpec(document, spec);
|
|
15
|
+
this.dom = dom;
|
|
16
|
+
this.domElement = dom instanceof HTMLElement ? dom : undefined;
|
|
17
|
+
if (this.domElement) {
|
|
18
|
+
this.box = this.domElement.querySelector('.status-lozenge-span');
|
|
19
|
+
this.textContainer = this.domElement.querySelector('.lozenge-text');
|
|
20
|
+
}
|
|
21
|
+
if (!node.attrs.text) {
|
|
22
|
+
this.setPlaceholder();
|
|
35
23
|
}
|
|
36
24
|
}
|
|
37
25
|
setPlaceholder() {
|
|
38
|
-
if (this.textContainer) {
|
|
26
|
+
if (this.textContainer && this.domElement) {
|
|
39
27
|
this.textContainer.textContent = this.intl.formatMessage(messages.placeholder);
|
|
40
|
-
this.
|
|
28
|
+
this.domElement.style.setProperty('opacity', '0.5');
|
|
41
29
|
}
|
|
42
30
|
}
|
|
43
|
-
renderFallback() {
|
|
44
|
-
const fallbackElement = document.createElement('span');
|
|
45
|
-
fallbackElement.innerText = this.node.attrs.text;
|
|
46
|
-
this.dom.appendChild(fallbackElement);
|
|
47
|
-
}
|
|
48
31
|
update(node) {
|
|
49
32
|
if (node.type !== this.node.type) {
|
|
50
33
|
return false;
|
|
@@ -59,8 +42,8 @@ export class StatusNodeView {
|
|
|
59
42
|
if (!node.attrs.text) {
|
|
60
43
|
this.setPlaceholder();
|
|
61
44
|
}
|
|
62
|
-
if (node.attrs.text) {
|
|
63
|
-
this.
|
|
45
|
+
if (node.attrs.text && this.domElement) {
|
|
46
|
+
this.domElement.style.setProperty('opacity', '1');
|
|
64
47
|
}
|
|
65
48
|
this.node = node;
|
|
66
49
|
return true;
|
|
@@ -3,7 +3,6 @@ import { status } from '@atlaskit/adf-schema';
|
|
|
3
3
|
import { convertToInlineCss } from '@atlaskit/editor-common/lazy-node-view';
|
|
4
4
|
import { ZERO_WIDTH_SPACE } from '@atlaskit/editor-common/whitespace';
|
|
5
5
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
7
6
|
const isSSR = Boolean(process.env.REACT_SSR);
|
|
8
7
|
let intl;
|
|
9
8
|
|
|
@@ -91,7 +90,7 @@ const isAndroidChromium = typeof window !== 'undefined' && /Version\/.* Chrome\/
|
|
|
91
90
|
* @returns
|
|
92
91
|
*/
|
|
93
92
|
export const statusNodeSpec = () => {
|
|
94
|
-
if (isSSR
|
|
93
|
+
if (isSSR) {
|
|
95
94
|
return status;
|
|
96
95
|
}
|
|
97
96
|
return {
|
|
@@ -226,6 +225,7 @@ export const statusToDOM = node => {
|
|
|
226
225
|
class: 'statusView-content-wrap inlineNodeView',
|
|
227
226
|
'data-testid': 'statusContainerView',
|
|
228
227
|
'data-prosemirror-node-view-type': 'vanilla',
|
|
228
|
+
'data-prosemirror-node-name': 'status',
|
|
229
229
|
'local-id': localId
|
|
230
230
|
};
|
|
231
231
|
const statusElementAttrs = {
|
|
@@ -2,50 +2,36 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
|
2
2
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import { statusMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
|
-
import { logException } from '@atlaskit/editor-common/monitoring';
|
|
6
5
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
7
6
|
import { statusToDOM } from './statusNodeSpec';
|
|
8
7
|
export var StatusNodeView = /*#__PURE__*/function () {
|
|
9
8
|
function StatusNodeView(node, intl) {
|
|
10
9
|
_classCallCheck(this, StatusNodeView);
|
|
11
|
-
_defineProperty(this, "dom", document.createElement('div'));
|
|
12
10
|
_defineProperty(this, "box", null);
|
|
13
11
|
_defineProperty(this, "textContainer", null);
|
|
14
12
|
this.node = node;
|
|
15
13
|
this.intl = intl;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
this.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
this.setPlaceholder();
|
|
28
|
-
}
|
|
29
|
-
} catch (error) {
|
|
30
|
-
StatusNodeView.logError(error instanceof Error ? error : new Error('Unknown error on StatusNodeView constructor'));
|
|
31
|
-
this.renderFallback();
|
|
14
|
+
var spec = statusToDOM(node);
|
|
15
|
+
var _DOMSerializer$render = DOMSerializer.renderSpec(document, spec),
|
|
16
|
+
dom = _DOMSerializer$render.dom;
|
|
17
|
+
this.dom = dom;
|
|
18
|
+
this.domElement = dom instanceof HTMLElement ? dom : undefined;
|
|
19
|
+
if (this.domElement) {
|
|
20
|
+
this.box = this.domElement.querySelector('.status-lozenge-span');
|
|
21
|
+
this.textContainer = this.domElement.querySelector('.lozenge-text');
|
|
22
|
+
}
|
|
23
|
+
if (!node.attrs.text) {
|
|
24
|
+
this.setPlaceholder();
|
|
32
25
|
}
|
|
33
26
|
}
|
|
34
27
|
return _createClass(StatusNodeView, [{
|
|
35
28
|
key: "setPlaceholder",
|
|
36
29
|
value: function setPlaceholder() {
|
|
37
|
-
if (this.textContainer) {
|
|
30
|
+
if (this.textContainer && this.domElement) {
|
|
38
31
|
this.textContainer.textContent = this.intl.formatMessage(messages.placeholder);
|
|
39
|
-
this.
|
|
32
|
+
this.domElement.style.setProperty('opacity', '0.5');
|
|
40
33
|
}
|
|
41
34
|
}
|
|
42
|
-
}, {
|
|
43
|
-
key: "renderFallback",
|
|
44
|
-
value: function renderFallback() {
|
|
45
|
-
var fallbackElement = document.createElement('span');
|
|
46
|
-
fallbackElement.innerText = this.node.attrs.text;
|
|
47
|
-
this.dom.appendChild(fallbackElement);
|
|
48
|
-
}
|
|
49
35
|
}, {
|
|
50
36
|
key: "update",
|
|
51
37
|
value: function update(node) {
|
|
@@ -62,18 +48,11 @@ export var StatusNodeView = /*#__PURE__*/function () {
|
|
|
62
48
|
if (!node.attrs.text) {
|
|
63
49
|
this.setPlaceholder();
|
|
64
50
|
}
|
|
65
|
-
if (node.attrs.text) {
|
|
66
|
-
this.
|
|
51
|
+
if (node.attrs.text && this.domElement) {
|
|
52
|
+
this.domElement.style.setProperty('opacity', '1');
|
|
67
53
|
}
|
|
68
54
|
this.node = node;
|
|
69
55
|
return true;
|
|
70
56
|
}
|
|
71
|
-
}], [{
|
|
72
|
-
key: "logError",
|
|
73
|
-
value: function logError(error) {
|
|
74
|
-
void logException(error, {
|
|
75
|
-
location: 'editor-plugin-status/StatusNodeView'
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
57
|
}]);
|
|
79
58
|
}();
|
|
@@ -6,7 +6,6 @@ import { status } from '@atlaskit/adf-schema';
|
|
|
6
6
|
import { convertToInlineCss } from '@atlaskit/editor-common/lazy-node-view';
|
|
7
7
|
import { ZERO_WIDTH_SPACE } from '@atlaskit/editor-common/whitespace';
|
|
8
8
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
10
9
|
var isSSR = Boolean(process.env.REACT_SSR);
|
|
11
10
|
var intl;
|
|
12
11
|
|
|
@@ -94,7 +93,7 @@ var isAndroidChromium = typeof window !== 'undefined' && /Version\/(?:[\0-\t\x0B
|
|
|
94
93
|
* @returns
|
|
95
94
|
*/
|
|
96
95
|
export var statusNodeSpec = function statusNodeSpec() {
|
|
97
|
-
if (isSSR
|
|
96
|
+
if (isSSR) {
|
|
98
97
|
return status;
|
|
99
98
|
}
|
|
100
99
|
return _objectSpread(_objectSpread({}, status), {}, {
|
|
@@ -223,6 +222,7 @@ export var statusToDOM = function statusToDOM(node) {
|
|
|
223
222
|
class: 'statusView-content-wrap inlineNodeView',
|
|
224
223
|
'data-testid': 'statusContainerView',
|
|
225
224
|
'data-prosemirror-node-view-type': 'vanilla',
|
|
225
|
+
'data-prosemirror-node-name': 'status',
|
|
226
226
|
'local-id': localId
|
|
227
227
|
};
|
|
228
228
|
var statusElementAttrs = {
|
|
@@ -2,14 +2,13 @@ import { IntlShape } from 'react-intl-next';
|
|
|
2
2
|
import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
|
|
3
3
|
import type { NodeView } from '@atlaskit/editor-prosemirror/view';
|
|
4
4
|
export declare class StatusNodeView implements NodeView {
|
|
5
|
-
dom:
|
|
5
|
+
dom: Node;
|
|
6
|
+
domElement: HTMLElement | undefined;
|
|
6
7
|
private box;
|
|
7
8
|
private textContainer;
|
|
8
9
|
private node;
|
|
9
10
|
private intl;
|
|
10
|
-
private static logError;
|
|
11
11
|
constructor(node: PMNode, intl: IntlShape);
|
|
12
12
|
private setPlaceholder;
|
|
13
|
-
private renderFallback;
|
|
14
13
|
update(node: PMNode): boolean;
|
|
15
14
|
}
|
|
@@ -2,14 +2,13 @@ import { IntlShape } from 'react-intl-next';
|
|
|
2
2
|
import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
|
|
3
3
|
import type { NodeView } from '@atlaskit/editor-prosemirror/view';
|
|
4
4
|
export declare class StatusNodeView implements NodeView {
|
|
5
|
-
dom:
|
|
5
|
+
dom: Node;
|
|
6
|
+
domElement: HTMLElement | undefined;
|
|
6
7
|
private box;
|
|
7
8
|
private textContainer;
|
|
8
9
|
private node;
|
|
9
10
|
private intl;
|
|
10
|
-
private static logError;
|
|
11
11
|
constructor(node: PMNode, intl: IntlShape);
|
|
12
12
|
private setPlaceholder;
|
|
13
|
-
private renderFallback;
|
|
14
13
|
update(node: PMNode): boolean;
|
|
15
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-status",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.13",
|
|
4
4
|
"description": "Status plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
37
37
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
38
|
-
"@atlaskit/editor-common": "^
|
|
38
|
+
"@atlaskit/editor-common": "^104.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
41
41
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
44
|
"@atlaskit/status": "^3.0.0",
|
|
45
45
|
"@atlaskit/theme": "^18.0.0",
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^4.16.0",
|
|
47
47
|
"@atlaskit/tokens": "^4.8.0",
|
|
48
48
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|