@atlaskit/media-table 18.0.9 → 18.1.1
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
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/media-table
|
|
2
2
|
|
|
3
|
+
## 18.1.1
|
|
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
|
+
## 18.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) -
|
|
16
|
+
Migrated and cleaned up legacy iconography usage.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 18.0.9
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -8,7 +8,6 @@ exports.default = void 0;
|
|
|
8
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
9
|
var _react = _interopRequireDefault(require("react"));
|
|
10
10
|
var _reactIntlNext = require("react-intl-next");
|
|
11
|
-
var _filePreview = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/file-preview"));
|
|
12
11
|
var _growDiagonal = _interopRequireDefault(require("@atlaskit/icon/core/grow-diagonal"));
|
|
13
12
|
var _button = _interopRequireDefault(require("@atlaskit/button"));
|
|
14
13
|
var _mediaUi = require("@atlaskit/media-ui");
|
|
@@ -23,7 +22,6 @@ var MediaPreviewButton = function MediaPreviewButton(props) {
|
|
|
23
22
|
appearance: "subtle",
|
|
24
23
|
testId: "preview-button",
|
|
25
24
|
iconAfter: /*#__PURE__*/_react.default.createElement(_growDiagonal.default, {
|
|
26
|
-
LEGACY_fallbackIcon: _filePreview.default,
|
|
27
25
|
label: formatMessage(_mediaUi.messages.preview),
|
|
28
26
|
color: "currentColor"
|
|
29
27
|
}),
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
3
3
|
import { injectIntl } from 'react-intl-next';
|
|
4
|
-
import LegacyEditorFilePreviewIcon from '@atlaskit/icon/glyph/editor/file-preview';
|
|
5
4
|
import EditorFilePreviewIcon from '@atlaskit/icon/core/grow-diagonal';
|
|
6
5
|
import Button from '@atlaskit/button';
|
|
7
6
|
import { messages } from '@atlaskit/media-ui';
|
|
@@ -19,7 +18,6 @@ const MediaPreviewButton = props => {
|
|
|
19
18
|
appearance: "subtle",
|
|
20
19
|
testId: "preview-button",
|
|
21
20
|
iconAfter: /*#__PURE__*/React.createElement(EditorFilePreviewIcon, {
|
|
22
|
-
LEGACY_fallbackIcon: LegacyEditorFilePreviewIcon,
|
|
23
21
|
label: formatMessage(messages.preview),
|
|
24
22
|
color: "currentColor"
|
|
25
23
|
}),
|
|
@@ -4,7 +4,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
6
6
|
import { injectIntl } from 'react-intl-next';
|
|
7
|
-
import LegacyEditorFilePreviewIcon from '@atlaskit/icon/glyph/editor/file-preview';
|
|
8
7
|
import EditorFilePreviewIcon from '@atlaskit/icon/core/grow-diagonal';
|
|
9
8
|
import Button from '@atlaskit/button';
|
|
10
9
|
import { messages } from '@atlaskit/media-ui';
|
|
@@ -18,7 +17,6 @@ var MediaPreviewButton = function MediaPreviewButton(props) {
|
|
|
18
17
|
appearance: "subtle",
|
|
19
18
|
testId: "preview-button",
|
|
20
19
|
iconAfter: /*#__PURE__*/React.createElement(EditorFilePreviewIcon, {
|
|
21
|
-
LEGACY_fallbackIcon: LegacyEditorFilePreviewIcon,
|
|
22
20
|
label: formatMessage(messages.preview),
|
|
23
21
|
color: "currentColor"
|
|
24
22
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-table",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.1.1",
|
|
4
4
|
"description": "Table UI component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
33
|
-
"@atlaskit/button": "^23.
|
|
33
|
+
"@atlaskit/button": "^23.9.0",
|
|
34
34
|
"@atlaskit/dynamic-table": "^18.3.0",
|
|
35
|
-
"@atlaskit/icon": "^29.
|
|
36
|
-
"@atlaskit/media-client": "^35.
|
|
35
|
+
"@atlaskit/icon": "^29.3.0",
|
|
36
|
+
"@atlaskit/media-client": "^35.7.0",
|
|
37
37
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
38
38
|
"@atlaskit/media-ui": "^28.7.0",
|
|
39
|
-
"@atlaskit/media-viewer": "^52.
|
|
39
|
+
"@atlaskit/media-viewer": "^52.5.0",
|
|
40
40
|
"@atlaskit/theme": "^21.0.0",
|
|
41
|
-
"@atlaskit/tokens": "^
|
|
42
|
-
"@atlaskit/tooltip": "^20.
|
|
41
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
42
|
+
"@atlaskit/tooltip": "^20.11.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"memoize-one": "^6.0.0"
|
|
45
45
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
55
55
|
"@atlaskit/media-core": "^37.0.0",
|
|
56
56
|
"@atlaskit/media-test-helpers": "^39.0.0",
|
|
57
|
-
"@atlaskit/range": "^9.
|
|
57
|
+
"@atlaskit/range": "^9.3.0",
|
|
58
58
|
"@emotion/react": "^11.7.1",
|
|
59
59
|
"@testing-library/react": "^13.4.0",
|
|
60
60
|
"@testing-library/user-event": "^14.4.3",
|