@atlaskit/renderer 130.0.0 → 130.1.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 +22 -0
- package/dist/cjs/react/index.js +3 -2
- package/dist/cjs/react/nodes/mediaInline.js +8 -4
- package/dist/cjs/ui/ExtensionRenderer.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/index.js +3 -2
- package/dist/es2019/react/nodes/mediaInline.js +8 -4
- package/dist/es2019/ui/ExtensionRenderer.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/index.js +3 -2
- package/dist/esm/react/nodes/mediaInline.js +8 -4
- package/dist/esm/ui/ExtensionRenderer.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/react/nodes/index.d.ts +1 -0
- package/dist/types/react/nodes/mediaInline.d.ts +1 -0
- package/dist/types/types/mediaOptions.d.ts +6 -0
- package/dist/types-ts4.5/react/nodes/index.d.ts +1 -0
- package/dist/types-ts4.5/react/nodes/mediaInline.d.ts +1 -0
- package/dist/types-ts4.5/types/mediaOptions.d.ts +6 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 130.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b6bb07e5d72ac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b6bb07e5d72ac) -
|
|
8
|
+
[ux] Fix for #hot-301450, add new media option for fallback media name fetcher to allow confluence
|
|
9
|
+
to use the attachment service instead of the media service to get filenames. After DC -> Cloud
|
|
10
|
+
migration filenames were not properly copied across to the media service causing inline media to
|
|
11
|
+
show an error.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 130.0.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [`74fadc941d049`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/74fadc941d049) -
|
|
22
|
+
change div to span for InlineNodeRendererWrapper
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
|
|
3
25
|
## 130.0.0
|
|
4
26
|
|
|
5
27
|
### Major Changes
|
package/dist/cjs/react/index.js
CHANGED
|
@@ -593,9 +593,10 @@ var ReactSerializer = exports.default = /*#__PURE__*/function () {
|
|
|
593
593
|
}, {
|
|
594
594
|
key: "getMediaInlineProps",
|
|
595
595
|
value: function getMediaInlineProps(node) {
|
|
596
|
-
var _this$media6;
|
|
596
|
+
var _this$media6, _this$media7;
|
|
597
597
|
return _objectSpread(_objectSpread({}, this.getProps(node)), {}, {
|
|
598
|
-
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr
|
|
598
|
+
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr,
|
|
599
|
+
fallbackMediaNameFetcher: (_this$media7 = this.media) === null || _this$media7 === void 0 ? void 0 : _this$media7.fallbackMediaNameFetcher
|
|
599
600
|
});
|
|
600
601
|
}
|
|
601
602
|
}, {
|
|
@@ -31,7 +31,8 @@ var RenderMediaInline = function RenderMediaInline(_ref) {
|
|
|
31
31
|
clipboardAttrs = _ref.clipboardAttrs,
|
|
32
32
|
collectionName = _ref.collection,
|
|
33
33
|
eventHandlers = _ref.eventHandlers,
|
|
34
|
-
identifier = _ref.identifier
|
|
34
|
+
identifier = _ref.identifier,
|
|
35
|
+
fallbackMediaNameFetcher = _ref.fallbackMediaNameFetcher;
|
|
35
36
|
var _useState = (0, _react.useState)(),
|
|
36
37
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
37
38
|
contextIdentifier = _useState2[0],
|
|
@@ -141,7 +142,8 @@ var RenderMediaInline = function RenderMediaInline(_ref) {
|
|
|
141
142
|
shouldOpenMediaViewer: shouldOpenMediaViewer,
|
|
142
143
|
shouldDisplayToolTip: shouldDisplayToolTip,
|
|
143
144
|
mediaClientConfig: mediaClient.mediaClientConfig,
|
|
144
|
-
mediaViewerItems: Array.from(_MediaCard.mediaIdentifierMap.values())
|
|
145
|
+
mediaViewerItems: Array.from(_MediaCard.mediaIdentifierMap.values()),
|
|
146
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
145
147
|
}))
|
|
146
148
|
);
|
|
147
149
|
};
|
|
@@ -156,7 +158,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
156
158
|
width = props.width,
|
|
157
159
|
height = props.height,
|
|
158
160
|
marks = props.marks,
|
|
159
|
-
ssr = props.ssr
|
|
161
|
+
ssr = props.ssr,
|
|
162
|
+
fallbackMediaNameFetcher = props.fallbackMediaNameFetcher;
|
|
160
163
|
var clipboardAttrs = {
|
|
161
164
|
id: id,
|
|
162
165
|
collection: collection
|
|
@@ -209,7 +212,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
209
212
|
rendererAppearance: rendererAppearance,
|
|
210
213
|
intl: intl,
|
|
211
214
|
collection: collection,
|
|
212
|
-
featureFlags: featureFlags
|
|
215
|
+
featureFlags: featureFlags,
|
|
216
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
213
217
|
});
|
|
214
218
|
};
|
|
215
219
|
var _default = exports.default = (0, _reactIntl.injectIntl)(MediaInline);
|
|
@@ -152,7 +152,7 @@ var InlineNodeRendererWrapper = exports.InlineNodeRendererWrapper = function Inl
|
|
|
152
152
|
isPlainTextMacro = _ref.isPlainTextMacro,
|
|
153
153
|
ssrPlaceholder = _ref.ssrPlaceholder,
|
|
154
154
|
ssrPlaceholderReplace = _ref.ssrPlaceholderReplace;
|
|
155
|
-
return (0, _react.jsx)("
|
|
155
|
+
return (0, _react.jsx)("span", {
|
|
156
156
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
157
157
|
className: "inline-extension-renderer ".concat(isPlainTextMacro ? 'plain-text-macro' : ''),
|
|
158
158
|
css: [inlineExtensionStyle, isPlainTextMacro && plainTextMacroStyle],
|
|
@@ -71,7 +71,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
71
71
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
72
72
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
73
73
|
var packageName = "@atlaskit/renderer";
|
|
74
|
-
var packageVersion = "
|
|
74
|
+
var packageVersion = "130.0.1";
|
|
75
75
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
76
76
|
containerName: 'ak-renderer-wrapper',
|
|
77
77
|
containerType: 'inline-size'
|
|
@@ -531,10 +531,11 @@ export default class ReactSerializer {
|
|
|
531
531
|
};
|
|
532
532
|
}
|
|
533
533
|
getMediaInlineProps(node) {
|
|
534
|
-
var _this$media6;
|
|
534
|
+
var _this$media6, _this$media7;
|
|
535
535
|
return {
|
|
536
536
|
...this.getProps(node),
|
|
537
|
-
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr
|
|
537
|
+
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr,
|
|
538
|
+
fallbackMediaNameFetcher: (_this$media7 = this.media) === null || _this$media7 === void 0 ? void 0 : _this$media7.fallbackMediaNameFetcher
|
|
538
539
|
};
|
|
539
540
|
}
|
|
540
541
|
getTaskItemProps(node, path = []) {
|
|
@@ -16,7 +16,8 @@ const RenderMediaInline = ({
|
|
|
16
16
|
clipboardAttrs,
|
|
17
17
|
collection: collectionName,
|
|
18
18
|
eventHandlers,
|
|
19
|
-
identifier
|
|
19
|
+
identifier,
|
|
20
|
+
fallbackMediaNameFetcher
|
|
20
21
|
}) => {
|
|
21
22
|
const [contextIdentifier, setContextIdentifier] = useState();
|
|
22
23
|
const [fileState, setFileState] = useState();
|
|
@@ -107,7 +108,8 @@ const RenderMediaInline = ({
|
|
|
107
108
|
shouldOpenMediaViewer: shouldOpenMediaViewer,
|
|
108
109
|
shouldDisplayToolTip: shouldDisplayToolTip,
|
|
109
110
|
mediaClientConfig: mediaClient.mediaClientConfig,
|
|
110
|
-
mediaViewerItems: Array.from(mediaIdentifierMap.values())
|
|
111
|
+
mediaViewerItems: Array.from(mediaIdentifierMap.values()),
|
|
112
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
111
113
|
}))
|
|
112
114
|
);
|
|
113
115
|
};
|
|
@@ -123,7 +125,8 @@ const MediaInline = props => {
|
|
|
123
125
|
width,
|
|
124
126
|
height,
|
|
125
127
|
marks,
|
|
126
|
-
ssr
|
|
128
|
+
ssr,
|
|
129
|
+
fallbackMediaNameFetcher
|
|
127
130
|
} = props;
|
|
128
131
|
const clipboardAttrs = {
|
|
129
132
|
id,
|
|
@@ -174,7 +177,8 @@ const MediaInline = props => {
|
|
|
174
177
|
rendererAppearance: rendererAppearance,
|
|
175
178
|
intl: intl,
|
|
176
179
|
collection: collection,
|
|
177
|
-
featureFlags: featureFlags
|
|
180
|
+
featureFlags: featureFlags,
|
|
181
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
178
182
|
});
|
|
179
183
|
};
|
|
180
184
|
export default injectIntl(MediaInline);
|
|
@@ -138,7 +138,7 @@ export const InlineNodeRendererWrapper = ({
|
|
|
138
138
|
ssrPlaceholder,
|
|
139
139
|
ssrPlaceholderReplace
|
|
140
140
|
}) => {
|
|
141
|
-
return jsx("
|
|
141
|
+
return jsx("span", {
|
|
142
142
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
143
143
|
className: `inline-extension-renderer ${isPlainTextMacro ? 'plain-text-macro' : ''}`,
|
|
144
144
|
css: [inlineExtensionStyle, isPlainTextMacro && plainTextMacroStyle],
|
|
@@ -57,7 +57,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
57
57
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
58
58
|
const RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
59
59
|
const packageName = "@atlaskit/renderer";
|
|
60
|
-
const packageVersion = "
|
|
60
|
+
const packageVersion = "130.0.1";
|
|
61
61
|
const setAsQueryContainerStyles = css({
|
|
62
62
|
containerName: 'ak-renderer-wrapper',
|
|
63
63
|
containerType: 'inline-size'
|
package/dist/esm/react/index.js
CHANGED
|
@@ -586,9 +586,10 @@ var ReactSerializer = /*#__PURE__*/function () {
|
|
|
586
586
|
}, {
|
|
587
587
|
key: "getMediaInlineProps",
|
|
588
588
|
value: function getMediaInlineProps(node) {
|
|
589
|
-
var _this$media6;
|
|
589
|
+
var _this$media6, _this$media7;
|
|
590
590
|
return _objectSpread(_objectSpread({}, this.getProps(node)), {}, {
|
|
591
|
-
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr
|
|
591
|
+
ssr: (_this$media6 = this.media) === null || _this$media6 === void 0 ? void 0 : _this$media6.ssr,
|
|
592
|
+
fallbackMediaNameFetcher: (_this$media7 = this.media) === null || _this$media7 === void 0 ? void 0 : _this$media7.fallbackMediaNameFetcher
|
|
592
593
|
});
|
|
593
594
|
}
|
|
594
595
|
}, {
|
|
@@ -22,7 +22,8 @@ var RenderMediaInline = function RenderMediaInline(_ref) {
|
|
|
22
22
|
clipboardAttrs = _ref.clipboardAttrs,
|
|
23
23
|
collectionName = _ref.collection,
|
|
24
24
|
eventHandlers = _ref.eventHandlers,
|
|
25
|
-
identifier = _ref.identifier
|
|
25
|
+
identifier = _ref.identifier,
|
|
26
|
+
fallbackMediaNameFetcher = _ref.fallbackMediaNameFetcher;
|
|
26
27
|
var _useState = useState(),
|
|
27
28
|
_useState2 = _slicedToArray(_useState, 2),
|
|
28
29
|
contextIdentifier = _useState2[0],
|
|
@@ -132,7 +133,8 @@ var RenderMediaInline = function RenderMediaInline(_ref) {
|
|
|
132
133
|
shouldOpenMediaViewer: shouldOpenMediaViewer,
|
|
133
134
|
shouldDisplayToolTip: shouldDisplayToolTip,
|
|
134
135
|
mediaClientConfig: mediaClient.mediaClientConfig,
|
|
135
|
-
mediaViewerItems: Array.from(mediaIdentifierMap.values())
|
|
136
|
+
mediaViewerItems: Array.from(mediaIdentifierMap.values()),
|
|
137
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
136
138
|
}))
|
|
137
139
|
);
|
|
138
140
|
};
|
|
@@ -147,7 +149,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
147
149
|
width = props.width,
|
|
148
150
|
height = props.height,
|
|
149
151
|
marks = props.marks,
|
|
150
|
-
ssr = props.ssr
|
|
152
|
+
ssr = props.ssr,
|
|
153
|
+
fallbackMediaNameFetcher = props.fallbackMediaNameFetcher;
|
|
151
154
|
var clipboardAttrs = {
|
|
152
155
|
id: id,
|
|
153
156
|
collection: collection
|
|
@@ -200,7 +203,8 @@ var MediaInline = function MediaInline(props) {
|
|
|
200
203
|
rendererAppearance: rendererAppearance,
|
|
201
204
|
intl: intl,
|
|
202
205
|
collection: collection,
|
|
203
|
-
featureFlags: featureFlags
|
|
206
|
+
featureFlags: featureFlags,
|
|
207
|
+
fallbackMediaNameFetcher: fallbackMediaNameFetcher
|
|
204
208
|
});
|
|
205
209
|
};
|
|
206
210
|
export default injectIntl(MediaInline);
|
|
@@ -143,7 +143,7 @@ export var InlineNodeRendererWrapper = function InlineNodeRendererWrapper(_ref)
|
|
|
143
143
|
isPlainTextMacro = _ref.isPlainTextMacro,
|
|
144
144
|
ssrPlaceholder = _ref.ssrPlaceholder,
|
|
145
145
|
ssrPlaceholderReplace = _ref.ssrPlaceholderReplace;
|
|
146
|
-
return jsx("
|
|
146
|
+
return jsx("span", {
|
|
147
147
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
148
148
|
className: "inline-extension-renderer ".concat(isPlainTextMacro ? 'plain-text-macro' : ''),
|
|
149
149
|
css: [inlineExtensionStyle, isPlainTextMacro && plainTextMacroStyle],
|
|
@@ -62,7 +62,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
62
62
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
63
63
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
64
64
|
var packageName = "@atlaskit/renderer";
|
|
65
|
-
var packageVersion = "
|
|
65
|
+
var packageVersion = "130.0.1";
|
|
66
66
|
var setAsQueryContainerStyles = css({
|
|
67
67
|
containerName: 'ak-renderer-wrapper',
|
|
68
68
|
containerType: 'inline-size'
|
|
@@ -68,6 +68,7 @@ declare const MediaGroup: React.ComponentType<import("./mediaGroup").MediaGroupP
|
|
|
68
68
|
declare const MediaInline: React.ComponentType<import("react-intl").WithIntlProps<{
|
|
69
69
|
collection?: string;
|
|
70
70
|
eventHandlers?: import("@atlaskit/editor-common/ui").EventHandlers;
|
|
71
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
71
72
|
featureFlags?: import("@atlaskit/media-common").MediaFeatureFlags;
|
|
72
73
|
id: string;
|
|
73
74
|
marks?: Array<Mark>;
|
|
@@ -10,6 +10,7 @@ import type { MediaSSR } from '../../types/mediaOptions';
|
|
|
10
10
|
type MediaInlineProps = {
|
|
11
11
|
collection?: string;
|
|
12
12
|
eventHandlers?: EventHandlers;
|
|
13
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
13
14
|
featureFlags?: MediaFeatureFlags;
|
|
14
15
|
id: string;
|
|
15
16
|
marks?: Array<Mark>;
|
|
@@ -10,6 +10,12 @@ export interface MediaOptions {
|
|
|
10
10
|
allowLinking?: boolean;
|
|
11
11
|
enableDownloadButton?: boolean;
|
|
12
12
|
enableSyncMediaCard?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Optional fallback fetcher to retrieve the media filename from another service
|
|
15
|
+
* Workaround for #hot-301450 where media service is missing filenames for DC -> Cloud migrated media
|
|
16
|
+
* Receives the file ID and should resolve to the filename string.
|
|
17
|
+
*/
|
|
18
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
13
19
|
featureFlags?: MediaFeatureFlags;
|
|
14
20
|
/** Extensions for the media viewer header (e.g. comment navigation button). */
|
|
15
21
|
mediaViewerExtensions?: MediaViewerExtensions;
|
|
@@ -68,6 +68,7 @@ declare const MediaGroup: React.ComponentType<import("./mediaGroup").MediaGroupP
|
|
|
68
68
|
declare const MediaInline: React.ComponentType<import("react-intl").WithIntlProps<{
|
|
69
69
|
collection?: string;
|
|
70
70
|
eventHandlers?: import("@atlaskit/editor-common/ui").EventHandlers;
|
|
71
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
71
72
|
featureFlags?: import("@atlaskit/media-common").MediaFeatureFlags;
|
|
72
73
|
id: string;
|
|
73
74
|
marks?: Array<Mark>;
|
|
@@ -10,6 +10,7 @@ import type { MediaSSR } from '../../types/mediaOptions';
|
|
|
10
10
|
type MediaInlineProps = {
|
|
11
11
|
collection?: string;
|
|
12
12
|
eventHandlers?: EventHandlers;
|
|
13
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
13
14
|
featureFlags?: MediaFeatureFlags;
|
|
14
15
|
id: string;
|
|
15
16
|
marks?: Array<Mark>;
|
|
@@ -10,6 +10,12 @@ export interface MediaOptions {
|
|
|
10
10
|
allowLinking?: boolean;
|
|
11
11
|
enableDownloadButton?: boolean;
|
|
12
12
|
enableSyncMediaCard?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Optional fallback fetcher to retrieve the media filename from another service
|
|
15
|
+
* Workaround for #hot-301450 where media service is missing filenames for DC -> Cloud migrated media
|
|
16
|
+
* Receives the file ID and should resolve to the filename string.
|
|
17
|
+
*/
|
|
18
|
+
fallbackMediaNameFetcher?: (id: string) => Promise<string>;
|
|
13
19
|
featureFlags?: MediaFeatureFlags;
|
|
14
20
|
/** Extensions for the media viewer header (e.g. comment navigation button). */
|
|
15
21
|
mediaViewerExtensions?: MediaViewerExtensions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "130.
|
|
3
|
+
"version": "130.1.0",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@atlaskit/link-datasource": "^5.0.0",
|
|
45
45
|
"@atlaskit/link-extractors": "^2.4.0",
|
|
46
46
|
"@atlaskit/linking-common": "^9.11.0",
|
|
47
|
-
"@atlaskit/media-card": "^80.
|
|
47
|
+
"@atlaskit/media-card": "^80.1.0",
|
|
48
48
|
"@atlaskit/media-client": "^36.0.0",
|
|
49
49
|
"@atlaskit/media-client-react": "^5.0.0",
|
|
50
50
|
"@atlaskit/media-common": "^13.0.0",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"@atlaskit/media-viewer": "^53.0.0",
|
|
54
54
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
55
55
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
56
|
-
"@atlaskit/pragmatic-drag-and-drop": "^1.
|
|
56
|
+
"@atlaskit/pragmatic-drag-and-drop": "^1.8.0",
|
|
57
57
|
"@atlaskit/react-ufo": "^5.14.0",
|
|
58
|
-
"@atlaskit/smart-card": "^44.
|
|
58
|
+
"@atlaskit/smart-card": "^44.1.0",
|
|
59
59
|
"@atlaskit/status": "^4.0.0",
|
|
60
60
|
"@atlaskit/task-decision": "^20.0.0",
|
|
61
61
|
"@atlaskit/theme": "^23.1.0",
|
|
62
|
-
"@atlaskit/tmp-editor-statsig": "^62.
|
|
62
|
+
"@atlaskit/tmp-editor-statsig": "^62.8.0",
|
|
63
63
|
"@atlaskit/tokens": "^13.0.0",
|
|
64
64
|
"@atlaskit/tooltip": "^21.1.0",
|
|
65
65
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"uuid": "^3.1.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@atlaskit/editor-common": "^114.
|
|
75
|
+
"@atlaskit/editor-common": "^114.1.0",
|
|
76
76
|
"@atlaskit/link-provider": "^4.3.0",
|
|
77
77
|
"@atlaskit/media-core": "^37.0.0",
|
|
78
78
|
"react": "^18.2.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@atlaskit/mention": "^25.0.0",
|
|
93
93
|
"@atlaskit/modal-dialog": "^14.15.0",
|
|
94
94
|
"@atlaskit/navigation-system": "^7.3.0",
|
|
95
|
-
"@atlaskit/profilecard": "^25.
|
|
95
|
+
"@atlaskit/profilecard": "^25.1.0",
|
|
96
96
|
"@atlaskit/side-nav-items": "^1.13.0",
|
|
97
97
|
"@atlaskit/util-data-test": "^18.5.0",
|
|
98
98
|
"@atlassian/a11y-jest-testing": "^0.11.0",
|