@atlaskit/renderer 119.0.2 → 119.0.4
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 +18 -0
- package/dist/cjs/react/nodes/status.js +4 -10
- package/dist/cjs/react/nodes/table/colgroup.js +2 -2
- package/dist/cjs/react/nodes/table/table.js +11 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/status.js +4 -10
- package/dist/es2019/react/nodes/table/colgroup.js +1 -1
- package/dist/es2019/react/nodes/table/table.js +12 -2
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/status.js +4 -10
- package/dist/esm/react/nodes/table/colgroup.js +1 -1
- package/dist/esm/react/nodes/table/table.js +12 -2
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/react/nodes/table/colgroup.d.ts +1 -0
- package/dist/types-ts4.5/react/nodes/table/colgroup.d.ts +1 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 119.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#175396](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/175396)
|
|
8
|
+
[`a40f4f8831421`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a40f4f8831421) -
|
|
9
|
+
Fix numbered column width calculation
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 119.0.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#175437](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/175437)
|
|
17
|
+
[`fc90fe8067613`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fc90fe8067613) -
|
|
18
|
+
[EDITOR-179] FG editor_a11y_status_renderer_description clean up
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 119.0.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -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:
|
|
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:
|
|
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
|
-
},
|
|
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
|
-
}))
|
|
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
|
});
|
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.Colgroup = void 0;
|
|
7
|
+
exports.colWidthSum = exports.Colgroup = void 0;
|
|
8
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
9
|
var _react = _interopRequireDefault(require("react"));
|
|
10
10
|
var _styles = require("@atlaskit/editor-common/styles");
|
|
@@ -54,7 +54,7 @@ var calcScalePercent = function calcScalePercent(_ref) {
|
|
|
54
54
|
var diffPercent = 1 - noNumColumnScalePercent;
|
|
55
55
|
return diffPercent < maxScale ? isNumberColumnEnabled ? 1 - numColumnScalePercent : diffPercent : maxScale;
|
|
56
56
|
};
|
|
57
|
-
var colWidthSum = function colWidthSum(columnWidths) {
|
|
57
|
+
var colWidthSum = exports.colWidthSum = function colWidthSum(columnWidths) {
|
|
58
58
|
return columnWidths.reduce(function (prev, curr) {
|
|
59
59
|
return curr + prev;
|
|
60
60
|
}, 0);
|
|
@@ -29,6 +29,7 @@ var Table = exports.Table = /*#__PURE__*/_react.default.memo(function (_ref) {
|
|
|
29
29
|
_ref$fixTableSSRResiz = _ref.fixTableSSRResizing,
|
|
30
30
|
fixTableSSRResizing = _ref$fixTableSSRResiz === void 0 ? false : _ref$fixTableSSRResiz;
|
|
31
31
|
var tableWidth = tableNode ? (0, _nodeWidth.getTableContainerWidth)(tableNode) : _editorSharedStyles.akEditorDefaultLayoutWidth;
|
|
32
|
+
var tableColumnWidths = columnWidths;
|
|
32
33
|
if (rendererAppearance === 'comment' && allowTableResizing && tableNode && !((_tableNode$attrs = tableNode.attrs) !== null && _tableNode$attrs !== void 0 && _tableNode$attrs.width)) {
|
|
33
34
|
tableWidth = 'inherit';
|
|
34
35
|
}
|
|
@@ -40,6 +41,15 @@ var Table = exports.Table = /*#__PURE__*/_react.default.memo(function (_ref) {
|
|
|
40
41
|
tableWidth = renderWidth;
|
|
41
42
|
}
|
|
42
43
|
}
|
|
44
|
+
|
|
45
|
+
// for columns that are evenly distributed, do not return `colgroup` since existing table containerQuery
|
|
46
|
+
// scales up the columns width. This ensures columns always have 42px.
|
|
47
|
+
if (rendererAppearance === 'comment') {
|
|
48
|
+
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
49
|
+
if ((0, _platformFeatureFlags.fg)('platform-ssr-table-resize') && (0, _platformFeatureFlags.fg)('platform_table_number_column')) {
|
|
50
|
+
tableColumnWidths = columnWidths && (0, _colgroup.colWidthSum)(columnWidths) ? columnWidths : undefined;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
43
53
|
var tableLayout = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.layout;
|
|
44
54
|
var tableDisplayMode = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.displayMode;
|
|
45
55
|
return /*#__PURE__*/_react.default.createElement("table", (0, _extends2.default)({}, (0, _platformFeatureFlags.fg)('platform_renderer_isPresentational') && {
|
|
@@ -55,7 +65,7 @@ var Table = exports.Table = /*#__PURE__*/_react.default.memo(function (_ref) {
|
|
|
55
65
|
marginTop: fixTableSSRResizing ? '0px' : ''
|
|
56
66
|
}
|
|
57
67
|
}), /*#__PURE__*/_react.default.createElement(_colgroup.Colgroup, {
|
|
58
|
-
columnWidths:
|
|
68
|
+
columnWidths: tableColumnWidths,
|
|
59
69
|
layout: layout,
|
|
60
70
|
isNumberColumnEnabled: isNumberColumnEnabled,
|
|
61
71
|
renderWidth: renderWidth,
|
|
@@ -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.3";
|
|
66
66
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
67
67
|
containerName: 'ak-renderer-wrapper',
|
|
68
68
|
containerType: 'inline-size'
|
|
@@ -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:
|
|
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:
|
|
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
|
-
},
|
|
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
|
-
}))
|
|
41
|
-
text: text,
|
|
42
|
-
color: color,
|
|
43
|
-
localId: localId,
|
|
44
|
-
role: "presentation",
|
|
45
|
-
isBold: fg('platform-component-visual-refresh')
|
|
46
|
-
}));
|
|
40
|
+
})));
|
|
47
41
|
});
|
|
@@ -44,7 +44,7 @@ const calcScalePercent = ({
|
|
|
44
44
|
const diffPercent = 1 - noNumColumnScalePercent;
|
|
45
45
|
return diffPercent < maxScale ? isNumberColumnEnabled ? 1 - numColumnScalePercent : diffPercent : maxScale;
|
|
46
46
|
};
|
|
47
|
-
const colWidthSum = columnWidths => columnWidths.reduce((prev, curr) => curr + prev, 0);
|
|
47
|
+
export const colWidthSum = columnWidths => columnWidths.reduce((prev, curr) => curr + prev, 0);
|
|
48
48
|
const renderScaleDownColgroup = props => {
|
|
49
49
|
var _props$tableNode;
|
|
50
50
|
const {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { Colgroup } from './colgroup';
|
|
3
|
+
import { Colgroup, colWidthSum } from './colgroup';
|
|
4
4
|
import { getTableContainerWidth } from '@atlaskit/editor-common/node-width';
|
|
5
5
|
import { akEditorDefaultLayoutWidth } from '@atlaskit/editor-shared-styles';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
@@ -22,6 +22,7 @@ export const Table = /*#__PURE__*/React.memo(({
|
|
|
22
22
|
}) => {
|
|
23
23
|
var _tableNode$attrs;
|
|
24
24
|
let tableWidth = tableNode ? getTableContainerWidth(tableNode) : akEditorDefaultLayoutWidth;
|
|
25
|
+
let tableColumnWidths = columnWidths;
|
|
25
26
|
if (rendererAppearance === 'comment' && allowTableResizing && tableNode && !((_tableNode$attrs = tableNode.attrs) !== null && _tableNode$attrs !== void 0 && _tableNode$attrs.width)) {
|
|
26
27
|
tableWidth = 'inherit';
|
|
27
28
|
}
|
|
@@ -33,6 +34,15 @@ export const Table = /*#__PURE__*/React.memo(({
|
|
|
33
34
|
tableWidth = renderWidth;
|
|
34
35
|
}
|
|
35
36
|
}
|
|
37
|
+
|
|
38
|
+
// for columns that are evenly distributed, do not return `colgroup` since existing table containerQuery
|
|
39
|
+
// scales up the columns width. This ensures columns always have 42px.
|
|
40
|
+
if (rendererAppearance === 'comment') {
|
|
41
|
+
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
42
|
+
if (fg('platform-ssr-table-resize') && fg('platform_table_number_column')) {
|
|
43
|
+
tableColumnWidths = columnWidths && colWidthSum(columnWidths) ? columnWidths : undefined;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
36
46
|
const tableLayout = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.layout;
|
|
37
47
|
const tableDisplayMode = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.displayMode;
|
|
38
48
|
return /*#__PURE__*/React.createElement("table", _extends({}, fg('platform_renderer_isPresentational') && {
|
|
@@ -48,7 +58,7 @@ export const Table = /*#__PURE__*/React.memo(({
|
|
|
48
58
|
marginTop: fixTableSSRResizing ? '0px' : ''
|
|
49
59
|
}
|
|
50
60
|
}), /*#__PURE__*/React.createElement(Colgroup, {
|
|
51
|
-
columnWidths:
|
|
61
|
+
columnWidths: tableColumnWidths,
|
|
52
62
|
layout: layout,
|
|
53
63
|
isNumberColumnEnabled: isNumberColumnEnabled,
|
|
54
64
|
renderWidth: renderWidth,
|
|
@@ -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.3";
|
|
52
52
|
const setAsQueryContainerStyles = css({
|
|
53
53
|
containerName: 'ak-renderer-wrapper',
|
|
54
54
|
containerType: 'inline-size'
|
|
@@ -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:
|
|
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:
|
|
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
|
-
},
|
|
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
|
-
}))
|
|
39
|
-
text: text,
|
|
40
|
-
color: color,
|
|
41
|
-
localId: localId,
|
|
42
|
-
role: "presentation",
|
|
43
|
-
isBold: fg('platform-component-visual-refresh')
|
|
44
|
-
}));
|
|
38
|
+
})));
|
|
45
39
|
});
|
|
@@ -48,7 +48,7 @@ var calcScalePercent = function calcScalePercent(_ref) {
|
|
|
48
48
|
var diffPercent = 1 - noNumColumnScalePercent;
|
|
49
49
|
return diffPercent < maxScale ? isNumberColumnEnabled ? 1 - numColumnScalePercent : diffPercent : maxScale;
|
|
50
50
|
};
|
|
51
|
-
var colWidthSum = function colWidthSum(columnWidths) {
|
|
51
|
+
export var colWidthSum = function colWidthSum(columnWidths) {
|
|
52
52
|
return columnWidths.reduce(function (prev, curr) {
|
|
53
53
|
return curr + prev;
|
|
54
54
|
}, 0);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { Colgroup } from './colgroup';
|
|
3
|
+
import { Colgroup, colWidthSum } from './colgroup';
|
|
4
4
|
import { getTableContainerWidth } from '@atlaskit/editor-common/node-width';
|
|
5
5
|
import { akEditorDefaultLayoutWidth } from '@atlaskit/editor-shared-styles';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
@@ -22,6 +22,7 @@ export var Table = /*#__PURE__*/React.memo(function (_ref) {
|
|
|
22
22
|
_ref$fixTableSSRResiz = _ref.fixTableSSRResizing,
|
|
23
23
|
fixTableSSRResizing = _ref$fixTableSSRResiz === void 0 ? false : _ref$fixTableSSRResiz;
|
|
24
24
|
var tableWidth = tableNode ? getTableContainerWidth(tableNode) : akEditorDefaultLayoutWidth;
|
|
25
|
+
var tableColumnWidths = columnWidths;
|
|
25
26
|
if (rendererAppearance === 'comment' && allowTableResizing && tableNode && !((_tableNode$attrs = tableNode.attrs) !== null && _tableNode$attrs !== void 0 && _tableNode$attrs.width)) {
|
|
26
27
|
tableWidth = 'inherit';
|
|
27
28
|
}
|
|
@@ -33,6 +34,15 @@ export var Table = /*#__PURE__*/React.memo(function (_ref) {
|
|
|
33
34
|
tableWidth = renderWidth;
|
|
34
35
|
}
|
|
35
36
|
}
|
|
37
|
+
|
|
38
|
+
// for columns that are evenly distributed, do not return `colgroup` since existing table containerQuery
|
|
39
|
+
// scales up the columns width. This ensures columns always have 42px.
|
|
40
|
+
if (rendererAppearance === 'comment') {
|
|
41
|
+
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
42
|
+
if (fg('platform-ssr-table-resize') && fg('platform_table_number_column')) {
|
|
43
|
+
tableColumnWidths = columnWidths && colWidthSum(columnWidths) ? columnWidths : undefined;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
36
46
|
var tableLayout = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.layout;
|
|
37
47
|
var tableDisplayMode = tableNode === null || tableNode === void 0 ? void 0 : tableNode.attrs.displayMode;
|
|
38
48
|
return /*#__PURE__*/React.createElement("table", _extends({}, fg('platform_renderer_isPresentational') && {
|
|
@@ -48,7 +58,7 @@ export var Table = /*#__PURE__*/React.memo(function (_ref) {
|
|
|
48
58
|
marginTop: fixTableSSRResizing ? '0px' : ''
|
|
49
59
|
}
|
|
50
60
|
}), /*#__PURE__*/React.createElement(Colgroup, {
|
|
51
|
-
columnWidths:
|
|
61
|
+
columnWidths: tableColumnWidths,
|
|
52
62
|
layout: layout,
|
|
53
63
|
isNumberColumnEnabled: isNumberColumnEnabled,
|
|
54
64
|
renderWidth: renderWidth,
|
|
@@ -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.3";
|
|
57
57
|
var setAsQueryContainerStyles = css({
|
|
58
58
|
containerName: 'ak-renderer-wrapper',
|
|
59
59
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "119.0.
|
|
3
|
+
"version": "119.0.4",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,7 +39,7 @@
|
|
|
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.2.0",
|
|
43
43
|
"@atlaskit/link": "^3.2.0",
|
|
44
44
|
"@atlaskit/link-datasource": "^4.11.0",
|
|
45
45
|
"@atlaskit/media-card": "^79.3.0",
|
|
@@ -51,12 +51,12 @@
|
|
|
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
|
-
"@atlaskit/react-ufo": "^3.
|
|
55
|
-
"@atlaskit/smart-card": "^38.
|
|
54
|
+
"@atlaskit/react-ufo": "^3.14.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.
|
|
59
|
+
"@atlaskit/tmp-editor-statsig": "^8.2.0",
|
|
60
60
|
"@atlaskit/tokens": "^5.4.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.3.0",
|
|
62
62
|
"@atlaskit/visually-hidden": "^3.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
|
},
|
|
@@ -272,6 +269,9 @@
|
|
|
272
269
|
"prompt_whiteboard_competitor_link_gate": {
|
|
273
270
|
"type": "boolean"
|
|
274
271
|
},
|
|
272
|
+
"platform_table_number_column": {
|
|
273
|
+
"type": "boolean"
|
|
274
|
+
},
|
|
275
275
|
"issue_table_single_line_row_height_fast_follows": {
|
|
276
276
|
"type": "boolean"
|
|
277
277
|
}
|