@atlaskit/smart-card 26.5.8 → 26.5.10
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 +12 -0
- package/dist/cjs/utils/analytics/SmartLinkAnalyticsContext.js +2 -5
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/view/CardWithUrl/component.js +9 -5
- package/dist/cjs/view/EmbedCard/views/UnresolvedView.js +1 -0
- package/dist/cjs/view/HoverCard/components/HoverCardComponent.js +1 -1
- package/dist/cjs/view/InlineCard/Icon.js +3 -1
- package/dist/cjs/view/common/Metadata.js +6 -7
- package/dist/es2019/utils/analytics/SmartLinkAnalyticsContext.js +2 -5
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/view/CardWithUrl/component.js +11 -5
- package/dist/es2019/view/EmbedCard/views/UnresolvedView.js +1 -0
- package/dist/es2019/view/HoverCard/components/HoverCardComponent.js +1 -1
- package/dist/es2019/view/InlineCard/Icon.js +3 -1
- package/dist/es2019/view/common/Metadata.js +6 -7
- package/dist/esm/utils/analytics/SmartLinkAnalyticsContext.js +2 -5
- package/dist/esm/version.json +1 -1
- package/dist/esm/view/CardWithUrl/component.js +9 -5
- package/dist/esm/view/EmbedCard/views/UnresolvedView.js +1 -0
- package/dist/esm/view/HoverCard/components/HoverCardComponent.js +1 -1
- package/dist/esm/view/InlineCard/Icon.js +3 -1
- package/dist/esm/view/common/Metadata.js +6 -7
- package/dist/types/utils/analytics/SmartLinkAnalyticsContext.d.ts +1 -2
- package/dist/types-ts4.5/utils/analytics/SmartLinkAnalyticsContext.d.ts +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/smart-card
|
|
2
2
|
|
|
3
|
+
## 26.5.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`70f573b2c44`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f573b2c44) - Internal change to use space tokens for spacing properties. There is no visual change.
|
|
8
|
+
|
|
9
|
+
## 26.5.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`d394a5db254`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d394a5db254) - Fixes display analytics attribute provided by analytics context when the apperance is flexible
|
|
14
|
+
|
|
3
15
|
## 26.5.8
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -9,8 +9,6 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
9
9
|
var _react = _interopRequireDefault(require("react"));
|
|
10
10
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
11
11
|
var _resolvedAttributes = require("@atlaskit/link-analytics/resolved-attributes");
|
|
12
|
-
var _flexible = require("../flexible");
|
|
13
|
-
var _constants = require("../../constants");
|
|
14
12
|
var _store = require("../../state/store");
|
|
15
13
|
var _LinkAnalyticsContext = require("./LinkAnalyticsContext");
|
|
16
14
|
/**
|
|
@@ -19,15 +17,14 @@ var _LinkAnalyticsContext = require("./LinkAnalyticsContext");
|
|
|
19
17
|
*/
|
|
20
18
|
var SmartLinkAnalyticsContext = function SmartLinkAnalyticsContext(props) {
|
|
21
19
|
var children = props.children,
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
url = props.url,
|
|
21
|
+
display = props.display;
|
|
24
22
|
var _useSmartLinkState = (0, _store.useSmartCardState)(url),
|
|
25
23
|
details = _useSmartLinkState.details,
|
|
26
24
|
status = _useSmartLinkState.status;
|
|
27
25
|
var attributes = (0, _resolvedAttributes.getResolvedAttributes)({
|
|
28
26
|
url: url
|
|
29
27
|
}, details, status);
|
|
30
|
-
var display = (0, _flexible.isFlexibleUiCard)(children) ? _constants.CardDisplay.Flexible : appearance;
|
|
31
28
|
return /*#__PURE__*/_react.default.createElement(_LinkAnalyticsContext.LinkAnalyticsContext, (0, _extends2.default)({}, props, {
|
|
32
29
|
display: display
|
|
33
30
|
}), /*#__PURE__*/_react.default.createElement(_analyticsNext.AnalyticsContext, {
|
package/dist/cjs/version.json
CHANGED
|
@@ -273,10 +273,14 @@ function Component(_ref) {
|
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
var CardWithUrlContent = function CardWithUrlContent(props) {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
276
|
+
if ((0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.enable-analytics-context')) {
|
|
277
|
+
var display = (0, _flexible.isFlexibleUiCard)(props.children) ? _constants.CardDisplay.Flexible : props.appearance;
|
|
278
|
+
return /*#__PURE__*/_react.default.createElement(_SmartLinkAnalyticsContext.SmartLinkAnalyticsContext, {
|
|
279
|
+
url: props.url,
|
|
280
|
+
id: props.id,
|
|
281
|
+
display: display
|
|
282
|
+
}, /*#__PURE__*/_react.default.createElement(Component, props));
|
|
283
|
+
}
|
|
284
|
+
return /*#__PURE__*/_react.default.createElement(Component, props);
|
|
281
285
|
};
|
|
282
286
|
exports.CardWithUrlContent = CardWithUrlContent;
|
|
@@ -12,6 +12,7 @@ var _constants = require("@atlaskit/theme/constants");
|
|
|
12
12
|
var _reactIntlNext = require("react-intl-next");
|
|
13
13
|
var _messages = require("../../../messages");
|
|
14
14
|
var _utils = require("../../common/utils");
|
|
15
|
+
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage-spacing */
|
|
15
16
|
/** @jsx jsx */
|
|
16
17
|
|
|
17
18
|
var EmbedCardUnresolvedView = function EmbedCardUnresolvedView(_ref) {
|
|
@@ -166,7 +166,7 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
166
166
|
});
|
|
167
167
|
return (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.enable-analytics-context') ? (0, _react.jsx)(_SmartLinkAnalyticsContext.SmartLinkAnalyticsContext, {
|
|
168
168
|
url: url,
|
|
169
|
-
|
|
169
|
+
display: _constants.CardDisplay.HoverCardPreview,
|
|
170
170
|
id: id,
|
|
171
171
|
source: HOVER_CARD_SOURCE
|
|
172
172
|
}, (0, _react.jsx)(_HoverCardContent.default, hoverCardContentProps)) : (0, _react.jsx)(_HoverCardContent.default, hoverCardContentProps);
|
|
@@ -27,10 +27,12 @@ var Shimmer = function Shimmer(_ref) {
|
|
|
27
27
|
var testId = _ref.testId;
|
|
28
28
|
var skeletonCustomStyles = {
|
|
29
29
|
position: 'absolute',
|
|
30
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
30
31
|
top: '50%',
|
|
32
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
31
33
|
left: '50%',
|
|
32
34
|
transform: 'translate(-50%, -50%)',
|
|
33
|
-
marginRight:
|
|
35
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
34
36
|
};
|
|
35
37
|
return /*#__PURE__*/_react.default.createElement(_linkingCommon.Skeleton, {
|
|
36
38
|
width: 14,
|
|
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.Metadata = void 0;
|
|
8
8
|
var _react = require("@emotion/react");
|
|
9
9
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
10
|
-
var _utils = require("./utils");
|
|
11
10
|
var _colors = require("@atlaskit/theme/colors");
|
|
12
11
|
/** @jsx jsx */
|
|
13
12
|
|
|
@@ -21,8 +20,8 @@ var Metadata = function Metadata(_ref) {
|
|
|
21
20
|
metadataIcon = (0, _react.jsx)("img", {
|
|
22
21
|
src: iconUrl,
|
|
23
22
|
css: {
|
|
24
|
-
width: (
|
|
25
|
-
height: (
|
|
23
|
+
width: "var(--ds-space-100, 8px)",
|
|
24
|
+
height: "var(--ds-space-100, 8px)"
|
|
26
25
|
}
|
|
27
26
|
});
|
|
28
27
|
}
|
|
@@ -30,14 +29,14 @@ var Metadata = function Metadata(_ref) {
|
|
|
30
29
|
css: {
|
|
31
30
|
display: 'flex',
|
|
32
31
|
alignItems: 'center',
|
|
33
|
-
marginRight: (
|
|
32
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
34
33
|
}
|
|
35
34
|
}, metadataIcon, (0, _react.jsx)("span", {
|
|
36
35
|
css: {
|
|
37
|
-
fontSize: (
|
|
36
|
+
fontSize: "var(--ds-space-150, 12px)",
|
|
38
37
|
color: "".concat("var(--ds-text-subtlest, ".concat(_colors.N300, ")")),
|
|
39
|
-
marginRight: (
|
|
40
|
-
marginLeft:
|
|
38
|
+
marginRight: "var(--ds-space-050, 4px)",
|
|
39
|
+
marginLeft: "var(--ds-space-025, 2px)"
|
|
41
40
|
}
|
|
42
41
|
}, text));
|
|
43
42
|
if (tooltip) {
|
|
@@ -2,8 +2,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import { getResolvedAttributes } from '@atlaskit/link-analytics/resolved-attributes';
|
|
5
|
-
import { isFlexibleUiCard } from '../flexible';
|
|
6
|
-
import { CardDisplay } from '../../constants';
|
|
7
5
|
import { useSmartCardState as useSmartLinkState } from '../../state/store';
|
|
8
6
|
import { LinkAnalyticsContext } from './LinkAnalyticsContext';
|
|
9
7
|
/**
|
|
@@ -13,8 +11,8 @@ import { LinkAnalyticsContext } from './LinkAnalyticsContext';
|
|
|
13
11
|
export const SmartLinkAnalyticsContext = props => {
|
|
14
12
|
const {
|
|
15
13
|
children,
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
url,
|
|
15
|
+
display
|
|
18
16
|
} = props;
|
|
19
17
|
const {
|
|
20
18
|
details,
|
|
@@ -23,7 +21,6 @@ export const SmartLinkAnalyticsContext = props => {
|
|
|
23
21
|
const attributes = getResolvedAttributes({
|
|
24
22
|
url
|
|
25
23
|
}, details, status);
|
|
26
|
-
const display = isFlexibleUiCard(children) ? CardDisplay.Flexible : appearance;
|
|
27
24
|
return /*#__PURE__*/React.createElement(LinkAnalyticsContext, _extends({}, props, {
|
|
28
25
|
display: display
|
|
29
26
|
}), /*#__PURE__*/React.createElement(AnalyticsContext, {
|
package/dist/es2019/version.json
CHANGED
|
@@ -259,8 +259,14 @@ function Component({
|
|
|
259
259
|
});
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
|
-
export const CardWithUrlContent = props =>
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
262
|
+
export const CardWithUrlContent = props => {
|
|
263
|
+
if (getBooleanFF('platform.linking-platform.smart-card.enable-analytics-context')) {
|
|
264
|
+
const display = isFlexibleUiCard(props.children) ? CardDisplay.Flexible : props.appearance;
|
|
265
|
+
return /*#__PURE__*/React.createElement(SmartLinkAnalyticsContext, {
|
|
266
|
+
url: props.url,
|
|
267
|
+
id: props.id,
|
|
268
|
+
display: display
|
|
269
|
+
}, /*#__PURE__*/React.createElement(Component, props));
|
|
270
|
+
}
|
|
271
|
+
return /*#__PURE__*/React.createElement(Component, props);
|
|
272
|
+
};
|
|
@@ -146,7 +146,7 @@ export const HoverCardComponent = ({
|
|
|
146
146
|
};
|
|
147
147
|
return getBooleanFF('platform.linking-platform.smart-card.enable-analytics-context') ? jsx(SmartLinkAnalyticsContext, {
|
|
148
148
|
url: url,
|
|
149
|
-
|
|
149
|
+
display: CardDisplay.HoverCardPreview,
|
|
150
150
|
id: id,
|
|
151
151
|
source: HOVER_CARD_SOURCE
|
|
152
152
|
}, jsx(HoverCardContent, hoverCardContentProps)) : jsx(HoverCardContent, hoverCardContentProps);
|
|
@@ -30,10 +30,12 @@ export const Shimmer = ({
|
|
|
30
30
|
}) => {
|
|
31
31
|
const skeletonCustomStyles = {
|
|
32
32
|
position: 'absolute',
|
|
33
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
33
34
|
top: '50%',
|
|
35
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
34
36
|
left: '50%',
|
|
35
37
|
transform: 'translate(-50%, -50%)',
|
|
36
|
-
marginRight:
|
|
38
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
37
39
|
};
|
|
38
40
|
return /*#__PURE__*/React.createElement(Skeleton, {
|
|
39
41
|
width: 14,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
3
|
import Tooltip from '@atlaskit/tooltip';
|
|
4
|
-
import { gs } from './utils';
|
|
5
4
|
import { N300 } from '@atlaskit/theme/colors';
|
|
6
5
|
export const Metadata = ({
|
|
7
6
|
text,
|
|
@@ -14,8 +13,8 @@ export const Metadata = ({
|
|
|
14
13
|
metadataIcon = jsx("img", {
|
|
15
14
|
src: iconUrl,
|
|
16
15
|
css: {
|
|
17
|
-
width:
|
|
18
|
-
height:
|
|
16
|
+
width: "var(--ds-space-100, 8px)",
|
|
17
|
+
height: "var(--ds-space-100, 8px)"
|
|
19
18
|
}
|
|
20
19
|
});
|
|
21
20
|
}
|
|
@@ -23,14 +22,14 @@ export const Metadata = ({
|
|
|
23
22
|
css: {
|
|
24
23
|
display: 'flex',
|
|
25
24
|
alignItems: 'center',
|
|
26
|
-
marginRight:
|
|
25
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
27
26
|
}
|
|
28
27
|
}, metadataIcon, jsx("span", {
|
|
29
28
|
css: {
|
|
30
|
-
fontSize:
|
|
29
|
+
fontSize: "var(--ds-space-150, 12px)",
|
|
31
30
|
color: `${`var(--ds-text-subtlest, ${N300})`}`,
|
|
32
|
-
marginRight:
|
|
33
|
-
marginLeft:
|
|
31
|
+
marginRight: "var(--ds-space-050, 4px)",
|
|
32
|
+
marginLeft: "var(--ds-space-025, 2px)"
|
|
34
33
|
}
|
|
35
34
|
}, text));
|
|
36
35
|
if (tooltip) {
|
|
@@ -2,8 +2,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import { getResolvedAttributes } from '@atlaskit/link-analytics/resolved-attributes';
|
|
5
|
-
import { isFlexibleUiCard } from '../flexible';
|
|
6
|
-
import { CardDisplay } from '../../constants';
|
|
7
5
|
import { useSmartCardState as useSmartLinkState } from '../../state/store';
|
|
8
6
|
import { LinkAnalyticsContext } from './LinkAnalyticsContext';
|
|
9
7
|
/**
|
|
@@ -12,15 +10,14 @@ import { LinkAnalyticsContext } from './LinkAnalyticsContext';
|
|
|
12
10
|
*/
|
|
13
11
|
export var SmartLinkAnalyticsContext = function SmartLinkAnalyticsContext(props) {
|
|
14
12
|
var children = props.children,
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
url = props.url,
|
|
14
|
+
display = props.display;
|
|
17
15
|
var _useSmartLinkState = useSmartLinkState(url),
|
|
18
16
|
details = _useSmartLinkState.details,
|
|
19
17
|
status = _useSmartLinkState.status;
|
|
20
18
|
var attributes = getResolvedAttributes({
|
|
21
19
|
url: url
|
|
22
20
|
}, details, status);
|
|
23
|
-
var display = isFlexibleUiCard(children) ? CardDisplay.Flexible : appearance;
|
|
24
21
|
return /*#__PURE__*/React.createElement(LinkAnalyticsContext, _extends({}, props, {
|
|
25
22
|
display: display
|
|
26
23
|
}), /*#__PURE__*/React.createElement(AnalyticsContext, {
|
package/dist/esm/version.json
CHANGED
|
@@ -263,9 +263,13 @@ function Component(_ref) {
|
|
|
263
263
|
}
|
|
264
264
|
}
|
|
265
265
|
export var CardWithUrlContent = function CardWithUrlContent(props) {
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
266
|
+
if (getBooleanFF('platform.linking-platform.smart-card.enable-analytics-context')) {
|
|
267
|
+
var display = isFlexibleUiCard(props.children) ? CardDisplay.Flexible : props.appearance;
|
|
268
|
+
return /*#__PURE__*/React.createElement(SmartLinkAnalyticsContext, {
|
|
269
|
+
url: props.url,
|
|
270
|
+
id: props.id,
|
|
271
|
+
display: display
|
|
272
|
+
}, /*#__PURE__*/React.createElement(Component, props));
|
|
273
|
+
}
|
|
274
|
+
return /*#__PURE__*/React.createElement(Component, props);
|
|
271
275
|
};
|
|
@@ -157,7 +157,7 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
157
157
|
});
|
|
158
158
|
return getBooleanFF('platform.linking-platform.smart-card.enable-analytics-context') ? jsx(SmartLinkAnalyticsContext, {
|
|
159
159
|
url: url,
|
|
160
|
-
|
|
160
|
+
display: CardDisplay.HoverCardPreview,
|
|
161
161
|
id: id,
|
|
162
162
|
source: HOVER_CARD_SOURCE
|
|
163
163
|
}, jsx(HoverCardContent, hoverCardContentProps)) : jsx(HoverCardContent, hoverCardContentProps);
|
|
@@ -19,10 +19,12 @@ export var Shimmer = function Shimmer(_ref) {
|
|
|
19
19
|
var testId = _ref.testId;
|
|
20
20
|
var skeletonCustomStyles = {
|
|
21
21
|
position: 'absolute',
|
|
22
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
22
23
|
top: '50%',
|
|
24
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
23
25
|
left: '50%',
|
|
24
26
|
transform: 'translate(-50%, -50%)',
|
|
25
|
-
marginRight:
|
|
27
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
26
28
|
};
|
|
27
29
|
return /*#__PURE__*/React.createElement(Skeleton, {
|
|
28
30
|
width: 14,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
3
|
import Tooltip from '@atlaskit/tooltip';
|
|
4
|
-
import { gs } from './utils';
|
|
5
4
|
import { N300 } from '@atlaskit/theme/colors';
|
|
6
5
|
export var Metadata = function Metadata(_ref) {
|
|
7
6
|
var text = _ref.text,
|
|
@@ -13,8 +12,8 @@ export var Metadata = function Metadata(_ref) {
|
|
|
13
12
|
metadataIcon = jsx("img", {
|
|
14
13
|
src: iconUrl,
|
|
15
14
|
css: {
|
|
16
|
-
width:
|
|
17
|
-
height:
|
|
15
|
+
width: "var(--ds-space-100, 8px)",
|
|
16
|
+
height: "var(--ds-space-100, 8px)"
|
|
18
17
|
}
|
|
19
18
|
});
|
|
20
19
|
}
|
|
@@ -22,14 +21,14 @@ export var Metadata = function Metadata(_ref) {
|
|
|
22
21
|
css: {
|
|
23
22
|
display: 'flex',
|
|
24
23
|
alignItems: 'center',
|
|
25
|
-
marginRight:
|
|
24
|
+
marginRight: "var(--ds-space-050, 4px)"
|
|
26
25
|
}
|
|
27
26
|
}, metadataIcon, jsx("span", {
|
|
28
27
|
css: {
|
|
29
|
-
fontSize:
|
|
28
|
+
fontSize: "var(--ds-space-150, 12px)",
|
|
30
29
|
color: "".concat("var(--ds-text-subtlest, ".concat(N300, ")")),
|
|
31
|
-
marginRight:
|
|
32
|
-
marginLeft:
|
|
30
|
+
marginRight: "var(--ds-space-050, 4px)",
|
|
31
|
+
marginLeft: "var(--ds-space-025, 2px)"
|
|
33
32
|
}
|
|
34
33
|
}, text));
|
|
35
34
|
if (tooltip) {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { CardInnerAppearance } from '../../view/Card/types';
|
|
3
2
|
type SmartLinkAnalyticsContextProps = {
|
|
4
3
|
url: string;
|
|
5
|
-
|
|
4
|
+
display?: string;
|
|
6
5
|
id?: string | undefined;
|
|
7
6
|
source?: string;
|
|
8
7
|
children?: React.ReactNode;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { CardInnerAppearance } from '../../view/Card/types';
|
|
3
2
|
type SmartLinkAnalyticsContextProps = {
|
|
4
3
|
url: string;
|
|
5
|
-
|
|
4
|
+
display?: string;
|
|
6
5
|
id?: string | undefined;
|
|
7
6
|
source?: string;
|
|
8
7
|
children?: React.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "26.5.
|
|
3
|
+
"version": "26.5.10",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@atlaskit/avatar-group": "^9.3.0",
|
|
37
37
|
"@atlaskit/button": "^16.7.0",
|
|
38
38
|
"@atlaskit/dropdown-menu": "^11.9.0",
|
|
39
|
-
"@atlaskit/frontend-utilities": "^2.
|
|
39
|
+
"@atlaskit/frontend-utilities": "^2.7.0",
|
|
40
40
|
"@atlaskit/icon": "^21.12.0",
|
|
41
41
|
"@atlaskit/icon-file-type": "^6.4.0",
|
|
42
42
|
"@atlaskit/icon-object": "^6.3.0",
|