@atlaskit/editor-plugin-extension 1.9.0 → 1.9.2
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 +18 -0
- package/dist/cjs/ui/ConfigPanel/ConfigPanel.js +3 -3
- package/dist/cjs/ui/ConfigPanel/Fields/Expand.js +4 -7
- package/dist/cjs/ui/ConfigPanel/Fields/Fieldset.js +9 -6
- package/dist/cjs/ui/ConfigPanel/Header.js +5 -5
- package/dist/es2019/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/es2019/ui/ConfigPanel/Fields/Expand.js +4 -7
- package/dist/es2019/ui/ConfigPanel/Fields/Fieldset.js +4 -3
- package/dist/es2019/ui/ConfigPanel/Header.js +5 -5
- package/dist/esm/ui/ConfigPanel/ConfigPanel.js +1 -1
- package/dist/esm/ui/ConfigPanel/Fields/Expand.js +4 -7
- package/dist/esm/ui/ConfigPanel/Fields/Fieldset.js +8 -5
- package/dist/esm/ui/ConfigPanel/Header.js +5 -5
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-extension
|
|
2
2
|
|
|
3
|
+
## 1.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#114548](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114548)
|
|
8
|
+
[`8b2d47bffb50e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8b2d47bffb50e) -
|
|
9
|
+
bump adf-schema version
|
|
10
|
+
- [#116062](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116062)
|
|
11
|
+
[`1c26d1ee6fb25`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c26d1ee6fb25) -
|
|
12
|
+
Migrated to new atlaskit Buttons.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 1.9.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 1.9.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -22,8 +22,8 @@ var _merge = _interopRequireDefault(require("lodash/merge"));
|
|
|
22
22
|
var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
23
23
|
var _reactIntlNext = require("react-intl-next");
|
|
24
24
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
25
|
-
var _button = _interopRequireDefault(require("@atlaskit/button"));
|
|
26
25
|
var _buttonGroup = _interopRequireDefault(require("@atlaskit/button/button-group"));
|
|
26
|
+
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
27
27
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
28
28
|
var _extensions = require("@atlaskit/editor-common/extensions");
|
|
29
29
|
var _hooks = require("@atlaskit/editor-common/hooks");
|
|
@@ -87,10 +87,10 @@ function ConfigForm(_ref) {
|
|
|
87
87
|
}
|
|
88
88
|
}, /*#__PURE__*/_react.default.createElement(_form.FormFooter, {
|
|
89
89
|
align: "start"
|
|
90
|
-
}, /*#__PURE__*/_react.default.createElement(_buttonGroup.default, null, /*#__PURE__*/_react.default.createElement(
|
|
90
|
+
}, /*#__PURE__*/_react.default.createElement(_buttonGroup.default, null, /*#__PURE__*/_react.default.createElement(_new.default, {
|
|
91
91
|
type: "submit",
|
|
92
92
|
appearance: "primary"
|
|
93
|
-
}, intl.formatMessage(_extensions.configPanelMessages.submit)), /*#__PURE__*/_react.default.createElement(
|
|
93
|
+
}, intl.formatMessage(_extensions.configPanelMessages.submit)), /*#__PURE__*/_react.default.createElement(_new.default, {
|
|
94
94
|
appearance: "default",
|
|
95
95
|
isDisabled: submitting,
|
|
96
96
|
onClick: onCancel
|
|
@@ -10,7 +10,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
var _react2 = require("@emotion/react");
|
|
12
12
|
var _reactIntlNext = require("react-intl-next");
|
|
13
|
-
var
|
|
13
|
+
var _new = require("@atlaskit/button/new");
|
|
14
14
|
var _extensions = require("@atlaskit/editor-common/extensions");
|
|
15
15
|
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-down"));
|
|
16
16
|
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-right"));
|
|
@@ -72,16 +72,13 @@ function Expand(_ref) {
|
|
|
72
72
|
css: labelContainerStyles
|
|
73
73
|
}, field.label), (0, _react2.jsx)("div", {
|
|
74
74
|
css: chevronContainerStyles
|
|
75
|
-
}, (0, _react2.jsx)(
|
|
75
|
+
}, (0, _react2.jsx)(_new.IconButton, {
|
|
76
76
|
onClick: function onClick() {
|
|
77
77
|
setExpanded(!expanded);
|
|
78
78
|
},
|
|
79
|
+
label: intl.formatMessage(expanded ? _extensions.configPanelMessages.collapse : _extensions.configPanelMessages.expand),
|
|
79
80
|
testId: "form-expand-toggle",
|
|
80
|
-
|
|
81
|
-
label: intl.formatMessage(_extensions.configPanelMessages.collapse)
|
|
82
|
-
}) : (0, _react2.jsx)(_chevronRight.default, {
|
|
83
|
-
label: intl.formatMessage(_extensions.configPanelMessages.expand)
|
|
84
|
-
})
|
|
81
|
+
icon: expanded ? _chevronDown.default : _chevronRight.default
|
|
85
82
|
}))), (0, _react2.jsx)("div", {
|
|
86
83
|
"data-testid": "expand-content-container",
|
|
87
84
|
css: expanded ? expandContentContainerVisibleStyles : expandContentContainerHiddenStyles
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
10
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
10
11
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
12
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
@@ -18,7 +19,7 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
18
19
|
var _react = _interopRequireWildcard(require("react"));
|
|
19
20
|
var _react2 = require("@emotion/react");
|
|
20
21
|
var _reactIntlNext = require("react-intl-next");
|
|
21
|
-
var
|
|
22
|
+
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
22
23
|
var _extensions = require("@atlaskit/editor-common/extensions");
|
|
23
24
|
var _addCircle = _interopRequireDefault(require("@atlaskit/icon/glyph/add-circle"));
|
|
24
25
|
var _primitives = require("@atlaskit/primitives");
|
|
@@ -198,13 +199,15 @@ var FieldsetField = /*#__PURE__*/function (_React$Component) {
|
|
|
198
199
|
_this.onSelectItem(option);
|
|
199
200
|
}
|
|
200
201
|
}
|
|
201
|
-
}) : (0, _react2.jsx)(
|
|
202
|
+
}) : (0, _react2.jsx)(_new.default, {
|
|
202
203
|
testId: "add-more",
|
|
203
204
|
appearance: "subtle",
|
|
204
|
-
iconBefore: (
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
205
|
+
iconBefore: function iconBefore(iconProps) {
|
|
206
|
+
return (0, _react2.jsx)(_addCircle.default, (0, _extends2.default)({}, iconProps, {
|
|
207
|
+
size: "small",
|
|
208
|
+
label: intl.formatMessage(_extensions.configPanelMessages.addField)
|
|
209
|
+
}));
|
|
210
|
+
},
|
|
208
211
|
onClick: function onClick() {
|
|
209
212
|
return _this.setIsAdding(true);
|
|
210
213
|
}
|
|
@@ -9,7 +9,7 @@ var _react = require("react");
|
|
|
9
9
|
var _react2 = require("@emotion/react");
|
|
10
10
|
var _reactIntlNext = require("react-intl-next");
|
|
11
11
|
var _reactLoadable = _interopRequireDefault(require("react-loadable"));
|
|
12
|
-
var
|
|
12
|
+
var _new = require("@atlaskit/button/new");
|
|
13
13
|
var _extensions = require("@atlaskit/editor-common/extensions");
|
|
14
14
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
15
15
|
var _cross = _interopRequireDefault(require("@atlaskit/icon/glyph/cross"));
|
|
@@ -122,11 +122,11 @@ var Header = function Header(_ref) {
|
|
|
122
122
|
"data-testid": "context-panel-title"
|
|
123
123
|
}, title)), (0, _react2.jsx)("div", {
|
|
124
124
|
css: closeButtonWrapperStyles
|
|
125
|
-
}, (0, _react2.jsx)(
|
|
125
|
+
}, (0, _react2.jsx)(_new.IconButton, {
|
|
126
126
|
appearance: "subtle",
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
127
|
+
testId: "config-panel-header-close-button",
|
|
128
|
+
label: intl.formatMessage(_extensions.configPanelMessages.close),
|
|
129
|
+
icon: _cross.default,
|
|
130
130
|
onClick: onClose
|
|
131
131
|
}))), (description || documentationUrl) && (0, _react2.jsx)("p", {
|
|
132
132
|
css: descriptionStyles,
|
|
@@ -6,8 +6,8 @@ import _mergeRecursive from 'lodash/merge';
|
|
|
6
6
|
import memoizeOne from 'memoize-one';
|
|
7
7
|
import { injectIntl } from 'react-intl-next';
|
|
8
8
|
import { withAnalyticsContext, withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
9
|
-
import Button from '@atlaskit/button';
|
|
10
9
|
import ButtonGroup from '@atlaskit/button/button-group';
|
|
10
|
+
import Button from '@atlaskit/button/new';
|
|
11
11
|
import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
12
12
|
import { isTabGroup, configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
13
13
|
import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
|
|
@@ -4,7 +4,7 @@ import React, { useState } from 'react';
|
|
|
4
4
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
5
5
|
import { css, jsx } from '@emotion/react';
|
|
6
6
|
import { injectIntl } from 'react-intl-next';
|
|
7
|
-
import
|
|
7
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
8
8
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
9
9
|
import ChevronDownIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
10
10
|
import ChevronRightIcon from '@atlaskit/icon/glyph/chevron-right';
|
|
@@ -57,16 +57,13 @@ function Expand({
|
|
|
57
57
|
css: labelContainerStyles
|
|
58
58
|
}, field.label), jsx("div", {
|
|
59
59
|
css: chevronContainerStyles
|
|
60
|
-
}, jsx(
|
|
60
|
+
}, jsx(IconButton, {
|
|
61
61
|
onClick: () => {
|
|
62
62
|
setExpanded(!expanded);
|
|
63
63
|
},
|
|
64
|
+
label: intl.formatMessage(expanded ? messages.collapse : messages.expand),
|
|
64
65
|
testId: "form-expand-toggle",
|
|
65
|
-
|
|
66
|
-
label: intl.formatMessage(messages.collapse)
|
|
67
|
-
}) : jsx(ChevronRightIcon, {
|
|
68
|
-
label: intl.formatMessage(messages.expand)
|
|
69
|
-
})
|
|
66
|
+
icon: expanded ? ChevronDownIcon : ChevronRightIcon
|
|
70
67
|
}))), jsx("div", {
|
|
71
68
|
"data-testid": "expand-content-container",
|
|
72
69
|
css: expanded ? expandContentContainerVisibleStyles : expandContentContainerHiddenStyles
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
3
|
/** @jsx jsx */
|
|
3
4
|
import React, { Fragment } from 'react';
|
|
@@ -5,7 +6,7 @@ import React, { Fragment } from 'react';
|
|
|
5
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
6
7
|
import { css, jsx } from '@emotion/react';
|
|
7
8
|
import { injectIntl } from 'react-intl-next';
|
|
8
|
-
import Button from '@atlaskit/button';
|
|
9
|
+
import Button from '@atlaskit/button/new';
|
|
9
10
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
10
11
|
import AddCircleIcon from '@atlaskit/icon/glyph/add-circle';
|
|
11
12
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
@@ -162,10 +163,10 @@ class FieldsetField extends React.Component {
|
|
|
162
163
|
}) : jsx(Button, {
|
|
163
164
|
testId: "add-more",
|
|
164
165
|
appearance: "subtle",
|
|
165
|
-
iconBefore: jsx(AddCircleIcon, {
|
|
166
|
+
iconBefore: iconProps => jsx(AddCircleIcon, _extends({}, iconProps, {
|
|
166
167
|
size: "small",
|
|
167
168
|
label: intl.formatMessage(messages.addField)
|
|
168
|
-
}),
|
|
169
|
+
})),
|
|
169
170
|
onClick: () => this.setIsAdding(true)
|
|
170
171
|
}, intl.formatMessage(messages.addField)));
|
|
171
172
|
});
|
|
@@ -5,7 +5,7 @@ import { Fragment } from 'react';
|
|
|
5
5
|
import { css, jsx } from '@emotion/react';
|
|
6
6
|
import { injectIntl } from 'react-intl-next';
|
|
7
7
|
import Loadable from 'react-loadable';
|
|
8
|
-
import
|
|
8
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
9
9
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
10
10
|
import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
|
|
11
11
|
import CrossIcon from '@atlaskit/icon/glyph/cross';
|
|
@@ -113,11 +113,11 @@ const Header = ({
|
|
|
113
113
|
"data-testid": "context-panel-title"
|
|
114
114
|
}, title)), jsx("div", {
|
|
115
115
|
css: closeButtonWrapperStyles
|
|
116
|
-
}, jsx(
|
|
116
|
+
}, jsx(IconButton, {
|
|
117
117
|
appearance: "subtle",
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
testId: "config-panel-header-close-button",
|
|
119
|
+
label: intl.formatMessage(messages.close),
|
|
120
|
+
icon: CrossIcon,
|
|
121
121
|
onClick: onClose
|
|
122
122
|
}))), (description || documentationUrl) && jsx("p", {
|
|
123
123
|
css: descriptionStyles,
|
|
@@ -18,8 +18,8 @@ import _mergeRecursive from 'lodash/merge';
|
|
|
18
18
|
import memoizeOne from 'memoize-one';
|
|
19
19
|
import { injectIntl } from 'react-intl-next';
|
|
20
20
|
import { withAnalyticsContext, withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
21
|
-
import Button from '@atlaskit/button';
|
|
22
21
|
import ButtonGroup from '@atlaskit/button/button-group';
|
|
22
|
+
import Button from '@atlaskit/button/new';
|
|
23
23
|
import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
24
24
|
import { isTabGroup, configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
25
25
|
import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
|
|
@@ -5,7 +5,7 @@ import React, { useState } from 'react';
|
|
|
5
5
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
6
6
|
import { css, jsx } from '@emotion/react';
|
|
7
7
|
import { injectIntl } from 'react-intl-next';
|
|
8
|
-
import
|
|
8
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
9
9
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
10
10
|
import ChevronDownIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
11
11
|
import ChevronRightIcon from '@atlaskit/icon/glyph/chevron-right';
|
|
@@ -61,16 +61,13 @@ function Expand(_ref) {
|
|
|
61
61
|
css: labelContainerStyles
|
|
62
62
|
}, field.label), jsx("div", {
|
|
63
63
|
css: chevronContainerStyles
|
|
64
|
-
}, jsx(
|
|
64
|
+
}, jsx(IconButton, {
|
|
65
65
|
onClick: function onClick() {
|
|
66
66
|
setExpanded(!expanded);
|
|
67
67
|
},
|
|
68
|
+
label: intl.formatMessage(expanded ? messages.collapse : messages.expand),
|
|
68
69
|
testId: "form-expand-toggle",
|
|
69
|
-
|
|
70
|
-
label: intl.formatMessage(messages.collapse)
|
|
71
|
-
}) : jsx(ChevronRightIcon, {
|
|
72
|
-
label: intl.formatMessage(messages.expand)
|
|
73
|
-
})
|
|
70
|
+
icon: expanded ? ChevronDownIcon : ChevronRightIcon
|
|
74
71
|
}))), jsx("div", {
|
|
75
72
|
"data-testid": "expand-content-container",
|
|
76
73
|
css: expanded ? expandContentContainerVisibleStyles : expandContentContainerHiddenStyles
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
2
3
|
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
3
4
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
@@ -17,7 +18,7 @@ import React, { Fragment } from 'react';
|
|
|
17
18
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
18
19
|
import { css, jsx } from '@emotion/react';
|
|
19
20
|
import { injectIntl } from 'react-intl-next';
|
|
20
|
-
import Button from '@atlaskit/button';
|
|
21
|
+
import Button from '@atlaskit/button/new';
|
|
21
22
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
22
23
|
import AddCircleIcon from '@atlaskit/icon/glyph/add-circle';
|
|
23
24
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
@@ -194,10 +195,12 @@ var FieldsetField = /*#__PURE__*/function (_React$Component) {
|
|
|
194
195
|
}) : jsx(Button, {
|
|
195
196
|
testId: "add-more",
|
|
196
197
|
appearance: "subtle",
|
|
197
|
-
iconBefore:
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
198
|
+
iconBefore: function iconBefore(iconProps) {
|
|
199
|
+
return jsx(AddCircleIcon, _extends({}, iconProps, {
|
|
200
|
+
size: "small",
|
|
201
|
+
label: intl.formatMessage(messages.addField)
|
|
202
|
+
}));
|
|
203
|
+
},
|
|
201
204
|
onClick: function onClick() {
|
|
202
205
|
return _this.setIsAdding(true);
|
|
203
206
|
}
|
|
@@ -5,7 +5,7 @@ import { Fragment } from 'react';
|
|
|
5
5
|
import { css, jsx } from '@emotion/react';
|
|
6
6
|
import { injectIntl } from 'react-intl-next';
|
|
7
7
|
import Loadable from 'react-loadable';
|
|
8
|
-
import
|
|
8
|
+
import { IconButton } from '@atlaskit/button/new';
|
|
9
9
|
import { configPanelMessages as messages } from '@atlaskit/editor-common/extensions';
|
|
10
10
|
import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
|
|
11
11
|
import CrossIcon from '@atlaskit/icon/glyph/cross';
|
|
@@ -114,11 +114,11 @@ var Header = function Header(_ref) {
|
|
|
114
114
|
"data-testid": "context-panel-title"
|
|
115
115
|
}, title)), jsx("div", {
|
|
116
116
|
css: closeButtonWrapperStyles
|
|
117
|
-
}, jsx(
|
|
117
|
+
}, jsx(IconButton, {
|
|
118
118
|
appearance: "subtle",
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
119
|
+
testId: "config-panel-header-close-button",
|
|
120
|
+
label: intl.formatMessage(messages.close),
|
|
121
|
+
icon: CrossIcon,
|
|
122
122
|
onClick: onClose
|
|
123
123
|
}))), (description || documentationUrl) && jsx("p", {
|
|
124
124
|
css: descriptionStyles,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
".": "./src/index.ts"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-schema": "^
|
|
27
|
+
"@atlaskit/adf-schema": "^39.0.3",
|
|
28
28
|
"@atlaskit/adf-utils": "^19.4.0",
|
|
29
29
|
"@atlaskit/analytics-next": "^9.3.0",
|
|
30
30
|
"@atlaskit/avatar": "^21.10.0",
|
|
31
31
|
"@atlaskit/button": "^18.0.0",
|
|
32
32
|
"@atlaskit/checkbox": "^13.5.0",
|
|
33
33
|
"@atlaskit/datetime-picker": "^13.6.0",
|
|
34
|
-
"@atlaskit/editor-common": "^83.
|
|
34
|
+
"@atlaskit/editor-common": "^83.5.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.15.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^1.4.0",
|
|
37
37
|
"@atlaskit/editor-plugin-context-identifier": "^1.1.0",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@atlaskit/empty-state": "^7.9.0",
|
|
46
46
|
"@atlaskit/form": "^10.4.0",
|
|
47
47
|
"@atlaskit/icon": "^22.5.0",
|
|
48
|
-
"@atlaskit/platform-feature-flags": "^0.
|
|
49
|
-
"@atlaskit/primitives": "^
|
|
48
|
+
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
49
|
+
"@atlaskit/primitives": "^10.0.0",
|
|
50
50
|
"@atlaskit/radio": "^6.4.0",
|
|
51
51
|
"@atlaskit/section-message": "^6.5.0",
|
|
52
52
|
"@atlaskit/select": "^17.11.0",
|