@atlaskit/smart-card 32.5.1 → 32.6.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 +18 -0
- package/analytics.spec.yaml +163 -0
- package/dist/cjs/state/actions/index.js +53 -49
- package/dist/cjs/state/analytics/useSmartLinkAnalytics.js +14 -128
- package/dist/cjs/utils/analytics/analytics.js +150 -234
- package/dist/cjs/utils/analytics/index.js +1 -89
- package/dist/cjs/view/CardWithUrl/component.js +37 -40
- package/dist/cjs/view/CardWithUrl/loader.js +7 -16
- package/dist/cjs/view/EmbedCard/index.js +19 -44
- package/dist/cjs/view/FlexibleCard/components/actions/action/server-action/index.js +12 -3
- package/dist/cjs/view/FlexibleCard/components/elements/lozenge/lozenge-action/index.js +11 -2
- package/dist/cjs/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +10 -2
- package/dist/cjs/view/HoverCard/components/HoverCardContent.js +64 -20
- package/dist/cjs/view/LinkUrl/index.js +1 -1
- package/dist/cjs/view/common/Metadata.js +1 -1
- package/dist/cjs/view/common/UnauthorisedViewContent.js +10 -2
- package/dist/es2019/state/actions/index.js +53 -49
- package/dist/es2019/state/analytics/useSmartLinkAnalytics.js +15 -136
- package/dist/es2019/utils/analytics/analytics.js +43 -133
- package/dist/es2019/utils/analytics/index.js +1 -61
- package/dist/es2019/view/CardWithUrl/component.js +37 -40
- package/dist/es2019/view/CardWithUrl/loader.js +7 -16
- package/dist/es2019/view/EmbedCard/index.js +20 -45
- package/dist/es2019/view/FlexibleCard/components/actions/action/server-action/index.js +12 -3
- package/dist/es2019/view/FlexibleCard/components/elements/lozenge/lozenge-action/index.js +11 -2
- package/dist/es2019/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +11 -2
- package/dist/es2019/view/HoverCard/components/HoverCardContent.js +63 -20
- package/dist/es2019/view/LinkUrl/index.js +1 -1
- package/dist/es2019/view/common/Metadata.js +1 -1
- package/dist/es2019/view/common/UnauthorisedViewContent.js +11 -2
- package/dist/esm/state/actions/index.js +53 -49
- package/dist/esm/state/analytics/useSmartLinkAnalytics.js +15 -129
- package/dist/esm/utils/analytics/analytics.js +149 -233
- package/dist/esm/utils/analytics/index.js +1 -59
- package/dist/esm/view/CardWithUrl/component.js +37 -40
- package/dist/esm/view/CardWithUrl/loader.js +7 -16
- package/dist/esm/view/EmbedCard/index.js +19 -44
- package/dist/esm/view/FlexibleCard/components/actions/action/server-action/index.js +12 -3
- package/dist/esm/view/FlexibleCard/components/elements/lozenge/lozenge-action/index.js +11 -2
- package/dist/esm/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +10 -2
- package/dist/esm/view/HoverCard/components/HoverCardContent.js +65 -21
- package/dist/esm/view/LinkUrl/index.js +1 -1
- package/dist/esm/view/common/Metadata.js +1 -1
- package/dist/esm/view/common/UnauthorisedViewContent.js +10 -2
- package/dist/types/common/analytics/generated/analytics.types.d.ts +83 -1
- package/dist/types/state/analytics/useSmartLinkAnalytics.d.ts +15 -38
- package/dist/types/state/hooks/useSmartLink.d.ts +0 -4
- package/dist/types/utils/analytics/analytics.d.ts +32 -16
- package/dist/types/utils/analytics/index.d.ts +1 -7
- package/dist/types/utils/analytics/types.d.ts +22 -22
- package/dist/types/utils/mocks.d.ts +0 -4
- package/dist/types-ts4.5/common/analytics/generated/analytics.types.d.ts +83 -1
- package/dist/types-ts4.5/state/analytics/useSmartLinkAnalytics.d.ts +15 -38
- package/dist/types-ts4.5/state/hooks/useSmartLink.d.ts +0 -4
- package/dist/types-ts4.5/utils/analytics/analytics.d.ts +32 -16
- package/dist/types-ts4.5/utils/analytics/index.d.ts +1 -7
- package/dist/types-ts4.5/utils/analytics/types.d.ts +22 -22
- package/dist/types-ts4.5/utils/mocks.d.ts +0 -4
- package/package.json +12 -15
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
2
2
|
import { type CardInnerAppearance } from '../../view/Card/types';
|
|
3
3
|
import { type AnalyticsPayload } from '../types';
|
|
4
|
-
import { type
|
|
4
|
+
import { type InvokeFailedEventProps, type InvokeSucceededEventProps, type UiActionClickedEventProps, type UiAuthAlternateAccountEventProps, type UiAuthEventProps, type UiCardClickedEventProps, type UiClosedAuthEventProps, type UiHoverCardDismissedEventProps, type UiHoverCardOpenLinkClickedEventProps, type UiHoverCardViewedEventProps, type UiRenderFailedEventProps, type UiRenderSuccessEventProps, type UiServerActionClickedEventProps } from './types';
|
|
5
5
|
export declare const ANALYTICS_CHANNEL = "media";
|
|
6
6
|
export declare const context: {
|
|
7
7
|
componentName: string;
|
|
@@ -22,40 +22,56 @@ export declare class SmartLinkEvents {
|
|
|
22
22
|
insertSmartLink(url: string, type: CardInnerAppearance, createAnalyticsEvent?: CreateUIAnalyticsEvent): void;
|
|
23
23
|
}
|
|
24
24
|
export declare const fireSmartLinkEvent: (payload: AnalyticsPayload, createAnalyticsEvent?: CreateUIAnalyticsEvent) => void;
|
|
25
|
-
/**
|
|
26
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
27
|
-
*/
|
|
28
|
-
export declare const resolvedEvent: (props: ResolvedEventProps) => AnalyticsPayload;
|
|
29
|
-
/**
|
|
30
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
31
|
-
*/
|
|
32
|
-
export declare const unresolvedEvent: ({ id, definitionId, extensionKey, resourceType, destinationSubproduct, destinationProduct, error, status, location, }: UnresolvedEventProps) => AnalyticsPayload;
|
|
33
25
|
export declare const invokeSucceededEvent: ({ id, actionType, display, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: InvokeSucceededEventProps) => AnalyticsPayload;
|
|
34
26
|
export declare const invokeFailedEvent: ({ id, actionType, display, reason, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: InvokeFailedEventProps) => AnalyticsPayload;
|
|
35
27
|
/**
|
|
36
|
-
* @deprecated
|
|
28
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
37
29
|
*/
|
|
38
|
-
export declare const
|
|
30
|
+
export declare const uiAuthEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, display, }: UiAuthEventProps) => AnalyticsPayload;
|
|
39
31
|
/**
|
|
40
|
-
* @deprecated
|
|
32
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
41
33
|
*/
|
|
42
|
-
export declare const connectFailedEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, reason, }: ConnectFailedEventProps) => AnalyticsPayload;
|
|
43
|
-
export declare const uiAuthEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, display, }: UiAuthEventProps) => AnalyticsPayload;
|
|
44
34
|
export declare const uiAuthAlternateAccountEvent: ({ definitionId, extensionKey, destinationProduct, destinationSubproduct, location, display, }: UiAuthAlternateAccountEventProps) => AnalyticsPayload;
|
|
35
|
+
/**
|
|
36
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
37
|
+
*/
|
|
45
38
|
export declare const uiCardClickedEvent: ({ id, display, status, definitionId, extensionKey, isModifierKeyPressed, location, destinationProduct, destinationSubproduct, actionSubjectId, }: UiCardClickedEventProps) => AnalyticsPayload;
|
|
46
39
|
export declare const uiActionClickedEvent: ({ id, actionType, extensionKey, display, definitionId, destinationProduct, destinationSubproduct, location, }: UiActionClickedEventProps) => AnalyticsPayload;
|
|
40
|
+
/**
|
|
41
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
42
|
+
*/
|
|
47
43
|
export declare const uiClosedAuthEvent: ({ display, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: UiClosedAuthEventProps) => AnalyticsPayload;
|
|
48
44
|
export declare const uiRenderSuccessEvent: ({ display, status, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, canBeDatasource, }: UiRenderSuccessEventProps) => AnalyticsPayload;
|
|
49
45
|
export declare const uiRenderFailedEvent: ({ display, error, errorInfo, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: UiRenderFailedEventProps) => AnalyticsPayload;
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
48
|
+
*/
|
|
50
49
|
export declare const uiHoverCardViewedEvent: ({ id, previewDisplay, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, previewInvokeMethod, status, }: UiHoverCardViewedEventProps) => AnalyticsPayload;
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
52
|
+
*/
|
|
51
53
|
export declare const uiHoverCardDismissedEvent: ({ id, previewDisplay, hoverTime, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, previewInvokeMethod, status, }: UiHoverCardDismissedEventProps) => AnalyticsPayload;
|
|
54
|
+
/**
|
|
55
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
56
|
+
*/
|
|
52
57
|
export declare const uiHoverCardOpenLinkClickedEvent: ({ id, previewDisplay, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, previewInvokeMethod, }: UiHoverCardOpenLinkClickedEventProps) => AnalyticsPayload;
|
|
58
|
+
/**
|
|
59
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
60
|
+
*/
|
|
53
61
|
export declare const uiLearnMoreLinkClickedEvent: () => AnalyticsPayload;
|
|
54
62
|
/**
|
|
55
|
-
* @deprecated
|
|
63
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
56
64
|
*/
|
|
57
|
-
export declare const chunkloadFailedEvent: ({ display, error, errorInfo, extensionKey, definitionId, destinationProduct, destinationSubproduct, location, }: UiRenderFailedEventProps) => AnalyticsPayload;
|
|
58
65
|
export declare const uiSmartLinkStatusLozengeButtonClicked: () => AnalyticsPayload;
|
|
66
|
+
/**
|
|
67
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
68
|
+
*/
|
|
59
69
|
export declare const uiSmartLinkStatusListItemButtonClicked: () => AnalyticsPayload;
|
|
70
|
+
/**
|
|
71
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
72
|
+
*/
|
|
60
73
|
export declare const uiSmartLinkStatusOpenPreviewButtonClicked: () => AnalyticsPayload;
|
|
74
|
+
/**
|
|
75
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
76
|
+
*/
|
|
61
77
|
export declare const uiServerActionClicked: ({ smartLinkActionType, }: UiServerActionClickedEventProps) => AnalyticsPayload;
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { type InstrumentEventProps } from './types';
|
|
3
|
-
export { ANALYTICS_CHANNEL, context, fireSmartLinkEvent, resolvedEvent, unresolvedEvent, invokeSucceededEvent, invokeFailedEvent, chunkloadFailedEvent, connectSucceededEvent, connectFailedEvent, uiAuthEvent, uiAuthAlternateAccountEvent, uiCardClickedEvent, uiActionClickedEvent, uiClosedAuthEvent, uiRenderSuccessEvent, uiRenderFailedEvent, uiHoverCardViewedEvent, uiHoverCardDismissedEvent, uiHoverCardOpenLinkClickedEvent, uiLearnMoreLinkClickedEvent, uiSmartLinkStatusLozengeButtonClicked, uiSmartLinkStatusListItemButtonClicked, uiSmartLinkStatusOpenPreviewButtonClicked, } from './analytics';
|
|
4
|
-
/**
|
|
5
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
6
|
-
*/
|
|
7
|
-
export declare const instrumentEvent: ({ id, status, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, error, }: InstrumentEventProps) => AnalyticsPayload | undefined;
|
|
1
|
+
export { ANALYTICS_CHANNEL, context, fireSmartLinkEvent, invokeSucceededEvent, invokeFailedEvent, uiAuthEvent, uiAuthAlternateAccountEvent, uiCardClickedEvent, uiActionClickedEvent, uiClosedAuthEvent, uiRenderSuccessEvent, uiRenderFailedEvent, uiHoverCardViewedEvent, uiHoverCardDismissedEvent, uiHoverCardOpenLinkClickedEvent, uiLearnMoreLinkClickedEvent, uiSmartLinkStatusLozengeButtonClicked, uiSmartLinkStatusListItemButtonClicked, uiSmartLinkStatusOpenPreviewButtonClicked, } from './analytics';
|
|
@@ -37,24 +37,20 @@ export type InvokeFailedEventProps = CommonEventProps & {
|
|
|
37
37
|
reason: string;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
|
-
* @deprecated
|
|
40
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
41
41
|
*/
|
|
42
|
-
export type ConnectSucceededEventProps = CommonEventProps & {
|
|
43
|
-
id?: string;
|
|
44
|
-
};
|
|
45
|
-
/**
|
|
46
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
47
|
-
*/
|
|
48
|
-
export type ConnectFailedEventProps = CommonEventProps & {
|
|
49
|
-
id?: string;
|
|
50
|
-
reason?: string;
|
|
51
|
-
};
|
|
52
42
|
export type UiAuthEventProps = CommonEventProps & {
|
|
53
43
|
display: CardInnerAppearance;
|
|
54
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
47
|
+
*/
|
|
55
48
|
export type UiAuthAlternateAccountEventProps = CommonEventProps & {
|
|
56
49
|
display: CardInnerAppearance;
|
|
57
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
53
|
+
*/
|
|
58
54
|
export type UiCardClickedEventProps = CommonEventProps & {
|
|
59
55
|
id: string;
|
|
60
56
|
display: CardInnerAppearance;
|
|
@@ -68,9 +64,15 @@ export type UiActionClickedEventProps = CommonEventProps & {
|
|
|
68
64
|
actionType: string;
|
|
69
65
|
invokeType?: InvokeType;
|
|
70
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
69
|
+
*/
|
|
71
70
|
export type UiServerActionClickedEventProps = CommonEventProps & {
|
|
72
71
|
smartLinkActionType: SmartLinkActionType;
|
|
73
72
|
};
|
|
73
|
+
/**
|
|
74
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
75
|
+
*/
|
|
74
76
|
export type UiClosedAuthEventProps = CommonEventProps & {
|
|
75
77
|
display: CardInnerAppearance;
|
|
76
78
|
};
|
|
@@ -79,37 +81,35 @@ export type UiRenderSuccessEventProps = CommonEventProps & {
|
|
|
79
81
|
status: CardType;
|
|
80
82
|
canBeDatasource?: boolean;
|
|
81
83
|
};
|
|
82
|
-
/**
|
|
83
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
84
|
-
*/
|
|
85
84
|
export type UiRenderFailedEventProps = CommonEventProps & {
|
|
86
85
|
display: CardInnerAppearance;
|
|
87
86
|
error: Error;
|
|
88
87
|
errorInfo: ErrorInfo;
|
|
89
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
91
|
+
*/
|
|
90
92
|
export type UiHoverCardViewedEventProps = CommonEventProps & {
|
|
91
93
|
previewDisplay: PreviewDisplay;
|
|
92
94
|
previewInvokeMethod?: PreviewInvokeMethod;
|
|
93
95
|
status: CardType;
|
|
94
96
|
};
|
|
97
|
+
/**
|
|
98
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
99
|
+
*/
|
|
95
100
|
export type UiHoverCardDismissedEventProps = CommonEventProps & {
|
|
96
101
|
previewDisplay: PreviewDisplay;
|
|
97
102
|
hoverTime: number;
|
|
98
103
|
previewInvokeMethod?: PreviewInvokeMethod;
|
|
99
104
|
status: CardType;
|
|
100
105
|
};
|
|
106
|
+
/**
|
|
107
|
+
* @deprecated consider removing when cleaning up FF platform_migrate-some-ui-events-smart-card
|
|
108
|
+
*/
|
|
101
109
|
export type UiHoverCardOpenLinkClickedEventProps = CommonEventProps & {
|
|
102
110
|
previewDisplay: PreviewDisplay;
|
|
103
111
|
previewInvokeMethod?: PreviewInvokeMethod;
|
|
104
112
|
};
|
|
105
|
-
/**
|
|
106
|
-
* @deprecated remove with platform_smart-card-migrate-operational-analytics clean up
|
|
107
|
-
*/
|
|
108
|
-
export type InstrumentEventProps = CommonEventProps & {
|
|
109
|
-
error?: APIError;
|
|
110
|
-
status: CardType;
|
|
111
|
-
id: string;
|
|
112
|
-
};
|
|
113
113
|
export type ClickType = 'left' | 'middle' | 'right' | 'keyboard' | 'none';
|
|
114
114
|
export type ClickOutcome = 'prevented' | 'clickThrough' | 'clickThroughNewTabOrWindow' | 'contextMenu' | 'alt' | 'contentEditable' | 'unknown';
|
|
115
115
|
export type UiLinkClickedEventProps = {
|
|
@@ -116,10 +116,6 @@ export declare const mockAnalytics: {
|
|
|
116
116
|
operational: {
|
|
117
117
|
invokeSucceededEvent: ({ id, actionType, display, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").InvokeSucceededEventProps) => void;
|
|
118
118
|
invokeFailedEvent: ({ id, actionType, display, reason, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").InvokeFailedEventProps) => void;
|
|
119
|
-
connectSucceededEvent: ({ id, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").ConnectSucceededEventProps) => void;
|
|
120
|
-
connectFailedEvent: ({ id, reason, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").ConnectFailedEventProps) => void;
|
|
121
|
-
instrument: ({ id, status, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, error, }: import("./analytics/types").InstrumentEventProps) => void;
|
|
122
|
-
chunkloadFailedEvent: ({ display, error, errorInfo, extensionKey, definitionId, resourceType, destinationProduct, destinationSubproduct, location, }: import("./analytics/types").UiRenderFailedEventProps) => void;
|
|
123
119
|
};
|
|
124
120
|
screen: {
|
|
125
121
|
modalViewedEvent: (data: Partial<import("./types").AnalyticsPayload> & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.6.0",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
29
29
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
30
30
|
"@atlaskit/avatar": "^21.17.0",
|
|
31
|
-
"@atlaskit/avatar-group": "^10.
|
|
31
|
+
"@atlaskit/avatar-group": "^10.1.0",
|
|
32
32
|
"@atlaskit/badge": "^16.4.0",
|
|
33
33
|
"@atlaskit/button": "^20.3.0",
|
|
34
34
|
"@atlaskit/checkbox": "^15.2.0",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"@atlaskit/form": "^10.6.0",
|
|
37
37
|
"@atlaskit/frontend-utilities": "^2.7.0",
|
|
38
38
|
"@atlaskit/heading": "^4.0.0",
|
|
39
|
-
"@atlaskit/icon": "^23.
|
|
39
|
+
"@atlaskit/icon": "^23.1.0",
|
|
40
40
|
"@atlaskit/icon-file-type": "^6.8.0",
|
|
41
41
|
"@atlaskit/icon-object": "^6.9.0",
|
|
42
42
|
"@atlaskit/icon-priority": "^6.3.0",
|
|
43
43
|
"@atlaskit/legacy-custom-icons": "^0.20.0",
|
|
44
44
|
"@atlaskit/link": "^1.2.1",
|
|
45
|
-
"@atlaskit/link-analytics": "^8.
|
|
45
|
+
"@atlaskit/link-analytics": "^8.6.0",
|
|
46
46
|
"@atlaskit/link-client-extension": "^3.0.0",
|
|
47
47
|
"@atlaskit/link-extractors": "^1.9.0",
|
|
48
48
|
"@atlaskit/linking-common": "^6.0.0",
|
|
49
49
|
"@atlaskit/linking-types": "^9.5.0",
|
|
50
|
-
"@atlaskit/logo": "^15.
|
|
50
|
+
"@atlaskit/logo": "^15.1.0",
|
|
51
51
|
"@atlaskit/lozenge": "^11.12.0",
|
|
52
52
|
"@atlaskit/menu": "^2.13.0",
|
|
53
53
|
"@atlaskit/modal-dialog": "^12.18.0",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"@atlaskit/popup": "^1.30.0",
|
|
57
57
|
"@atlaskit/primitives": "^13.3.0",
|
|
58
58
|
"@atlaskit/section-message": "^6.8.0",
|
|
59
|
-
"@atlaskit/select": "^18.
|
|
59
|
+
"@atlaskit/select": "^18.8.0",
|
|
60
60
|
"@atlaskit/spinner": "^16.3.0",
|
|
61
|
-
"@atlaskit/textarea": "^5.
|
|
62
|
-
"@atlaskit/textfield": "^6.
|
|
61
|
+
"@atlaskit/textarea": "^5.7.0",
|
|
62
|
+
"@atlaskit/textfield": "^6.7.0",
|
|
63
63
|
"@atlaskit/theme": "^14.0.0",
|
|
64
64
|
"@atlaskit/tokens": "^2.4.0",
|
|
65
65
|
"@atlaskit/tooltip": "^18.9.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@atlaskit/analytics-listeners": "^8.13.0",
|
|
93
93
|
"@atlaskit/css-reset": "^6.11.0",
|
|
94
94
|
"@atlaskit/link-test-helpers": "^7.5.0",
|
|
95
|
-
"@atlaskit/media-test-helpers": "^34.
|
|
95
|
+
"@atlaskit/media-test-helpers": "^34.7.0",
|
|
96
96
|
"@atlaskit/ssr": "*",
|
|
97
97
|
"@atlaskit/visual-regression": "*",
|
|
98
98
|
"@atlassian/analytics-tooling": "*",
|
|
@@ -165,6 +165,9 @@
|
|
|
165
165
|
"send-smart-link-rendered-ufo-event-half-time": {
|
|
166
166
|
"type": "boolean"
|
|
167
167
|
},
|
|
168
|
+
"platform_migrate-some-ui-events-smart-card": {
|
|
169
|
+
"type": "boolean"
|
|
170
|
+
},
|
|
168
171
|
"platform-visual-refresh-icons": {
|
|
169
172
|
"type": "boolean"
|
|
170
173
|
},
|
|
@@ -174,12 +177,6 @@
|
|
|
174
177
|
"smart_links_for_plans_platform": {
|
|
175
178
|
"type": "boolean"
|
|
176
179
|
},
|
|
177
|
-
"platform_smart-card-migrate-operational-analytics": {
|
|
178
|
-
"type": "boolean"
|
|
179
|
-
},
|
|
180
|
-
"smart-card-remove-block-card-from-embed": {
|
|
181
|
-
"type": "boolean"
|
|
182
|
-
},
|
|
183
180
|
"platform_editor_hyperlink_underline": {
|
|
184
181
|
"type": "boolean"
|
|
185
182
|
}
|