@atlaskit/smart-card 20.1.1 → 20.1.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 +18 -0
- package/dist/cjs/state/hooks/usePrefetch.js +8 -1
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/view/HoverCard/components/HoverCardComponent.js +32 -4
- package/dist/cjs/view/HoverCard/styled.js +5 -2
- package/dist/es2019/state/hooks/usePrefetch.js +7 -1
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/view/HoverCard/components/HoverCardComponent.js +33 -5
- package/dist/es2019/view/HoverCard/styled.js +3 -1
- package/dist/esm/state/hooks/usePrefetch.js +7 -1
- package/dist/esm/version.json +1 -1
- package/dist/esm/view/HoverCard/components/HoverCardComponent.js +33 -5
- package/dist/esm/view/HoverCard/styled.js +3 -1
- package/dist/types/view/HoverCard/styled.d.ts +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/smart-card
|
|
2
2
|
|
|
3
|
+
## 20.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8df009f4313`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8df009f4313) - fix metadata status for prefetching
|
|
8
|
+
|
|
9
|
+
## 20.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`7c0644e5daf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c0644e5daf) - fix on mouse hover functionality for hover cards
|
|
14
|
+
|
|
15
|
+
## 20.1.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`0fb4cccede9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fb4cccede9) - add on mouse hover to hover card
|
|
20
|
+
|
|
3
21
|
## 20.1.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -15,6 +15,8 @@ var _react = require("react");
|
|
|
15
15
|
|
|
16
16
|
var _linkProvider = require("@atlaskit/link-provider");
|
|
17
17
|
|
|
18
|
+
var _linkingCommon = require("@atlaskit/linking-common");
|
|
19
|
+
|
|
18
20
|
function usePrefetch(url) {
|
|
19
21
|
var _useSmartLinkContext = (0, _linkProvider.useSmartLinkContext)(),
|
|
20
22
|
store = _useSmartLinkContext.store,
|
|
@@ -70,7 +72,12 @@ function usePrefetch(url) {
|
|
|
70
72
|
type: 'resolved',
|
|
71
73
|
url: url,
|
|
72
74
|
payload: response
|
|
73
|
-
});
|
|
75
|
+
}); // Put the metadata in resolved state, theres no need for a pending or errored state as
|
|
76
|
+
// we are following the same render flow as described by the comments above and below.
|
|
77
|
+
|
|
78
|
+
dispatch((0, _linkingCommon.cardAction)(_linkingCommon.ACTION_UPDATE_METADATA_STATUS, {
|
|
79
|
+
url: url
|
|
80
|
+
}, undefined, undefined, 'resolved'));
|
|
74
81
|
}
|
|
75
82
|
|
|
76
83
|
_context.next = 14;
|
package/dist/cjs/version.json
CHANGED
|
@@ -54,6 +54,12 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
54
54
|
var fadeOutTimeoutId = (0, _react.useRef)();
|
|
55
55
|
var fadeInTimeoutId = (0, _react.useRef)();
|
|
56
56
|
var cardOpenTime = (0, _react.useRef)();
|
|
57
|
+
var mousePos = (0, _react.useRef)({
|
|
58
|
+
x: 0,
|
|
59
|
+
y: 0
|
|
60
|
+
});
|
|
61
|
+
var popupOffset = (0, _react.useRef)();
|
|
62
|
+
var parentSpan = (0, _react.useRef)(null);
|
|
57
63
|
var renderers = (0, _renderers.useSmartLinkRenderers)();
|
|
58
64
|
var linkState = (0, _store.useSmartCardState)(url);
|
|
59
65
|
var hoverDisplay = 'card';
|
|
@@ -88,6 +94,14 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
88
94
|
analytics.ui.hoverCardViewedEvent(hoverDisplay, invokeMethod);
|
|
89
95
|
}
|
|
90
96
|
|
|
97
|
+
if (parentSpan.current) {
|
|
98
|
+
var _parentSpan$current$g = parentSpan.current.getBoundingClientRect(),
|
|
99
|
+
bottom = _parentSpan$current$g.bottom,
|
|
100
|
+
left = _parentSpan$current$g.left;
|
|
101
|
+
|
|
102
|
+
popupOffset.current = [mousePos.current.x - left, mousePos.current.y - bottom + _styled.CARD_GAP_PX];
|
|
103
|
+
}
|
|
104
|
+
|
|
91
105
|
setIsOpen(true);
|
|
92
106
|
}, delay);
|
|
93
107
|
}, [delay, isOpen, analytics.ui]);
|
|
@@ -100,7 +114,17 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
100
114
|
if (actionId === 'preview-content') {
|
|
101
115
|
hideCard();
|
|
102
116
|
}
|
|
103
|
-
}, [hideCard]);
|
|
117
|
+
}, [hideCard]);
|
|
118
|
+
var setMousePosition = (0, _react.useCallback)(function (event) {
|
|
119
|
+
if (isOpen) {
|
|
120
|
+
return;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
mousePos.current = {
|
|
124
|
+
x: event.clientX,
|
|
125
|
+
y: event.clientY
|
|
126
|
+
};
|
|
127
|
+
}, [isOpen]); // Stop hover preview content to propagate event to parent.
|
|
104
128
|
|
|
105
129
|
var onClick = (0, _react.useCallback)(function (e) {
|
|
106
130
|
return e.stopPropagation();
|
|
@@ -110,6 +134,7 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
110
134
|
isOpen: isOpen,
|
|
111
135
|
onClose: hideCard,
|
|
112
136
|
placement: "bottom-start",
|
|
137
|
+
offset: popupOffset.current,
|
|
113
138
|
content: function content(_ref2) {
|
|
114
139
|
var update = _ref2.update;
|
|
115
140
|
return (0, _core.jsx)("div", {
|
|
@@ -130,10 +155,13 @@ var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
130
155
|
}));
|
|
131
156
|
},
|
|
132
157
|
trigger: function trigger(triggerProps) {
|
|
133
|
-
return (0, _core.jsx)("span",
|
|
158
|
+
return (0, _core.jsx)("span", {
|
|
159
|
+
ref: parentSpan
|
|
160
|
+
}, (0, _core.jsx)("span", (0, _extends2.default)({}, triggerProps, {
|
|
134
161
|
onMouseEnter: initShowCard,
|
|
135
|
-
onMouseLeave: initHideCard
|
|
136
|
-
|
|
162
|
+
onMouseLeave: initHideCard,
|
|
163
|
+
onMouseMove: setMousePosition
|
|
164
|
+
}), children));
|
|
137
165
|
},
|
|
138
166
|
zIndex: 511 // Temporary fix for Confluence inline comment on editor mod has z-index of 500, Jira issue view has z-index of 510
|
|
139
167
|
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.titleBlockCss = exports.skeletonContainer = exports.metadataBlockCss = exports.loadingViewContainer = exports.footerBlockCss = exports.flexibleUiOptions = exports.HoverCardContainer = exports.CARD_WIDTH_REM = void 0;
|
|
8
|
+
exports.titleBlockCss = exports.skeletonContainer = exports.metadataBlockCss = exports.loadingViewContainer = exports.footerBlockCss = exports.flexibleUiOptions = exports.HoverCardContainer = exports.CARD_WIDTH_REM = exports.CARD_GAP_PX = void 0;
|
|
9
9
|
|
|
10
10
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
11
11
|
|
|
@@ -25,8 +25,11 @@ var flexibleUiOptions = {
|
|
|
25
25
|
hidePadding: true
|
|
26
26
|
};
|
|
27
27
|
exports.flexibleUiOptions = flexibleUiOptions;
|
|
28
|
-
var CARD_WIDTH_REM = 24;
|
|
28
|
+
var CARD_WIDTH_REM = 24; // gap between mouse cursor and hover card
|
|
29
|
+
|
|
29
30
|
exports.CARD_WIDTH_REM = CARD_WIDTH_REM;
|
|
31
|
+
var CARD_GAP_PX = 10;
|
|
32
|
+
exports.CARD_GAP_PX = CARD_GAP_PX;
|
|
30
33
|
var blockGap = '0.5rem';
|
|
31
34
|
var elementGap = '0.5rem';
|
|
32
35
|
var separatorCss = (0, _core.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n [data-separator] + [data-separator]:before {\n margin-right: ", ";\n }\n"])), elementGap);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useCallback } from 'react';
|
|
2
2
|
import { useSmartLinkContext } from '@atlaskit/link-provider';
|
|
3
|
+
import { ACTION_UPDATE_METADATA_STATUS, cardAction } from '@atlaskit/linking-common';
|
|
3
4
|
export function usePrefetch(url) {
|
|
4
5
|
const {
|
|
5
6
|
store,
|
|
@@ -45,7 +46,12 @@ export function usePrefetch(url) {
|
|
|
45
46
|
type: 'resolved',
|
|
46
47
|
url,
|
|
47
48
|
payload: response
|
|
48
|
-
});
|
|
49
|
+
}); // Put the metadata in resolved state, theres no need for a pending or errored state as
|
|
50
|
+
// we are following the same render flow as described by the comments above and below.
|
|
51
|
+
|
|
52
|
+
dispatch(cardAction(ACTION_UPDATE_METADATA_STATUS, {
|
|
53
|
+
url
|
|
54
|
+
}, undefined, undefined, 'resolved'));
|
|
49
55
|
}
|
|
50
56
|
} catch (_err) {// Do nothing, link will be retried under the hood with exponential backoff.
|
|
51
57
|
// If it does not succeed even after those retries, the normal resolve flow
|
package/dist/es2019/version.json
CHANGED
|
@@ -8,7 +8,7 @@ import { useSmartLinkActions } from '../../../state/hooks-external/useSmartLinkA
|
|
|
8
8
|
import { useSmartLinkRenderers } from '../../../state/renderers';
|
|
9
9
|
import { useSmartCardState as useLinkState } from '../../../state/store';
|
|
10
10
|
import HoverCardContent from '../components/HoverCardContent';
|
|
11
|
-
import { HoverCardContainer } from '../styled';
|
|
11
|
+
import { HoverCardContainer, CARD_GAP_PX } from '../styled';
|
|
12
12
|
import { SMART_CARD_ANALYTICS_DISPLAY } from '../utils';
|
|
13
13
|
export const hoverCardClassName = 'smart-links-hover-preview';
|
|
14
14
|
export const HoverCardComponent = ({
|
|
@@ -22,6 +22,12 @@ export const HoverCardComponent = ({
|
|
|
22
22
|
const fadeOutTimeoutId = useRef();
|
|
23
23
|
const fadeInTimeoutId = useRef();
|
|
24
24
|
const cardOpenTime = useRef();
|
|
25
|
+
const mousePos = useRef({
|
|
26
|
+
x: 0,
|
|
27
|
+
y: 0
|
|
28
|
+
});
|
|
29
|
+
const popupOffset = useRef();
|
|
30
|
+
const parentSpan = useRef(null);
|
|
25
31
|
const renderers = useSmartLinkRenderers();
|
|
26
32
|
const linkState = useLinkState(url);
|
|
27
33
|
const hoverDisplay = 'card';
|
|
@@ -54,6 +60,14 @@ export const HoverCardComponent = ({
|
|
|
54
60
|
analytics.ui.hoverCardViewedEvent(hoverDisplay, invokeMethod);
|
|
55
61
|
}
|
|
56
62
|
|
|
63
|
+
if (parentSpan.current) {
|
|
64
|
+
const {
|
|
65
|
+
bottom,
|
|
66
|
+
left
|
|
67
|
+
} = parentSpan.current.getBoundingClientRect();
|
|
68
|
+
popupOffset.current = [mousePos.current.x - left, mousePos.current.y - bottom + CARD_GAP_PX];
|
|
69
|
+
}
|
|
70
|
+
|
|
57
71
|
setIsOpen(true);
|
|
58
72
|
}, delay);
|
|
59
73
|
}, [delay, isOpen, analytics.ui]);
|
|
@@ -66,7 +80,17 @@ export const HoverCardComponent = ({
|
|
|
66
80
|
if (actionId === 'preview-content') {
|
|
67
81
|
hideCard();
|
|
68
82
|
}
|
|
69
|
-
}, [hideCard]);
|
|
83
|
+
}, [hideCard]);
|
|
84
|
+
const setMousePosition = useCallback(event => {
|
|
85
|
+
if (isOpen) {
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
mousePos.current = {
|
|
90
|
+
x: event.clientX,
|
|
91
|
+
y: event.clientY
|
|
92
|
+
};
|
|
93
|
+
}, [isOpen]); // Stop hover preview content to propagate event to parent.
|
|
70
94
|
|
|
71
95
|
const onClick = useCallback(e => e.stopPropagation(), []);
|
|
72
96
|
return jsx(Popup, {
|
|
@@ -74,6 +98,7 @@ export const HoverCardComponent = ({
|
|
|
74
98
|
isOpen: isOpen,
|
|
75
99
|
onClose: hideCard,
|
|
76
100
|
placement: "bottom-start",
|
|
101
|
+
offset: popupOffset.current,
|
|
77
102
|
content: ({
|
|
78
103
|
update
|
|
79
104
|
}) => jsx("div", {
|
|
@@ -92,10 +117,13 @@ export const HoverCardComponent = ({
|
|
|
92
117
|
renderers: renderers,
|
|
93
118
|
url: url
|
|
94
119
|
})),
|
|
95
|
-
trigger: triggerProps => jsx("span",
|
|
120
|
+
trigger: triggerProps => jsx("span", {
|
|
121
|
+
ref: parentSpan
|
|
122
|
+
}, jsx("span", _extends({}, triggerProps, {
|
|
96
123
|
onMouseEnter: initShowCard,
|
|
97
|
-
onMouseLeave: initHideCard
|
|
98
|
-
|
|
124
|
+
onMouseLeave: initHideCard,
|
|
125
|
+
onMouseMove: setMousePosition
|
|
126
|
+
}), children)),
|
|
99
127
|
zIndex: 511 // Temporary fix for Confluence inline comment on editor mod has z-index of 500, Jira issue view has z-index of 510
|
|
100
128
|
|
|
101
129
|
});
|
|
@@ -8,7 +8,9 @@ export const flexibleUiOptions = {
|
|
|
8
8
|
theme: SmartLinkTheme.Black,
|
|
9
9
|
hidePadding: true
|
|
10
10
|
};
|
|
11
|
-
export const CARD_WIDTH_REM = 24;
|
|
11
|
+
export const CARD_WIDTH_REM = 24; // gap between mouse cursor and hover card
|
|
12
|
+
|
|
13
|
+
export const CARD_GAP_PX = 10;
|
|
12
14
|
const blockGap = '0.5rem';
|
|
13
15
|
const elementGap = '0.5rem';
|
|
14
16
|
const separatorCss = css`
|
|
@@ -2,6 +2,7 @@ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
|
2
2
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
3
3
|
import { useCallback } from 'react';
|
|
4
4
|
import { useSmartLinkContext } from '@atlaskit/link-provider';
|
|
5
|
+
import { ACTION_UPDATE_METADATA_STATUS, cardAction } from '@atlaskit/linking-common';
|
|
5
6
|
export function usePrefetch(url) {
|
|
6
7
|
var _useSmartLinkContext = useSmartLinkContext(),
|
|
7
8
|
store = _useSmartLinkContext.store,
|
|
@@ -57,7 +58,12 @@ export function usePrefetch(url) {
|
|
|
57
58
|
type: 'resolved',
|
|
58
59
|
url: url,
|
|
59
60
|
payload: response
|
|
60
|
-
});
|
|
61
|
+
}); // Put the metadata in resolved state, theres no need for a pending or errored state as
|
|
62
|
+
// we are following the same render flow as described by the comments above and below.
|
|
63
|
+
|
|
64
|
+
dispatch(cardAction(ACTION_UPDATE_METADATA_STATUS, {
|
|
65
|
+
url: url
|
|
66
|
+
}, undefined, undefined, 'resolved'));
|
|
61
67
|
}
|
|
62
68
|
|
|
63
69
|
_context.next = 14;
|
package/dist/esm/version.json
CHANGED
|
@@ -9,7 +9,7 @@ import { useSmartLinkActions } from '../../../state/hooks-external/useSmartLinkA
|
|
|
9
9
|
import { useSmartLinkRenderers } from '../../../state/renderers';
|
|
10
10
|
import { useSmartCardState as useLinkState } from '../../../state/store';
|
|
11
11
|
import HoverCardContent from '../components/HoverCardContent';
|
|
12
|
-
import { HoverCardContainer } from '../styled';
|
|
12
|
+
import { HoverCardContainer, CARD_GAP_PX } from '../styled';
|
|
13
13
|
import { SMART_CARD_ANALYTICS_DISPLAY } from '../utils';
|
|
14
14
|
export var hoverCardClassName = 'smart-links-hover-preview';
|
|
15
15
|
export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
@@ -27,6 +27,12 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
27
27
|
var fadeOutTimeoutId = useRef();
|
|
28
28
|
var fadeInTimeoutId = useRef();
|
|
29
29
|
var cardOpenTime = useRef();
|
|
30
|
+
var mousePos = useRef({
|
|
31
|
+
x: 0,
|
|
32
|
+
y: 0
|
|
33
|
+
});
|
|
34
|
+
var popupOffset = useRef();
|
|
35
|
+
var parentSpan = useRef(null);
|
|
30
36
|
var renderers = useSmartLinkRenderers();
|
|
31
37
|
var linkState = useLinkState(url);
|
|
32
38
|
var hoverDisplay = 'card';
|
|
@@ -61,6 +67,14 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
61
67
|
analytics.ui.hoverCardViewedEvent(hoverDisplay, invokeMethod);
|
|
62
68
|
}
|
|
63
69
|
|
|
70
|
+
if (parentSpan.current) {
|
|
71
|
+
var _parentSpan$current$g = parentSpan.current.getBoundingClientRect(),
|
|
72
|
+
bottom = _parentSpan$current$g.bottom,
|
|
73
|
+
left = _parentSpan$current$g.left;
|
|
74
|
+
|
|
75
|
+
popupOffset.current = [mousePos.current.x - left, mousePos.current.y - bottom + CARD_GAP_PX];
|
|
76
|
+
}
|
|
77
|
+
|
|
64
78
|
setIsOpen(true);
|
|
65
79
|
}, delay);
|
|
66
80
|
}, [delay, isOpen, analytics.ui]);
|
|
@@ -73,7 +87,17 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
73
87
|
if (actionId === 'preview-content') {
|
|
74
88
|
hideCard();
|
|
75
89
|
}
|
|
76
|
-
}, [hideCard]);
|
|
90
|
+
}, [hideCard]);
|
|
91
|
+
var setMousePosition = useCallback(function (event) {
|
|
92
|
+
if (isOpen) {
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
mousePos.current = {
|
|
97
|
+
x: event.clientX,
|
|
98
|
+
y: event.clientY
|
|
99
|
+
};
|
|
100
|
+
}, [isOpen]); // Stop hover preview content to propagate event to parent.
|
|
77
101
|
|
|
78
102
|
var onClick = useCallback(function (e) {
|
|
79
103
|
return e.stopPropagation();
|
|
@@ -83,6 +107,7 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
83
107
|
isOpen: isOpen,
|
|
84
108
|
onClose: hideCard,
|
|
85
109
|
placement: "bottom-start",
|
|
110
|
+
offset: popupOffset.current,
|
|
86
111
|
content: function content(_ref2) {
|
|
87
112
|
var update = _ref2.update;
|
|
88
113
|
return jsx("div", {
|
|
@@ -103,10 +128,13 @@ export var HoverCardComponent = function HoverCardComponent(_ref) {
|
|
|
103
128
|
}));
|
|
104
129
|
},
|
|
105
130
|
trigger: function trigger(triggerProps) {
|
|
106
|
-
return jsx("span",
|
|
131
|
+
return jsx("span", {
|
|
132
|
+
ref: parentSpan
|
|
133
|
+
}, jsx("span", _extends({}, triggerProps, {
|
|
107
134
|
onMouseEnter: initShowCard,
|
|
108
|
-
onMouseLeave: initHideCard
|
|
109
|
-
|
|
135
|
+
onMouseLeave: initHideCard,
|
|
136
|
+
onMouseMove: setMousePosition
|
|
137
|
+
}), children));
|
|
110
138
|
},
|
|
111
139
|
zIndex: 511 // Temporary fix for Confluence inline comment on editor mod has z-index of 500, Jira issue view has z-index of 510
|
|
112
140
|
|
|
@@ -12,7 +12,9 @@ export var flexibleUiOptions = {
|
|
|
12
12
|
theme: SmartLinkTheme.Black,
|
|
13
13
|
hidePadding: true
|
|
14
14
|
};
|
|
15
|
-
export var CARD_WIDTH_REM = 24;
|
|
15
|
+
export var CARD_WIDTH_REM = 24; // gap between mouse cursor and hover card
|
|
16
|
+
|
|
17
|
+
export var CARD_GAP_PX = 10;
|
|
16
18
|
var blockGap = '0.5rem';
|
|
17
19
|
var elementGap = '0.5rem';
|
|
18
20
|
var separatorCss = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n [data-separator] + [data-separator]:before {\n margin-right: ", ";\n }\n"])), elementGap);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FlexibleUiOptions } from '../FlexibleCard/types';
|
|
2
2
|
export declare const flexibleUiOptions: FlexibleUiOptions;
|
|
3
3
|
export declare const CARD_WIDTH_REM = 24;
|
|
4
|
+
export declare const CARD_GAP_PX = 10;
|
|
4
5
|
export declare const HoverCardContainer: import("@emotion/utils").SerializedStyles;
|
|
5
6
|
export declare const titleBlockCss: import("@emotion/utils").SerializedStyles;
|
|
6
7
|
export declare const metadataBlockCss: import("@emotion/utils").SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.4",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@atlaskit/docs": "*",
|
|
71
71
|
"@atlaskit/field-base": "^15.0.6",
|
|
72
72
|
"@atlaskit/form": "^8.5.0",
|
|
73
|
-
"@atlaskit/inline-message": "^11.
|
|
73
|
+
"@atlaskit/inline-message": "^11.3.0",
|
|
74
74
|
"@atlaskit/lozenge": "^11.1.0",
|
|
75
75
|
"@atlaskit/media-integration-test-helpers": "^2.6.0",
|
|
76
76
|
"@atlaskit/media-test-helpers": "^30.0.0",
|