@atlaskit/renderer 119.0.1 → 119.0.3

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,24 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 119.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#175437](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/175437)
8
+ [`fc90fe8067613`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fc90fe8067613) -
9
+ [EDITOR-179] FG editor_a11y_status_renderer_description clean up
10
+ - Updated dependencies
11
+
12
+ ## 119.0.2
13
+
14
+ ### Patch Changes
15
+
16
+ - [#174381](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174381)
17
+ [`eed4c1f1ccffd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/eed4c1f1ccffd) -
18
+ Allows the isTopLevelRenderer prop to be passed from the ReactRenderer component to the underlying
19
+ Renderer coponent
20
+ - Updated dependencies
21
+
3
22
  ## 119.0.1
4
23
 
5
24
  ### Patch Changes
@@ -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 (Cyrillic) [sr-YR]
15
+ var _default = exports.default = {
16
+ 'fabric.editor.headingLink.ascSortingLabel': 'растући',
17
+ 'fabric.editor.headingLink.copied': 'Копирано!',
18
+ 'fabric.editor.headingLink.copyAnchorLink': 'Копирај линк наслова',
19
+ 'fabric.editor.headingLink.copyAriaLabel': 'Копирај',
20
+ 'fabric.editor.headingLink.descSortingLabel': 'опадајући',
21
+ 'fabric.editor.headingLink.failedToCopy': 'Копирање није успело',
22
+ 'fabric.editor.headingLink.noneSortingLabel': 'ништа',
23
+ 'fabric.editor.inlineComment.marker.end': 'крај уметнутог коментара',
24
+ 'fabric.editor.inlineComment.marker.start': 'почетак уметнутог коментара'
25
+ };
@@ -20,7 +20,7 @@ var _default = exports.default = /*#__PURE__*/(0, _react.memo)(function Status(p
20
20
  var inlineAnnotationProps = (0, _useInlineAnnotationProps.useInlineAnnotationProps)(props);
21
21
  if ((0, _platformFeatureFlags.fg)('editor_inline_comments_on_inline_nodes')) {
22
22
  return /*#__PURE__*/_react.default.createElement("span", (0, _extends2.default)({}, inlineAnnotationProps, {
23
- role: (0, _platformFeatureFlags.fg)('editor_a11y_status_renderer_description') ? 'emphasis' : undefined
23
+ role: 'emphasis'
24
24
  }), /*#__PURE__*/_react.default.createElement(_analyticsNamespacedContext.FabricElementsAnalyticsContext, {
25
25
  data: {
26
26
  userContext: 'document'
@@ -29,7 +29,7 @@ var _default = exports.default = /*#__PURE__*/(0, _react.memo)(function Status(p
29
29
  text: text,
30
30
  color: color,
31
31
  localId: localId,
32
- role: (0, _platformFeatureFlags.fg)('editor_a11y_status_renderer_description') ? undefined : 'presentation',
32
+ role: undefined,
33
33
  isBold: (0, _platformFeatureFlags.fg)('platform-component-visual-refresh')
34
34
  })));
35
35
  }
@@ -37,18 +37,12 @@ var _default = exports.default = /*#__PURE__*/(0, _react.memo)(function Status(p
37
37
  data: {
38
38
  userContext: 'document'
39
39
  }
40
- }, (0, _platformFeatureFlags.fg)('editor_a11y_status_renderer_description') ? /*#__PURE__*/_react.default.createElement("span", {
40
+ }, /*#__PURE__*/_react.default.createElement("span", {
41
41
  role: "emphasis"
42
42
  }, /*#__PURE__*/_react.default.createElement(_element.Status, {
43
43
  text: text,
44
44
  color: color,
45
45
  localId: localId,
46
46
  isBold: (0, _platformFeatureFlags.fg)('platform-component-visual-refresh')
47
- })) : /*#__PURE__*/_react.default.createElement(_element.Status, {
48
- text: text,
49
- color: color,
50
- localId: localId,
51
- role: "presentation",
52
- isBold: (0, _platformFeatureFlags.fg)('platform-component-visual-refresh')
53
- }));
47
+ })));
54
48
  });
@@ -117,14 +117,14 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
117
117
  var effectiveWidth = rendererWidth - breakoutConsts.padding;
118
118
  width = "".concat(Math.min(parseInt(node.style.width), effectiveWidth), "px");
119
119
  } else if (resizedBreakout) {
120
- width = breakoutConsts.calcBreakoutWithCustomWidth(mode, Number(node.dataset.width) || null,
120
+ width = breakoutConsts.calcBreakoutWithCustomWidth(breakoutConsts)(mode, Number(node.dataset.width) || null,
121
121
  // Ignored via go/ees005
122
122
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
123
123
  renderer.offsetWidth);
124
124
  } else {
125
125
  // Ignored via go/ees005
126
126
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
127
- width = breakoutConsts.calcBreakoutWidth(mode, renderer.offsetWidth);
127
+ width = breakoutConsts.calcBreakoutWidth(breakoutConsts)(mode, renderer.offsetWidth);
128
128
  }
129
129
  if (node.style.width === width) {
130
130
  return;
@@ -138,7 +138,7 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
138
138
  // Ignored via go/ees005
139
139
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
140
140
  !renderer.classList.contains('is-full-width')) {
141
- var lineLength = breakoutConsts.calcLineLength();
141
+ var lineLength = breakoutConsts.calcLineLength(breakoutConsts)();
142
142
  var left = lineLength / 2 - parseInt(width) / 2;
143
143
  if (left < 0 && parseInt(width) > lineLength) {
144
144
  node.style.left = left + 'px';
@@ -214,4 +214,4 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
214
214
  // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners
215
215
  window.addEventListener('load', _disconnect);
216
216
  }
217
- var calcLineLength = exports.calcLineLength = _utils.breakoutConsts.calcLineLength;
217
+ var calcLineLength = exports.calcLineLength = _utils.breakoutConsts.calcLineLength(_utils.breakoutConsts);
@@ -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 = "119.0.0";
65
+ var packageVersion = "119.0.2";
66
66
  var setAsQueryContainerStyles = (0, _react2.css)({
67
67
  containerName: 'ak-renderer-wrapper',
68
68
  containerType: 'inline-size'
@@ -484,6 +484,7 @@ var getRendererComponent = function getRendererComponent(nodeComponents) {
484
484
  * @example
485
485
  */
486
486
  function Renderer(props) {
487
+ var _props$isTopLevelRend;
487
488
  var _React$useContext = _react.default.useContext(_annotations.AnnotationsPositionContext),
488
489
  startPos = _React$useContext.startPos;
489
490
  var _useRendererContext = (0, _rendererContext.useRendererContext)(),
@@ -502,7 +503,9 @@ function Renderer(props) {
502
503
  // eslint-disable-next-line react/jsx-props-no-spreading
503
504
  , (0, _extends2.default)({}, props, {
504
505
  startPos: startPos,
505
- isTopLevelRenderer: isTopLevelRenderer,
506
+ isTopLevelRenderer:
507
+ // eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
508
+ (0, _platformFeatureFlags.fg)('issue_table_single_line_row_height_fast_follows') ? (_props$isTopLevelRend = props.isTopLevelRenderer) !== null && _props$isTopLevelRend !== void 0 ? _props$isTopLevelRend : isTopLevelRenderer : isTopLevelRenderer,
506
509
  skipValidation: skipValidation,
507
510
  validationOverrides: (0, _platformFeatureFlags.fg)('cc_complexit_fe_reduce_rerender_2') ? validationOverrides : {
508
511
  allowNestedTables: allowNestedTables
@@ -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 (Cyrillic) [sr-YR]
9
+ export default {
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'растући',
11
+ 'fabric.editor.headingLink.copied': 'Копирано!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Копирај линк наслова',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Копирај',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'опадајући',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Копирање није успело',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'ништа',
17
+ 'fabric.editor.inlineComment.marker.end': 'крај уметнутог коментара',
18
+ 'fabric.editor.inlineComment.marker.start': 'почетак уметнутог коментара'
19
+ };
@@ -13,7 +13,7 @@ export default /*#__PURE__*/memo(function Status(props) {
13
13
  const inlineAnnotationProps = useInlineAnnotationProps(props);
14
14
  if (fg('editor_inline_comments_on_inline_nodes')) {
15
15
  return /*#__PURE__*/React.createElement("span", _extends({}, inlineAnnotationProps, {
16
- role: fg('editor_a11y_status_renderer_description') ? 'emphasis' : undefined
16
+ role: 'emphasis'
17
17
  }), /*#__PURE__*/React.createElement(FabricElementsAnalyticsContext, {
18
18
  data: {
19
19
  userContext: 'document'
@@ -22,7 +22,7 @@ export default /*#__PURE__*/memo(function Status(props) {
22
22
  text: text,
23
23
  color: color,
24
24
  localId: localId,
25
- role: fg('editor_a11y_status_renderer_description') ? undefined : 'presentation',
25
+ role: undefined,
26
26
  isBold: fg('platform-component-visual-refresh')
27
27
  })));
28
28
  }
@@ -30,18 +30,12 @@ export default /*#__PURE__*/memo(function Status(props) {
30
30
  data: {
31
31
  userContext: 'document'
32
32
  }
33
- }, fg('editor_a11y_status_renderer_description') ? /*#__PURE__*/React.createElement("span", {
33
+ }, /*#__PURE__*/React.createElement("span", {
34
34
  role: "emphasis"
35
35
  }, /*#__PURE__*/React.createElement(AkStatus, {
36
36
  text: text,
37
37
  color: color,
38
38
  localId: localId,
39
39
  isBold: fg('platform-component-visual-refresh')
40
- })) : /*#__PURE__*/React.createElement(AkStatus, {
41
- text: text,
42
- color: color,
43
- localId: localId,
44
- role: "presentation",
45
- isBold: fg('platform-component-visual-refresh')
46
- }));
40
+ })));
47
41
  });
@@ -126,14 +126,14 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
126
126
  const effectiveWidth = rendererWidth - breakoutConsts.padding;
127
127
  width = `${Math.min(parseInt(node.style.width), effectiveWidth)}px`;
128
128
  } else if (resizedBreakout) {
129
- width = breakoutConsts.calcBreakoutWithCustomWidth(mode, Number(node.dataset.width) || null,
129
+ width = breakoutConsts.calcBreakoutWithCustomWidth(breakoutConsts)(mode, Number(node.dataset.width) || null,
130
130
  // Ignored via go/ees005
131
131
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
132
132
  renderer.offsetWidth);
133
133
  } else {
134
134
  // Ignored via go/ees005
135
135
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
136
- width = breakoutConsts.calcBreakoutWidth(mode, renderer.offsetWidth);
136
+ width = breakoutConsts.calcBreakoutWidth(breakoutConsts)(mode, renderer.offsetWidth);
137
137
  }
138
138
  if (node.style.width === width) {
139
139
  return;
@@ -147,7 +147,7 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
147
147
  // Ignored via go/ees005
148
148
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
149
149
  !renderer.classList.contains('is-full-width')) {
150
- const lineLength = breakoutConsts.calcLineLength();
150
+ const lineLength = breakoutConsts.calcLineLength(breakoutConsts)();
151
151
  const left = lineLength / 2 - parseInt(width) / 2;
152
152
  if (left < 0 && parseInt(width) > lineLength) {
153
153
  node.style.left = left + 'px';
@@ -221,4 +221,4 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
221
221
  // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners
222
222
  window.addEventListener('load', disconnect);
223
223
  }
224
- export const calcLineLength = breakoutConsts.calcLineLength;
224
+ export const calcLineLength = breakoutConsts.calcLineLength(breakoutConsts);
@@ -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 = "119.0.0";
51
+ const packageVersion = "119.0.2";
52
52
  const setAsQueryContainerStyles = css({
53
53
  containerName: 'ak-renderer-wrapper',
54
54
  containerType: 'inline-size'
@@ -469,6 +469,7 @@ const getRendererComponent = nodeComponents => {
469
469
  * @example
470
470
  */
471
471
  export function Renderer(props) {
472
+ var _props$isTopLevelRend;
472
473
  const {
473
474
  startPos
474
475
  } = React.useContext(AnnotationsPositionContext);
@@ -488,7 +489,9 @@ export function Renderer(props) {
488
489
  // eslint-disable-next-line react/jsx-props-no-spreading
489
490
  , _extends({}, props, {
490
491
  startPos: startPos,
491
- isTopLevelRenderer: isTopLevelRenderer,
492
+ isTopLevelRenderer:
493
+ // eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
494
+ fg('issue_table_single_line_row_height_fast_follows') ? (_props$isTopLevelRend = props.isTopLevelRenderer) !== null && _props$isTopLevelRend !== void 0 ? _props$isTopLevelRend : isTopLevelRenderer : isTopLevelRenderer,
492
495
  skipValidation: skipValidation,
493
496
  validationOverrides: fg('cc_complexit_fe_reduce_rerender_2') ? validationOverrides : {
494
497
  allowNestedTables
@@ -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 (Cyrillic) [sr-YR]
9
+ export default {
10
+ 'fabric.editor.headingLink.ascSortingLabel': 'растући',
11
+ 'fabric.editor.headingLink.copied': 'Копирано!',
12
+ 'fabric.editor.headingLink.copyAnchorLink': 'Копирај линк наслова',
13
+ 'fabric.editor.headingLink.copyAriaLabel': 'Копирај',
14
+ 'fabric.editor.headingLink.descSortingLabel': 'опадајући',
15
+ 'fabric.editor.headingLink.failedToCopy': 'Копирање није успело',
16
+ 'fabric.editor.headingLink.noneSortingLabel': 'ништа',
17
+ 'fabric.editor.inlineComment.marker.end': 'крај уметнутог коментара',
18
+ 'fabric.editor.inlineComment.marker.start': 'почетак уметнутог коментара'
19
+ };
@@ -11,7 +11,7 @@ export default /*#__PURE__*/memo(function Status(props) {
11
11
  var inlineAnnotationProps = useInlineAnnotationProps(props);
12
12
  if (fg('editor_inline_comments_on_inline_nodes')) {
13
13
  return /*#__PURE__*/React.createElement("span", _extends({}, inlineAnnotationProps, {
14
- role: fg('editor_a11y_status_renderer_description') ? 'emphasis' : undefined
14
+ role: 'emphasis'
15
15
  }), /*#__PURE__*/React.createElement(FabricElementsAnalyticsContext, {
16
16
  data: {
17
17
  userContext: 'document'
@@ -20,7 +20,7 @@ export default /*#__PURE__*/memo(function Status(props) {
20
20
  text: text,
21
21
  color: color,
22
22
  localId: localId,
23
- role: fg('editor_a11y_status_renderer_description') ? undefined : 'presentation',
23
+ role: undefined,
24
24
  isBold: fg('platform-component-visual-refresh')
25
25
  })));
26
26
  }
@@ -28,18 +28,12 @@ export default /*#__PURE__*/memo(function Status(props) {
28
28
  data: {
29
29
  userContext: 'document'
30
30
  }
31
- }, fg('editor_a11y_status_renderer_description') ? /*#__PURE__*/React.createElement("span", {
31
+ }, /*#__PURE__*/React.createElement("span", {
32
32
  role: "emphasis"
33
33
  }, /*#__PURE__*/React.createElement(AkStatus, {
34
34
  text: text,
35
35
  color: color,
36
36
  localId: localId,
37
37
  isBold: fg('platform-component-visual-refresh')
38
- })) : /*#__PURE__*/React.createElement(AkStatus, {
39
- text: text,
40
- color: color,
41
- localId: localId,
42
- role: "presentation",
43
- isBold: fg('platform-component-visual-refresh')
44
- }));
38
+ })));
45
39
  });
@@ -108,14 +108,14 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
108
108
  var effectiveWidth = rendererWidth - breakoutConsts.padding;
109
109
  width = "".concat(Math.min(parseInt(node.style.width), effectiveWidth), "px");
110
110
  } else if (resizedBreakout) {
111
- width = breakoutConsts.calcBreakoutWithCustomWidth(mode, Number(node.dataset.width) || null,
111
+ width = breakoutConsts.calcBreakoutWithCustomWidth(breakoutConsts)(mode, Number(node.dataset.width) || null,
112
112
  // Ignored via go/ees005
113
113
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
114
114
  renderer.offsetWidth);
115
115
  } else {
116
116
  // Ignored via go/ees005
117
117
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
118
- width = breakoutConsts.calcBreakoutWidth(mode, renderer.offsetWidth);
118
+ width = breakoutConsts.calcBreakoutWidth(breakoutConsts)(mode, renderer.offsetWidth);
119
119
  }
120
120
  if (node.style.width === width) {
121
121
  return;
@@ -129,7 +129,7 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
129
129
  // Ignored via go/ees005
130
130
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
131
131
  !renderer.classList.contains('is-full-width')) {
132
- var lineLength = breakoutConsts.calcLineLength();
132
+ var lineLength = breakoutConsts.calcLineLength(breakoutConsts)();
133
133
  var left = lineLength / 2 - parseInt(width) / 2;
134
134
  if (left < 0 && parseInt(width) > lineLength) {
135
135
  node.style.left = left + 'px';
@@ -205,4 +205,4 @@ function applyBreakoutAfterSSR(id, breakoutConsts, shouldSkipBreakoutScript) {
205
205
  // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners
206
206
  window.addEventListener('load', _disconnect);
207
207
  }
208
- export var calcLineLength = breakoutConsts.calcLineLength;
208
+ export var calcLineLength = breakoutConsts.calcLineLength(breakoutConsts);
@@ -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 = "119.0.0";
56
+ var packageVersion = "119.0.2";
57
57
  var setAsQueryContainerStyles = css({
58
58
  containerName: 'ak-renderer-wrapper',
59
59
  containerType: 'inline-size'
@@ -475,6 +475,7 @@ var getRendererComponent = function getRendererComponent(nodeComponents) {
475
475
  * @example
476
476
  */
477
477
  export function Renderer(props) {
478
+ var _props$isTopLevelRend;
478
479
  var _React$useContext = React.useContext(AnnotationsPositionContext),
479
480
  startPos = _React$useContext.startPos;
480
481
  var _useRendererContext = useRendererContext(),
@@ -493,7 +494,9 @@ export function Renderer(props) {
493
494
  // eslint-disable-next-line react/jsx-props-no-spreading
494
495
  , _extends({}, props, {
495
496
  startPos: startPos,
496
- isTopLevelRenderer: isTopLevelRenderer,
497
+ isTopLevelRenderer:
498
+ // eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
499
+ fg('issue_table_single_line_row_height_fast_follows') ? (_props$isTopLevelRend = props.isTopLevelRenderer) !== null && _props$isTopLevelRend !== void 0 ? _props$isTopLevelRend : isTopLevelRenderer : isTopLevelRenderer,
497
500
  skipValidation: skipValidation,
498
501
  validationOverrides: fg('cc_complexit_fe_reduce_rerender_2') ? validationOverrides : {
499
502
  allowNestedTables: allowNestedTables
@@ -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;
@@ -1,7 +1,7 @@
1
1
  import React, { type ReactNode } from 'react';
2
2
  import { type AnnotationId, AnnotationMarkStates } from '@atlaskit/adf-schema';
3
3
  import type { AnnotationManager, ActionResult } from '@atlaskit/editor-common/annotation';
4
- import { AnnotationUpdateEmitter } from '@atlaskit/editor-common/types';
4
+ import { type AnnotationUpdateEmitter } from '@atlaskit/editor-common/types';
5
5
  interface AnnotationState {
6
6
  id: AnnotationId;
7
7
  markState: AnnotationMarkStates;
@@ -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;
@@ -1,7 +1,7 @@
1
1
  import React, { type ReactNode } from 'react';
2
2
  import { type AnnotationId, AnnotationMarkStates } from '@atlaskit/adf-schema';
3
3
  import type { AnnotationManager, ActionResult } from '@atlaskit/editor-common/annotation';
4
- import { AnnotationUpdateEmitter } from '@atlaskit/editor-common/types';
4
+ import { type AnnotationUpdateEmitter } from '@atlaskit/editor-common/types';
5
5
  interface AnnotationState {
6
6
  id: AnnotationId;
7
7
  markState: AnnotationMarkStates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "119.0.1",
3
+ "version": "119.0.3",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,7 +31,7 @@
31
31
  "@atlaskit/analytics-next": "^11.1.0",
32
32
  "@atlaskit/button": "^23.2.0",
33
33
  "@atlaskit/code": "^17.2.0",
34
- "@atlaskit/editor-common": "^107.0.0",
34
+ "@atlaskit/editor-common": "^107.2.0",
35
35
  "@atlaskit/editor-json-transformer": "^8.24.0",
36
36
  "@atlaskit/editor-palette": "^2.1.0",
37
37
  "@atlaskit/editor-prosemirror": "7.0.0",
@@ -39,25 +39,25 @@
39
39
  "@atlaskit/editor-tables": "^2.9.0",
40
40
  "@atlaskit/emoji": "^69.3.0",
41
41
  "@atlaskit/feature-gate-js-client": "^5.3.0",
42
- "@atlaskit/icon": "^27.0.0",
42
+ "@atlaskit/icon": "^27.1.0",
43
43
  "@atlaskit/link": "^3.2.0",
44
44
  "@atlaskit/link-datasource": "^4.11.0",
45
45
  "@atlaskit/media-card": "^79.3.0",
46
- "@atlaskit/media-client": "^34.0.0",
46
+ "@atlaskit/media-client": "^34.1.0",
47
47
  "@atlaskit/media-client-react": "^4.1.0",
48
48
  "@atlaskit/media-common": "^12.2.0",
49
49
  "@atlaskit/media-filmstrip": "^51.0.0",
50
- "@atlaskit/media-ui": "^28.3.0",
50
+ "@atlaskit/media-ui": "^28.4.0",
51
51
  "@atlaskit/media-viewer": "^52.3.0",
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.13.0",
55
+ "@atlaskit/smart-card": "^38.14.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": "^8.0.0",
60
- "@atlaskit/tokens": "^5.3.0",
59
+ "@atlaskit/tmp-editor-statsig": "^8.1.0",
60
+ "@atlaskit/tokens": "^5.4.0",
61
61
  "@atlaskit/tooltip": "^20.3.0",
62
62
  "@atlaskit/visually-hidden": "^3.0.0",
63
63
  "@babel/runtime": "^7.0.0",
@@ -178,9 +178,6 @@
178
178
  "platform_editor_fix_vc90_bug_with_files": {
179
179
  "type": "boolean"
180
180
  },
181
- "editor_a11y_status_renderer_description": {
182
- "type": "boolean"
183
- },
184
181
  "use_comments_data_annotation_updater": {
185
182
  "type": "boolean"
186
183
  },
@@ -271,6 +268,9 @@
271
268
  },
272
269
  "prompt_whiteboard_competitor_link_gate": {
273
270
  "type": "boolean"
271
+ },
272
+ "issue_table_single_line_row_height_fast_follows": {
273
+ "type": "boolean"
274
274
  }
275
275
  },
276
276
  "af:exports": {