@atlaskit/smart-card 43.11.2 → 43.11.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 +7 -0
- package/dist/cjs/state/actions/index.js +1 -4
- package/dist/cjs/state/hooks/use-resolve/index.js +3 -13
- package/dist/cjs/state/hooks/use-response/index.js +0 -2
- package/dist/cjs/utils/analytics/analytics.js +1 -1
- package/dist/cjs/utils/analytics/click.js +0 -1
- package/dist/cjs/view/FlexibleCard/components/actions/action/index.js +0 -1
- package/dist/cjs/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/boolean-prompt/main.js +9 -13
- package/dist/cjs/view/LinkUrl/Hyperlink/index.js +0 -1
- package/dist/cjs/view/LinkUrl/index.js +1 -3
- package/dist/es2019/state/actions/index.js +1 -4
- package/dist/es2019/state/hooks/use-resolve/index.js +1 -10
- package/dist/es2019/state/hooks/use-response/index.js +0 -2
- package/dist/es2019/utils/analytics/analytics.js +1 -1
- package/dist/es2019/utils/analytics/click.js +0 -1
- package/dist/es2019/view/FlexibleCard/components/actions/action/index.js +0 -1
- package/dist/es2019/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/boolean-prompt/main.js +8 -12
- package/dist/es2019/view/LinkUrl/Hyperlink/index.js +0 -1
- package/dist/es2019/view/LinkUrl/index.js +1 -3
- package/dist/esm/state/actions/index.js +1 -4
- package/dist/esm/state/hooks/use-resolve/index.js +3 -13
- package/dist/esm/state/hooks/use-response/index.js +0 -2
- package/dist/esm/utils/analytics/analytics.js +1 -1
- package/dist/esm/utils/analytics/click.js +0 -1
- package/dist/esm/view/FlexibleCard/components/actions/action/index.js +0 -1
- package/dist/esm/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/boolean-prompt/main.js +9 -13
- package/dist/esm/view/LinkUrl/Hyperlink/index.js +0 -1
- package/dist/esm/view/LinkUrl/index.js +1 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/smart-card
|
|
2
2
|
|
|
3
|
+
## 43.11.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`55920a92e882a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55920a92e882a) -
|
|
8
|
+
tsignores added for help-center local consumpton removed
|
|
9
|
+
|
|
3
10
|
## 43.11.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -58,10 +58,7 @@ var useSmartCardActions = exports.useSmartCardActions = function useSmartCardAct
|
|
|
58
58
|
resourceUrl = _args.length > 0 && _args[0] !== undefined ? _args[0] : url;
|
|
59
59
|
isReloading = _args.length > 1 && _args[1] !== undefined ? _args[1] : false;
|
|
60
60
|
isMetadataRequest = _args.length > 2 && _args[2] !== undefined ? _args[2] : false;
|
|
61
|
-
return _context.abrupt("return",
|
|
62
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
63
|
-
|
|
64
|
-
resolveUrl(resourceUrl, isReloading, isMetadataRequest, id));
|
|
61
|
+
return _context.abrupt("return", resolveUrl(resourceUrl, isReloading, isMetadataRequest, id));
|
|
65
62
|
case 4:
|
|
66
63
|
case "end":
|
|
67
64
|
return _context.stop();
|
|
@@ -49,22 +49,12 @@ var useResolve = function useResolve() {
|
|
|
49
49
|
_context.next = 9;
|
|
50
50
|
break;
|
|
51
51
|
}
|
|
52
|
-
return _context.abrupt("return", connections.client
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
return (
|
|
56
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
57
|
-
|
|
58
|
-
handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest)
|
|
59
|
-
);
|
|
60
|
-
})
|
|
61
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
62
|
-
.catch(function (error) {
|
|
52
|
+
return _context.abrupt("return", connections.client.fetchData(url, isReloading).then(function (response) {
|
|
53
|
+
return handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest);
|
|
54
|
+
}).catch(function (error) {
|
|
63
55
|
return handleResolvedLinkError(url, error, undefined, isMetadataRequest);
|
|
64
56
|
}));
|
|
65
57
|
case 9:
|
|
66
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
67
|
-
|
|
68
58
|
(0, _analytics.addMetadataToExperience)('smart-link-rendered', id, {
|
|
69
59
|
cached: true
|
|
70
60
|
});
|
|
@@ -122,8 +122,6 @@ var useResponse = function useResponse() {
|
|
|
122
122
|
* https://react-redux.js.org/api/batch
|
|
123
123
|
*/
|
|
124
124
|
(0, _reactDom.unstable_batchedUpdates)(function () {
|
|
125
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
126
|
-
|
|
127
125
|
handleResolvedLinkSuccess(resourceUrl, response, isReloading, isMetadataRequest);
|
|
128
126
|
});
|
|
129
127
|
}, [handleResolvedLinkError, handleResolvedLinkSuccess, hasAuthFlowSupported]);
|
|
@@ -11,7 +11,7 @@ var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = 'media';
|
|
|
11
11
|
var context = exports.context = {
|
|
12
12
|
componentName: 'smart-cards',
|
|
13
13
|
packageName: "@atlaskit/smart-card",
|
|
14
|
-
packageVersion: "
|
|
14
|
+
packageVersion: "0.0.0-development"
|
|
15
15
|
};
|
|
16
16
|
var TrackQuickActionType = exports.TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
17
17
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -142,7 +142,6 @@ var getDisplayName = function getDisplayName(WrappedComponent) {
|
|
|
142
142
|
if (typeof WrappedComponent === 'string') {
|
|
143
143
|
return WrappedComponent;
|
|
144
144
|
}
|
|
145
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
146
145
|
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
|
147
146
|
};
|
|
148
147
|
function withLinkClickedEvent(WrappedComponent) {
|
|
@@ -103,7 +103,6 @@ var Action = function Action(_ref) {
|
|
|
103
103
|
href: href,
|
|
104
104
|
ariaLabel: ariaLabel
|
|
105
105
|
});
|
|
106
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
107
106
|
return Wrapper !== undefined ? /*#__PURE__*/_react.default.createElement(Wrapper, null, button) : button;
|
|
108
107
|
};
|
|
109
108
|
var _default = exports.default = Action;
|
|
@@ -15,18 +15,14 @@ var BooleanInputPrompt = function BooleanInputPrompt(_ref) {
|
|
|
15
15
|
var variableName = userInputPrompt.variableName,
|
|
16
16
|
displayName = userInputPrompt.displayName,
|
|
17
17
|
defaultValue = userInputPrompt.defaultValue;
|
|
18
|
-
return (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
label: displayName
|
|
28
|
-
}));
|
|
29
|
-
})
|
|
30
|
-
);
|
|
18
|
+
return /*#__PURE__*/_react.default.createElement(_form.CheckboxField, {
|
|
19
|
+
name: variableName,
|
|
20
|
+
defaultIsChecked: defaultValue || false
|
|
21
|
+
}, function (_ref2) {
|
|
22
|
+
var fieldProps = _ref2.fieldProps;
|
|
23
|
+
return /*#__PURE__*/_react.default.createElement(_checkbox.default, (0, _extends2.default)({}, fieldProps, {
|
|
24
|
+
label: displayName
|
|
25
|
+
}));
|
|
26
|
+
});
|
|
31
27
|
};
|
|
32
28
|
var _default = exports.default = BooleanInputPrompt;
|
|
@@ -11,7 +11,6 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
11
|
var _link = _interopRequireDefault(require("@atlaskit/link"));
|
|
12
12
|
var _click = require("../../../utils/analytics/click");
|
|
13
13
|
var _excluded = ["href", "children", "testId", "isLinkComponent"];
|
|
14
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
15
14
|
var Anchor = (0, _click.withLinkClickedEvent)('a');
|
|
16
15
|
var LinkComponent = exports.LinkComponent = (0, _click.withLinkClickedEvent)(_link.default);
|
|
17
16
|
var Hyperlink = function Hyperlink(_ref) {
|
|
@@ -22,11 +22,9 @@ var _excluded = ["href", "children", "checkSafety", "onClick", "testId", "isLink
|
|
|
22
22
|
_excluded2 = ["isLinkSafe", "showSafetyWarningModal"];
|
|
23
23
|
var PACKAGE_DATA = {
|
|
24
24
|
packageName: "@atlaskit/smart-card",
|
|
25
|
-
packageVersion: "
|
|
25
|
+
packageVersion: "0.0.0-development",
|
|
26
26
|
componentName: 'linkUrl'
|
|
27
27
|
};
|
|
28
|
-
|
|
29
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
30
28
|
var Anchor = (0, _click.withLinkClickedEvent)('a');
|
|
31
29
|
var LinkComponent = exports.LinkComponent = (0, _click.withLinkClickedEvent)(_link.default);
|
|
32
30
|
var LinkUrl = function LinkUrl(_ref) {
|
|
@@ -43,10 +43,7 @@ export const useSmartCardActions = (id, url) => {
|
|
|
43
43
|
url
|
|
44
44
|
}, undefined, undefined, metadataStatus));
|
|
45
45
|
}, [dispatch, url]);
|
|
46
|
-
const resolve = useCallback(async (resourceUrl = url, isReloading = false, isMetadataRequest = false) =>
|
|
47
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
48
|
-
|
|
49
|
-
resolveUrl(resourceUrl, isReloading, isMetadataRequest, id), [id, resolveUrl, url]);
|
|
46
|
+
const resolve = useCallback(async (resourceUrl = url, isReloading = false, isMetadataRequest = false) => resolveUrl(resourceUrl, isReloading, isMetadataRequest, id), [id, resolveUrl, url]);
|
|
50
47
|
const register = useCallback(() => {
|
|
51
48
|
const {
|
|
52
49
|
details
|
|
@@ -29,17 +29,8 @@ const useResolve = () => {
|
|
|
29
29
|
};
|
|
30
30
|
const hasData = !!(details && details.data || isEntityPresent(details));
|
|
31
31
|
if (isReloading || !hasData || isMetadataRequest) {
|
|
32
|
-
return connections.client
|
|
33
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
34
|
-
.fetchData(url, isReloading).then(response =>
|
|
35
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
36
|
-
|
|
37
|
-
handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest))
|
|
38
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
39
|
-
.catch(error => handleResolvedLinkError(url, error, undefined, isMetadataRequest));
|
|
32
|
+
return connections.client.fetchData(url, isReloading).then(response => handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest)).catch(error => handleResolvedLinkError(url, error, undefined, isMetadataRequest));
|
|
40
33
|
} else {
|
|
41
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
42
|
-
|
|
43
34
|
addMetadataToExperience('smart-link-rendered', id, {
|
|
44
35
|
cached: true
|
|
45
36
|
});
|
|
@@ -118,8 +118,6 @@ const useResponse = () => {
|
|
|
118
118
|
* https://react-redux.js.org/api/batch
|
|
119
119
|
*/
|
|
120
120
|
unstable_batchedUpdates(() => {
|
|
121
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
122
|
-
|
|
123
121
|
handleResolvedLinkSuccess(resourceUrl, response, isReloading, isMetadataRequest);
|
|
124
122
|
});
|
|
125
123
|
}, [handleResolvedLinkError, handleResolvedLinkSuccess, hasAuthFlowSupported]);
|
|
@@ -2,7 +2,7 @@ export const ANALYTICS_CHANNEL = 'media';
|
|
|
2
2
|
export const context = {
|
|
3
3
|
componentName: 'smart-cards',
|
|
4
4
|
packageName: "@atlaskit/smart-card",
|
|
5
|
-
packageVersion: "
|
|
5
|
+
packageVersion: "0.0.0-development"
|
|
6
6
|
};
|
|
7
7
|
export let TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
8
8
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -134,7 +134,6 @@ const getDisplayName = WrappedComponent => {
|
|
|
134
134
|
if (typeof WrappedComponent === 'string') {
|
|
135
135
|
return WrappedComponent;
|
|
136
136
|
}
|
|
137
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
138
137
|
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
|
139
138
|
};
|
|
140
139
|
export function withLinkClickedEvent(WrappedComponent) {
|
|
@@ -11,17 +11,13 @@ const BooleanInputPrompt = ({
|
|
|
11
11
|
displayName,
|
|
12
12
|
defaultValue
|
|
13
13
|
} = userInputPrompt;
|
|
14
|
-
return (
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}) => /*#__PURE__*/React.createElement(Checkbox, _extends({}, fieldProps, {
|
|
23
|
-
label: displayName
|
|
24
|
-
})))
|
|
25
|
-
);
|
|
14
|
+
return /*#__PURE__*/React.createElement(CheckboxField, {
|
|
15
|
+
name: variableName,
|
|
16
|
+
defaultIsChecked: defaultValue || false
|
|
17
|
+
}, ({
|
|
18
|
+
fieldProps
|
|
19
|
+
}) => /*#__PURE__*/React.createElement(Checkbox, _extends({}, fieldProps, {
|
|
20
|
+
label: displayName
|
|
21
|
+
})));
|
|
26
22
|
};
|
|
27
23
|
export default BooleanInputPrompt;
|
|
@@ -2,7 +2,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import AKLink from '@atlaskit/link';
|
|
4
4
|
import { withLinkClickedEvent } from '../../../utils/analytics/click';
|
|
5
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
6
5
|
const Anchor = withLinkClickedEvent('a');
|
|
7
6
|
export const LinkComponent = withLinkClickedEvent(AKLink);
|
|
8
7
|
const Hyperlink = ({
|
|
@@ -12,11 +12,9 @@ import LinkWarningModal from './LinkWarningModal';
|
|
|
12
12
|
import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
|
|
13
13
|
const PACKAGE_DATA = {
|
|
14
14
|
packageName: "@atlaskit/smart-card",
|
|
15
|
-
packageVersion: "
|
|
15
|
+
packageVersion: "0.0.0-development",
|
|
16
16
|
componentName: 'linkUrl'
|
|
17
17
|
};
|
|
18
|
-
|
|
19
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
20
18
|
const Anchor = withLinkClickedEvent('a');
|
|
21
19
|
export const LinkComponent = withLinkClickedEvent(AKLink);
|
|
22
20
|
const LinkUrl = ({
|
|
@@ -51,10 +51,7 @@ export var useSmartCardActions = function useSmartCardActions(id, url) {
|
|
|
51
51
|
resourceUrl = _args.length > 0 && _args[0] !== undefined ? _args[0] : url;
|
|
52
52
|
isReloading = _args.length > 1 && _args[1] !== undefined ? _args[1] : false;
|
|
53
53
|
isMetadataRequest = _args.length > 2 && _args[2] !== undefined ? _args[2] : false;
|
|
54
|
-
return _context.abrupt("return",
|
|
55
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
56
|
-
|
|
57
|
-
resolveUrl(resourceUrl, isReloading, isMetadataRequest, id));
|
|
54
|
+
return _context.abrupt("return", resolveUrl(resourceUrl, isReloading, isMetadataRequest, id));
|
|
58
55
|
case 4:
|
|
59
56
|
case "end":
|
|
60
57
|
return _context.stop();
|
|
@@ -42,22 +42,12 @@ var useResolve = function useResolve() {
|
|
|
42
42
|
_context.next = 9;
|
|
43
43
|
break;
|
|
44
44
|
}
|
|
45
|
-
return _context.abrupt("return", connections.client
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
return (
|
|
49
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
50
|
-
|
|
51
|
-
handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest)
|
|
52
|
-
);
|
|
53
|
-
})
|
|
54
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
55
|
-
.catch(function (error) {
|
|
45
|
+
return _context.abrupt("return", connections.client.fetchData(url, isReloading).then(function (response) {
|
|
46
|
+
return handleResolvedLinkResponse(url, response, isReloading, isMetadataRequest);
|
|
47
|
+
}).catch(function (error) {
|
|
56
48
|
return handleResolvedLinkError(url, error, undefined, isMetadataRequest);
|
|
57
49
|
}));
|
|
58
50
|
case 9:
|
|
59
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
60
|
-
|
|
61
51
|
addMetadataToExperience('smart-link-rendered', id, {
|
|
62
52
|
cached: true
|
|
63
53
|
});
|
|
@@ -116,8 +116,6 @@ var useResponse = function useResponse() {
|
|
|
116
116
|
* https://react-redux.js.org/api/batch
|
|
117
117
|
*/
|
|
118
118
|
unstable_batchedUpdates(function () {
|
|
119
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
120
|
-
|
|
121
119
|
handleResolvedLinkSuccess(resourceUrl, response, isReloading, isMetadataRequest);
|
|
122
120
|
});
|
|
123
121
|
}, [handleResolvedLinkError, handleResolvedLinkSuccess, hasAuthFlowSupported]);
|
|
@@ -4,7 +4,7 @@ export var ANALYTICS_CHANNEL = 'media';
|
|
|
4
4
|
export var context = {
|
|
5
5
|
componentName: 'smart-cards',
|
|
6
6
|
packageName: "@atlaskit/smart-card",
|
|
7
|
-
packageVersion: "
|
|
7
|
+
packageVersion: "0.0.0-development"
|
|
8
8
|
};
|
|
9
9
|
export var TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
10
10
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -133,7 +133,6 @@ var getDisplayName = function getDisplayName(WrappedComponent) {
|
|
|
133
133
|
if (typeof WrappedComponent === 'string') {
|
|
134
134
|
return WrappedComponent;
|
|
135
135
|
}
|
|
136
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
137
136
|
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
|
138
137
|
};
|
|
139
138
|
export function withLinkClickedEvent(WrappedComponent) {
|
|
@@ -96,7 +96,6 @@ var Action = function Action(_ref) {
|
|
|
96
96
|
href: href,
|
|
97
97
|
ariaLabel: ariaLabel
|
|
98
98
|
});
|
|
99
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
100
99
|
return Wrapper !== undefined ? /*#__PURE__*/React.createElement(Wrapper, null, button) : button;
|
|
101
100
|
};
|
|
102
101
|
export default Action;
|
|
@@ -8,18 +8,14 @@ var BooleanInputPrompt = function BooleanInputPrompt(_ref) {
|
|
|
8
8
|
var variableName = userInputPrompt.variableName,
|
|
9
9
|
displayName = userInputPrompt.displayName,
|
|
10
10
|
defaultValue = userInputPrompt.defaultValue;
|
|
11
|
-
return (
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
label: displayName
|
|
21
|
-
}));
|
|
22
|
-
})
|
|
23
|
-
);
|
|
11
|
+
return /*#__PURE__*/React.createElement(CheckboxField, {
|
|
12
|
+
name: variableName,
|
|
13
|
+
defaultIsChecked: defaultValue || false
|
|
14
|
+
}, function (_ref2) {
|
|
15
|
+
var fieldProps = _ref2.fieldProps;
|
|
16
|
+
return /*#__PURE__*/React.createElement(Checkbox, _extends({}, fieldProps, {
|
|
17
|
+
label: displayName
|
|
18
|
+
}));
|
|
19
|
+
});
|
|
24
20
|
};
|
|
25
21
|
export default BooleanInputPrompt;
|
|
@@ -4,7 +4,6 @@ var _excluded = ["href", "children", "testId", "isLinkComponent"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import AKLink from '@atlaskit/link';
|
|
6
6
|
import { withLinkClickedEvent } from '../../../utils/analytics/click';
|
|
7
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
8
7
|
var Anchor = withLinkClickedEvent('a');
|
|
9
8
|
export var LinkComponent = withLinkClickedEvent(AKLink);
|
|
10
9
|
var Hyperlink = function Hyperlink(_ref) {
|
|
@@ -15,11 +15,9 @@ import LinkWarningModal from './LinkWarningModal';
|
|
|
15
15
|
import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
|
|
16
16
|
var PACKAGE_DATA = {
|
|
17
17
|
packageName: "@atlaskit/smart-card",
|
|
18
|
-
packageVersion: "
|
|
18
|
+
packageVersion: "0.0.0-development",
|
|
19
19
|
componentName: 'linkUrl'
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
23
21
|
var Anchor = withLinkClickedEvent('a');
|
|
24
22
|
export var LinkComponent = withLinkClickedEvent(AKLink);
|
|
25
23
|
var LinkUrl = function LinkUrl(_ref) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "43.11.
|
|
3
|
+
"version": "43.11.3",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@atlaskit/link-client-extension": "^6.0.0",
|
|
55
55
|
"@atlaskit/link-extractors": "^2.4.0",
|
|
56
56
|
"@atlaskit/link-test-helpers": "^8.5.0",
|
|
57
|
-
"@atlaskit/linking-common": "^9.
|
|
57
|
+
"@atlaskit/linking-common": "^9.9.0",
|
|
58
58
|
"@atlaskit/linking-types": "^14.2.0",
|
|
59
59
|
"@atlaskit/logo": "^19.9.0",
|
|
60
60
|
"@atlaskit/lozenge": "^13.1.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@atlaskit/textarea": "^8.1.0",
|
|
71
71
|
"@atlaskit/textfield": "^8.1.0",
|
|
72
72
|
"@atlaskit/theme": "^21.0.0",
|
|
73
|
-
"@atlaskit/tmp-editor-statsig": "^14.
|
|
73
|
+
"@atlaskit/tmp-editor-statsig": "^14.2.0",
|
|
74
74
|
"@atlaskit/tokens": "^8.4.0",
|
|
75
75
|
"@atlaskit/tooltip": "^20.10.0",
|
|
76
76
|
"@atlaskit/ufo": "^0.4.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"@atlaskit/ssr": "workspace:^",
|
|
105
105
|
"@atlassian/analytics-tooling": "workspace:^",
|
|
106
106
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
107
|
-
"@atlassian/gemini": "^1.
|
|
107
|
+
"@atlassian/gemini": "^1.23.0",
|
|
108
108
|
"@testing-library/dom": "^10.1.0",
|
|
109
109
|
"@testing-library/jest-dom": "^6.4.5",
|
|
110
110
|
"@testing-library/react": "^13.4.0",
|