@atlaskit/renderer 119.0.1 → 119.0.2
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 +10 -0
- package/dist/cjs/i18n/sr_YR.js +25 -0
- package/dist/cjs/ui/Renderer/breakout-ssr.js +4 -4
- package/dist/cjs/ui/Renderer/index.js +5 -2
- package/dist/es2019/i18n/sr_YR.js +19 -0
- package/dist/es2019/ui/Renderer/breakout-ssr.js +4 -4
- package/dist/es2019/ui/Renderer/index.js +5 -2
- package/dist/esm/i18n/sr_YR.js +19 -0
- package/dist/esm/ui/Renderer/breakout-ssr.js +4 -4
- package/dist/esm/ui/Renderer/index.js +5 -2
- package/dist/types/i18n/sr_YR.d.ts +18 -0
- package/dist/types/ui/annotations/contexts/AnnotationManagerContext.d.ts +1 -1
- package/dist/types-ts4.5/i18n/sr_YR.d.ts +18 -0
- package/dist/types-ts4.5/ui/annotations/contexts/AnnotationManagerContext.d.ts +1 -1
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 119.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#174381](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174381)
|
|
8
|
+
[`eed4c1f1ccffd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/eed4c1f1ccffd) -
|
|
9
|
+
Allows the isTopLevelRenderer prop to be passed from the ReactRenderer component to the underlying
|
|
10
|
+
Renderer coponent
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 119.0.1
|
|
4
14
|
|
|
5
15
|
### 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
|
+
};
|
|
@@ -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.
|
|
65
|
+
var packageVersion = "119.0.1";
|
|
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:
|
|
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
|
+
};
|
|
@@ -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.
|
|
51
|
+
const packageVersion = "119.0.1";
|
|
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:
|
|
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
|
+
};
|
|
@@ -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.
|
|
56
|
+
var packageVersion = "119.0.1";
|
|
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:
|
|
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.
|
|
3
|
+
"version": "119.0.2",
|
|
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.
|
|
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,15 +39,15 @@
|
|
|
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.
|
|
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.
|
|
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.
|
|
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",
|
|
@@ -56,8 +56,8 @@
|
|
|
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.
|
|
60
|
-
"@atlaskit/tokens": "^5.
|
|
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",
|
|
@@ -271,6 +271,9 @@
|
|
|
271
271
|
},
|
|
272
272
|
"prompt_whiteboard_competitor_link_gate": {
|
|
273
273
|
"type": "boolean"
|
|
274
|
+
},
|
|
275
|
+
"issue_table_single_line_row_height_fast_follows": {
|
|
276
|
+
"type": "boolean"
|
|
274
277
|
}
|
|
275
278
|
},
|
|
276
279
|
"af:exports": {
|