@atlaskit/editor-common 110.29.2 → 110.30.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 110.30.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`63628e69e52e7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/63628e69e52e7) -
8
+ [ux] [EDITOR-2557] Disable sync block creation, edition and deletion in offline mode
9
+ - [`e3aafa008fcf4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e3aafa008fcf4) -
10
+ EDITOR-2771 Pass parent Editor/Renderer data providers through SyncBlockDataProvider to the nested
11
+ renderer
12
+ - Updated dependencies
13
+
14
+ ## 110.30.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`42bd907443147`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/42bd907443147) -
19
+ NO-ISSUE Ensures INP metrics and other analytics account for max appearance
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 110.29.2
4
26
 
5
27
  ### Patch Changes
@@ -115,5 +115,35 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntlNext.defineMes
115
115
  id: 'fabric.editor.syncBlock.toolbar.newLozenge',
116
116
  defaultMessage: 'New',
117
117
  description: 'Text in lozenge that appears next to the create synced block button in the toolbar dropdown menu to show that it is a new feature'
118
+ },
119
+ failToDeleteTitle: {
120
+ id: 'fabric.editor.error.title.failToDelete',
121
+ defaultMessage: 'Failed to delete',
122
+ description: 'Title in flag which appears when a sync block cannot be deleted'
123
+ },
124
+ failToDeleteWhenOfflineDescription: {
125
+ id: 'fabric.editor.error.description.failToDeleteWhenOffline',
126
+ defaultMessage: 'You appear to be offline. Please connect to the internet to delete synced content.',
127
+ description: 'Description in flag which appears when a sync block cannot be deleted in offline mode'
128
+ },
129
+ failToEditTitle: {
130
+ id: 'fabric.editor.error.title.failToEdit',
131
+ defaultMessage: 'Cannot edit synced content offline',
132
+ description: 'Title in flag which appears when a sync block cannot be edited'
133
+ },
134
+ failToEditWhenOfflineDescription: {
135
+ id: 'fabric.editor.error.description.failToEditWhenOffline',
136
+ defaultMessage: 'You appear to be offline. Please connect to the internet to edit synced content.',
137
+ description: 'Description in flag which appears when a sync block cannot be edited in offline mode'
138
+ },
139
+ failToCreateTitle: {
140
+ id: 'fabric.editor.error.title.failToCreate',
141
+ defaultMessage: 'Cannot create synced content offline',
142
+ description: 'Title in flag which appears when a sync block cannot be created'
143
+ },
144
+ failToCreateWhenOfflineDescription: {
145
+ id: 'fabric.editor.error.description.failToCreateWhenOffline',
146
+ defaultMessage: 'You appear to be offline. Please connect to the internet to create synced content.',
147
+ description: 'Description in flag which appears when a sync block cannot be created in offline mode'
118
148
  }
119
149
  });
@@ -16,7 +16,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
16
16
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
17
17
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
18
18
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
19
- var packageVersion = "0.0.0-development";
19
+ var packageVersion = "110.30.0";
20
20
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
21
21
  // Remove URL as it has UGC
22
22
  // Ignored via go/ees007
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.SyncBlockSharedCssClassName = exports.SyncBlockLabelSharedCssClassName = exports.BodiedSyncBlockSharedCssClassName = void 0;
6
+ exports.disabledClassName = exports.SyncBlockStateCssClassName = exports.SyncBlockSharedCssClassName = exports.SyncBlockLabelSharedCssClassName = exports.BodiedSyncBlockSharedCssClassName = void 0;
7
7
  var prefix = 'ak-editor-sync-block';
8
8
  var SyncBlockSharedCssClassName = exports.SyncBlockSharedCssClassName = {
9
9
  prefix: prefix,
@@ -19,4 +19,8 @@ var BodiedSyncBlockSharedCssClassName = exports.BodiedSyncBlockSharedCssClassNam
19
19
  var labelClassName = 'ak-editor-sync-block__label';
20
20
  var SyncBlockLabelSharedCssClassName = exports.SyncBlockLabelSharedCssClassName = {
21
21
  labelClassName: labelClassName
22
+ };
23
+ var disabledClassName = exports.disabledClassName = 'disabled';
24
+ var SyncBlockStateCssClassName = exports.SyncBlockStateCssClassName = {
25
+ disabledClassName: disabledClassName
22
26
  };
@@ -21,4 +21,10 @@ Object.defineProperty(exports, "SyncBlockSharedCssClassName", {
21
21
  return _syncBlock.SyncBlockSharedCssClassName;
22
22
  }
23
23
  });
24
+ Object.defineProperty(exports, "SyncBlockStateCssClassName", {
25
+ enumerable: true,
26
+ get: function get() {
27
+ return _syncBlock.SyncBlockStateCssClassName;
28
+ }
29
+ });
24
30
  var _syncBlock = require("./styles/shared/sync-block");
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
24
24
  * @jsx jsx
25
25
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
26
26
  var packageName = "@atlaskit/editor-common";
27
- var packageVersion = "0.0.0-development";
27
+ var packageVersion = "110.30.0";
28
28
  var halfFocusRing = 1;
29
29
  var dropOffset = '0, 8';
30
30
  var fadeIn = (0, _react2.keyframes)({
@@ -22,6 +22,8 @@ var getAnalyticsAppearance = exports.getAnalyticsAppearance = function getAnalyt
22
22
  return _FabricEditorAnalyticsContext.EDITOR_APPEARANCE_CONTEXT.CHROMELESS;
23
23
  case 'mobile':
24
24
  return _FabricEditorAnalyticsContext.EDITOR_APPEARANCE_CONTEXT.MOBILE;
25
+ case 'max':
26
+ return _FabricEditorAnalyticsContext.EDITOR_APPEARANCE_CONTEXT.MAX;
25
27
  }
26
28
  };
27
29
  var getAnalyticsEditorAppearance = exports.getAnalyticsEditorAppearance = function getAnalyticsEditorAppearance(editorAppearance) {
@@ -109,5 +109,35 @@ export const syncBlockMessages = defineMessages({
109
109
  id: 'fabric.editor.syncBlock.toolbar.newLozenge',
110
110
  defaultMessage: 'New',
111
111
  description: 'Text in lozenge that appears next to the create synced block button in the toolbar dropdown menu to show that it is a new feature'
112
+ },
113
+ failToDeleteTitle: {
114
+ id: 'fabric.editor.error.title.failToDelete',
115
+ defaultMessage: 'Failed to delete',
116
+ description: 'Title in flag which appears when a sync block cannot be deleted'
117
+ },
118
+ failToDeleteWhenOfflineDescription: {
119
+ id: 'fabric.editor.error.description.failToDeleteWhenOffline',
120
+ defaultMessage: 'You appear to be offline. Please connect to the internet to delete synced content.',
121
+ description: 'Description in flag which appears when a sync block cannot be deleted in offline mode'
122
+ },
123
+ failToEditTitle: {
124
+ id: 'fabric.editor.error.title.failToEdit',
125
+ defaultMessage: 'Cannot edit synced content offline',
126
+ description: 'Title in flag which appears when a sync block cannot be edited'
127
+ },
128
+ failToEditWhenOfflineDescription: {
129
+ id: 'fabric.editor.error.description.failToEditWhenOffline',
130
+ defaultMessage: 'You appear to be offline. Please connect to the internet to edit synced content.',
131
+ description: 'Description in flag which appears when a sync block cannot be edited in offline mode'
132
+ },
133
+ failToCreateTitle: {
134
+ id: 'fabric.editor.error.title.failToCreate',
135
+ defaultMessage: 'Cannot create synced content offline',
136
+ description: 'Title in flag which appears when a sync block cannot be created'
137
+ },
138
+ failToCreateWhenOfflineDescription: {
139
+ id: 'fabric.editor.error.description.failToCreateWhenOffline',
140
+ defaultMessage: 'You appear to be offline. Please connect to the internet to create synced content.',
141
+ description: 'Description in flag which appears when a sync block cannot be created in offline mode'
112
142
  }
113
143
  });
@@ -1,7 +1,7 @@
1
1
  import { isFedRamp } from './environment';
2
2
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
3
3
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
4
- const packageVersion = "0.0.0-development";
4
+ const packageVersion = "110.30.0";
5
5
  const sanitiseSentryEvents = (data, _hint) => {
6
6
  // Remove URL as it has UGC
7
7
  // Ignored via go/ees007
@@ -13,4 +13,8 @@ export const BodiedSyncBlockSharedCssClassName = {
13
13
  const labelClassName = 'ak-editor-sync-block__label';
14
14
  export const SyncBlockLabelSharedCssClassName = {
15
15
  labelClassName
16
+ };
17
+ export const disabledClassName = 'disabled';
18
+ export const SyncBlockStateCssClassName = {
19
+ disabledClassName
16
20
  };
@@ -1,4 +1,4 @@
1
1
  // Disable no-re-export rule for entry point files
2
2
  /* eslint-disable @atlaskit/editor/no-re-export */
3
3
 
4
- export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName } from './styles/shared/sync-block';
4
+ export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName } from './styles/shared/sync-block';
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import { fg } from '@atlaskit/platform-feature-flags';
15
15
  import Layer from '../Layer';
16
16
  const packageName = "@atlaskit/editor-common";
17
- const packageVersion = "0.0.0-development";
17
+ const packageVersion = "110.30.0";
18
18
  const halfFocusRing = 1;
19
19
  const dropOffset = '0, 8';
20
20
  const fadeIn = keyframes({
@@ -14,6 +14,8 @@ export const getAnalyticsAppearance = appearance => {
14
14
  return EDITOR_APPEARANCE_CONTEXT.CHROMELESS;
15
15
  case 'mobile':
16
16
  return EDITOR_APPEARANCE_CONTEXT.MOBILE;
17
+ case 'max':
18
+ return EDITOR_APPEARANCE_CONTEXT.MAX;
17
19
  }
18
20
  };
19
21
  export const getAnalyticsEditorAppearance = editorAppearance => editorAppearance ? `editor_${getAnalyticsAppearance(editorAppearance)}` : '_unknown';
@@ -109,5 +109,35 @@ export var syncBlockMessages = defineMessages({
109
109
  id: 'fabric.editor.syncBlock.toolbar.newLozenge',
110
110
  defaultMessage: 'New',
111
111
  description: 'Text in lozenge that appears next to the create synced block button in the toolbar dropdown menu to show that it is a new feature'
112
+ },
113
+ failToDeleteTitle: {
114
+ id: 'fabric.editor.error.title.failToDelete',
115
+ defaultMessage: 'Failed to delete',
116
+ description: 'Title in flag which appears when a sync block cannot be deleted'
117
+ },
118
+ failToDeleteWhenOfflineDescription: {
119
+ id: 'fabric.editor.error.description.failToDeleteWhenOffline',
120
+ defaultMessage: 'You appear to be offline. Please connect to the internet to delete synced content.',
121
+ description: 'Description in flag which appears when a sync block cannot be deleted in offline mode'
122
+ },
123
+ failToEditTitle: {
124
+ id: 'fabric.editor.error.title.failToEdit',
125
+ defaultMessage: 'Cannot edit synced content offline',
126
+ description: 'Title in flag which appears when a sync block cannot be edited'
127
+ },
128
+ failToEditWhenOfflineDescription: {
129
+ id: 'fabric.editor.error.description.failToEditWhenOffline',
130
+ defaultMessage: 'You appear to be offline. Please connect to the internet to edit synced content.',
131
+ description: 'Description in flag which appears when a sync block cannot be edited in offline mode'
132
+ },
133
+ failToCreateTitle: {
134
+ id: 'fabric.editor.error.title.failToCreate',
135
+ defaultMessage: 'Cannot create synced content offline',
136
+ description: 'Title in flag which appears when a sync block cannot be created'
137
+ },
138
+ failToCreateWhenOfflineDescription: {
139
+ id: 'fabric.editor.error.description.failToCreateWhenOffline',
140
+ defaultMessage: 'You appear to be offline. Please connect to the internet to create synced content.',
141
+ description: 'Description in flag which appears when a sync block cannot be created in offline mode'
112
142
  }
113
143
  });
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
7
7
  import { isFedRamp } from './environment';
8
8
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
9
9
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
10
- var packageVersion = "0.0.0-development";
10
+ var packageVersion = "110.30.0";
11
11
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
12
12
  // Remove URL as it has UGC
13
13
  // Ignored via go/ees007
@@ -13,4 +13,8 @@ export var BodiedSyncBlockSharedCssClassName = {
13
13
  var labelClassName = 'ak-editor-sync-block__label';
14
14
  export var SyncBlockLabelSharedCssClassName = {
15
15
  labelClassName: labelClassName
16
+ };
17
+ export var disabledClassName = 'disabled';
18
+ export var SyncBlockStateCssClassName = {
19
+ disabledClassName: disabledClassName
16
20
  };
@@ -1,4 +1,4 @@
1
1
  // Disable no-re-export rule for entry point files
2
2
  /* eslint-disable @atlaskit/editor/no-re-export */
3
3
 
4
- export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName } from './styles/shared/sync-block';
4
+ export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName } from './styles/shared/sync-block';
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
21
21
  import { fg } from '@atlaskit/platform-feature-flags';
22
22
  import Layer from '../Layer';
23
23
  var packageName = "@atlaskit/editor-common";
24
- var packageVersion = "0.0.0-development";
24
+ var packageVersion = "110.30.0";
25
25
  var halfFocusRing = 1;
26
26
  var dropOffset = '0, 8';
27
27
  var fadeIn = keyframes({
@@ -14,6 +14,8 @@ export var getAnalyticsAppearance = function getAnalyticsAppearance(appearance)
14
14
  return EDITOR_APPEARANCE_CONTEXT.CHROMELESS;
15
15
  case 'mobile':
16
16
  return EDITOR_APPEARANCE_CONTEXT.MOBILE;
17
+ case 'max':
18
+ return EDITOR_APPEARANCE_CONTEXT.MAX;
17
19
  }
18
20
  };
19
21
  export var getAnalyticsEditorAppearance = function getAnalyticsEditorAppearance(editorAppearance) {
@@ -109,4 +109,34 @@ export declare const syncBlockMessages: {
109
109
  defaultMessage: string;
110
110
  description: string;
111
111
  };
112
+ failToDeleteTitle: {
113
+ id: string;
114
+ defaultMessage: string;
115
+ description: string;
116
+ };
117
+ failToDeleteWhenOfflineDescription: {
118
+ id: string;
119
+ defaultMessage: string;
120
+ description: string;
121
+ };
122
+ failToEditTitle: {
123
+ id: string;
124
+ defaultMessage: string;
125
+ description: string;
126
+ };
127
+ failToEditWhenOfflineDescription: {
128
+ id: string;
129
+ defaultMessage: string;
130
+ description: string;
131
+ };
132
+ failToCreateTitle: {
133
+ id: string;
134
+ defaultMessage: string;
135
+ description: string;
136
+ };
137
+ failToCreateWhenOfflineDescription: {
138
+ id: string;
139
+ defaultMessage: string;
140
+ description: string;
141
+ };
112
142
  };
@@ -1,14 +1,12 @@
1
1
  import type { EmojiProvider } from '@atlaskit/emoji';
2
2
  import type { MentionProvider } from '@atlaskit/mention/types';
3
3
  import type { TaskDecisionProvider } from '@atlaskit/task-decision/types';
4
- import type { CardProvider } from './card-provider';
5
4
  import type { MediaProvider } from './media-provider';
6
5
  import type { ProfilecardProvider } from './profile-card-provider';
7
6
  export type SyncedBlockRendererDataProviders = {
8
- cardProvider: Promise<CardProvider> | undefined;
9
- emojiProvider: Promise<EmojiProvider> | undefined;
10
- mediaProvider: Promise<MediaProvider> | undefined;
11
- mentionProvider: Promise<MentionProvider> | undefined;
12
- profilecardProvider: Promise<ProfilecardProvider> | undefined;
13
- taskDecisionProvider: Promise<TaskDecisionProvider> | undefined;
7
+ emojiProvider?: Promise<EmojiProvider>;
8
+ mediaProvider?: Promise<MediaProvider>;
9
+ mentionProvider?: Promise<MentionProvider>;
10
+ profilecardProvider?: Promise<ProfilecardProvider>;
11
+ taskDecisionProvider?: Promise<TaskDecisionProvider>;
14
12
  };
@@ -11,3 +11,7 @@ export declare const BodiedSyncBlockSharedCssClassName: {
11
11
  export declare const SyncBlockLabelSharedCssClassName: {
12
12
  labelClassName: string;
13
13
  };
14
+ export declare const disabledClassName = "disabled";
15
+ export declare const SyncBlockStateCssClassName: {
16
+ disabledClassName: string;
17
+ };
@@ -1 +1 @@
1
- export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, } from './styles/shared/sync-block';
1
+ export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName, } from './styles/shared/sync-block';
@@ -109,4 +109,34 @@ export declare const syncBlockMessages: {
109
109
  defaultMessage: string;
110
110
  description: string;
111
111
  };
112
+ failToDeleteTitle: {
113
+ id: string;
114
+ defaultMessage: string;
115
+ description: string;
116
+ };
117
+ failToDeleteWhenOfflineDescription: {
118
+ id: string;
119
+ defaultMessage: string;
120
+ description: string;
121
+ };
122
+ failToEditTitle: {
123
+ id: string;
124
+ defaultMessage: string;
125
+ description: string;
126
+ };
127
+ failToEditWhenOfflineDescription: {
128
+ id: string;
129
+ defaultMessage: string;
130
+ description: string;
131
+ };
132
+ failToCreateTitle: {
133
+ id: string;
134
+ defaultMessage: string;
135
+ description: string;
136
+ };
137
+ failToCreateWhenOfflineDescription: {
138
+ id: string;
139
+ defaultMessage: string;
140
+ description: string;
141
+ };
112
142
  };
@@ -1,14 +1,12 @@
1
1
  import type { EmojiProvider } from '@atlaskit/emoji';
2
2
  import type { MentionProvider } from '@atlaskit/mention/types';
3
3
  import type { TaskDecisionProvider } from '@atlaskit/task-decision/types';
4
- import type { CardProvider } from './card-provider';
5
4
  import type { MediaProvider } from './media-provider';
6
5
  import type { ProfilecardProvider } from './profile-card-provider';
7
6
  export type SyncedBlockRendererDataProviders = {
8
- cardProvider: Promise<CardProvider> | undefined;
9
- emojiProvider: Promise<EmojiProvider> | undefined;
10
- mediaProvider: Promise<MediaProvider> | undefined;
11
- mentionProvider: Promise<MentionProvider> | undefined;
12
- profilecardProvider: Promise<ProfilecardProvider> | undefined;
13
- taskDecisionProvider: Promise<TaskDecisionProvider> | undefined;
7
+ emojiProvider?: Promise<EmojiProvider>;
8
+ mediaProvider?: Promise<MediaProvider>;
9
+ mentionProvider?: Promise<MentionProvider>;
10
+ profilecardProvider?: Promise<ProfilecardProvider>;
11
+ taskDecisionProvider?: Promise<TaskDecisionProvider>;
14
12
  };
@@ -11,3 +11,7 @@ export declare const BodiedSyncBlockSharedCssClassName: {
11
11
  export declare const SyncBlockLabelSharedCssClassName: {
12
12
  labelClassName: string;
13
13
  };
14
+ export declare const disabledClassName = "disabled";
15
+ export declare const SyncBlockStateCssClassName: {
16
+ disabledClassName: string;
17
+ };
@@ -1 +1 @@
1
- export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, } from './styles/shared/sync-block';
1
+ export { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName, } from './styles/shared/sync-block';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "110.29.2",
3
+ "version": "110.30.1",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -34,7 +34,7 @@
34
34
  "@atlaskit/adf-utils": "^19.26.0",
35
35
  "@atlaskit/afm-i18n-platform-editor-editor-common": "2.10.0",
36
36
  "@atlaskit/analytics-listeners": "^9.1.0",
37
- "@atlaskit/analytics-namespaced-context": "^7.1.0",
37
+ "@atlaskit/analytics-namespaced-context": "^7.2.0",
38
38
  "@atlaskit/analytics-next": "^11.1.0",
39
39
  "@atlaskit/atlassian-context": "^0.6.0",
40
40
  "@atlaskit/button": "^23.6.0",
@@ -60,7 +60,7 @@
60
60
  "@atlaskit/media-client": "^35.6.0",
61
61
  "@atlaskit/media-client-react": "^4.1.0",
62
62
  "@atlaskit/media-common": "^12.3.0",
63
- "@atlaskit/media-file-preview": "^0.13.0",
63
+ "@atlaskit/media-file-preview": "^0.14.0",
64
64
  "@atlaskit/media-picker": "^70.0.0",
65
65
  "@atlaskit/media-ui": "^28.7.0",
66
66
  "@atlaskit/media-viewer": "^52.4.0",
@@ -75,7 +75,7 @@
75
75
  "@atlaskit/prosemirror-history": "^0.2.0",
76
76
  "@atlaskit/react-ufo": "^4.14.0",
77
77
  "@atlaskit/section-message": "^8.9.0",
78
- "@atlaskit/smart-card": "^43.6.0",
78
+ "@atlaskit/smart-card": "^43.7.0",
79
79
  "@atlaskit/smart-user-picker": "^8.4.0",
80
80
  "@atlaskit/spinner": "^19.0.0",
81
81
  "@atlaskit/status": "^3.0.0",