@atlaskit/editor-core 187.41.5 → 187.41.8
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 +13 -0
- package/dist/cjs/plugins/media/nodeviews/mediaSingle.js +3 -1
- package/dist/cjs/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +17 -0
- package/dist/cjs/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +4 -2
- package/dist/cjs/plugins/media/ui/ResizableMediaSingle/styles.js +18 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/plugins/media/nodeviews/mediaSingle.js +3 -1
- package/dist/es2019/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +9 -0
- package/dist/es2019/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +4 -2
- package/dist/es2019/plugins/media/ui/ResizableMediaSingle/styles.js +14 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/plugins/media/nodeviews/mediaSingle.js +3 -1
- package/dist/esm/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js +9 -0
- package/dist/esm/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.js +4 -2
- package/dist/esm/plugins/media/ui/ResizableMediaSingle/styles.js +7 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.d.ts +3 -0
- package/dist/types/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.d.ts +3 -1
- package/dist/types/plugins/media/ui/ResizableMediaSingle/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.d.ts +3 -1
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/styles.d.ts +1 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 187.41.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`890ab8d6307`](https://bitbucket.org/atlassian/atlassian-frontend/commits/890ab8d6307) - NO-ISSUE Move doc builder types to editor-common to break circular dependencies
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 187.41.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`64c9a1be1b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/64c9a1be1b1) - [ux] Show notification dot when image is sized using percentage or legacy
|
|
15
|
+
|
|
3
16
|
## 187.41.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -407,7 +407,9 @@ var MediaSingleNode = /*#__PURE__*/function (_Component) {
|
|
|
407
407
|
ref: this.captionPlaceHolderRef,
|
|
408
408
|
onClick: this.clickPlaceholder
|
|
409
409
|
}));
|
|
410
|
-
return canResize ? (0, _platformFeatureFlags.getBooleanFF)('platform.editor.media.extended-resize-experience') ? (0, _react.jsx)(_ResizableMediaSingleNext.default,
|
|
410
|
+
return canResize ? (0, _platformFeatureFlags.getBooleanFF)('platform.editor.media.extended-resize-experience') ? (0, _react.jsx)(_ResizableMediaSingleNext.default, (0, _extends2.default)({}, resizableMediaSingleProps, {
|
|
411
|
+
showLegacyNotification: widthType !== 'pixel'
|
|
412
|
+
}), MediaChildren) : (0, _react.jsx)(_ResizableMediaSingle.default, (0, _extends2.default)({}, resizableMediaSingleProps, {
|
|
411
413
|
lineLength: contentWidthForLegacyExperience
|
|
412
414
|
}), MediaChildren) : (0, _react.jsx)(_ui.MediaSingle, mediaSingleProps, MediaChildren);
|
|
413
415
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.ResizableMediaMigrationNotification = void 0;
|
|
7
|
+
var _react = require("@emotion/react");
|
|
8
|
+
var _styles = require("./styles");
|
|
9
|
+
/** @jsx jsx */
|
|
10
|
+
|
|
11
|
+
var ResizableMediaMigrationNotification = function ResizableMediaMigrationNotification() {
|
|
12
|
+
return (0, _react.jsx)("div", {
|
|
13
|
+
"data-testid": "resizable-media-migration-notification",
|
|
14
|
+
css: [_styles.resizableMediaMigrationNotificationStyle]
|
|
15
|
+
});
|
|
16
|
+
};
|
|
17
|
+
exports.ResizableMediaMigrationNotification = ResizableMediaMigrationNotification;
|
|
@@ -32,6 +32,7 @@ var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
|
32
32
|
var _analytics = require("../../utils/analytics");
|
|
33
33
|
var _throttle = _interopRequireDefault(require("lodash/throttle"));
|
|
34
34
|
var _main = require("../../pm-plugins/main");
|
|
35
|
+
var _ResizableMediaMigrationNotification = require("./ResizableMediaMigrationNotification");
|
|
35
36
|
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); }; }
|
|
36
37
|
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 */
|
|
37
38
|
var resizerNextTestId = 'mediaSingle.resizerNext.testid';
|
|
@@ -502,7 +503,8 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
|
|
|
502
503
|
fullWidthMode = _this$props8.fullWidthMode,
|
|
503
504
|
selected = _this$props8.selected,
|
|
504
505
|
children = _this$props8.children,
|
|
505
|
-
lineLength = _this$props8.lineLength
|
|
506
|
+
lineLength = _this$props8.lineLength,
|
|
507
|
+
showLegacyNotification = _this$props8.showLegacyNotification;
|
|
506
508
|
var _this$state = this.state,
|
|
507
509
|
isResizing = _this$state.isResizing,
|
|
508
510
|
size = _this$state.size,
|
|
@@ -554,7 +556,7 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
|
|
|
554
556
|
isHandleVisible: selected,
|
|
555
557
|
handlePositioning: isNestedNode ? 'adjacent' : undefined,
|
|
556
558
|
handleHighlight: "full-height"
|
|
557
|
-
}, children));
|
|
559
|
+
}, children, showLegacyNotification && (0, _react2.jsx)(_ResizableMediaMigrationNotification.ResizableMediaMigrationNotification, null)));
|
|
558
560
|
}
|
|
559
561
|
}]);
|
|
560
562
|
return ResizableMediaSingleNext;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.resizableMediaMigrationNotificationStyle = void 0;
|
|
9
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
10
|
+
var _react = require("@emotion/react");
|
|
11
|
+
var colors = _interopRequireWildcard(require("@atlaskit/theme/colors"));
|
|
12
|
+
var _templateObject;
|
|
13
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
14
|
+
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; }
|
|
15
|
+
var NOTIFICATION_SIZE = 8;
|
|
16
|
+
var SPACE_FROM_EDGE = "var(--ds-space-100, 8px)";
|
|
17
|
+
var resizableMediaMigrationNotificationStyle = (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: absolute;\n top: ", ";\n right: calc(", " + ", ");\n background-color: ", ";\n border-radius: ", ";\n width: ", "px;\n height: ", "px;\n pointer-events: none;\n"])), SPACE_FROM_EDGE, "var(--ds-space-150, 12px)", SPACE_FROM_EDGE, "var(--ds-background-warning-bold, ".concat(colors.Y300, ")"), "var(--ds-border-radius-circle, 50%)", NOTIFICATION_SIZE, NOTIFICATION_SIZE);
|
|
18
|
+
exports.resizableMediaMigrationNotificationStyle = resizableMediaMigrationNotificationStyle;
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = exports.nextMajorVersion = exports.name = void 0;
|
|
7
7
|
var name = "@atlaskit/editor-core";
|
|
8
8
|
exports.name = name;
|
|
9
|
-
var version = "187.41.
|
|
9
|
+
var version = "187.41.8";
|
|
10
10
|
exports.version = version;
|
|
11
11
|
var nextMajorVersion = function nextMajorVersion() {
|
|
12
12
|
return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
|
|
@@ -317,7 +317,9 @@ export default class MediaSingleNode extends Component {
|
|
|
317
317
|
ref: this.captionPlaceHolderRef,
|
|
318
318
|
onClick: this.clickPlaceholder
|
|
319
319
|
}));
|
|
320
|
-
return canResize ? getBooleanFF('platform.editor.media.extended-resize-experience') ? jsx(ResizableMediaSingleNext,
|
|
320
|
+
return canResize ? getBooleanFF('platform.editor.media.extended-resize-experience') ? jsx(ResizableMediaSingleNext, _extends({}, resizableMediaSingleProps, {
|
|
321
|
+
showLegacyNotification: widthType !== 'pixel'
|
|
322
|
+
}), MediaChildren) : jsx(ResizableMediaSingle, _extends({}, resizableMediaSingleProps, {
|
|
321
323
|
lineLength: contentWidthForLegacyExperience
|
|
322
324
|
}), MediaChildren) : jsx(MediaSingle, mediaSingleProps, MediaChildren);
|
|
323
325
|
}
|
package/dist/es2019/plugins/media/ui/ResizableMediaSingle/ResizableMediaMigrationNotification.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
|
+
import { resizableMediaMigrationNotificationStyle } from './styles';
|
|
4
|
+
export const ResizableMediaMigrationNotification = () => {
|
|
5
|
+
return jsx("div", {
|
|
6
|
+
"data-testid": "resizable-media-migration-notification",
|
|
7
|
+
css: [resizableMediaMigrationNotificationStyle]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
@@ -17,6 +17,7 @@ import memoizeOne from 'memoize-one';
|
|
|
17
17
|
import { getMediaResizeAnalyticsEvent } from '../../utils/analytics';
|
|
18
18
|
import throttle from 'lodash/throttle';
|
|
19
19
|
import { MEDIA_PLUGIN_IS_RESIZING_KEY, MEDIA_PLUGIN_RESIZING_WIDTH_KEY } from '../../pm-plugins/main';
|
|
20
|
+
import { ResizableMediaMigrationNotification } from './ResizableMediaMigrationNotification';
|
|
20
21
|
export const resizerNextTestId = 'mediaSingle.resizerNext.testid';
|
|
21
22
|
class ResizableMediaSingleNext extends React.Component {
|
|
22
23
|
constructor(props) {
|
|
@@ -418,7 +419,8 @@ class ResizableMediaSingleNext extends React.Component {
|
|
|
418
419
|
fullWidthMode,
|
|
419
420
|
selected,
|
|
420
421
|
children,
|
|
421
|
-
lineLength
|
|
422
|
+
lineLength,
|
|
423
|
+
showLegacyNotification
|
|
422
424
|
} = this.props;
|
|
423
425
|
const {
|
|
424
426
|
isResizing,
|
|
@@ -472,7 +474,7 @@ class ResizableMediaSingleNext extends React.Component {
|
|
|
472
474
|
isHandleVisible: selected,
|
|
473
475
|
handlePositioning: isNestedNode ? 'adjacent' : undefined,
|
|
474
476
|
handleHighlight: "full-height"
|
|
475
|
-
}, children));
|
|
477
|
+
}, children, showLegacyNotification && jsx(ResizableMediaMigrationNotification, null)));
|
|
476
478
|
}
|
|
477
479
|
}
|
|
478
480
|
export default ResizableMediaSingleNext;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { css } from '@emotion/react';
|
|
2
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
3
|
+
const NOTIFICATION_SIZE = 8;
|
|
4
|
+
const SPACE_FROM_EDGE = "var(--ds-space-100, 8px)";
|
|
5
|
+
export const resizableMediaMigrationNotificationStyle = css`
|
|
6
|
+
position: absolute;
|
|
7
|
+
top: ${SPACE_FROM_EDGE};
|
|
8
|
+
right: calc(${"var(--ds-space-150, 12px)"} + ${SPACE_FROM_EDGE});
|
|
9
|
+
background-color: ${`var(--ds-background-warning-bold, ${colors.Y300})`};
|
|
10
|
+
border-radius: ${"var(--ds-border-radius-circle, 50%)"};
|
|
11
|
+
width: ${NOTIFICATION_SIZE}px;
|
|
12
|
+
height: ${NOTIFICATION_SIZE}px;
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
`;
|
|
@@ -398,7 +398,9 @@ var MediaSingleNode = /*#__PURE__*/function (_Component) {
|
|
|
398
398
|
ref: this.captionPlaceHolderRef,
|
|
399
399
|
onClick: this.clickPlaceholder
|
|
400
400
|
}));
|
|
401
|
-
return canResize ? getBooleanFF('platform.editor.media.extended-resize-experience') ? jsx(ResizableMediaSingleNext,
|
|
401
|
+
return canResize ? getBooleanFF('platform.editor.media.extended-resize-experience') ? jsx(ResizableMediaSingleNext, _extends({}, resizableMediaSingleProps, {
|
|
402
|
+
showLegacyNotification: widthType !== 'pixel'
|
|
403
|
+
}), MediaChildren) : jsx(ResizableMediaSingle, _extends({}, resizableMediaSingleProps, {
|
|
402
404
|
lineLength: contentWidthForLegacyExperience
|
|
403
405
|
}), MediaChildren) : jsx(MediaSingle, mediaSingleProps, MediaChildren);
|
|
404
406
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
|
+
import { resizableMediaMigrationNotificationStyle } from './styles';
|
|
4
|
+
export var ResizableMediaMigrationNotification = function ResizableMediaMigrationNotification() {
|
|
5
|
+
return jsx("div", {
|
|
6
|
+
"data-testid": "resizable-media-migration-notification",
|
|
7
|
+
css: [resizableMediaMigrationNotificationStyle]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
@@ -28,6 +28,7 @@ import memoizeOne from 'memoize-one';
|
|
|
28
28
|
import { getMediaResizeAnalyticsEvent } from '../../utils/analytics';
|
|
29
29
|
import throttle from 'lodash/throttle';
|
|
30
30
|
import { MEDIA_PLUGIN_IS_RESIZING_KEY, MEDIA_PLUGIN_RESIZING_WIDTH_KEY } from '../../pm-plugins/main';
|
|
31
|
+
import { ResizableMediaMigrationNotification } from './ResizableMediaMigrationNotification';
|
|
31
32
|
export var resizerNextTestId = 'mediaSingle.resizerNext.testid';
|
|
32
33
|
var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
|
|
33
34
|
_inherits(ResizableMediaSingleNext, _React$Component);
|
|
@@ -495,7 +496,8 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
|
|
|
495
496
|
fullWidthMode = _this$props8.fullWidthMode,
|
|
496
497
|
selected = _this$props8.selected,
|
|
497
498
|
children = _this$props8.children,
|
|
498
|
-
lineLength = _this$props8.lineLength
|
|
499
|
+
lineLength = _this$props8.lineLength,
|
|
500
|
+
showLegacyNotification = _this$props8.showLegacyNotification;
|
|
499
501
|
var _this$state = this.state,
|
|
500
502
|
isResizing = _this$state.isResizing,
|
|
501
503
|
size = _this$state.size,
|
|
@@ -547,7 +549,7 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
|
|
|
547
549
|
isHandleVisible: selected,
|
|
548
550
|
handlePositioning: isNestedNode ? 'adjacent' : undefined,
|
|
549
551
|
handleHighlight: "full-height"
|
|
550
|
-
}, children));
|
|
552
|
+
}, children, showLegacyNotification && jsx(ResizableMediaMigrationNotification, null)));
|
|
551
553
|
}
|
|
552
554
|
}]);
|
|
553
555
|
return ResizableMediaSingleNext;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
+
var _templateObject;
|
|
3
|
+
import { css } from '@emotion/react';
|
|
4
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
5
|
+
var NOTIFICATION_SIZE = 8;
|
|
6
|
+
var SPACE_FROM_EDGE = "var(--ds-space-100, 8px)";
|
|
7
|
+
export var resizableMediaMigrationNotificationStyle = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: absolute;\n top: ", ";\n right: calc(", " + ", ");\n background-color: ", ";\n border-radius: ", ";\n width: ", "px;\n height: ", "px;\n pointer-events: none;\n"])), SPACE_FROM_EDGE, "var(--ds-space-150, 12px)", SPACE_FROM_EDGE, "var(--ds-background-warning-bold, ".concat(colors.Y300, ")"), "var(--ds-border-radius-circle, 50%)", NOTIFICATION_SIZE, NOTIFICATION_SIZE);
|
|
@@ -15,8 +15,10 @@ type State = {
|
|
|
15
15
|
relativeGuides: RelativeGuides;
|
|
16
16
|
guidelines: GuidelineConfig[];
|
|
17
17
|
};
|
|
18
|
-
type ResizableMediaSingleNextProps = Props;
|
|
19
18
|
export declare const resizerNextTestId = "mediaSingle.resizerNext.testid";
|
|
19
|
+
type ResizableMediaSingleNextProps = Props & {
|
|
20
|
+
showLegacyNotification?: boolean;
|
|
21
|
+
};
|
|
20
22
|
declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
|
|
21
23
|
private lastSnappedGuidelineKeys;
|
|
22
24
|
constructor(props: ResizableMediaSingleNextProps);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const resizableMediaMigrationNotificationStyle: import("@emotion/react").SerializedStyles;
|
package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/ResizableMediaSingleNext.d.ts
CHANGED
|
@@ -15,8 +15,10 @@ type State = {
|
|
|
15
15
|
relativeGuides: RelativeGuides;
|
|
16
16
|
guidelines: GuidelineConfig[];
|
|
17
17
|
};
|
|
18
|
-
type ResizableMediaSingleNextProps = Props;
|
|
19
18
|
export declare const resizerNextTestId = "mediaSingle.resizerNext.testid";
|
|
19
|
+
type ResizableMediaSingleNextProps = Props & {
|
|
20
|
+
showLegacyNotification?: boolean;
|
|
21
|
+
};
|
|
20
22
|
declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
|
|
21
23
|
private lastSnappedGuidelineKeys;
|
|
22
24
|
constructor(props: ResizableMediaSingleNextProps);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const resizableMediaMigrationNotificationStyle: import("@emotion/react").SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "187.41.
|
|
3
|
+
"version": "187.41.8",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"@atlaskit/radio": "^5.6.0",
|
|
109
109
|
"@atlaskit/section-message": "^6.4.0",
|
|
110
110
|
"@atlaskit/select": "^16.5.0",
|
|
111
|
-
"@atlaskit/smart-card": "^26.
|
|
111
|
+
"@atlaskit/smart-card": "^26.24.0",
|
|
112
112
|
"@atlaskit/smart-user-picker": "^6.3.0",
|
|
113
113
|
"@atlaskit/spinner": "^15.5.0",
|
|
114
114
|
"@atlaskit/status": "^1.3.0",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"@atlaskit/textfield": "^5.6.0",
|
|
119
119
|
"@atlaskit/theme": "^12.6.0",
|
|
120
120
|
"@atlaskit/toggle": "^12.6.0",
|
|
121
|
-
"@atlaskit/tokens": "^1.
|
|
121
|
+
"@atlaskit/tokens": "^1.22.0",
|
|
122
122
|
"@atlaskit/tooltip": "^17.8.0",
|
|
123
123
|
"@atlaskit/width-detector": "^4.1.0",
|
|
124
124
|
"@babel/runtime": "^7.0.0",
|
|
@@ -147,6 +147,7 @@
|
|
|
147
147
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
148
148
|
},
|
|
149
149
|
"devDependencies": {
|
|
150
|
+
"@af/editor-libra": "*",
|
|
150
151
|
"@af/integration-testing": "*",
|
|
151
152
|
"@atlaskit/code": "^14.6.0",
|
|
152
153
|
"@atlaskit/collab-provider": "9.12.2",
|
|
@@ -158,7 +159,7 @@
|
|
|
158
159
|
"@atlaskit/inline-dialog": "^13.6.0",
|
|
159
160
|
"@atlaskit/link-analytics": "^8.2.0",
|
|
160
161
|
"@atlaskit/link-provider": "^1.6.0",
|
|
161
|
-
"@atlaskit/link-test-helpers": "^6.
|
|
162
|
+
"@atlaskit/link-test-helpers": "^6.1.0",
|
|
162
163
|
"@atlaskit/media-core": "^34.1.0",
|
|
163
164
|
"@atlaskit/media-integration-test-helpers": "^3.0.0",
|
|
164
165
|
"@atlaskit/media-test-helpers": "^33.0.0",
|