@atlaskit/media-viewer 52.5.1 → 52.5.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 +14 -0
- package/dist/cjs/navigation.js +4 -4
- package/dist/cjs/viewers/archiveSidebar/archive.js +2 -2
- package/dist/cjs/viewers/audio.js +2 -2
- package/dist/cjs/viewers/doc/passwordInput.js +4 -4
- package/dist/cjs/zoomControls.js +4 -4
- package/dist/es2019/navigation.js +2 -2
- package/dist/es2019/viewers/archiveSidebar/archive.js +1 -1
- package/dist/es2019/viewers/audio.js +1 -1
- package/dist/es2019/viewers/doc/passwordInput.js +2 -2
- package/dist/es2019/zoomControls.js +2 -2
- package/dist/esm/navigation.js +2 -2
- package/dist/esm/viewers/archiveSidebar/archive.js +1 -1
- package/dist/esm/viewers/audio.js +1 -1
- package/dist/esm/viewers/doc/passwordInput.js +2 -2
- package/dist/esm/zoomControls.js +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/media-viewer
|
|
2
2
|
|
|
3
|
+
## 52.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a82d7964a37b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a82d7964a37b) -
|
|
8
|
+
Icon entrypoint migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 52.5.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 52.5.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/navigation.js
CHANGED
|
@@ -12,8 +12,8 @@ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime
|
|
|
12
12
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
13
13
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
14
14
|
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
-
var
|
|
16
|
-
var
|
|
15
|
+
var _chevronLeft = _interopRequireDefault(require("@atlaskit/icon/core/chevron-left"));
|
|
16
|
+
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
|
|
17
17
|
var _mediaUi = require("@atlaskit/media-ui");
|
|
18
18
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
19
19
|
var _styleWrappers = require("./styleWrappers");
|
|
@@ -73,8 +73,8 @@ var withIconWrapper = function withIconWrapper(Component) {
|
|
|
73
73
|
}));
|
|
74
74
|
};
|
|
75
75
|
};
|
|
76
|
-
var NextIcon = withIconWrapper(
|
|
77
|
-
var PreviousIcon = withIconWrapper(
|
|
76
|
+
var NextIcon = withIconWrapper(_chevronRight.default);
|
|
77
|
+
var PreviousIcon = withIconWrapper(_chevronLeft.default);
|
|
78
78
|
var NavigationBase = exports.NavigationBase = /*#__PURE__*/function (_Component) {
|
|
79
79
|
function NavigationBase() {
|
|
80
80
|
(0, _classCallCheck2.default)(this, NavigationBase);
|
|
@@ -21,7 +21,7 @@ var _codeViewer = require("@atlaskit/media-ui/codeViewer");
|
|
|
21
21
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
22
22
|
var _domain = require("../../domain");
|
|
23
23
|
var _styleWrappers = require("../../styleWrappers");
|
|
24
|
-
var
|
|
24
|
+
var _audio = _interopRequireDefault(require("@atlaskit/icon/core/audio"));
|
|
25
25
|
var _errorMessage = _interopRequireDefault(require("../../errorMessage"));
|
|
26
26
|
var _baseViewer = require("../base-viewer");
|
|
27
27
|
var _interactiveImg = require("../image/interactive-img");
|
|
@@ -342,7 +342,7 @@ var ArchiveViewerBase = exports.ArchiveViewerBase = /*#__PURE__*/function (_Base
|
|
|
342
342
|
case 'audio':
|
|
343
343
|
return /*#__PURE__*/_react.default.createElement(_styleWrappers2.ArchiveItemViewerWrapper, null, /*#__PURE__*/_react.default.createElement(_styleWrappers.AudioPlayer, {
|
|
344
344
|
"data-testid": "media-viewer-audio-content"
|
|
345
|
-
}, /*#__PURE__*/_react.default.createElement(_styleWrappers.DefaultCoverWrapper, null, /*#__PURE__*/_react.default.createElement(
|
|
345
|
+
}, /*#__PURE__*/_react.default.createElement(_styleWrappers.DefaultCoverWrapper, null, /*#__PURE__*/_react.default.createElement(_audio.default, {
|
|
346
346
|
label: "cover",
|
|
347
347
|
LEGACY_size: "xlarge",
|
|
348
348
|
color: "currentColor"
|
|
@@ -15,7 +15,7 @@ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits
|
|
|
15
15
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
16
16
|
var _react = _interopRequireDefault(require("react"));
|
|
17
17
|
var _mediaClient = require("@atlaskit/media-client");
|
|
18
|
-
var
|
|
18
|
+
var _audio = _interopRequireDefault(require("@atlaskit/icon/core/audio"));
|
|
19
19
|
var _domain = require("../domain");
|
|
20
20
|
var _errors = require("../errors");
|
|
21
21
|
var _styleWrappers = require("../styleWrappers");
|
|
@@ -25,7 +25,7 @@ var _mediaUi = require("@atlaskit/media-ui");
|
|
|
25
25
|
var _getObjectUrlFromFileState = require("../utils/getObjectUrlFromFileState");
|
|
26
26
|
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
|
|
27
27
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
28
|
-
var defaultCover = /*#__PURE__*/_react.default.createElement(_styleWrappers.DefaultCoverWrapper, null, /*#__PURE__*/_react.default.createElement(
|
|
28
|
+
var defaultCover = /*#__PURE__*/_react.default.createElement(_styleWrappers.DefaultCoverWrapper, null, /*#__PURE__*/_react.default.createElement(_audio.default, {
|
|
29
29
|
label: "cover",
|
|
30
30
|
LEGACY_size: "xlarge",
|
|
31
31
|
color: "currentColor"
|
|
@@ -15,12 +15,12 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
15
15
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
16
16
|
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
17
17
|
var _textfield = _interopRequireDefault(require("@atlaskit/textfield"));
|
|
18
|
-
var
|
|
18
|
+
var _lockLocked = _interopRequireDefault(require("@atlaskit/icon/core/lock-locked"));
|
|
19
19
|
var _form = _interopRequireWildcard(require("@atlaskit/form"));
|
|
20
20
|
var _reactIntlNext = require("react-intl-next");
|
|
21
21
|
var _mediaUi = require("@atlaskit/media-ui");
|
|
22
22
|
var _primitives = require("@atlaskit/primitives");
|
|
23
|
-
var
|
|
23
|
+
var _statusError = _interopRequireDefault(require("@atlaskit/icon/core/status-error"));
|
|
24
24
|
var _heading = _interopRequireDefault(require("@atlaskit/heading"));
|
|
25
25
|
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); }
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
@@ -72,7 +72,7 @@ var PasswordInput = exports.PasswordInput = function PasswordInput(_ref) {
|
|
|
72
72
|
submitting = _ref2.submitting;
|
|
73
73
|
return /*#__PURE__*/React.createElement("form", formProps, /*#__PURE__*/React.createElement(_primitives.Flex, {
|
|
74
74
|
justifyContent: "center"
|
|
75
|
-
}, /*#__PURE__*/React.createElement(
|
|
75
|
+
}, /*#__PURE__*/React.createElement(_lockLocked.default, {
|
|
76
76
|
label: "",
|
|
77
77
|
LEGACY_size: "xlarge",
|
|
78
78
|
color: COLOR_SHADE
|
|
@@ -104,7 +104,7 @@ var PasswordInput = exports.PasswordInput = function PasswordInput(_ref) {
|
|
|
104
104
|
})), formError && /*#__PURE__*/React.createElement("div", {
|
|
105
105
|
id: "".concat(fieldProps.id, "-error"),
|
|
106
106
|
className: (0, _runtime.ax)(["_11c8dcr7 _19pk1b66 _1e0c1txw _4cvr1h6o _syaz1366 _125x1366"])
|
|
107
|
-
}, /*#__PURE__*/React.createElement(
|
|
107
|
+
}, /*#__PURE__*/React.createElement(_statusError.default, {
|
|
108
108
|
color: "currentColor",
|
|
109
109
|
LEGACY_size: "small",
|
|
110
110
|
label: "",
|
package/dist/cjs/zoomControls.js
CHANGED
|
@@ -14,8 +14,8 @@ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits
|
|
|
14
14
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
15
|
var _react = _interopRequireWildcard(require("react"));
|
|
16
16
|
var _mediaUi = require("@atlaskit/media-ui");
|
|
17
|
-
var
|
|
18
|
-
var
|
|
17
|
+
var _zoomOut = _interopRequireDefault(require("@atlaskit/icon/core/zoom-out"));
|
|
18
|
+
var _zoomIn = _interopRequireDefault(require("@atlaskit/icon/core/zoom-in"));
|
|
19
19
|
var _styleWrappers = require("./styleWrappers");
|
|
20
20
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
21
21
|
var _analytics = require("./analytics/");
|
|
@@ -73,7 +73,7 @@ var ZoomControlsBase = exports.ZoomControlsBase = /*#__PURE__*/function (_Compon
|
|
|
73
73
|
}, /*#__PURE__*/_react.default.createElement(_styleWrappers.ZoomCenterControls, null, /*#__PURE__*/_react.default.createElement(_mediaUi.MediaButton, {
|
|
74
74
|
isDisabled: !zoomLevel.canZoomOut,
|
|
75
75
|
onClick: this.zoomOut,
|
|
76
|
-
iconBefore: /*#__PURE__*/_react.default.createElement(
|
|
76
|
+
iconBefore: /*#__PURE__*/_react.default.createElement(_zoomOut.default, {
|
|
77
77
|
color: "currentColor",
|
|
78
78
|
spacing: "spacious",
|
|
79
79
|
label: formatMessage(_mediaUi.messages.zoom_out)
|
|
@@ -81,7 +81,7 @@ var ZoomControlsBase = exports.ZoomControlsBase = /*#__PURE__*/function (_Compon
|
|
|
81
81
|
}), /*#__PURE__*/_react.default.createElement(_mediaUi.MediaButton, {
|
|
82
82
|
isDisabled: !zoomLevel.canZoomIn,
|
|
83
83
|
onClick: this.zoomIn,
|
|
84
|
-
iconBefore: /*#__PURE__*/_react.default.createElement(
|
|
84
|
+
iconBefore: /*#__PURE__*/_react.default.createElement(_zoomIn.default, {
|
|
85
85
|
color: "currentColor",
|
|
86
86
|
spacing: "spacious",
|
|
87
87
|
label: formatMessage(_mediaUi.messages.zoom_in)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Component } from 'react';
|
|
4
|
-
import ArrowLeftCircleIcon from '@atlaskit/icon/core/
|
|
5
|
-
import ArrowRightCircleIcon from '@atlaskit/icon/core/
|
|
4
|
+
import ArrowLeftCircleIcon from '@atlaskit/icon/core/chevron-left';
|
|
5
|
+
import ArrowRightCircleIcon from '@atlaskit/icon/core/chevron-right';
|
|
6
6
|
import { hideControlsClassName } from '@atlaskit/media-ui';
|
|
7
7
|
import { Shortcut } from '@atlaskit/media-ui';
|
|
8
8
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
@@ -8,7 +8,7 @@ import { getLanguageType, isCodeViewerItem } from '@atlaskit/media-ui/codeViewer
|
|
|
8
8
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
9
9
|
import { Outcome } from '../../domain';
|
|
10
10
|
import { CustomVideoPlayerWrapper, AudioPlayer, CustomAudioPlayerWrapper, DefaultCoverWrapper, ListWrapper } from '../../styleWrappers';
|
|
11
|
-
import AudioIcon from '@atlaskit/icon/core/
|
|
11
|
+
import AudioIcon from '@atlaskit/icon/core/audio';
|
|
12
12
|
import ErrorMessage from '../../errorMessage';
|
|
13
13
|
import { BaseViewer } from '../base-viewer';
|
|
14
14
|
import { InteractiveImg } from '../image/interactive-img';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { globalMediaEventEmitter } from '@atlaskit/media-client';
|
|
4
|
-
import AudioIcon from '@atlaskit/icon/core/
|
|
4
|
+
import AudioIcon from '@atlaskit/icon/core/audio';
|
|
5
5
|
import { Outcome } from '../domain';
|
|
6
6
|
import { MediaViewerError } from '../errors';
|
|
7
7
|
import { AudioPlayer, AudioCover, Audio, DefaultCoverWrapper, CustomAudioPlayerWrapper } from '../styleWrappers';
|
|
@@ -6,14 +6,14 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
6
6
|
import { useEffect, useRef, useState } from 'react';
|
|
7
7
|
import Button from '@atlaskit/button/new';
|
|
8
8
|
import TextField from '@atlaskit/textfield';
|
|
9
|
-
import LockIcon from '@atlaskit/icon/core/
|
|
9
|
+
import LockIcon from '@atlaskit/icon/core/lock-locked';
|
|
10
10
|
import Form, { Field } from '@atlaskit/form';
|
|
11
11
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
12
12
|
import { messages } from '@atlaskit/media-ui';
|
|
13
13
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
14
14
|
import { xcss, Box, Flex, Text } from '@atlaskit/primitives';
|
|
15
15
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
16
|
-
import ErrorIcon from '@atlaskit/icon/core/
|
|
16
|
+
import ErrorIcon from '@atlaskit/icon/core/status-error';
|
|
17
17
|
import Heading from '@atlaskit/heading';
|
|
18
18
|
const COLOR_SHADE = '#b6c2cf';
|
|
19
19
|
const ERROR_COLOR = '#FD9891';
|
|
@@ -2,8 +2,8 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Component } from 'react';
|
|
4
4
|
import { hideControlsClassName, MediaButton } from '@atlaskit/media-ui';
|
|
5
|
-
import ZoomOutIcon from '@atlaskit/icon/core/
|
|
6
|
-
import ZoomInIcon from '@atlaskit/icon/core/
|
|
5
|
+
import ZoomOutIcon from '@atlaskit/icon/core/zoom-out';
|
|
6
|
+
import ZoomInIcon from '@atlaskit/icon/core/zoom-in';
|
|
7
7
|
import { ZoomWrapper, ZoomCenterControls, ZoomRightControls, ZoomLevelIndicator } from './styleWrappers';
|
|
8
8
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
9
9
|
import { fireAnalytics } from './analytics/';
|
package/dist/esm/navigation.js
CHANGED
|
@@ -8,8 +8,8 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
8
8
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
9
9
|
import React from 'react';
|
|
10
10
|
import { Component } from 'react';
|
|
11
|
-
import ArrowLeftCircleIcon from '@atlaskit/icon/core/
|
|
12
|
-
import ArrowRightCircleIcon from '@atlaskit/icon/core/
|
|
11
|
+
import ArrowLeftCircleIcon from '@atlaskit/icon/core/chevron-left';
|
|
12
|
+
import ArrowRightCircleIcon from '@atlaskit/icon/core/chevron-right';
|
|
13
13
|
import { hideControlsClassName } from '@atlaskit/media-ui';
|
|
14
14
|
import { Shortcut } from '@atlaskit/media-ui';
|
|
15
15
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
@@ -19,7 +19,7 @@ import { getLanguageType, isCodeViewerItem } from '@atlaskit/media-ui/codeViewer
|
|
|
19
19
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
20
20
|
import { Outcome } from '../../domain';
|
|
21
21
|
import { CustomVideoPlayerWrapper, AudioPlayer, CustomAudioPlayerWrapper, DefaultCoverWrapper, ListWrapper } from '../../styleWrappers';
|
|
22
|
-
import AudioIcon from '@atlaskit/icon/core/
|
|
22
|
+
import AudioIcon from '@atlaskit/icon/core/audio';
|
|
23
23
|
import ErrorMessage from '../../errorMessage';
|
|
24
24
|
import { BaseViewer } from '../base-viewer';
|
|
25
25
|
import { InteractiveImg } from '../image/interactive-img';
|
|
@@ -10,7 +10,7 @@ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstruct
|
|
|
10
10
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import { globalMediaEventEmitter } from '@atlaskit/media-client';
|
|
13
|
-
import AudioIcon from '@atlaskit/icon/core/
|
|
13
|
+
import AudioIcon from '@atlaskit/icon/core/audio';
|
|
14
14
|
import { Outcome } from '../domain';
|
|
15
15
|
import { MediaViewerError } from '../errors';
|
|
16
16
|
import { AudioPlayer, AudioCover, Audio, DefaultCoverWrapper, CustomAudioPlayerWrapper } from '../styleWrappers';
|
|
@@ -7,14 +7,14 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
7
7
|
import { useEffect, useRef, useState } from 'react';
|
|
8
8
|
import Button from '@atlaskit/button/new';
|
|
9
9
|
import TextField from '@atlaskit/textfield';
|
|
10
|
-
import LockIcon from '@atlaskit/icon/core/
|
|
10
|
+
import LockIcon from '@atlaskit/icon/core/lock-locked';
|
|
11
11
|
import Form, { Field } from '@atlaskit/form';
|
|
12
12
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
13
13
|
import { messages } from '@atlaskit/media-ui';
|
|
14
14
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
15
15
|
import { xcss, Box, Flex, Text } from '@atlaskit/primitives';
|
|
16
16
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
17
|
-
import ErrorIcon from '@atlaskit/icon/core/
|
|
17
|
+
import ErrorIcon from '@atlaskit/icon/core/status-error';
|
|
18
18
|
import Heading from '@atlaskit/heading';
|
|
19
19
|
var COLOR_SHADE = '#b6c2cf';
|
|
20
20
|
var ERROR_COLOR = '#FD9891';
|
package/dist/esm/zoomControls.js
CHANGED
|
@@ -9,8 +9,8 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
9
9
|
import React from 'react';
|
|
10
10
|
import { Component } from 'react';
|
|
11
11
|
import { hideControlsClassName, MediaButton } from '@atlaskit/media-ui';
|
|
12
|
-
import ZoomOutIcon from '@atlaskit/icon/core/
|
|
13
|
-
import ZoomInIcon from '@atlaskit/icon/core/
|
|
12
|
+
import ZoomOutIcon from '@atlaskit/icon/core/zoom-out';
|
|
13
|
+
import ZoomInIcon from '@atlaskit/icon/core/zoom-in';
|
|
14
14
|
import { ZoomWrapper, ZoomCenterControls, ZoomRightControls, ZoomLevelIndicator } from './styleWrappers';
|
|
15
15
|
import { withAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
16
16
|
import { fireAnalytics } from './analytics/';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-viewer",
|
|
3
|
-
"version": "52.5.
|
|
3
|
+
"version": "52.5.3",
|
|
4
4
|
"description": "MediaViewer is Atlassian's powerful solution for viewing files on the web. It's both powerful and extendable yet easy-to-integrate",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
35
|
-
"@atlaskit/button": "^23.
|
|
35
|
+
"@atlaskit/button": "^23.9.0",
|
|
36
36
|
"@atlaskit/code": "^17.4.0",
|
|
37
|
-
"@atlaskit/css": "^0.
|
|
38
|
-
"@atlaskit/form": "^15.
|
|
37
|
+
"@atlaskit/css": "^0.19.0",
|
|
38
|
+
"@atlaskit/form": "^15.1.0",
|
|
39
39
|
"@atlaskit/heading": "^5.2.0",
|
|
40
|
-
"@atlaskit/icon": "^29.
|
|
40
|
+
"@atlaskit/icon": "^29.3.0",
|
|
41
41
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
42
|
-
"@atlaskit/icon-lab": "^5.
|
|
42
|
+
"@atlaskit/icon-lab": "^5.13.0",
|
|
43
43
|
"@atlaskit/media-client": "^35.7.0",
|
|
44
44
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
45
45
|
"@atlaskit/media-common": "^12.3.0",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"@atlaskit/media-ui": "^28.7.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
50
50
|
"@atlaskit/portal": "^5.1.0",
|
|
51
|
-
"@atlaskit/primitives": "^
|
|
51
|
+
"@atlaskit/primitives": "^17.0.0",
|
|
52
52
|
"@atlaskit/side-navigation": "^11.0.0",
|
|
53
53
|
"@atlaskit/spinner": "^19.0.0",
|
|
54
54
|
"@atlaskit/textfield": "^8.2.0",
|
|
55
55
|
"@atlaskit/theme": "^21.0.0",
|
|
56
|
-
"@atlaskit/tokens": "^
|
|
56
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
57
57
|
"@atlaskit/tooltip": "^20.11.0",
|
|
58
58
|
"@atlaskit/ufo": "^0.4.0",
|
|
59
59
|
"@babel/runtime": "^7.0.0",
|