@atlaskit/renderer 118.6.11 → 118.6.12

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,18 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 118.6.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [#168516](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/168516)
8
+ [`c5bf272abb6bc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c5bf272abb6bc) -
9
+ Allow extra prop in InlineNodeRendererWrapper
10
+ - [#166270](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/166270)
11
+ [`231ec9798652d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/231ec9798652d) -
12
+ [ux] Added hideIconLoadingSkeleton prop to CardSSR to allow for hiding the loading skeleton for
13
+ image icons in the title of block cards. Set to true in the renderer.
14
+ - Updated dependencies
15
+
3
16
  ## 118.6.11
4
17
 
5
18
  ### Patch Changes
@@ -13,11 +13,13 @@ exports.default = void 0;
13
13
  */
14
14
  //Slovak
15
15
  var _default = exports.default = {
16
- 'fabric.editor.headingLink.ascSortingLabel': 'None',
17
- 'fabric.editor.headingLink.copied': 'None',
18
- 'fabric.editor.headingLink.copyAnchorLink': 'None',
19
- 'fabric.editor.headingLink.copyAriaLabel': 'None',
20
- 'fabric.editor.headingLink.failedToCopy': 'None',
16
+ 'fabric.editor.headingLink.ascSortingLabel': 'vzostupne',
17
+ 'fabric.editor.headingLink.copied': 'Skopírované!',
18
+ 'fabric.editor.headingLink.copyAnchorLink': 'Skopírovať prepojenie do nadpisu',
19
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopírovať',
20
+ 'fabric.editor.headingLink.descSortingLabel': 'zostupne',
21
+ 'fabric.editor.headingLink.failedToCopy': 'Nepodarilo sa skopírovať',
22
+ 'fabric.editor.headingLink.noneSortingLabel': 'žiadne',
21
23
  'fabric.editor.inlineComment.marker.end': 'koniec vnoreného komentára',
22
24
  'fabric.editor.inlineComment.marker.start': 'začiatok vnoreného komentára'
23
25
  };
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /* prettier-ignore */
8
+ /**
9
+ * NOTE:
10
+ *
11
+ * This file is automatically generated by Traduki 2.0.
12
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
13
+ */
14
+ //Serbian (Serbia) [sr-RS]
15
+ var _default = exports.default = {
16
+ 'fabric.editor.headingLink.ascSortingLabel': 'rastući',
17
+ 'fabric.editor.headingLink.copied': 'Kopirano!',
18
+ 'fabric.editor.headingLink.copyAnchorLink': 'Kopiraj link naslova',
19
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopiraj',
20
+ 'fabric.editor.headingLink.descSortingLabel': 'opadajući',
21
+ 'fabric.editor.headingLink.failedToCopy': 'Kopiranje nije uspelo',
22
+ 'fabric.editor.headingLink.noneSortingLabel': 'nijedno',
23
+ 'fabric.editor.inlineComment.marker.end': 'kraj umetnutog komentara',
24
+ 'fabric.editor.inlineComment.marker.start': 'početak umetnutog komentara'
25
+ };
@@ -134,7 +134,8 @@ function BlockCard(props) {
134
134
  // eslint-disable-next-line react/jsx-props-no-spreading
135
135
  }, cardProps, {
136
136
  url: url,
137
- onError: onError
137
+ onError: onError,
138
+ hideIconLoadingSkeleton: (0, _platformFeatureFlags.fg)('platform_fix_block_card_img_icon_vc')
138
139
  }));
139
140
  } else {
140
141
  cardComponent = (0, _react.jsx)(_smartCard.Card, (0, _extends2.default)({
@@ -15,7 +15,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
15
15
  var _ui = require("@atlaskit/editor-common/ui");
16
16
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
17
17
  var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-right"));
18
- var _chevronRight2 = _interopRequireDefault(require("@atlaskit/icon/utility/chevron-right"));
18
+ var _chevronRight2 = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
19
19
  var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
20
20
  var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
21
21
  var _uniqueId2 = _interopRequireDefault(require("lodash/uniqueId"));
@@ -238,7 +238,8 @@ function Expand(_ref) {
238
238
  }, (0, _react.jsx)(_chevronRight2.default, {
239
239
  label: label,
240
240
  LEGACY_fallbackIcon: _chevronRight.default,
241
- spacing: "spacious"
241
+ spacing: "spacious",
242
+ size: "small"
242
243
  })) : (0, _react.jsx)(_tooltip.default, {
243
244
  content: label,
244
245
  position: "top"
@@ -251,7 +252,8 @@ function Expand(_ref) {
251
252
  }, (0, _react.jsx)(_chevronRight2.default, {
252
253
  label: label,
253
254
  LEGACY_fallbackIcon: _chevronRight.default,
254
- spacing: "spacious"
255
+ spacing: "spacious",
256
+ size: "small"
255
257
  }))), (0, _react.jsx)("span", {
256
258
  css: titleStyles,
257
259
  id: id
@@ -134,10 +134,14 @@ function ExtensionRenderer(props) {
134
134
  });
135
135
  }
136
136
  var InlineNodeRendererWrapper = exports.InlineNodeRendererWrapper = function InlineNodeRendererWrapper(_ref) {
137
- var children = _ref.children;
137
+ var children = _ref.children,
138
+ ssrPlaceholder = _ref.ssrPlaceholder,
139
+ ssrPlaceholderReplace = _ref.ssrPlaceholderReplace;
138
140
  return (0, _react.jsx)("div", {
139
141
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
140
142
  className: "inline-extension-renderer",
141
- css: inlineExtensionStyle
143
+ css: inlineExtensionStyle,
144
+ "data-ssr-placeholder": ssrPlaceholder,
145
+ "data-ssr-placeholder-replace": ssrPlaceholderReplace
142
146
  }, children);
143
147
  };
@@ -62,7 +62,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
62
62
  var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
63
63
  var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
64
64
  var packageName = "@atlaskit/renderer";
65
- var packageVersion = "118.6.11";
65
+ var packageVersion = "118.6.12";
66
66
  var setAsQueryContainerStyles = (0, _react2.css)({
67
67
  containerName: 'ak-renderer-wrapper',
68
68
  containerType: 'inline-size'
@@ -7,11 +7,13 @@
7
7
  */
8
8
  //Slovak
9
9
  export default {
10
- 'fabric.editor.headingLink.ascSortingLabel': 'None',
11
- 'fabric.editor.headingLink.copied': 'None',
12
- 'fabric.editor.headingLink.copyAnchorLink': 'None',
13
- 'fabric.editor.headingLink.copyAriaLabel': 'None',
14
- 'fabric.editor.headingLink.failedToCopy': 'None',
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'vzostupne',
11
+ 'fabric.editor.headingLink.copied': 'Skopírované!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Skopírovať prepojenie do nadpisu',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopírovať',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'zostupne',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Nepodarilo sa skopírovať',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'žiadne',
15
17
  'fabric.editor.inlineComment.marker.end': 'koniec vnoreného komentára',
16
18
  'fabric.editor.inlineComment.marker.start': 'začiatok vnoreného komentára'
17
19
  };
@@ -0,0 +1,19 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Serbia) [sr-RS]
9
+ export default {
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'rastući',
11
+ 'fabric.editor.headingLink.copied': 'Kopirano!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Kopiraj link naslova',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopiraj',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'opadajući',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Kopiranje nije uspelo',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'nijedno',
17
+ 'fabric.editor.inlineComment.marker.end': 'kraj umetnutog komentara',
18
+ 'fabric.editor.inlineComment.marker.start': 'početak umetnutog komentara'
19
+ };
@@ -121,7 +121,8 @@ export default function BlockCard(props) {
121
121
  // eslint-disable-next-line react/jsx-props-no-spreading
122
122
  }, cardProps, {
123
123
  url: url,
124
- onError: onError
124
+ onError: onError,
125
+ hideIconLoadingSkeleton: fg('platform_fix_block_card_img_icon_vc')
125
126
  }));
126
127
  } else {
127
128
  cardComponent = jsx(Card, _extends({
@@ -11,7 +11,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/anal
11
11
  import { ExpandIconWrapper, ExpandLayoutWrapperWithRef, expandMessages, WidthProvider } from '@atlaskit/editor-common/ui';
12
12
  import { akEditorLineHeight, akEditorSwoopCubicBezier, akLayoutGutterOffset } from '@atlaskit/editor-shared-styles';
13
13
  import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
14
- import ChevronRightIcon from '@atlaskit/icon/utility/chevron-right';
14
+ import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
15
15
  import Tooltip from '@atlaskit/tooltip';
16
16
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
17
17
  import _uniqueId from 'lodash/uniqueId';
@@ -218,7 +218,8 @@ function Expand({
218
218
  }, jsx(ChevronRightIcon, {
219
219
  label: label,
220
220
  LEGACY_fallbackIcon: ChevronRightIconLegacy,
221
- spacing: "spacious"
221
+ spacing: "spacious",
222
+ size: "small"
222
223
  })) : jsx(Tooltip, {
223
224
  content: label,
224
225
  position: "top"
@@ -231,7 +232,8 @@ function Expand({
231
232
  }, jsx(ChevronRightIcon, {
232
233
  label: label,
233
234
  LEGACY_fallbackIcon: ChevronRightIconLegacy,
234
- spacing: "spacious"
235
+ spacing: "spacious",
236
+ size: "small"
235
237
  }))), jsx("span", {
236
238
  css: titleStyles,
237
239
  id: id
@@ -119,11 +119,15 @@ export default function ExtensionRenderer(props) {
119
119
  });
120
120
  }
121
121
  export const InlineNodeRendererWrapper = ({
122
- children
122
+ children,
123
+ ssrPlaceholder,
124
+ ssrPlaceholderReplace
123
125
  }) => {
124
126
  return jsx("div", {
125
127
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
126
128
  className: "inline-extension-renderer",
127
- css: inlineExtensionStyle
129
+ css: inlineExtensionStyle,
130
+ "data-ssr-placeholder": ssrPlaceholder,
131
+ "data-ssr-placeholder-replace": ssrPlaceholderReplace
128
132
  }, children);
129
133
  };
@@ -48,7 +48,7 @@ import { PortalContext } from './PortalContext';
48
48
  export const NORMAL_SEVERITY_THRESHOLD = 2000;
49
49
  export const DEGRADED_SEVERITY_THRESHOLD = 3000;
50
50
  const packageName = "@atlaskit/renderer";
51
- const packageVersion = "118.6.11";
51
+ const packageVersion = "118.6.12";
52
52
  const setAsQueryContainerStyles = css({
53
53
  containerName: 'ak-renderer-wrapper',
54
54
  containerType: 'inline-size'
@@ -7,11 +7,13 @@
7
7
  */
8
8
  //Slovak
9
9
  export default {
10
- 'fabric.editor.headingLink.ascSortingLabel': 'None',
11
- 'fabric.editor.headingLink.copied': 'None',
12
- 'fabric.editor.headingLink.copyAnchorLink': 'None',
13
- 'fabric.editor.headingLink.copyAriaLabel': 'None',
14
- 'fabric.editor.headingLink.failedToCopy': 'None',
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'vzostupne',
11
+ 'fabric.editor.headingLink.copied': 'Skopírované!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Skopírovať prepojenie do nadpisu',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopírovať',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'zostupne',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Nepodarilo sa skopírovať',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'žiadne',
15
17
  'fabric.editor.inlineComment.marker.end': 'koniec vnoreného komentára',
16
18
  'fabric.editor.inlineComment.marker.start': 'začiatok vnoreného komentára'
17
19
  };
@@ -0,0 +1,19 @@
1
+ /* prettier-ignore */
2
+ /**
3
+ * NOTE:
4
+ *
5
+ * This file is automatically generated by Traduki 2.0.
6
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
7
+ */
8
+ //Serbian (Serbia) [sr-RS]
9
+ export default {
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'rastući',
11
+ 'fabric.editor.headingLink.copied': 'Kopirano!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Kopiraj link naslova',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Kopiraj',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'opadajući',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Kopiranje nije uspelo',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'nijedno',
17
+ 'fabric.editor.inlineComment.marker.end': 'kraj umetnutog komentara',
18
+ 'fabric.editor.inlineComment.marker.start': 'početak umetnutog komentara'
19
+ };
@@ -126,7 +126,8 @@ export default function BlockCard(props) {
126
126
  // eslint-disable-next-line react/jsx-props-no-spreading
127
127
  }, cardProps, {
128
128
  url: url,
129
- onError: onError
129
+ onError: onError,
130
+ hideIconLoadingSkeleton: fg('platform_fix_block_card_img_icon_vc')
130
131
  }));
131
132
  } else {
132
133
  cardComponent = jsx(Card, _extends({
@@ -14,7 +14,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/anal
14
14
  import { ExpandIconWrapper, ExpandLayoutWrapperWithRef, expandMessages, WidthProvider } from '@atlaskit/editor-common/ui';
15
15
  import { akEditorLineHeight, akEditorSwoopCubicBezier, akLayoutGutterOffset } from '@atlaskit/editor-shared-styles';
16
16
  import { default as ChevronRightIconLegacy } from '@atlaskit/icon/glyph/chevron-right';
17
- import ChevronRightIcon from '@atlaskit/icon/utility/chevron-right';
17
+ import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
18
18
  import Tooltip from '@atlaskit/tooltip';
19
19
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
20
20
  import _uniqueId from 'lodash/uniqueId';
@@ -229,7 +229,8 @@ function Expand(_ref) {
229
229
  }, jsx(ChevronRightIcon, {
230
230
  label: label,
231
231
  LEGACY_fallbackIcon: ChevronRightIconLegacy,
232
- spacing: "spacious"
232
+ spacing: "spacious",
233
+ size: "small"
233
234
  })) : jsx(Tooltip, {
234
235
  content: label,
235
236
  position: "top"
@@ -242,7 +243,8 @@ function Expand(_ref) {
242
243
  }, jsx(ChevronRightIcon, {
243
244
  label: label,
244
245
  LEGACY_fallbackIcon: ChevronRightIconLegacy,
245
- spacing: "spacious"
246
+ spacing: "spacious",
247
+ size: "small"
246
248
  }))), jsx("span", {
247
249
  css: titleStyles,
248
250
  id: id
@@ -125,10 +125,14 @@ export default function ExtensionRenderer(props) {
125
125
  });
126
126
  }
127
127
  export var InlineNodeRendererWrapper = function InlineNodeRendererWrapper(_ref) {
128
- var children = _ref.children;
128
+ var children = _ref.children,
129
+ ssrPlaceholder = _ref.ssrPlaceholder,
130
+ ssrPlaceholderReplace = _ref.ssrPlaceholderReplace;
129
131
  return jsx("div", {
130
132
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
131
133
  className: "inline-extension-renderer",
132
- css: inlineExtensionStyle
134
+ css: inlineExtensionStyle,
135
+ "data-ssr-placeholder": ssrPlaceholder,
136
+ "data-ssr-placeholder-replace": ssrPlaceholderReplace
133
137
  }, children);
134
138
  };
@@ -53,7 +53,7 @@ import { PortalContext } from './PortalContext';
53
53
  export var NORMAL_SEVERITY_THRESHOLD = 2000;
54
54
  export var DEGRADED_SEVERITY_THRESHOLD = 3000;
55
55
  var packageName = "@atlaskit/renderer";
56
- var packageVersion = "118.6.11";
56
+ var packageVersion = "118.6.12";
57
57
  var setAsQueryContainerStyles = css({
58
58
  containerName: 'ak-renderer-wrapper',
59
59
  containerType: 'inline-size'
@@ -9,7 +9,9 @@ declare const _default: {
9
9
  'fabric.editor.headingLink.copied': string;
10
10
  'fabric.editor.headingLink.copyAnchorLink': string;
11
11
  'fabric.editor.headingLink.copyAriaLabel': string;
12
+ 'fabric.editor.headingLink.descSortingLabel': string;
12
13
  'fabric.editor.headingLink.failedToCopy': string;
14
+ 'fabric.editor.headingLink.noneSortingLabel': string;
13
15
  'fabric.editor.inlineComment.marker.end': string;
14
16
  'fabric.editor.inlineComment.marker.start': string;
15
17
  };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.editor.headingLink.ascSortingLabel': string;
9
+ 'fabric.editor.headingLink.copied': string;
10
+ 'fabric.editor.headingLink.copyAnchorLink': string;
11
+ 'fabric.editor.headingLink.copyAriaLabel': string;
12
+ 'fabric.editor.headingLink.descSortingLabel': string;
13
+ 'fabric.editor.headingLink.failedToCopy': string;
14
+ 'fabric.editor.headingLink.noneSortingLabel': string;
15
+ 'fabric.editor.inlineComment.marker.end': string;
16
+ 'fabric.editor.inlineComment.marker.start': string;
17
+ };
18
+ export default _default;
@@ -28,5 +28,8 @@ interface Props {
28
28
  }) => JSX.Element;
29
29
  }
30
30
  export default function ExtensionRenderer(props: Props): JSX.Element;
31
- export declare const InlineNodeRendererWrapper: ({ children }: React.PropsWithChildren<unknown>) => jsx.JSX.Element;
31
+ export declare const InlineNodeRendererWrapper: ({ children, ssrPlaceholder, ssrPlaceholderReplace, }: React.PropsWithChildren<{
32
+ ssrPlaceholder?: string | undefined;
33
+ ssrPlaceholderReplace?: string | undefined;
34
+ }>) => jsx.JSX.Element;
32
35
  export {};
@@ -9,7 +9,9 @@ declare const _default: {
9
9
  'fabric.editor.headingLink.copied': string;
10
10
  'fabric.editor.headingLink.copyAnchorLink': string;
11
11
  'fabric.editor.headingLink.copyAriaLabel': string;
12
+ 'fabric.editor.headingLink.descSortingLabel': string;
12
13
  'fabric.editor.headingLink.failedToCopy': string;
14
+ 'fabric.editor.headingLink.noneSortingLabel': string;
13
15
  'fabric.editor.inlineComment.marker.end': string;
14
16
  'fabric.editor.inlineComment.marker.start': string;
15
17
  };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * NOTE:
3
+ *
4
+ * This file is automatically generated by Traduki 2.0.
5
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
6
+ */
7
+ declare const _default: {
8
+ 'fabric.editor.headingLink.ascSortingLabel': string;
9
+ 'fabric.editor.headingLink.copied': string;
10
+ 'fabric.editor.headingLink.copyAnchorLink': string;
11
+ 'fabric.editor.headingLink.copyAriaLabel': string;
12
+ 'fabric.editor.headingLink.descSortingLabel': string;
13
+ 'fabric.editor.headingLink.failedToCopy': string;
14
+ 'fabric.editor.headingLink.noneSortingLabel': string;
15
+ 'fabric.editor.inlineComment.marker.end': string;
16
+ 'fabric.editor.inlineComment.marker.start': string;
17
+ };
18
+ export default _default;
@@ -28,5 +28,8 @@ interface Props {
28
28
  }) => JSX.Element;
29
29
  }
30
30
  export default function ExtensionRenderer(props: Props): JSX.Element;
31
- export declare const InlineNodeRendererWrapper: ({ children }: React.PropsWithChildren<unknown>) => jsx.JSX.Element;
31
+ export declare const InlineNodeRendererWrapper: ({ children, ssrPlaceholder, ssrPlaceholderReplace, }: React.PropsWithChildren<{
32
+ ssrPlaceholder?: string | undefined;
33
+ ssrPlaceholderReplace?: string | undefined;
34
+ }>) => jsx.JSX.Element;
32
35
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "118.6.11",
3
+ "version": "118.6.12",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -52,11 +52,11 @@
52
52
  "@atlaskit/platform-feature-flags": "^1.1.0",
53
53
  "@atlaskit/platform-feature-flags-react": "^0.2.0",
54
54
  "@atlaskit/react-ufo": "^3.13.0",
55
- "@atlaskit/smart-card": "^38.8.0",
55
+ "@atlaskit/smart-card": "^38.9.0",
56
56
  "@atlaskit/status": "^3.0.0",
57
57
  "@atlaskit/task-decision": "^19.2.0",
58
58
  "@atlaskit/theme": "^18.0.0",
59
- "@atlaskit/tmp-editor-statsig": "^6.0.0",
59
+ "@atlaskit/tmp-editor-statsig": "^6.1.0",
60
60
  "@atlaskit/tokens": "^5.1.0",
61
61
  "@atlaskit/tooltip": "^20.3.0",
62
62
  "@atlaskit/visually-hidden": "^3.0.0",
@@ -262,6 +262,9 @@
262
262
  },
263
263
  "confluence_frontend_fix_view_page_slo": {
264
264
  "type": "boolean"
265
+ },
266
+ "platform_fix_block_card_img_icon_vc": {
267
+ "type": "boolean"
265
268
  }
266
269
  },
267
270
  "af:exports": {