@atlaskit/media-card 74.7.2 → 74.7.4
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/card/card.js +92 -101
- package/dist/cjs/card/cardImageView/cardOverlay/index.js +1 -1
- package/dist/cjs/card/cardImageView/cardOverlay/styles.js +6 -0
- package/dist/cjs/card/cardImageView/fileCardImageView.js +1 -1
- package/dist/cjs/card/cardLoader.js +3 -3
- package/dist/cjs/card/cardView.js +7 -8
- package/dist/cjs/card/getCardPreview/cache.js +3 -0
- package/dist/cjs/card/getCardPreview/helpers.js +99 -107
- package/dist/cjs/card/getCardPreview/index.js +94 -98
- package/dist/cjs/card/inlinePlayer.js +87 -90
- package/dist/cjs/card/inlinePlayerLazy.js +16 -17
- package/dist/cjs/card/media-card-analytics-error-boundary.js +1 -1
- package/dist/cjs/card/ui/common.js +4 -4
- package/dist/cjs/card/ui/unhandledErrorCard/index.js +1 -0
- package/dist/cjs/inline/loader.js +45 -47
- package/dist/cjs/inline/mediaInlineAnalyticsErrorBoundary.js +59 -9
- package/dist/cjs/types.js +4 -4
- package/dist/cjs/utils/cardActions/cardActionIconButton.js +2 -3
- package/dist/cjs/utils/cardActions/cardActionsView.js +1 -1
- package/dist/cjs/utils/cardActions/styles.js +4 -4
- package/dist/cjs/utils/errorIcon/index.js +1 -1
- package/dist/cjs/utils/fileIcon/index.js +1 -1
- package/dist/cjs/utils/progressBar/index.js +1 -1
- package/dist/cjs/utils/progressBar/styles.js +1 -0
- package/dist/cjs/utils/ufoExperiences.js +1 -1
- package/dist/cjs/utils/videoSnapshot.js +38 -40
- package/dist/cjs/utils/viewportDetector.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/card/card.js +6 -9
- package/dist/es2019/card/cardView.js +2 -4
- package/dist/es2019/card/getCardPreview/cache.js +3 -0
- package/dist/es2019/card/inlinePlayer.js +1 -0
- package/dist/es2019/card/media-card-analytics-error-boundary.js +1 -1
- package/dist/es2019/card/ui/common.js +3 -3
- package/dist/es2019/inline/loader.js +3 -1
- package/dist/es2019/inline/mediaInlineAnalyticsErrorBoundary.js +60 -7
- package/dist/es2019/types.js +3 -3
- package/dist/es2019/utils/cardActions/cardActionIconButton.js +2 -3
- package/dist/es2019/utils/cardActions/styles.js +3 -3
- package/dist/es2019/utils/globalScope/globalScope.js +0 -1
- package/dist/es2019/utils/ufoExperiences.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/card/card.js +92 -101
- package/dist/esm/card/cardView.js +6 -7
- package/dist/esm/card/getCardPreview/cache.js +3 -0
- package/dist/esm/card/getCardPreview/helpers.js +99 -107
- package/dist/esm/card/getCardPreview/index.js +94 -98
- package/dist/esm/card/inlinePlayer.js +87 -90
- package/dist/esm/card/inlinePlayerLazy.js +14 -16
- package/dist/esm/card/media-card-analytics-error-boundary.js +1 -1
- package/dist/esm/card/ui/common.js +3 -3
- package/dist/esm/inline/loader.js +39 -41
- package/dist/esm/inline/mediaInlineAnalyticsErrorBoundary.js +59 -9
- package/dist/esm/types.js +3 -3
- package/dist/esm/utils/cardActions/cardActionIconButton.js +2 -3
- package/dist/esm/utils/cardActions/styles.js +3 -3
- package/dist/esm/utils/globalScope/globalScope.js +0 -1
- package/dist/esm/utils/ufoExperiences.js +1 -1
- package/dist/esm/utils/videoSnapshot.js +38 -40
- package/dist/esm/utils/viewportDetector.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/inline/loader.d.ts +1 -0
- package/dist/types/inline/mediaInlineAnalyticsErrorBoundary.d.ts +1 -0
- package/package.json +6 -6
- package/report.api.md +1 -0
|
@@ -5,14 +5,63 @@ import _inherits from "@babel/runtime/helpers/inherits";
|
|
|
5
5
|
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
6
6
|
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
7
7
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
8
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
9
|
-
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; }
|
|
10
8
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11
9
|
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; } }
|
|
10
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
+
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; }
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import { withMediaAnalyticsContext } from '@atlaskit/media-common';
|
|
14
14
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
15
|
+
import { B300, R300, N30A, N900 } from '@atlaskit/theme/colors';
|
|
16
|
+
import WarningIcon from '@atlaskit/icon/glyph/warning';
|
|
15
17
|
import { fireMediaCardEvent } from '../utils/analytics';
|
|
18
|
+
var ErrorBoundaryComponent = function ErrorBoundaryComponent(_ref) {
|
|
19
|
+
var message = _ref.message,
|
|
20
|
+
isSelected = _ref.isSelected;
|
|
21
|
+
var selectedStyle = {
|
|
22
|
+
cursor: 'pointer',
|
|
23
|
+
boxShadow: "0 0 0 1px ".concat("var(--ds-border-selected, ".concat(B300, ")")),
|
|
24
|
+
outline: 'none',
|
|
25
|
+
userSelect: 'none',
|
|
26
|
+
borderColor: 'transparent'
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/* Note:
|
|
30
|
+
- styling is borrowed from packages/media/media-ui/src/MediaInlineCard/Frame/styled.ts
|
|
31
|
+
- because we are not using styled components, we are not able to use themed(), here is the "themed" property of color and backgroundColor
|
|
32
|
+
color: `${themed({
|
|
33
|
+
light: token('color.text', N900),
|
|
34
|
+
dark: token('color.text', DN600),
|
|
35
|
+
})}`,
|
|
36
|
+
backgroundColor: `${themed({
|
|
37
|
+
light: token('color.background.neutral', N30A),
|
|
38
|
+
dark: token('color.background.neutral', DN80),
|
|
39
|
+
})}`,
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
var style = _objectSpread({
|
|
43
|
+
lineHeight: '16px',
|
|
44
|
+
padding: '2px 4px',
|
|
45
|
+
marginRight: '-2px',
|
|
46
|
+
WebkitBoxDecorationBreak: 'clone',
|
|
47
|
+
display: 'inline',
|
|
48
|
+
borderRadius: '3px',
|
|
49
|
+
color: "var(--ds-text, ".concat(N900, ")"),
|
|
50
|
+
backgroundColor: "var(--ds-background-neutral, ".concat(N30A, ")"),
|
|
51
|
+
userSelect: 'text',
|
|
52
|
+
transition: 'all 0.1s ease-in-out 0s',
|
|
53
|
+
cursor: 'pointer'
|
|
54
|
+
}, isSelected ? _objectSpread({}, selectedStyle) : {
|
|
55
|
+
userSelect: 'text'
|
|
56
|
+
});
|
|
57
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
58
|
+
style: style
|
|
59
|
+
}, /*#__PURE__*/React.createElement(WarningIcon, {
|
|
60
|
+
label: "error",
|
|
61
|
+
size: "small",
|
|
62
|
+
primaryColor: "var(--ds-icon-danger, ".concat(R300, ")")
|
|
63
|
+
}), message);
|
|
64
|
+
};
|
|
16
65
|
var WrappedMediaInlineAnalyticsErrorBoundary = /*#__PURE__*/function (_React$Component) {
|
|
17
66
|
_inherits(WrappedMediaInlineAnalyticsErrorBoundary, _React$Component);
|
|
18
67
|
var _super = _createSuper(WrappedMediaInlineAnalyticsErrorBoundary);
|
|
@@ -58,19 +107,20 @@ var WrappedMediaInlineAnalyticsErrorBoundary = /*#__PURE__*/function (_React$Com
|
|
|
58
107
|
key: "render",
|
|
59
108
|
value: function render() {
|
|
60
109
|
var hasError = this.state.hasError;
|
|
61
|
-
var
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
110
|
+
var _this$props2 = this.props,
|
|
111
|
+
children = _this$props2.children,
|
|
112
|
+
isSelected = _this$props2.isSelected;
|
|
113
|
+
return hasError ? /*#__PURE__*/React.createElement(ErrorBoundaryComponent, {
|
|
114
|
+
message: "We couldn't load this content",
|
|
115
|
+
isSelected: isSelected
|
|
116
|
+
}) : children;
|
|
67
117
|
}
|
|
68
118
|
}]);
|
|
69
119
|
return WrappedMediaInlineAnalyticsErrorBoundary;
|
|
70
120
|
}(React.Component);
|
|
71
121
|
_defineProperty(WrappedMediaInlineAnalyticsErrorBoundary, "displayName", 'MediaInlineAnalyticsErrorBoundary');
|
|
72
122
|
var packageName = "@atlaskit/media-card";
|
|
73
|
-
var packageVersion = "74.7.
|
|
123
|
+
var packageVersion = "74.7.4";
|
|
74
124
|
var MediaInlineAnalyticsErrorBoundary = withMediaAnalyticsContext({
|
|
75
125
|
packageVersion: packageVersion,
|
|
76
126
|
packageName: packageName,
|
package/dist/esm/types.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* tsconfig.entry-points.json
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export var MediaCardCursor
|
|
7
|
-
(function (MediaCardCursor) {
|
|
6
|
+
export var MediaCardCursor = /*#__PURE__*/function (MediaCardCursor) {
|
|
8
7
|
MediaCardCursor["Action"] = "pointer";
|
|
9
8
|
MediaCardCursor["NotReady"] = "wait";
|
|
10
|
-
|
|
9
|
+
return MediaCardCursor;
|
|
10
|
+
}({});
|
|
@@ -20,6 +20,8 @@ export var CardActionIconButton = /*#__PURE__*/function (_Component) {
|
|
|
20
20
|
args[_key] = arguments[_key];
|
|
21
21
|
}
|
|
22
22
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
23
|
+
// this is to prevent currently focused text to loose cursor on clicking card action
|
|
24
|
+
// this does not prevent onclick behavior
|
|
23
25
|
_defineProperty(_assertThisInitialized(_this), "onMouseDown", function (event) {
|
|
24
26
|
event.preventDefault();
|
|
25
27
|
});
|
|
@@ -42,9 +44,6 @@ export var CardActionIconButton = /*#__PURE__*/function (_Component) {
|
|
|
42
44
|
variant: variant
|
|
43
45
|
}, icon);
|
|
44
46
|
}
|
|
45
|
-
|
|
46
|
-
// this is to prevent currently focused text to loose cursor on clicking card action
|
|
47
|
-
// this does not prevent onclick behavior
|
|
48
47
|
}]);
|
|
49
48
|
return CardActionIconButton;
|
|
50
49
|
}(Component);
|
|
@@ -6,11 +6,11 @@ import { borderRadius, size, center } from '@atlaskit/media-ui';
|
|
|
6
6
|
import { rootStyles } from '../../card/styles';
|
|
7
7
|
import { rgba } from '../../card/styles/mixins';
|
|
8
8
|
export var wrapperStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n ", "\n display: flex;\n position: relative;\n line-height: 0;\n"])), rootStyles());
|
|
9
|
-
export var CardActionIconButtonVariant
|
|
10
|
-
(function (CardActionIconButtonVariant) {
|
|
9
|
+
export var CardActionIconButtonVariant = /*#__PURE__*/function (CardActionIconButtonVariant) {
|
|
11
10
|
CardActionIconButtonVariant["default"] = "default";
|
|
12
11
|
CardActionIconButtonVariant["filled"] = "filled";
|
|
13
|
-
|
|
12
|
+
return CardActionIconButtonVariant;
|
|
13
|
+
}({});
|
|
14
14
|
var getVariantStyles = function getVariantStyles(variant) {
|
|
15
15
|
return variant === 'filled' ? "\n background-color: ".concat("var(--ds-surface-overlay, ".concat(rgba(N0, 0.8), ")"), ";\n margin-right: 8px;\n\n &:last-child {\n margin-right: 0;\n }\n\n &:hover {\n background-color: ", "var(--ds-surface-overlay-hovered, ".concat(rgba(N0, 0.6), ")"), "\n }\n ") : "\n &:hover {\n background-color: ".concat("var(--ds-background-neutral-subtle-hovered, rgba(9, 30, 66, 0.06))", ";\n }\n ");
|
|
16
16
|
};
|
|
@@ -5,7 +5,6 @@ import { printFunctionCall, printScript } from '../printScript';
|
|
|
5
5
|
// Any changes to this file must be tested directly in product before merging.
|
|
6
6
|
// The scripts printed here might differ from what we observe in our internal tests
|
|
7
7
|
// due to minimification, for example.
|
|
8
|
-
|
|
9
8
|
export var GLOBAL_MEDIA_CARD_SSR = 'mediaCardSsr';
|
|
10
9
|
export var GLOBAL_MEDIA_NAMESPACE = '__MEDIA_INTERNAL';
|
|
11
10
|
export function getMediaGlobalScope() {
|
|
@@ -7,7 +7,7 @@ import { extractErrorInfo, getRenderErrorRequestMetadata } from './analytics';
|
|
|
7
7
|
import { MediaCardError } from '../errors';
|
|
8
8
|
import { getMediaEnvironment, getMediaRegion } from '@atlaskit/media-client';
|
|
9
9
|
var packageName = "@atlaskit/media-card";
|
|
10
|
-
var packageVersion = "74.7.
|
|
10
|
+
var packageVersion = "74.7.4";
|
|
11
11
|
var concurrentExperience;
|
|
12
12
|
var getExperience = function getExperience(id) {
|
|
13
13
|
if (!concurrentExperience) {
|
|
@@ -3,47 +3,45 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
|
3
3
|
export var takeSnapshot = /*#__PURE__*/function () {
|
|
4
4
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(blob) {
|
|
5
5
|
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
6
|
-
while (1) {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
video.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
//create canvas to draw our first frame on.
|
|
6
|
+
while (1) switch (_context.prev = _context.next) {
|
|
7
|
+
case 0:
|
|
8
|
+
return _context.abrupt("return", new Promise(function (resolve, reject) {
|
|
9
|
+
var url = URL.createObjectURL(blob);
|
|
10
|
+
var video = document.createElement('video');
|
|
11
|
+
video.preload = 'metadata';
|
|
12
|
+
video.src = url;
|
|
13
|
+
video.muted = true;
|
|
14
|
+
video.play().catch(function () {
|
|
15
|
+
return reject(new Error('failed to play video'));
|
|
16
|
+
});
|
|
17
|
+
video.addEventListener('timeupdate', function timeUpdateHandler() {
|
|
18
|
+
video.removeEventListener('timeupdate', timeUpdateHandler);
|
|
19
|
+
video.pause();
|
|
20
|
+
URL.revokeObjectURL(url);
|
|
21
|
+
//create canvas to draw our first frame on.
|
|
23
22
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
23
|
+
if (!video.videoWidth && !video.videoHeight) {
|
|
24
|
+
return reject(new Error('error retrieving video dimensions'));
|
|
25
|
+
}
|
|
26
|
+
var canvas = document.createElement('canvas');
|
|
27
|
+
canvas.width = video.videoWidth;
|
|
28
|
+
canvas.height = video.videoHeight;
|
|
29
|
+
var context = canvas.getContext('2d');
|
|
30
|
+
if (!context) {
|
|
31
|
+
return reject(new Error('error creating canvas context'));
|
|
32
|
+
}
|
|
33
|
+
context.drawImage(video, 0, 0, canvas.width, canvas.height);
|
|
34
|
+
var dataURL = canvas.toDataURL('image/jpeg', 0.85);
|
|
35
|
+
resolve(dataURL);
|
|
36
|
+
});
|
|
37
|
+
video.addEventListener('error', function () {
|
|
38
|
+
reject(new Error('failed to load video'));
|
|
39
|
+
URL.revokeObjectURL(url);
|
|
40
|
+
});
|
|
41
|
+
}));
|
|
42
|
+
case 1:
|
|
43
|
+
case "end":
|
|
44
|
+
return _context.stop();
|
|
47
45
|
}
|
|
48
46
|
}, _callee);
|
|
49
47
|
}));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
2
2
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
3
|
-
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
3
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
4
4
|
import React, { useEffect } from 'react';
|
|
5
5
|
import getDocument from './document';
|
|
6
6
|
var ABS_VIEWPORT_ANCHOR_OFFSET_TOP = 900; //px
|
package/dist/esm/version.json
CHANGED
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { MediaFeatureFlags } from '@atlaskit/media-common';
|
|
3
3
|
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
4
4
|
export declare type MediaInlineAnalyticsErrorBoundaryProps = {
|
|
5
|
+
isSelected?: boolean;
|
|
5
6
|
data?: {
|
|
6
7
|
[k: string]: any;
|
|
7
8
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-card",
|
|
3
|
-
"version": "74.7.
|
|
3
|
+
"version": "74.7.4",
|
|
4
4
|
"description": "Includes all media card related components, CardView, CardViewSmall, Card...",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@atlaskit/dropdown-menu": "^11.7.0",
|
|
33
33
|
"@atlaskit/editor-shared-styles": "^2.3.0",
|
|
34
34
|
"@atlaskit/icon": "^21.11.0",
|
|
35
|
-
"@atlaskit/media-client": "^
|
|
35
|
+
"@atlaskit/media-client": "^21.1.0",
|
|
36
36
|
"@atlaskit/media-common": "^4.0.0",
|
|
37
37
|
"@atlaskit/media-ui": "^22.3.0",
|
|
38
38
|
"@atlaskit/media-viewer": "^47.5.0",
|
|
39
39
|
"@atlaskit/spinner": "^15.4.0",
|
|
40
|
-
"@atlaskit/theme": "^12.
|
|
40
|
+
"@atlaskit/theme": "^12.4.0",
|
|
41
41
|
"@atlaskit/tokens": "^1.2.0",
|
|
42
42
|
"@atlaskit/tooltip": "^17.7.0",
|
|
43
43
|
"@atlaskit/ufo": "^0.1.0",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@atlaskit/analytics-listeners": "^8.
|
|
57
|
+
"@atlaskit/analytics-listeners": "^8.6.0",
|
|
58
58
|
"@atlaskit/analytics-namespaced-context": "^6.6.0",
|
|
59
59
|
"@atlaskit/button": "^16.6.0",
|
|
60
60
|
"@atlaskit/checkbox": "^12.4.0",
|
|
61
61
|
"@atlaskit/docs": "*",
|
|
62
62
|
"@atlaskit/inline-message": "^11.4.0",
|
|
63
63
|
"@atlaskit/media-core": "^34.0.0",
|
|
64
|
-
"@atlaskit/media-picker": "^64.
|
|
65
|
-
"@atlaskit/media-test-helpers": "^
|
|
64
|
+
"@atlaskit/media-picker": "^64.4.0",
|
|
65
|
+
"@atlaskit/media-test-helpers": "^32.1.0",
|
|
66
66
|
"@atlaskit/radio": "^5.4.0",
|
|
67
67
|
"@atlaskit/range": "^7.0.0",
|
|
68
68
|
"@atlaskit/section-message": "^6.3.0",
|