@atlaskit/media-card 78.0.3 → 78.0.5

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,20 @@
1
1
  # @atlaskit/media-card
2
2
 
3
+ ## 78.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#119322](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119322)
8
+ [`2f435f37f33e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2f435f37f33e0) -
9
+ Allow alt text on image to be empty on decorative images to improve accessibility
10
+ - Updated dependencies
11
+
12
+ ## 78.0.4
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 78.0.3
4
19
 
5
20
  ### Patch Changes
@@ -16,7 +16,7 @@ var _externalImageCard = require("./externalImageCard");
16
16
  var _fileCard = require("./fileCard");
17
17
  var _excluded = ["identifier"];
18
18
  var packageName = "@atlaskit/media-card";
19
- var packageVersion = "78.0.3";
19
+ var packageVersion = "78.0.5";
20
20
  var CardBase = exports.CardBase = function CardBase(_ref) {
21
21
  var identifier = _ref.identifier,
22
22
  otherProps = (0, _objectWithoutProperties2.default)(_ref, _excluded);
@@ -233,7 +233,7 @@ var CardViewBase = exports.CardViewBase = function CardViewBase(_ref) {
233
233
  })), renderImageRenderer && !!cardPreview && (0, _react.jsx)(_imageRenderer.ImageRenderer, {
234
234
  cardPreview: cardPreview,
235
235
  mediaType: (metadata === null || metadata === void 0 ? void 0 : metadata.mediaType) || 'unknown',
236
- alt: alt || name,
236
+ alt: alt !== null && alt !== void 0 ? alt : name,
237
237
  resizeMode: resizeMode,
238
238
  onDisplayImage: onDisplayImage,
239
239
  onImageLoad: handleOnImageLoad,
@@ -90,7 +90,7 @@ var WrappedMediaCardAnalyticsErrorBoundary = /*#__PURE__*/function (_React$Compo
90
90
  }(_react.default.Component);
91
91
  (0, _defineProperty2.default)(WrappedMediaCardAnalyticsErrorBoundary, "displayName", 'MediaCardAnalyticsErrorBoundary');
92
92
  var packageName = "@atlaskit/media-card";
93
- var packageVersion = "78.0.3";
93
+ var packageVersion = "78.0.5";
94
94
  var MediaCardAnalyticsErrorBoundary = (0, _mediaCommon.withMediaAnalyticsContext)({
95
95
  packageVersion: packageVersion,
96
96
  packageName: packageName,
@@ -119,7 +119,7 @@ var MediaInlineCardLoader = exports.default = /*#__PURE__*/function (_React$Pure
119
119
  ErrorBoundary = _this$state.ErrorBoundary;
120
120
  var analyticsContext = {
121
121
  packageVersion: "@atlaskit/media-card",
122
- packageName: "78.0.3",
122
+ packageName: "78.0.5",
123
123
  componentName: 'mediaInlineCard',
124
124
  component: 'mediaInlineCard'
125
125
  };
@@ -15,7 +15,7 @@ var _mediaClient = require("@atlaskit/media-client");
15
15
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
16
16
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
17
17
  var packageName = "@atlaskit/media-card";
18
- var packageVersion = "78.0.3";
18
+ var packageVersion = "78.0.5";
19
19
  var concurrentExperience;
20
20
  var getExperience = function getExperience(id) {
21
21
  if (!concurrentExperience) {
@@ -7,7 +7,7 @@ import { IntlProvider, injectIntl } from 'react-intl-next';
7
7
  import { ExternalImageCard } from './externalImageCard';
8
8
  import { FileCard } from './fileCard';
9
9
  const packageName = "@atlaskit/media-card";
10
- const packageVersion = "78.0.3";
10
+ const packageVersion = "78.0.5";
11
11
  export const CardBase = ({
12
12
  identifier,
13
13
  ...otherProps
@@ -229,7 +229,7 @@ export const CardViewBase = ({
229
229
  })), renderImageRenderer && !!cardPreview && jsx(ImageRenderer, {
230
230
  cardPreview: cardPreview,
231
231
  mediaType: (metadata === null || metadata === void 0 ? void 0 : metadata.mediaType) || 'unknown',
232
- alt: alt || name,
232
+ alt: alt !== null && alt !== void 0 ? alt : name,
233
233
  resizeMode: resizeMode,
234
234
  onDisplayImage: onDisplayImage,
235
235
  onImageLoad: handleOnImageLoad,
@@ -66,7 +66,7 @@ class WrappedMediaCardAnalyticsErrorBoundary extends React.Component {
66
66
  }
67
67
  _defineProperty(WrappedMediaCardAnalyticsErrorBoundary, "displayName", 'MediaCardAnalyticsErrorBoundary');
68
68
  const packageName = "@atlaskit/media-card";
69
- const packageVersion = "78.0.3";
69
+ const packageVersion = "78.0.5";
70
70
  const MediaCardAnalyticsErrorBoundary = withMediaAnalyticsContext({
71
71
  packageVersion,
72
72
  packageName,
@@ -37,7 +37,7 @@ export default class MediaInlineCardLoader extends React.PureComponent {
37
37
  } = this.state;
38
38
  const analyticsContext = {
39
39
  packageVersion: "@atlaskit/media-card",
40
- packageName: "78.0.3",
40
+ packageName: "78.0.5",
41
41
  componentName: 'mediaInlineCard',
42
42
  component: 'mediaInlineCard'
43
43
  };
@@ -5,7 +5,7 @@ import { extractErrorInfo, getRenderErrorRequestMetadata } from './analytics';
5
5
  import { MediaCardError } from '../errors';
6
6
  import { getMediaEnvironment, getMediaRegion } from '@atlaskit/media-client';
7
7
  const packageName = "@atlaskit/media-card";
8
- const packageVersion = "78.0.3";
8
+ const packageVersion = "78.0.5";
9
9
  let concurrentExperience;
10
10
  const getExperience = id => {
11
11
  if (!concurrentExperience) {
@@ -9,7 +9,7 @@ import { IntlProvider, injectIntl } from 'react-intl-next';
9
9
  import { ExternalImageCard } from './externalImageCard';
10
10
  import { FileCard } from './fileCard';
11
11
  var packageName = "@atlaskit/media-card";
12
- var packageVersion = "78.0.3";
12
+ var packageVersion = "78.0.5";
13
13
  export var CardBase = function CardBase(_ref) {
14
14
  var identifier = _ref.identifier,
15
15
  otherProps = _objectWithoutProperties(_ref, _excluded);
@@ -225,7 +225,7 @@ export var CardViewBase = function CardViewBase(_ref) {
225
225
  })), renderImageRenderer && !!cardPreview && jsx(ImageRenderer, {
226
226
  cardPreview: cardPreview,
227
227
  mediaType: (metadata === null || metadata === void 0 ? void 0 : metadata.mediaType) || 'unknown',
228
- alt: alt || name,
228
+ alt: alt !== null && alt !== void 0 ? alt : name,
229
229
  resizeMode: resizeMode,
230
230
  onDisplayImage: onDisplayImage,
231
231
  onImageLoad: handleOnImageLoad,
@@ -83,7 +83,7 @@ var WrappedMediaCardAnalyticsErrorBoundary = /*#__PURE__*/function (_React$Compo
83
83
  }(React.Component);
84
84
  _defineProperty(WrappedMediaCardAnalyticsErrorBoundary, "displayName", 'MediaCardAnalyticsErrorBoundary');
85
85
  var packageName = "@atlaskit/media-card";
86
- var packageVersion = "78.0.3";
86
+ var packageVersion = "78.0.5";
87
87
  var MediaCardAnalyticsErrorBoundary = withMediaAnalyticsContext({
88
88
  packageVersion: packageVersion,
89
89
  packageName: packageName,
@@ -103,7 +103,7 @@ var MediaInlineCardLoader = /*#__PURE__*/function (_React$PureComponent) {
103
103
  ErrorBoundary = _this$state.ErrorBoundary;
104
104
  var analyticsContext = {
105
105
  packageVersion: "@atlaskit/media-card",
106
- packageName: "78.0.3",
106
+ packageName: "78.0.5",
107
107
  componentName: 'mediaInlineCard',
108
108
  component: 'mediaInlineCard'
109
109
  };
@@ -8,7 +8,7 @@ import { extractErrorInfo, getRenderErrorRequestMetadata } from './analytics';
8
8
  import { MediaCardError } from '../errors';
9
9
  import { getMediaEnvironment, getMediaRegion } from '@atlaskit/media-client';
10
10
  var packageName = "@atlaskit/media-card";
11
- var packageVersion = "78.0.3";
11
+ var packageVersion = "78.0.5";
12
12
  var concurrentExperience;
13
13
  var getExperience = function getExperience(id) {
14
14
  if (!concurrentExperience) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/media-card",
3
- "version": "78.0.3",
3
+ "version": "78.0.5",
4
4
  "description": "Includes all media card related components, CardView, CardViewSmall, Card...",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -37,9 +37,9 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@atlaskit/analytics-next": "^9.3.0",
40
- "@atlaskit/dropdown-menu": "^12.13.0",
41
- "@atlaskit/editor-shared-styles": "^2.12.0",
42
- "@atlaskit/icon": "^22.5.0",
40
+ "@atlaskit/dropdown-menu": "^12.14.0",
41
+ "@atlaskit/editor-shared-styles": "^2.13.0",
42
+ "@atlaskit/icon": "^22.6.0",
43
43
  "@atlaskit/media-client": "^27.3.0",
44
44
  "@atlaskit/media-client-react": "^2.0.0",
45
45
  "@atlaskit/media-common": "^11.3.0",
@@ -48,10 +48,10 @@
48
48
  "@atlaskit/media-ui": "^25.10.0",
49
49
  "@atlaskit/media-viewer": "^48.6.0",
50
50
  "@atlaskit/platform-feature-flags": "^0.3.0",
51
- "@atlaskit/primitives": "^10.0.0",
51
+ "@atlaskit/primitives": "^11.0.0",
52
52
  "@atlaskit/spinner": "^16.2.0",
53
53
  "@atlaskit/theme": "^12.11.0",
54
- "@atlaskit/tokens": "^1.53.0",
54
+ "@atlaskit/tokens": "^1.54.0",
55
55
  "@atlaskit/tooltip": "^18.5.0",
56
56
  "@atlaskit/ufo": "^0.2.0",
57
57
  "@atlaskit/ufo-interaction-ignore": "^1.1.0",
@@ -87,7 +87,7 @@
87
87
  "@atlaskit/visual-regression": "*",
88
88
  "@atlassian/feature-flags-test-utils": "^0.2.0",
89
89
  "@atlassian/ufo": "^0.3.0",
90
- "@testing-library/dom": "^8.17.1",
90
+ "@testing-library/dom": "^10.1.0",
91
91
  "@testing-library/react": "^12.1.5",
92
92
  "@testing-library/react-hooks": "^8.0.1",
93
93
  "@testing-library/user-event": "^14.4.3",