@atlaskit/smart-card 23.11.3 → 23.12.0
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 +10 -0
- package/dist/cjs/state/analytics/useSmartLinkAnalytics.js +216 -146
- package/dist/cjs/utils/analytics/analytics.js +134 -74
- package/dist/cjs/utils/analytics/index.js +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/view/CardWithUrl/component.js +27 -1
- package/dist/cjs/view/EmbedCard/components/Frame.js +110 -5
- package/dist/cjs/view/EmbedCard/components/IframeDwellTracker.js +75 -0
- package/dist/cjs/view/EmbedCard/index.js +6 -2
- package/dist/cjs/view/EmbedCard/views/ResolvedView.js +6 -2
- package/dist/es2019/state/analytics/useSmartLinkAnalytics.js +69 -1
- package/dist/es2019/utils/analytics/analytics.js +52 -0
- package/dist/es2019/utils/analytics/index.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/view/CardWithUrl/component.js +27 -1
- package/dist/es2019/view/EmbedCard/components/Frame.js +91 -6
- package/dist/es2019/view/EmbedCard/components/IframeDwellTracker.js +57 -0
- package/dist/es2019/view/EmbedCard/index.js +6 -2
- package/dist/es2019/view/EmbedCard/views/ResolvedView.js +6 -2
- package/dist/esm/state/analytics/useSmartLinkAnalytics.js +217 -147
- package/dist/esm/utils/analytics/analytics.js +127 -73
- package/dist/esm/utils/analytics/index.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/esm/view/CardWithUrl/component.js +27 -1
- package/dist/esm/view/EmbedCard/components/Frame.js +110 -6
- package/dist/esm/view/EmbedCard/components/IframeDwellTracker.js +62 -0
- package/dist/esm/view/EmbedCard/index.js +6 -2
- package/dist/esm/view/EmbedCard/views/ResolvedView.js +6 -2
- package/dist/types/state/analytics/useSmartLinkAnalytics.d.ts +27 -1
- package/dist/types/state/flexible-ui-context/index.d.ts +4 -0
- package/dist/types/state/hooks/useSmartLink.d.ts +2 -0
- package/dist/types/utils/analytics/analytics.d.ts +3 -1
- package/dist/types/utils/analytics/index.d.ts +1 -1
- package/dist/types/utils/analytics/types.d.ts +12 -0
- package/dist/types/utils/mocks.d.ts +2 -0
- package/dist/types/utils/types.d.ts +2 -2
- package/dist/types/view/EmbedCard/components/Frame.d.ts +2 -0
- package/dist/types/view/EmbedCard/components/IframeDwellTracker.d.ts +8 -0
- package/dist/types/view/EmbedCard/types.d.ts +2 -0
- package/dist/types/view/EmbedCard/views/ResolvedView.d.ts +4 -0
- package/package.json +2 -2
- package/report.api.md +42 -1
- package/tmp/api-report-tmp.d.ts +20 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
2
|
import { AnalyticsPayload } from '../types';
|
|
3
3
|
import { CardInnerAppearance } from '../../view/Card/types';
|
|
4
|
-
import { CommonEventProps, ConnectFailedEventProps, ConnectSucceededEventProps, InvokeFailedEventProps, InvokeSucceededEventProps, ResolvedEventProps, ScreenAuthPopupEventProps, TrackAppAccountConnectedProps, UiActionClickedEventProps, UiAuthAlternateAccountEventProps, UiAuthEventProps, UiCardClickedEventProps, UiClosedAuthEventProps, UiHoverCardDismissedEventProps, UiHoverCardOpenLinkClickedEventProps, UiHoverCardViewedEventProps, UiRenderFailedEventProps, UiRenderSuccessEventProps, UnresolvedEventProps } from './types';
|
|
4
|
+
import { CommonEventProps, ConnectFailedEventProps, ConnectSucceededEventProps, InvokeFailedEventProps, InvokeSucceededEventProps, ResolvedEventProps, ScreenAuthPopupEventProps, TrackAppAccountConnectedProps, UiActionClickedEventProps, UiAuthAlternateAccountEventProps, UiAuthEventProps, UiCardClickedEventProps, UiClosedAuthEventProps, UiHoverCardDismissedEventProps, UiHoverCardOpenLinkClickedEventProps, UiHoverCardViewedEventProps, UiIframeDwelledEventProps, UiIframeFocusedEventProps, UiRenderFailedEventProps, UiRenderSuccessEventProps, UnresolvedEventProps } from './types';
|
|
5
5
|
export declare const ANALYTICS_CHANNEL = "media";
|
|
6
6
|
export declare const context: {
|
|
7
7
|
componentName: string;
|
|
@@ -26,6 +26,8 @@ export declare const trackLinkUpdated: ({ actionSubjectId, ...attributes }: Comm
|
|
|
26
26
|
export declare const uiAuthEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, display, }: UiAuthEventProps) => AnalyticsPayload;
|
|
27
27
|
export declare const uiAuthAlternateAccountEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, display, }: UiAuthAlternateAccountEventProps) => AnalyticsPayload;
|
|
28
28
|
export declare const uiCardClickedEvent: ({ id, display, status, definitionId, extensionKey, isModifierKeyPressed, location, destinationProduct, destinationSubproduct, actionSubjectId, }: UiCardClickedEventProps) => AnalyticsPayload;
|
|
29
|
+
export declare const uiIframeDwelledEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, dwellTime, dwellPercentVisible, }: UiIframeDwelledEventProps) => AnalyticsPayload;
|
|
30
|
+
export declare const uiIframeFocusedEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, }: UiIframeFocusedEventProps) => AnalyticsPayload;
|
|
29
31
|
export declare const uiActionClickedEvent: ({ id, actionType, extensionKey, display, definitionId, destinationProduct, destinationSubproduct, location, }: UiActionClickedEventProps) => AnalyticsPayload;
|
|
30
32
|
export declare const uiClosedAuthEvent: ({ display, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: UiClosedAuthEventProps) => AnalyticsPayload;
|
|
31
33
|
export declare const screenAuthPopupEvent: ({ extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: ScreenAuthPopupEventProps) => AnalyticsPayload;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AnalyticsPayload } from '../types';
|
|
2
2
|
import { InstrumentEventProps } from './types';
|
|
3
|
-
export { ANALYTICS_CHANNEL, context, fireSmartLinkEvent, resolvedEvent, unresolvedEvent, invokeSucceededEvent, invokeFailedEvent, chunkloadFailedEvent, connectSucceededEvent, connectFailedEvent, trackAppAccountAuthStarted, trackAppAccountConnected, uiAuthEvent, uiAuthAlternateAccountEvent, uiCardClickedEvent, uiActionClickedEvent, uiClosedAuthEvent, screenAuthPopupEvent, uiRenderSuccessEvent, uiRenderFailedEvent, uiHoverCardViewedEvent, uiHoverCardDismissedEvent, uiHoverCardOpenLinkClickedEvent, uiLearnMoreLinkClickedEvent, } from './analytics';
|
|
3
|
+
export { ANALYTICS_CHANNEL, context, fireSmartLinkEvent, resolvedEvent, unresolvedEvent, invokeSucceededEvent, invokeFailedEvent, chunkloadFailedEvent, connectSucceededEvent, connectFailedEvent, trackAppAccountAuthStarted, trackAppAccountConnected, uiAuthEvent, uiAuthAlternateAccountEvent, uiCardClickedEvent, uiActionClickedEvent, uiClosedAuthEvent, screenAuthPopupEvent, uiRenderSuccessEvent, uiRenderFailedEvent, uiHoverCardViewedEvent, uiHoverCardDismissedEvent, uiHoverCardOpenLinkClickedEvent, uiLearnMoreLinkClickedEvent, uiIframeDwelledEvent, } from './analytics';
|
|
4
4
|
export declare const instrumentEvent: ({ id, status, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, error, }: InstrumentEventProps) => AnalyticsPayload | undefined;
|
|
@@ -54,6 +54,18 @@ export declare type UiCardClickedEventProps = CommonEventProps & {
|
|
|
54
54
|
isModifierKeyPressed?: boolean;
|
|
55
55
|
actionSubjectId?: string;
|
|
56
56
|
};
|
|
57
|
+
export declare type UiIframeDwelledEventProps = CommonEventProps & {
|
|
58
|
+
id: string;
|
|
59
|
+
display: CardInnerAppearance;
|
|
60
|
+
status: CardType;
|
|
61
|
+
dwellTime: number;
|
|
62
|
+
dwellPercentVisible: number;
|
|
63
|
+
};
|
|
64
|
+
export declare type UiIframeFocusedEventProps = CommonEventProps & {
|
|
65
|
+
id: string;
|
|
66
|
+
display: CardInnerAppearance;
|
|
67
|
+
status: CardType;
|
|
68
|
+
};
|
|
57
69
|
export declare type UiActionClickedEventProps = CommonEventProps & {
|
|
58
70
|
id: string;
|
|
59
71
|
display: CardInnerAppearance;
|
|
@@ -47,6 +47,8 @@ export declare const mockAnalytics: {
|
|
|
47
47
|
actionSubjectId: string;
|
|
48
48
|
}) => void;
|
|
49
49
|
cardClickedEvent: ({ id, display, status, definitionId, extensionKey, isModifierKeyPressed, location, destinationProduct, destinationSubproduct, actionSubjectId, }: import("./analytics/types").UiCardClickedEventProps) => void;
|
|
50
|
+
iframeDwelledEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, dwellTime, dwellPercentVisible, }: import("./analytics/types").UiIframeDwelledEventProps) => void;
|
|
51
|
+
iframeFocusedEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, }: import("./analytics/types").UiIframeFocusedEventProps) => void;
|
|
50
52
|
actionClickedEvent: ({ id, actionType, display, invokeType, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").UiActionClickedEventProps) => void;
|
|
51
53
|
hoverCardOpenLinkClickedEvent: ({ previewDisplay, definitionId, extensionKey, destinationProduct, destinationSubproduct, location, previewInvokeMethod, }: import("./analytics/types").UiHoverCardOpenLinkClickedEventProps) => void;
|
|
52
54
|
closedAuthEvent: ({ display, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").UiClosedAuthEventProps) => void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GasPayload } from '@atlaskit/analytics-gas-types';
|
|
2
2
|
import { CardInnerAppearance } from '../view/Card/types';
|
|
3
|
-
export declare type AnalyticsAction = 'authStarted' | 'clicked' | 'closed' | 'connected' | 'connectFailed' | 'connectSucceeded' | 'created' | 'dismissed' | 'inserted' | 'renderFailed' | 'renderSuccess' | 'renderWithStatus' | 'resolved' | 'viewed' | 'unresolved' | 'updated' | 'chunkLoadFailed';
|
|
4
|
-
export declare type AnalyticsActionSubject = 'smartLink' | 'smartLinkAction' | 'applicationAccount' | 'button' | 'consentModal' | 'hoverCard' | 'modal' | 'embedPreviewModal' | 'link';
|
|
3
|
+
export declare type AnalyticsAction = 'authStarted' | 'clicked' | 'closed' | 'connected' | 'connectFailed' | 'connectSucceeded' | 'created' | 'dismissed' | 'inserted' | 'renderFailed' | 'renderSuccess' | 'renderWithStatus' | 'resolved' | 'viewed' | 'unresolved' | 'updated' | 'chunkLoadFailed' | 'dwelled' | 'focused';
|
|
4
|
+
export declare type AnalyticsActionSubject = 'smartLink' | 'smartLinkAction' | 'applicationAccount' | 'button' | 'consentModal' | 'hoverCard' | 'modal' | 'embedPreviewModal' | 'smartLinkIframe' | 'link';
|
|
5
5
|
export declare type AnalyticsName = 'embedPreviewModal';
|
|
6
6
|
export declare type AnalyticsOrigin = 'smartLinkCard' | 'smartLinkEmbed' | 'smartLinkInline' | 'smartLinkPreviewHoverCard';
|
|
7
7
|
export declare type AnalyticsPayload = GasPayload & {
|
|
@@ -3,5 +3,7 @@ export interface FrameProps {
|
|
|
3
3
|
url?: string;
|
|
4
4
|
isTrusted?: boolean;
|
|
5
5
|
testId?: string;
|
|
6
|
+
onIframeDwell?: (dwellTime: number, dwellPercentVisible: number) => void;
|
|
7
|
+
onIframeFocus?: () => void;
|
|
6
8
|
}
|
|
7
9
|
export declare const Frame: React.ForwardRefExoticComponent<FrameProps & React.RefAttributes<HTMLIFrameElement>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface IframeDwellTrackerProps {
|
|
2
|
+
isIframeLoaded: boolean;
|
|
3
|
+
isMouseOver: boolean;
|
|
4
|
+
isWindowFocused: boolean;
|
|
5
|
+
iframePercentVisible: number;
|
|
6
|
+
onIframeDwell?: (dwellTime: number, dwellPercentVisible: number) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const IframeDwellTracker: ({ isIframeLoaded, isMouseOver, isWindowFocused, iframePercentVisible, onIframeDwell, }: IframeDwellTrackerProps) => null;
|
|
@@ -23,6 +23,8 @@ export declare type EmbedCardProps = {
|
|
|
23
23
|
testId?: string;
|
|
24
24
|
inheritDimensions?: boolean;
|
|
25
25
|
showActions?: boolean;
|
|
26
|
+
onIframeDwell?: (dwellTime: number, dwellPercentVisible: number) => void;
|
|
27
|
+
onIframeFocus?: () => void;
|
|
26
28
|
};
|
|
27
29
|
export interface WithShowControlMethodProp {
|
|
28
30
|
showControls?: () => void;
|
|
@@ -23,5 +23,9 @@ export interface EmbedCardResolvedViewProps {
|
|
|
23
23
|
/** For testing purposes only. */
|
|
24
24
|
testId?: string;
|
|
25
25
|
inheritDimensions?: boolean;
|
|
26
|
+
/** Optional callback for when user dwells cursor over iframe - for analytics **/
|
|
27
|
+
onIframeDwell?: (dwellTime: number, dwellPercentVisible: number) => void;
|
|
28
|
+
/** Optional callback for when user navigates into an iframe - for analytics **/
|
|
29
|
+
onIframeFocus?: () => void;
|
|
26
30
|
}
|
|
27
31
|
export declare const EmbedCardResolvedView: React.ForwardRefExoticComponent<EmbedCardResolvedViewProps & React.RefAttributes<HTMLIFrameElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.12.0",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@atlaskit/icon-object": "^6.2.0",
|
|
34
34
|
"@atlaskit/icon-priority": "^6.3.0",
|
|
35
35
|
"@atlaskit/in-product-testing": "^0.1.0",
|
|
36
|
-
"@atlaskit/linking-common": "^1.
|
|
36
|
+
"@atlaskit/linking-common": "^1.19.0",
|
|
37
37
|
"@atlaskit/logo": "^13.10.0",
|
|
38
38
|
"@atlaskit/lozenge": "^11.3.0",
|
|
39
39
|
"@atlaskit/media-common": "^2.18.0",
|
package/report.api.md
CHANGED
|
@@ -94,6 +94,8 @@ export type AnalyticsAction =
|
|
|
94
94
|
| 'connected'
|
|
95
95
|
| 'created'
|
|
96
96
|
| 'dismissed'
|
|
97
|
+
| 'dwelled'
|
|
98
|
+
| 'focused'
|
|
97
99
|
| 'inserted'
|
|
98
100
|
| 'renderFailed'
|
|
99
101
|
| 'renderSuccess'
|
|
@@ -113,7 +115,8 @@ export type AnalyticsActionSubject =
|
|
|
113
115
|
| 'link'
|
|
114
116
|
| 'modal'
|
|
115
117
|
| 'smartLink'
|
|
116
|
-
| 'smartLinkAction'
|
|
118
|
+
| 'smartLinkAction'
|
|
119
|
+
| 'smartLinkIframe';
|
|
117
120
|
|
|
118
121
|
// @public (undocumented)
|
|
119
122
|
type AnalyticsFacade = ReturnType<typeof useSmartLinkAnalytics>;
|
|
@@ -905,6 +908,22 @@ type UiHoverCardViewedEventProps = CommonEventProps & {
|
|
|
905
908
|
status: CardType;
|
|
906
909
|
};
|
|
907
910
|
|
|
911
|
+
// @public (undocumented)
|
|
912
|
+
type UiIframeDwelledEventProps = CommonEventProps & {
|
|
913
|
+
id: string;
|
|
914
|
+
display: CardInnerAppearance;
|
|
915
|
+
status: CardType;
|
|
916
|
+
dwellTime: number;
|
|
917
|
+
dwellPercentVisible: number;
|
|
918
|
+
};
|
|
919
|
+
|
|
920
|
+
// @public (undocumented)
|
|
921
|
+
type UiIframeFocusedEventProps = CommonEventProps & {
|
|
922
|
+
id: string;
|
|
923
|
+
display: CardInnerAppearance;
|
|
924
|
+
status: CardType;
|
|
925
|
+
};
|
|
926
|
+
|
|
908
927
|
// @public (undocumented)
|
|
909
928
|
type UiRenderFailedEventProps = CommonEventProps & {
|
|
910
929
|
display: CardInnerAppearance;
|
|
@@ -961,6 +980,28 @@ export const useSmartLinkAnalytics: (
|
|
|
961
980
|
destinationSubproduct,
|
|
962
981
|
actionSubjectId,
|
|
963
982
|
}: UiCardClickedEventProps) => void;
|
|
983
|
+
iframeDwelledEvent: ({
|
|
984
|
+
id,
|
|
985
|
+
display,
|
|
986
|
+
status,
|
|
987
|
+
definitionId,
|
|
988
|
+
extensionKey,
|
|
989
|
+
location,
|
|
990
|
+
destinationProduct,
|
|
991
|
+
destinationSubproduct,
|
|
992
|
+
dwellTime,
|
|
993
|
+
dwellPercentVisible,
|
|
994
|
+
}: UiIframeDwelledEventProps) => void;
|
|
995
|
+
iframeFocusedEvent: ({
|
|
996
|
+
id,
|
|
997
|
+
display,
|
|
998
|
+
status,
|
|
999
|
+
definitionId,
|
|
1000
|
+
extensionKey,
|
|
1001
|
+
location,
|
|
1002
|
+
destinationProduct,
|
|
1003
|
+
destinationSubproduct,
|
|
1004
|
+
}: UiIframeFocusedEventProps) => void;
|
|
964
1005
|
actionClickedEvent: ({
|
|
965
1006
|
id,
|
|
966
1007
|
actionType,
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -70,10 +70,10 @@ type ActionProps = {
|
|
|
70
70
|
};
|
|
71
71
|
|
|
72
72
|
// @public (undocumented)
|
|
73
|
-
export type AnalyticsAction = 'authStarted' | 'chunkLoadFailed' | 'clicked' | 'closed' | 'connectFailed' | 'connectSucceeded' | 'connected' | 'created' | 'dismissed' | 'inserted' | 'renderFailed' | 'renderSuccess' | 'renderWithStatus' | 'resolved' | 'unresolved' | 'updated' | 'viewed';
|
|
73
|
+
export type AnalyticsAction = 'authStarted' | 'chunkLoadFailed' | 'clicked' | 'closed' | 'connectFailed' | 'connectSucceeded' | 'connected' | 'created' | 'dismissed' | 'dwelled' | 'focused' | 'inserted' | 'renderFailed' | 'renderSuccess' | 'renderWithStatus' | 'resolved' | 'unresolved' | 'updated' | 'viewed';
|
|
74
74
|
|
|
75
75
|
// @public (undocumented)
|
|
76
|
-
export type AnalyticsActionSubject = 'applicationAccount' | 'button' | 'consentModal' | 'embedPreviewModal' | 'hoverCard' | 'link' | 'modal' | 'smartLink' | 'smartLinkAction';
|
|
76
|
+
export type AnalyticsActionSubject = 'applicationAccount' | 'button' | 'consentModal' | 'embedPreviewModal' | 'hoverCard' | 'link' | 'modal' | 'smartLink' | 'smartLinkAction' | 'smartLinkIframe';
|
|
77
77
|
|
|
78
78
|
// @public (undocumented)
|
|
79
79
|
type AnalyticsFacade = ReturnType<typeof useSmartLinkAnalytics>;
|
|
@@ -775,6 +775,22 @@ type UiHoverCardViewedEventProps = CommonEventProps & {
|
|
|
775
775
|
status: CardType;
|
|
776
776
|
};
|
|
777
777
|
|
|
778
|
+
// @public (undocumented)
|
|
779
|
+
type UiIframeDwelledEventProps = CommonEventProps & {
|
|
780
|
+
id: string;
|
|
781
|
+
display: CardInnerAppearance;
|
|
782
|
+
status: CardType;
|
|
783
|
+
dwellTime: number;
|
|
784
|
+
dwellPercentVisible: number;
|
|
785
|
+
};
|
|
786
|
+
|
|
787
|
+
// @public (undocumented)
|
|
788
|
+
type UiIframeFocusedEventProps = CommonEventProps & {
|
|
789
|
+
id: string;
|
|
790
|
+
display: CardInnerAppearance;
|
|
791
|
+
status: CardType;
|
|
792
|
+
};
|
|
793
|
+
|
|
778
794
|
// @public (undocumented)
|
|
779
795
|
type UiRenderFailedEventProps = CommonEventProps & {
|
|
780
796
|
display: CardInnerAppearance;
|
|
@@ -797,6 +813,8 @@ export const useSmartLinkAnalytics: (url: string, dispatchAnalytics: AnalyticsHa
|
|
|
797
813
|
actionSubjectId: Required<string>;
|
|
798
814
|
}) => void;
|
|
799
815
|
cardClickedEvent: ({ id, display, status, definitionId, extensionKey, isModifierKeyPressed, location, destinationProduct, destinationSubproduct, actionSubjectId, }: UiCardClickedEventProps) => void;
|
|
816
|
+
iframeDwelledEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, dwellTime, dwellPercentVisible, }: UiIframeDwelledEventProps) => void;
|
|
817
|
+
iframeFocusedEvent: ({ id, display, status, definitionId, extensionKey, location, destinationProduct, destinationSubproduct, }: UiIframeFocusedEventProps) => void;
|
|
800
818
|
actionClickedEvent: ({ id, actionType, display, invokeType, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: UiActionClickedEventProps) => void;
|
|
801
819
|
hoverCardOpenLinkClickedEvent: ({ previewDisplay, definitionId, extensionKey, destinationProduct, destinationSubproduct, location, previewInvokeMethod, }: UiHoverCardOpenLinkClickedEventProps) => void;
|
|
802
820
|
closedAuthEvent: ({ display, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: UiClosedAuthEventProps) => void;
|