@atlaskit/smart-card 29.0.0 → 29.0.1
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 +8 -0
- package/dist/cjs/utils/analytics/analytics.js +1 -1
- package/dist/cjs/view/LinkUrl/index.js +1 -1
- package/dist/es2019/utils/analytics/analytics.js +1 -1
- package/dist/es2019/view/LinkUrl/index.js +1 -1
- package/dist/esm/utils/analytics/analytics.js +1 -1
- package/dist/esm/view/LinkUrl/index.js +1 -1
- package/dist/types/view/Card/index.d.ts +1 -1
- package/dist/types/view/Card/types.d.ts +61 -42
- package/dist/types-ts4.5/view/Card/index.d.ts +1 -1
- package/dist/types-ts4.5/view/Card/types.d.ts +61 -42
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/smart-card
|
|
2
2
|
|
|
3
|
+
## 29.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#146547](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/146547)
|
|
8
|
+
[`b0acda68f75b2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b0acda68f75b2) -
|
|
9
|
+
Update CardProps type for documentation
|
|
10
|
+
|
|
3
11
|
## 29.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -22,7 +22,7 @@ var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = 'media';
|
|
|
22
22
|
var context = exports.context = {
|
|
23
23
|
componentName: 'smart-cards',
|
|
24
24
|
packageName: "@atlaskit/smart-card",
|
|
25
|
-
packageVersion: "29.0.
|
|
25
|
+
packageVersion: "29.0.1"
|
|
26
26
|
};
|
|
27
27
|
var TrackQuickActionType = exports.TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
28
28
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -17,7 +17,7 @@ var _excluded = ["href", "children", "checkSafety", "onClick", "testId"],
|
|
|
17
17
|
_excluded2 = ["isLinkSafe", "showSafetyWarningModal"];
|
|
18
18
|
var PACKAGE_DATA = {
|
|
19
19
|
packageName: "@atlaskit/smart-card",
|
|
20
|
-
packageVersion: "29.0.
|
|
20
|
+
packageVersion: "29.0.1",
|
|
21
21
|
componentName: 'linkUrl'
|
|
22
22
|
};
|
|
23
23
|
var Link = (0, _click.withLinkClickedEvent)('a');
|
|
@@ -4,7 +4,7 @@ export const ANALYTICS_CHANNEL = 'media';
|
|
|
4
4
|
export const context = {
|
|
5
5
|
componentName: 'smart-cards',
|
|
6
6
|
packageName: "@atlaskit/smart-card",
|
|
7
|
-
packageVersion: "29.0.
|
|
7
|
+
packageVersion: "29.0.1"
|
|
8
8
|
};
|
|
9
9
|
export let TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
10
10
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -7,7 +7,7 @@ import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-m
|
|
|
7
7
|
import LinkWarningModal from './LinkWarningModal';
|
|
8
8
|
const PACKAGE_DATA = {
|
|
9
9
|
packageName: "@atlaskit/smart-card",
|
|
10
|
-
packageVersion: "29.0.
|
|
10
|
+
packageVersion: "29.0.1",
|
|
11
11
|
componentName: 'linkUrl'
|
|
12
12
|
};
|
|
13
13
|
const Link = withLinkClickedEvent('a');
|
|
@@ -15,7 +15,7 @@ export var ANALYTICS_CHANNEL = 'media';
|
|
|
15
15
|
export var context = {
|
|
16
16
|
componentName: 'smart-cards',
|
|
17
17
|
packageName: "@atlaskit/smart-card",
|
|
18
|
-
packageVersion: "29.0.
|
|
18
|
+
packageVersion: "29.0.1"
|
|
19
19
|
};
|
|
20
20
|
export var TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
|
|
21
21
|
TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
|
|
@@ -10,7 +10,7 @@ import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-m
|
|
|
10
10
|
import LinkWarningModal from './LinkWarningModal';
|
|
11
11
|
var PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/smart-card",
|
|
13
|
-
packageVersion: "29.0.
|
|
13
|
+
packageVersion: "29.0.1",
|
|
14
14
|
componentName: 'linkUrl'
|
|
15
15
|
};
|
|
16
16
|
var Link = withLinkClickedEvent('a');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type CardAppearance, type CardPlatform, type CardProps } from './types';
|
|
3
3
|
import { type WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
export declare const Card: React.ForwardRefExoticComponent<Pick<Omit<import("react-intl-next").WithIntlProps<CardProps & WrappedComponentProps>, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "url" | "appearance" | "container" | "children" | "data" | "key" | "id" | "placeholder" | "onError" | "onClick" | "testId" | "analyticsContext" | "isSelected" | "inheritDimensions" | "actionOptions" | "onResolve" | "ui" | "showHoverPreview" | "hoverPreviewOptions" | "showAuthTooltip" | "
|
|
4
|
+
export declare const Card: React.ForwardRefExoticComponent<Pick<Omit<import("react-intl-next").WithIntlProps<CardProps & WrappedComponentProps>, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "url" | "appearance" | "container" | "children" | "data" | "key" | "id" | "placeholder" | "onError" | "onClick" | "testId" | "analyticsContext" | "isSelected" | "inheritDimensions" | "actionOptions" | "onResolve" | "ui" | "showHoverPreview" | "hoverPreviewOptions" | "showAuthTooltip" | "inlinePreloaderStyle" | "isHovered" | "removeTextHighlightingFromTitle" | "resolvingPlaceholder" | "truncateInline" | "useLegacyBlockCard" | "importer" | "fallbackComponent" | "embedIframeRef" | "embedIframeUrlType" | "frameStyle" | "platform" | "forwardedRef"> & React.RefAttributes<any>>;
|
|
5
5
|
export type { CardAppearance, CardProps, CardPlatform };
|
|
@@ -30,28 +30,25 @@ export type CardActionOptions = {
|
|
|
30
30
|
hide: false;
|
|
31
31
|
exclude?: Array<CardAction>;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
interface ActionProps {
|
|
34
|
+
actionOptions?: CardActionOptions;
|
|
35
|
+
}
|
|
36
|
+
interface HoverPreviewProps extends ActionProps {
|
|
37
|
+
showHoverPreview?: boolean;
|
|
38
|
+
hoverPreviewOptions?: HoverPreviewOptions;
|
|
39
|
+
showAuthTooltip?: boolean;
|
|
40
|
+
}
|
|
41
|
+
export interface BaseCardProps {
|
|
34
42
|
appearance: CardAppearance;
|
|
35
|
-
id?: string;
|
|
36
|
-
platform?: CardPlatform;
|
|
37
|
-
isSelected?: boolean;
|
|
38
|
-
/** A flag that determines whether a card is in a hover state in edit mode. Currently used for inline links only */
|
|
39
|
-
isHovered?: boolean;
|
|
40
|
-
/** A prop that determines the style of a frame: whether to show it, hide it or only show it when a user hovers over embed */
|
|
41
|
-
frameStyle?: FrameStyle;
|
|
42
|
-
onClick?: React.EventHandler<React.MouseEvent | React.KeyboardEvent>;
|
|
43
|
-
importer?: (target: any) => void;
|
|
44
43
|
container?: HTMLElement;
|
|
45
44
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
* https://product-fabric.atlassian.net/browse/EDM-6813
|
|
45
|
+
* A component that will be rendered when smart card fails to render
|
|
46
|
+
* because of uncaught errors
|
|
49
47
|
*/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
onResolve?: OnResolveCallback;
|
|
48
|
+
fallbackComponent?: React.ComponentType;
|
|
49
|
+
id?: string;
|
|
50
|
+
isSelected?: boolean;
|
|
51
|
+
onClick?: React.EventHandler<React.MouseEvent | React.KeyboardEvent>;
|
|
55
52
|
/**
|
|
56
53
|
* A callback function currently invoked in two cases
|
|
57
54
|
* 1. When the {@link CardState.status} is one of {@link ErrorCardType}. "err" property in argument will be undefined in this case
|
|
@@ -63,31 +60,15 @@ export interface CardProps extends WithAnalyticsEventsProps {
|
|
|
63
60
|
* If fallbackComponent is not provided, smart card will render null
|
|
64
61
|
*/
|
|
65
62
|
onError?: OnErrorCallback;
|
|
66
|
-
|
|
67
|
-
* A component that will be rendered when smart card fails to render
|
|
68
|
-
* because of uncaught errors
|
|
69
|
-
*/
|
|
70
|
-
fallbackComponent?: React.ComponentType;
|
|
71
|
-
/** This props determines if dimensions of an embed card are to be inherited from the parent.
|
|
72
|
-
* The parent container needs to override a style '.loader-wrapper' and set the desirable height there. (for instance, 'height: 100%')
|
|
73
|
-
*/
|
|
74
|
-
inheritDimensions?: boolean;
|
|
75
|
-
embedIframeRef?: React.Ref<HTMLIFrameElement>;
|
|
76
|
-
embedIframeUrlType?: EmbedIframeUrlType;
|
|
77
|
-
inlinePreloaderStyle?: InlinePreloaderStyle;
|
|
78
|
-
ui?: FlexibleUiOptions;
|
|
79
|
-
children?: React.ReactNode;
|
|
80
|
-
showHoverPreview?: boolean;
|
|
81
|
-
hoverPreviewOptions?: HoverPreviewOptions;
|
|
82
|
-
showAuthTooltip?: boolean;
|
|
63
|
+
onResolve?: OnResolveCallback;
|
|
83
64
|
placeholder?: string;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
65
|
+
testId?: string;
|
|
66
|
+
url?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface InlineProps extends HoverPreviewProps {
|
|
69
|
+
inlinePreloaderStyle?: InlinePreloaderStyle;
|
|
70
|
+
/** A flag that determines whether a card is in a hover state in edit mode. Currently used for inline links only */
|
|
71
|
+
isHovered?: boolean;
|
|
91
72
|
/**
|
|
92
73
|
* When set to true, the text fragment will be removed from the title.
|
|
93
74
|
* This will have no impact on the url and text highlighting will still persist in the url,
|
|
@@ -102,3 +83,41 @@ export interface CardProps extends WithAnalyticsEventsProps {
|
|
|
102
83
|
/** When set to true, inline cards will be truncated to one line. */
|
|
103
84
|
truncateInline?: boolean;
|
|
104
85
|
}
|
|
86
|
+
export interface BlockProps extends ActionProps {
|
|
87
|
+
/**
|
|
88
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-15021 Internal documentation for deprecation (no external access)}
|
|
89
|
+
* When enabled the legacy block card is always used, even if the enableFlexibleBlockCard flag is set to true.
|
|
90
|
+
* Usage is strongly discouraged. This should only be used if there is a specific reason you're
|
|
91
|
+
* unable to use the new flexible block cards.
|
|
92
|
+
*/
|
|
93
|
+
useLegacyBlockCard?: boolean;
|
|
94
|
+
}
|
|
95
|
+
export interface EmbedProps {
|
|
96
|
+
embedIframeRef?: React.Ref<HTMLIFrameElement>;
|
|
97
|
+
embedIframeUrlType?: EmbedIframeUrlType;
|
|
98
|
+
/** A prop that determines the style of a frame: whether to show it, hide it or only show it when a user hovers over embed */
|
|
99
|
+
frameStyle?: FrameStyle;
|
|
100
|
+
/** This props determines if dimensions of an embed card are to be inherited from the parent.
|
|
101
|
+
* The parent container needs to override a style '.loader-wrapper' and set the desirable height there. (for instance, 'height: 100%')
|
|
102
|
+
*/
|
|
103
|
+
inheritDimensions?: boolean;
|
|
104
|
+
platform?: CardPlatform;
|
|
105
|
+
}
|
|
106
|
+
export interface FlexibleProps extends ActionProps, HoverPreviewProps {
|
|
107
|
+
children?: React.ReactNode;
|
|
108
|
+
ui?: FlexibleUiOptions;
|
|
109
|
+
}
|
|
110
|
+
export interface CardProps extends BaseCardProps, InlineProps, BlockProps, EmbedProps, FlexibleProps, WithAnalyticsEventsProps {
|
|
111
|
+
/**
|
|
112
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-3226 Internal documentation for deprecation (no external access)}
|
|
113
|
+
* Likely here for legacy reason where editor would store data in ADF instead of resolving it everytime
|
|
114
|
+
* https://product-fabric.atlassian.net/browse/EDM-10930
|
|
115
|
+
*/
|
|
116
|
+
data?: any;
|
|
117
|
+
/**
|
|
118
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-3226 Internal documentation for deprecation (no external access)}
|
|
119
|
+
* Likely here for legacy reason where editor would store data in ADF instead of resolving it everytime
|
|
120
|
+
* https://product-fabric.atlassian.net/browse/EDM-10930
|
|
121
|
+
*/
|
|
122
|
+
importer?: (target: any) => void;
|
|
123
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type CardAppearance, type CardPlatform, type CardProps } from './types';
|
|
3
3
|
import { type WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
export declare const Card: React.ForwardRefExoticComponent<Pick<Omit<import("react-intl-next").WithIntlProps<CardProps & WrappedComponentProps>, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "url" | "appearance" | "container" | "children" | "data" | "key" | "id" | "placeholder" | "onError" | "onClick" | "testId" | "analyticsContext" | "isSelected" | "inheritDimensions" | "actionOptions" | "onResolve" | "ui" | "showHoverPreview" | "hoverPreviewOptions" | "showAuthTooltip" | "
|
|
4
|
+
export declare const Card: React.ForwardRefExoticComponent<Pick<Omit<import("react-intl-next").WithIntlProps<CardProps & WrappedComponentProps>, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "url" | "appearance" | "container" | "children" | "data" | "key" | "id" | "placeholder" | "onError" | "onClick" | "testId" | "analyticsContext" | "isSelected" | "inheritDimensions" | "actionOptions" | "onResolve" | "ui" | "showHoverPreview" | "hoverPreviewOptions" | "showAuthTooltip" | "inlinePreloaderStyle" | "isHovered" | "removeTextHighlightingFromTitle" | "resolvingPlaceholder" | "truncateInline" | "useLegacyBlockCard" | "importer" | "fallbackComponent" | "embedIframeRef" | "embedIframeUrlType" | "frameStyle" | "platform" | "forwardedRef"> & React.RefAttributes<any>>;
|
|
5
5
|
export type { CardAppearance, CardProps, CardPlatform };
|
|
@@ -30,28 +30,25 @@ export type CardActionOptions = {
|
|
|
30
30
|
hide: false;
|
|
31
31
|
exclude?: Array<CardAction>;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
interface ActionProps {
|
|
34
|
+
actionOptions?: CardActionOptions;
|
|
35
|
+
}
|
|
36
|
+
interface HoverPreviewProps extends ActionProps {
|
|
37
|
+
showHoverPreview?: boolean;
|
|
38
|
+
hoverPreviewOptions?: HoverPreviewOptions;
|
|
39
|
+
showAuthTooltip?: boolean;
|
|
40
|
+
}
|
|
41
|
+
export interface BaseCardProps {
|
|
34
42
|
appearance: CardAppearance;
|
|
35
|
-
id?: string;
|
|
36
|
-
platform?: CardPlatform;
|
|
37
|
-
isSelected?: boolean;
|
|
38
|
-
/** A flag that determines whether a card is in a hover state in edit mode. Currently used for inline links only */
|
|
39
|
-
isHovered?: boolean;
|
|
40
|
-
/** A prop that determines the style of a frame: whether to show it, hide it or only show it when a user hovers over embed */
|
|
41
|
-
frameStyle?: FrameStyle;
|
|
42
|
-
onClick?: React.EventHandler<React.MouseEvent | React.KeyboardEvent>;
|
|
43
|
-
importer?: (target: any) => void;
|
|
44
43
|
container?: HTMLElement;
|
|
45
44
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
* https://product-fabric.atlassian.net/browse/EDM-6813
|
|
45
|
+
* A component that will be rendered when smart card fails to render
|
|
46
|
+
* because of uncaught errors
|
|
49
47
|
*/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
onResolve?: OnResolveCallback;
|
|
48
|
+
fallbackComponent?: React.ComponentType;
|
|
49
|
+
id?: string;
|
|
50
|
+
isSelected?: boolean;
|
|
51
|
+
onClick?: React.EventHandler<React.MouseEvent | React.KeyboardEvent>;
|
|
55
52
|
/**
|
|
56
53
|
* A callback function currently invoked in two cases
|
|
57
54
|
* 1. When the {@link CardState.status} is one of {@link ErrorCardType}. "err" property in argument will be undefined in this case
|
|
@@ -63,31 +60,15 @@ export interface CardProps extends WithAnalyticsEventsProps {
|
|
|
63
60
|
* If fallbackComponent is not provided, smart card will render null
|
|
64
61
|
*/
|
|
65
62
|
onError?: OnErrorCallback;
|
|
66
|
-
|
|
67
|
-
* A component that will be rendered when smart card fails to render
|
|
68
|
-
* because of uncaught errors
|
|
69
|
-
*/
|
|
70
|
-
fallbackComponent?: React.ComponentType;
|
|
71
|
-
/** This props determines if dimensions of an embed card are to be inherited from the parent.
|
|
72
|
-
* The parent container needs to override a style '.loader-wrapper' and set the desirable height there. (for instance, 'height: 100%')
|
|
73
|
-
*/
|
|
74
|
-
inheritDimensions?: boolean;
|
|
75
|
-
embedIframeRef?: React.Ref<HTMLIFrameElement>;
|
|
76
|
-
embedIframeUrlType?: EmbedIframeUrlType;
|
|
77
|
-
inlinePreloaderStyle?: InlinePreloaderStyle;
|
|
78
|
-
ui?: FlexibleUiOptions;
|
|
79
|
-
children?: React.ReactNode;
|
|
80
|
-
showHoverPreview?: boolean;
|
|
81
|
-
hoverPreviewOptions?: HoverPreviewOptions;
|
|
82
|
-
showAuthTooltip?: boolean;
|
|
63
|
+
onResolve?: OnResolveCallback;
|
|
83
64
|
placeholder?: string;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
65
|
+
testId?: string;
|
|
66
|
+
url?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface InlineProps extends HoverPreviewProps {
|
|
69
|
+
inlinePreloaderStyle?: InlinePreloaderStyle;
|
|
70
|
+
/** A flag that determines whether a card is in a hover state in edit mode. Currently used for inline links only */
|
|
71
|
+
isHovered?: boolean;
|
|
91
72
|
/**
|
|
92
73
|
* When set to true, the text fragment will be removed from the title.
|
|
93
74
|
* This will have no impact on the url and text highlighting will still persist in the url,
|
|
@@ -102,3 +83,41 @@ export interface CardProps extends WithAnalyticsEventsProps {
|
|
|
102
83
|
/** When set to true, inline cards will be truncated to one line. */
|
|
103
84
|
truncateInline?: boolean;
|
|
104
85
|
}
|
|
86
|
+
export interface BlockProps extends ActionProps {
|
|
87
|
+
/**
|
|
88
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-15021 Internal documentation for deprecation (no external access)}
|
|
89
|
+
* When enabled the legacy block card is always used, even if the enableFlexibleBlockCard flag is set to true.
|
|
90
|
+
* Usage is strongly discouraged. This should only be used if there is a specific reason you're
|
|
91
|
+
* unable to use the new flexible block cards.
|
|
92
|
+
*/
|
|
93
|
+
useLegacyBlockCard?: boolean;
|
|
94
|
+
}
|
|
95
|
+
export interface EmbedProps {
|
|
96
|
+
embedIframeRef?: React.Ref<HTMLIFrameElement>;
|
|
97
|
+
embedIframeUrlType?: EmbedIframeUrlType;
|
|
98
|
+
/** A prop that determines the style of a frame: whether to show it, hide it or only show it when a user hovers over embed */
|
|
99
|
+
frameStyle?: FrameStyle;
|
|
100
|
+
/** This props determines if dimensions of an embed card are to be inherited from the parent.
|
|
101
|
+
* The parent container needs to override a style '.loader-wrapper' and set the desirable height there. (for instance, 'height: 100%')
|
|
102
|
+
*/
|
|
103
|
+
inheritDimensions?: boolean;
|
|
104
|
+
platform?: CardPlatform;
|
|
105
|
+
}
|
|
106
|
+
export interface FlexibleProps extends ActionProps, HoverPreviewProps {
|
|
107
|
+
children?: React.ReactNode;
|
|
108
|
+
ui?: FlexibleUiOptions;
|
|
109
|
+
}
|
|
110
|
+
export interface CardProps extends BaseCardProps, InlineProps, BlockProps, EmbedProps, FlexibleProps, WithAnalyticsEventsProps {
|
|
111
|
+
/**
|
|
112
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-3226 Internal documentation for deprecation (no external access)}
|
|
113
|
+
* Likely here for legacy reason where editor would store data in ADF instead of resolving it everytime
|
|
114
|
+
* https://product-fabric.atlassian.net/browse/EDM-10930
|
|
115
|
+
*/
|
|
116
|
+
data?: any;
|
|
117
|
+
/**
|
|
118
|
+
* @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-3226 Internal documentation for deprecation (no external access)}
|
|
119
|
+
* Likely here for legacy reason where editor would store data in ADF instead of resolving it everytime
|
|
120
|
+
* https://product-fabric.atlassian.net/browse/EDM-10930
|
|
121
|
+
*/
|
|
122
|
+
importer?: (target: any) => void;
|
|
123
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-card",
|
|
3
|
-
"version": "29.0.
|
|
3
|
+
"version": "29.0.1",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@atlaskit/form": "^10.5.0",
|
|
37
37
|
"@atlaskit/frontend-utilities": "^2.7.0",
|
|
38
38
|
"@atlaskit/heading": "^2.4.0",
|
|
39
|
-
"@atlaskit/icon": "^22.
|
|
39
|
+
"@atlaskit/icon": "^22.20.0",
|
|
40
40
|
"@atlaskit/icon-file-type": "^6.5.0",
|
|
41
41
|
"@atlaskit/icon-object": "^6.5.0",
|
|
42
42
|
"@atlaskit/icon-priority": "^6.3.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@atlaskit/modal-dialog": "^12.17.0",
|
|
52
52
|
"@atlaskit/outbound-auth-flow-client": "^3.4.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
54
|
-
"@atlaskit/popup": "^1.
|
|
54
|
+
"@atlaskit/popup": "^1.28.0",
|
|
55
55
|
"@atlaskit/primitives": "^12.2.0",
|
|
56
56
|
"@atlaskit/section-message": "^6.6.0",
|
|
57
57
|
"@atlaskit/select": "^17.19.0",
|