@atlaskit/renderer 83.0.0 → 85.0.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.
Files changed (241) hide show
  1. package/CHANGELOG.md +81 -0
  2. package/dist/cjs/actions/index.js +3 -3
  3. package/dist/cjs/actions/matches-utils.js +1 -1
  4. package/dist/cjs/analytics/enums.js +2 -1
  5. package/dist/cjs/analytics/events.js +1 -1
  6. package/dist/cjs/analytics/unsupported-content.js +3 -3
  7. package/dist/cjs/i18n/index.js +26 -26
  8. package/dist/cjs/index.js +8 -8
  9. package/dist/cjs/messages.js +4 -4
  10. package/dist/cjs/react/index.js +13 -9
  11. package/dist/cjs/react/marks/annotation.js +3 -3
  12. package/dist/cjs/react/marks/breakout.js +6 -4
  13. package/dist/cjs/react/marks/code.js +3 -3
  14. package/dist/cjs/react/marks/index.js +24 -24
  15. package/dist/cjs/react/marks/textColor.js +15 -4
  16. package/dist/cjs/react/nodes/blockCard.js +2 -2
  17. package/dist/cjs/react/nodes/caption.js +2 -2
  18. package/dist/cjs/react/nodes/codeBlock.js +2 -2
  19. package/dist/cjs/react/nodes/codeBlockCopyButton.js +2 -2
  20. package/dist/cjs/react/nodes/copy-text-provider.js +1 -1
  21. package/dist/cjs/react/nodes/date.js +8 -6
  22. package/dist/cjs/react/nodes/doc.js +1 -1
  23. package/dist/cjs/react/nodes/embedCard.js +5 -5
  24. package/dist/cjs/react/nodes/emoji.js +2 -2
  25. package/dist/cjs/react/nodes/extension.js +7 -5
  26. package/dist/cjs/react/nodes/heading-anchor.js +5 -3
  27. package/dist/cjs/react/nodes/index.js +92 -58
  28. package/dist/cjs/react/nodes/inlineCard.js +2 -2
  29. package/dist/cjs/react/nodes/layoutColumn.js +2 -2
  30. package/dist/cjs/react/nodes/media.js +5 -3
  31. package/dist/cjs/react/nodes/mediaGroup.js +2 -2
  32. package/dist/cjs/react/nodes/mediaInline.js +2 -2
  33. package/dist/cjs/react/nodes/mediaSingle/index.js +6 -6
  34. package/dist/cjs/react/nodes/mediaSingle/styles.js +2 -2
  35. package/dist/cjs/react/nodes/mention.js +2 -2
  36. package/dist/cjs/react/nodes/panel.js +18 -20
  37. package/dist/cjs/react/nodes/table/colgroup.js +3 -3
  38. package/dist/cjs/react/nodes/table/sticky.js +5 -5
  39. package/dist/cjs/react/nodes/table.js +19 -13
  40. package/dist/cjs/react/nodes/tableCell.js +16 -14
  41. package/dist/cjs/react/nodes/tableRow.js +6 -4
  42. package/dist/cjs/react/nodes/task-item-with-providers.js +3 -1
  43. package/dist/cjs/react/nodes/taskItem.js +3 -3
  44. package/dist/cjs/react/renderer-node.js +1 -1
  45. package/dist/cjs/react/utils/links.js +1 -1
  46. package/dist/cjs/render-document.js +24 -4
  47. package/dist/cjs/renderer-context.js +1 -1
  48. package/dist/cjs/steps/index.js +2 -2
  49. package/dist/cjs/text/nodes/date.js +3 -3
  50. package/dist/cjs/text/nodes/index.js +1 -1
  51. package/dist/cjs/ui/Expand.js +11 -11
  52. package/dist/cjs/ui/ExtensionRenderer.js +8 -4
  53. package/dist/cjs/ui/MediaCard.js +5 -5
  54. package/dist/cjs/ui/Renderer/breakout-ssr.js +4 -4
  55. package/dist/cjs/ui/Renderer/index.js +27 -23
  56. package/dist/cjs/ui/Renderer/style.js +9 -7
  57. package/dist/cjs/ui/RendererActionsContext/index.js +1 -1
  58. package/dist/cjs/ui/SortingIcon.js +9 -9
  59. package/dist/cjs/ui/active-header-id-provider.js +1 -1
  60. package/dist/cjs/ui/annotations/context.js +1 -1
  61. package/dist/cjs/ui/annotations/draft/component.js +3 -3
  62. package/dist/cjs/ui/annotations/draft/index.js +4 -4
  63. package/dist/cjs/ui/annotations/draft/text.js +1 -1
  64. package/dist/cjs/ui/annotations/element/index.js +2 -2
  65. package/dist/cjs/ui/annotations/element/mark.js +4 -4
  66. package/dist/cjs/ui/annotations/hooks/index.js +8 -8
  67. package/dist/cjs/ui/annotations/hooks/use-events.js +12 -12
  68. package/dist/cjs/ui/annotations/hooks/use-load-annotations.js +4 -4
  69. package/dist/cjs/ui/annotations/index.js +5 -5
  70. package/dist/cjs/utils.js +6 -4
  71. package/dist/cjs/version.json +1 -1
  72. package/dist/es2019/actions/index.js +1 -1
  73. package/dist/es2019/analytics/enums.js +1 -0
  74. package/dist/es2019/analytics/unsupported-content.js +1 -1
  75. package/dist/es2019/messages.js +1 -1
  76. package/dist/es2019/react/index.js +2 -1
  77. package/dist/es2019/react/marks/breakout.js +2 -1
  78. package/dist/es2019/react/marks/code.js +1 -1
  79. package/dist/es2019/react/marks/textColor.js +7 -4
  80. package/dist/es2019/react/nodes/blockCard.js +1 -1
  81. package/dist/es2019/react/nodes/caption.js +1 -1
  82. package/dist/es2019/react/nodes/codeBlock.js +1 -1
  83. package/dist/es2019/react/nodes/codeBlockCopyButton.js +1 -1
  84. package/dist/es2019/react/nodes/date.js +3 -2
  85. package/dist/es2019/react/nodes/embedCard.js +1 -1
  86. package/dist/es2019/react/nodes/emoji.js +1 -1
  87. package/dist/es2019/react/nodes/extension.js +2 -1
  88. package/dist/es2019/react/nodes/heading-anchor.js +1 -1
  89. package/dist/es2019/react/nodes/index.js +32 -7
  90. package/dist/es2019/react/nodes/inlineCard.js +1 -1
  91. package/dist/es2019/react/nodes/layoutColumn.js +1 -1
  92. package/dist/es2019/react/nodes/media.js +2 -1
  93. package/dist/es2019/react/nodes/mediaInline.js +1 -1
  94. package/dist/es2019/react/nodes/mediaSingle/index.js +2 -2
  95. package/dist/es2019/react/nodes/mediaSingle/styles.js +1 -1
  96. package/dist/es2019/react/nodes/mention.js +1 -1
  97. package/dist/es2019/react/nodes/panel.js +14 -12
  98. package/dist/es2019/react/nodes/table/colgroup.js +1 -1
  99. package/dist/es2019/react/nodes/table/sticky.js +1 -1
  100. package/dist/es2019/react/nodes/table.js +4 -1
  101. package/dist/es2019/react/nodes/tableCell.js +2 -1
  102. package/dist/es2019/react/nodes/tableRow.js +2 -1
  103. package/dist/es2019/react/nodes/taskItem.js +1 -1
  104. package/dist/es2019/render-document.js +20 -2
  105. package/dist/es2019/text/nodes/date.js +1 -1
  106. package/dist/es2019/ui/Expand.js +2 -2
  107. package/dist/es2019/ui/ExtensionRenderer.js +3 -1
  108. package/dist/es2019/ui/MediaCard.js +1 -1
  109. package/dist/es2019/ui/Renderer/breakout-ssr.js +1 -1
  110. package/dist/es2019/ui/Renderer/index.js +8 -6
  111. package/dist/es2019/ui/Renderer/style.js +3 -1
  112. package/dist/es2019/ui/SortingIcon.js +2 -2
  113. package/dist/es2019/ui/annotations/draft/component.js +1 -1
  114. package/dist/es2019/ui/annotations/element/index.js +1 -1
  115. package/dist/es2019/ui/annotations/element/mark.js +1 -1
  116. package/dist/es2019/ui/annotations/hooks/use-events.js +1 -1
  117. package/dist/es2019/ui/annotations/hooks/use-load-annotations.js +1 -1
  118. package/dist/es2019/version.json +1 -1
  119. package/dist/esm/actions/index.js +1 -1
  120. package/dist/esm/analytics/enums.js +1 -0
  121. package/dist/esm/analytics/unsupported-content.js +1 -1
  122. package/dist/esm/messages.js +1 -1
  123. package/dist/esm/react/index.js +6 -4
  124. package/dist/esm/react/marks/annotation.js +2 -2
  125. package/dist/esm/react/marks/breakout.js +2 -1
  126. package/dist/esm/react/marks/code.js +1 -1
  127. package/dist/esm/react/marks/textColor.js +8 -4
  128. package/dist/esm/react/nodes/blockCard.js +1 -1
  129. package/dist/esm/react/nodes/caption.js +1 -1
  130. package/dist/esm/react/nodes/codeBlock.js +1 -1
  131. package/dist/esm/react/nodes/codeBlockCopyButton.js +1 -1
  132. package/dist/esm/react/nodes/date.js +3 -2
  133. package/dist/esm/react/nodes/embedCard.js +1 -1
  134. package/dist/esm/react/nodes/emoji.js +1 -1
  135. package/dist/esm/react/nodes/extension.js +2 -1
  136. package/dist/esm/react/nodes/heading-anchor.js +4 -2
  137. package/dist/esm/react/nodes/index.js +62 -7
  138. package/dist/esm/react/nodes/inlineCard.js +1 -1
  139. package/dist/esm/react/nodes/layoutColumn.js +1 -1
  140. package/dist/esm/react/nodes/media.js +2 -1
  141. package/dist/esm/react/nodes/mediaGroup.js +2 -2
  142. package/dist/esm/react/nodes/mediaInline.js +1 -1
  143. package/dist/esm/react/nodes/mediaSingle/index.js +2 -2
  144. package/dist/esm/react/nodes/mediaSingle/styles.js +1 -1
  145. package/dist/esm/react/nodes/mention.js +1 -1
  146. package/dist/esm/react/nodes/panel.js +14 -12
  147. package/dist/esm/react/nodes/table/colgroup.js +1 -1
  148. package/dist/esm/react/nodes/table/sticky.js +1 -1
  149. package/dist/esm/react/nodes/table.js +4 -1
  150. package/dist/esm/react/nodes/tableCell.js +2 -1
  151. package/dist/esm/react/nodes/tableRow.js +2 -1
  152. package/dist/esm/react/nodes/task-item-with-providers.js +2 -1
  153. package/dist/esm/react/nodes/taskItem.js +1 -1
  154. package/dist/esm/render-document.js +20 -2
  155. package/dist/esm/text/nodes/date.js +1 -1
  156. package/dist/esm/ui/Expand.js +2 -2
  157. package/dist/esm/ui/ExtensionRenderer.js +3 -1
  158. package/dist/esm/ui/MediaCard.js +3 -3
  159. package/dist/esm/ui/Renderer/breakout-ssr.js +1 -1
  160. package/dist/esm/ui/Renderer/index.js +10 -8
  161. package/dist/esm/ui/Renderer/style.js +4 -3
  162. package/dist/esm/ui/SortingIcon.js +2 -2
  163. package/dist/esm/ui/annotations/draft/component.js +1 -1
  164. package/dist/esm/ui/annotations/element/index.js +1 -1
  165. package/dist/esm/ui/annotations/element/mark.js +3 -3
  166. package/dist/esm/ui/annotations/hooks/use-events.js +3 -3
  167. package/dist/esm/ui/annotations/hooks/use-load-annotations.js +3 -3
  168. package/dist/esm/utils.js +3 -2
  169. package/dist/esm/version.json +1 -1
  170. package/dist/types/actions/index.d.ts +1 -1
  171. package/dist/types/analytics/enums.d.ts +1 -0
  172. package/dist/types/analytics/events.d.ts +8 -2
  173. package/dist/types/analytics/unsupported-content.d.ts +1 -1
  174. package/dist/types/react/index.d.ts +4 -1
  175. package/dist/types/react/marks/alignment.d.ts +1 -0
  176. package/dist/types/react/marks/annotation.d.ts +1 -0
  177. package/dist/types/react/marks/code.d.ts +6 -6
  178. package/dist/types/react/marks/data-consumer.d.ts +1 -0
  179. package/dist/types/react/marks/em.d.ts +1 -0
  180. package/dist/types/react/marks/fragment.d.ts +1 -0
  181. package/dist/types/react/marks/indentation.d.ts +1 -0
  182. package/dist/types/react/marks/link.d.ts +1 -0
  183. package/dist/types/react/marks/strike.d.ts +1 -0
  184. package/dist/types/react/marks/strong.d.ts +1 -0
  185. package/dist/types/react/marks/subsup.d.ts +1 -0
  186. package/dist/types/react/marks/textColor.d.ts +1 -0
  187. package/dist/types/react/marks/underline.d.ts +1 -0
  188. package/dist/types/react/marks/unsupportedMark.d.ts +1 -0
  189. package/dist/types/react/marks/unsupportedNodeAttribute.d.ts +1 -0
  190. package/dist/types/react/nodes/blockCard.d.ts +2 -1
  191. package/dist/types/react/nodes/bodiedExtension.d.ts +2 -1
  192. package/dist/types/react/nodes/caption.d.ts +1 -0
  193. package/dist/types/react/nodes/codeBlock.d.ts +11 -3
  194. package/dist/types/react/nodes/codeBlockCopyButton.d.ts +3 -3
  195. package/dist/types/react/nodes/date.d.ts +3 -3
  196. package/dist/types/react/nodes/decisionItem.d.ts +1 -0
  197. package/dist/types/react/nodes/doc.d.ts +1 -0
  198. package/dist/types/react/nodes/embedCard.d.ts +2 -1
  199. package/dist/types/react/nodes/emoji.d.ts +1 -1
  200. package/dist/types/react/nodes/extension.d.ts +14 -13
  201. package/dist/types/react/nodes/heading-anchor.d.ts +4 -4
  202. package/dist/types/react/nodes/heading.d.ts +1 -0
  203. package/dist/types/react/nodes/index.d.ts +41 -17
  204. package/dist/types/react/nodes/inlineCard.d.ts +21 -21
  205. package/dist/types/react/nodes/inlineExtension.d.ts +2 -1
  206. package/dist/types/react/nodes/media.d.ts +2 -2
  207. package/dist/types/react/nodes/mediaGroup.d.ts +1 -1
  208. package/dist/types/react/nodes/mediaInline.d.ts +1 -1
  209. package/dist/types/react/nodes/mediaSingle/index.d.ts +4 -4
  210. package/dist/types/react/nodes/mediaSingle/styles.d.ts +1 -1
  211. package/dist/types/react/nodes/mention.d.ts +2 -1
  212. package/dist/types/react/nodes/panel.d.ts +3 -1
  213. package/dist/types/react/nodes/paragraph.d.ts +1 -0
  214. package/dist/types/react/nodes/placeholder.d.ts +1 -0
  215. package/dist/types/react/nodes/rule.d.ts +1 -0
  216. package/dist/types/react/nodes/table/colgroup.d.ts +1 -0
  217. package/dist/types/react/nodes/table/sticky.d.ts +1 -1
  218. package/dist/types/react/nodes/table.d.ts +22 -21
  219. package/dist/types/react/nodes/tableCell.d.ts +1 -1
  220. package/dist/types/react/nodes/tableRow.d.ts +1 -1
  221. package/dist/types/react/nodes/task-item-with-providers.d.ts +1 -1
  222. package/dist/types/react/nodes/taskItem.d.ts +1 -1
  223. package/dist/types/react/nodes/text-wrapper.d.ts +1 -0
  224. package/dist/types/react/types.d.ts +3 -1
  225. package/dist/types/react/utils/getCardClickHandler.d.ts +1 -1
  226. package/dist/types/render-document.d.ts +1 -1
  227. package/dist/types/ui/Expand.d.ts +3 -3
  228. package/dist/types/ui/ExtensionRenderer.d.ts +3 -1
  229. package/dist/types/ui/MediaCard.d.ts +3 -2
  230. package/dist/types/ui/Renderer/breakout-ssr.d.ts +1 -0
  231. package/dist/types/ui/SortingIcon.d.ts +2 -1
  232. package/dist/types/ui/annotations/context.d.ts +1 -1
  233. package/dist/types/ui/annotations/element/mark.d.ts +1 -1
  234. package/dist/types/ui/annotations/hooks/use-events.d.ts +2 -1
  235. package/dist/types/ui/annotations/hooks/use-inline-comment-subscriber.d.ts +1 -1
  236. package/dist/types/ui/annotations/selection/mounter.d.ts +1 -1
  237. package/dist/types/ui/annotations/selection/range-validator.d.ts +1 -1
  238. package/dist/types/ui/annotations/types.d.ts +1 -1
  239. package/dist/types/ui/renderer-props.d.ts +6 -1
  240. package/dist/types/utils.d.ts +3 -1
  241. package/package.json +20 -20
@@ -1 +1 @@
1
- export declare const useInlineCommentSubscriberContext: () => import("@atlaskit/editor-common").AnnotationUpdateEmitter | null;
1
+ export declare const useInlineCommentSubscriberContext: () => import("@atlaskit/editor-common/types").AnnotationUpdateEmitter | null;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { AnnotationByMatches, InlineCommentSelectionComponentProps } from '@atlaskit/editor-common';
2
+ import type { AnnotationByMatches, InlineCommentSelectionComponentProps } from '@atlaskit/editor-common/types';
3
3
  import { ApplyAnnotation } from '../../../actions/index';
4
4
  import { Position } from '../types';
5
5
  import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { Position } from '../types';
3
- import { InlineCommentSelectionComponentProps } from '@atlaskit/editor-common';
3
+ import type { InlineCommentSelectionComponentProps } from '@atlaskit/editor-common/types';
4
4
  import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
5
5
  declare type Props = {
6
6
  selectionComponent: React.ComponentType<InlineCommentSelectionComponentProps>;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { JSONDocNode } from '@atlaskit/editor-json-transformer';
3
- import { AnnotationProviders } from '@atlaskit/editor-common';
3
+ import type { AnnotationProviders } from '@atlaskit/editor-common/types';
4
4
  export declare enum InsertDraftPosition {
5
5
  AROUND_TEXT = "AROUND_TEXT",
6
6
  START = "START",
@@ -1,6 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  import { Schema } from 'prosemirror-model';
3
- import { ADFStage, ProviderFactory, EventHandlers, ExtensionHandlers, AnnotationProviders, UnsupportedContentLevelsTracking } from '@atlaskit/editor-common';
3
+ import type { ExtensionHandlers } from '@atlaskit/editor-common/extensions';
4
+ import { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
5
+ import type { ADFStage } from '@atlaskit/editor-common/validator';
6
+ import type { AnnotationProviders } from '@atlaskit/editor-common/types';
7
+ import type { EventHandlers } from '@atlaskit/editor-common/ui';
8
+ import type { UnsupportedContentLevelsTracking } from '@atlaskit/editor-common/utils';
4
9
  import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
5
10
  import { RendererContext } from '../';
6
11
  import { RenderOutputStat } from '../render-document';
@@ -1,5 +1,7 @@
1
1
  import { Schema } from 'prosemirror-model';
2
- import { Transformer, ADNode, EventHandlers } from '@atlaskit/editor-common';
2
+ import type { ADNode } from '@atlaskit/editor-common/validator';
3
+ import type { EventHandlers } from '@atlaskit/editor-common/ui';
4
+ import { Transformer } from '@atlaskit/editor-common/types';
3
5
  import { Node as PMNode } from 'prosemirror-model';
4
6
  import { RendererAppearance } from './ui/Renderer/types';
5
7
  export declare type TransformerProvider<T> = (schema: Schema) => Transformer<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "83.0.0",
3
+ "version": "85.0.0",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -24,40 +24,41 @@
24
24
  }
25
25
  },
26
26
  "dependencies": {
27
- "@atlaskit/adf-schema": "^20.0.0",
28
- "@atlaskit/adf-utils": "^14.4.0",
27
+ "@atlaskit/adf-schema": "^21.0.0",
28
+ "@atlaskit/adf-utils": "^15.0.0",
29
29
  "@atlaskit/analytics-listeners": "^8.0.0",
30
30
  "@atlaskit/analytics-namespaced-context": "^6.3.0",
31
31
  "@atlaskit/analytics-next": "^8.2.0",
32
32
  "@atlaskit/button": "^16.1.0",
33
33
  "@atlaskit/code": "^14.3.0",
34
- "@atlaskit/editor-common": "^61.0.0",
34
+ "@atlaskit/editor-common": "^63.0.0",
35
35
  "@atlaskit/editor-json-transformer": "^8.7.0",
36
36
  "@atlaskit/editor-shared-styles": "^1.6.0",
37
- "@atlaskit/icon": "^21.9.0",
38
- "@atlaskit/media-card": "^72.1.0",
37
+ "@atlaskit/icon": "^21.10.0",
38
+ "@atlaskit/media-card": "^73.1.0",
39
39
  "@atlaskit/media-client": "^14.3.0",
40
40
  "@atlaskit/media-common": "^2.10.0",
41
- "@atlaskit/media-filmstrip": "^42.1.0",
42
- "@atlaskit/media-viewer": "^45.8.0",
43
- "@atlaskit/status": "^0.12.0",
44
- "@atlaskit/task-decision": "^17.2.0",
45
- "@atlaskit/theme": "^12.0.0",
41
+ "@atlaskit/media-filmstrip": "^42.2.0",
42
+ "@atlaskit/media-viewer": "^46.0.0",
43
+ "@atlaskit/status": "^1.0.0",
44
+ "@atlaskit/task-decision": "^17.3.0",
45
+ "@atlaskit/theme": "^12.1.0",
46
46
  "@atlaskit/tooltip": "^17.5.0",
47
47
  "@atlaskit/width-detector": "^3.0.0",
48
48
  "@babel/runtime": "^7.0.0",
49
- "lodash": "^4.17.15",
49
+ "lodash": "^4.17.21",
50
50
  "memoize-one": "^6.0.0",
51
51
  "prosemirror-model": "1.14.3",
52
52
  "prosemirror-transform": "1.3.2",
53
53
  "prosemirror-utils": "^1.0.0-0",
54
54
  "react-intl": "^2.6.0",
55
+ "react-intl-next": "npm:react-intl@^5.18.1",
55
56
  "react-loadable": "^5.1.0",
56
57
  "uuid": "^3.1.0"
57
58
  },
58
59
  "peerDependencies": {
59
60
  "@atlaskit/media-core": "^32.2.0",
60
- "@atlaskit/smart-card": "^16.3.0",
61
+ "@atlaskit/smart-card": "^17.0.1",
61
62
  "react": "^16.8.0",
62
63
  "react-dom": "^16.8.0",
63
64
  "styled-components": "^3.2.6"
@@ -65,23 +66,22 @@
65
66
  "devDependencies": {
66
67
  "@atlaskit/analytics-gas-types": "^5.0.5",
67
68
  "@atlaskit/avatar": "^20.5.0",
68
- "@atlaskit/build-utils": "^2.6.2",
69
69
  "@atlaskit/css-reset": "^6.3.0",
70
70
  "@atlaskit/docs": "*",
71
- "@atlaskit/editor-core": "^152.0.0",
72
- "@atlaskit/editor-test-helpers": "^15.6.0",
71
+ "@atlaskit/editor-core": "^154.0.0",
72
+ "@atlaskit/editor-test-helpers": "^16.0.0",
73
73
  "@atlaskit/logo": "^13.5.0",
74
74
  "@atlaskit/media-core": "^32.2.0",
75
75
  "@atlaskit/media-integration-test-helpers": "^2.5.0",
76
- "@atlaskit/media-test-helpers": "^28.9.0",
76
+ "@atlaskit/media-test-helpers": "^29.0.0",
77
77
  "@atlaskit/mention": "^19.7.0",
78
78
  "@atlaskit/navigation-next": "^9.0.0",
79
- "@atlaskit/profilecard": "^15.8.0",
79
+ "@atlaskit/profilecard": "^16.2.0",
80
80
  "@atlaskit/radio": "^5.3.0",
81
81
  "@atlaskit/range": "^5.0.11",
82
- "@atlaskit/smart-card": "^16.3.0",
82
+ "@atlaskit/smart-card": "^17.0.0",
83
83
  "@atlaskit/ssr": "*",
84
- "@atlaskit/util-data-test": "^17.0.0",
84
+ "@atlaskit/util-data-test": "^17.2.0",
85
85
  "@atlaskit/visual-regression": "*",
86
86
  "@atlaskit/webdriver-runner": "*",
87
87
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",