@atlaskit/renderer 109.19.4 → 109.20.0
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/marks/alignment.js +8 -4
- package/dist/cjs/react/marks/breakout.js +7 -4
- package/dist/cjs/react/marks/link.js +12 -4
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockContainer.js +1 -0
- package/dist/cjs/react/nodes/codeBlock/components/lightWeightCodeBlock.js +2 -0
- package/dist/cjs/react/nodes/heading-anchor.js +9 -3
- package/dist/cjs/react/nodes/inlineCard.js +30 -3
- package/dist/cjs/react/nodes/layoutColumn.js +2 -3
- package/dist/cjs/react/nodes/mediaSingle/styles.js +9 -5
- package/dist/cjs/react/nodes/multiBodiedExtension.js +6 -1
- package/dist/cjs/ui/Expand.js +41 -15
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/cjs/ui/Renderer/style.js +2 -1
- package/dist/cjs/ui/Renderer/truncated-wrapper.js +16 -5
- package/dist/cjs/ui/SortingIcon.js +24 -3
- package/dist/es2019/react/marks/alignment.js +9 -4
- package/dist/es2019/react/marks/breakout.js +6 -5
- package/dist/es2019/react/marks/link.js +9 -11
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockContainer.js +2 -0
- package/dist/es2019/react/nodes/codeBlock/components/lightWeightCodeBlock.js +2 -0
- package/dist/es2019/react/nodes/heading-anchor.js +9 -9
- package/dist/es2019/react/nodes/inlineCard.js +30 -3
- package/dist/es2019/react/nodes/layoutColumn.js +1 -4
- package/dist/es2019/react/nodes/mediaSingle/styles.js +8 -7
- package/dist/es2019/react/nodes/multiBodiedExtension.js +6 -1
- package/dist/es2019/ui/Expand.js +37 -22
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/Renderer/style.js +2 -1
- package/dist/es2019/ui/Renderer/truncated-wrapper.js +14 -16
- package/dist/es2019/ui/SortingIcon.js +23 -23
- package/dist/esm/react/marks/alignment.js +8 -4
- package/dist/esm/react/marks/breakout.js +6 -3
- package/dist/esm/react/marks/link.js +10 -3
- package/dist/esm/react/nodes/codeBlock/components/codeBlockContainer.js +2 -0
- package/dist/esm/react/nodes/codeBlock/components/lightWeightCodeBlock.js +2 -0
- package/dist/esm/react/nodes/heading-anchor.js +9 -3
- package/dist/esm/react/nodes/inlineCard.js +30 -3
- package/dist/esm/react/nodes/layoutColumn.js +1 -3
- package/dist/esm/react/nodes/mediaSingle/styles.js +8 -4
- package/dist/esm/react/nodes/multiBodiedExtension.js +6 -1
- package/dist/esm/ui/Expand.js +41 -15
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/Renderer/style.js +2 -1
- package/dist/esm/ui/Renderer/truncated-wrapper.js +15 -3
- package/dist/esm/ui/SortingIcon.js +25 -2
- package/dist/types/react/marks/alignment.d.ts +2 -2
- package/dist/types/react/marks/breakout.d.ts +2 -2
- package/dist/types/react/marks/link.d.ts +2 -2
- package/dist/types-ts4.5/react/marks/alignment.d.ts +2 -2
- package/dist/types-ts4.5/react/marks/breakout.d.ts +2 -2
- package/dist/types-ts4.5/react/marks/link.d.ts +2 -2
- package/package.json +14 -11
package/dist/esm/ui/Expand.js
CHANGED
|
@@ -3,7 +3,7 @@ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProper
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/extends";
|
|
4
4
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
5
5
|
var _excluded = ["expanded"];
|
|
6
|
-
var _templateObject, _templateObject2, _templateObject3
|
|
6
|
+
var _templateObject, _templateObject2, _templateObject3;
|
|
7
7
|
/** @jsx jsx */
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import React, { useCallback, useMemo, useRef } from 'react';
|
|
@@ -19,39 +19,65 @@ import { injectIntl } from 'react-intl-next';
|
|
|
19
19
|
import { MODE, PLATFORM } from '../analytics/events';
|
|
20
20
|
import { getPlatform } from '../utils';
|
|
21
21
|
import { ActiveHeaderIdConsumer } from './active-header-id-provider';
|
|
22
|
-
var titleStyles = css(
|
|
22
|
+
var titleStyles = css({
|
|
23
|
+
outline: 'none',
|
|
24
|
+
border: 'none',
|
|
25
|
+
fontSize: relativeFontSizeToBase16(fontSize()),
|
|
26
|
+
lineHeight: akEditorLineHeight,
|
|
27
|
+
fontWeight: 'normal',
|
|
28
|
+
display: 'flex',
|
|
29
|
+
flex: 1,
|
|
30
|
+
margin: 0,
|
|
31
|
+
padding: "0 0 0 ".concat("var(--ds-space-050, 4px)"),
|
|
32
|
+
textAlign: 'left'
|
|
33
|
+
});
|
|
23
34
|
var Container = function Container(props) {
|
|
24
35
|
var paddingBottom = props.expanded ? "var(--ds-space-100, 8px)" : "var(--ds-space-0, 0px)";
|
|
25
36
|
var sharedContainerStyles = sharedExpandStyles.containerStyles(props);
|
|
37
|
+
|
|
38
|
+
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
26
39
|
var styles = function styles() {
|
|
27
|
-
return css(
|
|
40
|
+
return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n ", "\n padding: 0;\n padding-bottom: ", ";\n "])), sharedContainerStyles(), paddingBottom);
|
|
28
41
|
};
|
|
29
|
-
return
|
|
30
|
-
css
|
|
31
|
-
|
|
42
|
+
return (
|
|
43
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
44
|
+
jsx("div", _extends({
|
|
45
|
+
css: styles
|
|
46
|
+
}, props), props.children)
|
|
47
|
+
);
|
|
32
48
|
};
|
|
33
49
|
var TitleContainer = function TitleContainer(props) {
|
|
34
50
|
var paddingBottom = !props.expanded ? "var(--ds-space-100, 8px)" : "var(--ds-space-0, 0px)";
|
|
51
|
+
|
|
52
|
+
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
35
53
|
var styles = function styles() {
|
|
36
|
-
return css(
|
|
54
|
+
return css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n ", "\n padding: ", ";\n padding-bottom: ", ";\n "])), sharedExpandStyles.titleContainerStyles(), "var(--ds-space-100, 8px)", paddingBottom);
|
|
37
55
|
};
|
|
38
56
|
var expanded = props.expanded,
|
|
39
57
|
buttonProps = _objectWithoutProperties(props, _excluded);
|
|
40
|
-
return
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
58
|
+
return (
|
|
59
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
60
|
+
jsx("button", _extends({
|
|
61
|
+
type: "button",
|
|
62
|
+
css: styles
|
|
63
|
+
}, buttonProps), props.children)
|
|
64
|
+
);
|
|
44
65
|
};
|
|
45
66
|
TitleContainer.displayName = 'TitleContainerButton';
|
|
46
67
|
var ContentContainer = function ContentContainer(props) {
|
|
47
68
|
var sharedContentStyles = sharedExpandStyles.contentStyles(props);
|
|
48
69
|
var visibility = props.expanded ? 'visible' : 'hidden';
|
|
70
|
+
|
|
71
|
+
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
49
72
|
var styles = function styles() {
|
|
50
|
-
return css(
|
|
73
|
+
return css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n ", ";\n padding-right: ", ";\n padding-left: ", ";\n visibility: ", ";\n "])), sharedContentStyles(), "var(--ds-space-200, 16px)", "var(--ds-space-400, 32px)", visibility);
|
|
51
74
|
};
|
|
52
|
-
return
|
|
53
|
-
css
|
|
54
|
-
|
|
75
|
+
return (
|
|
76
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
77
|
+
jsx("div", _extends({
|
|
78
|
+
css: styles
|
|
79
|
+
}, props), props.children)
|
|
80
|
+
);
|
|
55
81
|
};
|
|
56
82
|
function fireExpandToggleAnalytics(nodeType, expanded, fireAnalyticsEvent) {
|
|
57
83
|
if (!fireAnalyticsEvent) {
|
|
@@ -46,7 +46,7 @@ import { EditorMediaClientProvider } from '../../react/utils/EditorMediaClientPr
|
|
|
46
46
|
export var NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
47
47
|
export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
48
48
|
var packageName = "@atlaskit/renderer";
|
|
49
|
-
var packageVersion = "109.
|
|
49
|
+
var packageVersion = "109.20.0";
|
|
50
50
|
export var Renderer = /*#__PURE__*/function (_PureComponent) {
|
|
51
51
|
_inherits(Renderer, _PureComponent);
|
|
52
52
|
var _super = _createSuper(Renderer);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
2
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9;
|
|
3
|
+
/* eslint-disable @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation */
|
|
3
4
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
4
5
|
|
|
5
6
|
import { css } from '@emotion/react';
|
|
@@ -25,7 +26,7 @@ var telepointerStyles = function telepointerStyles() {
|
|
|
25
26
|
var _getGlobalTheme = getGlobalTheme(),
|
|
26
27
|
colorMode = _getGlobalTheme.colorMode;
|
|
27
28
|
|
|
28
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview
|
|
29
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview, @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
29
30
|
return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n #", " {\n display: inline-block;\n position: relative;\n width: 1.5px;\n height: 25px;\n background: linear-gradient(\n 45deg,\n ", " -12.02%,\n ", " 19.18%,\n ", " 71.87%\n );\n margin-left: ", ";\n\n &::after {\n content: 'AI';\n position: absolute;\n display: block;\n top: 0;\n left: 0;\n font-size: 10px;\n font-weight: 700;\n width: 12.5px;\n height: 13px;\n padding-top: 1px;\n padding-left: 1.5px;\n line-height: initial;\n border-radius: 0px 2px 2px 0px;\n color: ", ";\n background: linear-gradient(\n 45deg,\n ", " -57%,\n ", " 71.87%\n );\n }\n }\n "])), TELEPOINTER_ID, colorMode === 'dark' ? '#f5cd47' : '#f8e6a0', colorMode === 'dark' ? '#60c6d2' : '#8bdbe5', colorMode === 'dark' ? '#388bff' : '#0c66e4', "var(--ds-space-025, 2px)", "var(--ds-text-inverse, white)", colorMode === 'dark' ? '#60c6d2' : '#8bdbe5', colorMode === 'dark' ? '#388bff' : '#0c66e4');
|
|
30
31
|
};
|
|
31
32
|
var getLineHeight = function getLineHeight(fontCode) {
|
|
@@ -3,15 +3,26 @@ import _createClass from "@babel/runtime/helpers/createClass";
|
|
|
3
3
|
import _inherits from "@babel/runtime/helpers/inherits";
|
|
4
4
|
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
5
5
|
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
6
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
7
|
-
var _templateObject;
|
|
8
6
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
9
7
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
10
8
|
/** @jsx jsx */
|
|
11
9
|
import { css, jsx } from '@emotion/react';
|
|
12
10
|
import { Component } from 'react';
|
|
13
11
|
var fadeOutStyles = function fadeOutStyles(maxHeight, top, backgroundColor) {
|
|
14
|
-
return css(
|
|
12
|
+
return css({
|
|
13
|
+
position: 'relative',
|
|
14
|
+
overflowY: 'hidden',
|
|
15
|
+
maxHeight: "".concat(maxHeight, "px"),
|
|
16
|
+
'&::after': {
|
|
17
|
+
content: "''",
|
|
18
|
+
position: 'absolute',
|
|
19
|
+
top: "".concat(top, "px"),
|
|
20
|
+
bottom: 0,
|
|
21
|
+
left: 0,
|
|
22
|
+
right: 0,
|
|
23
|
+
backgroundImage: "linear-gradient( ".concat("var(--ds-background-neutral-subtle, rgba(255, 255, 255, 0))", ", ", backgroundColor, " )")
|
|
24
|
+
}
|
|
25
|
+
});
|
|
15
26
|
};
|
|
16
27
|
var FadeOut = function FadeOut(props) {
|
|
17
28
|
var children = props.children,
|
|
@@ -20,6 +31,7 @@ var FadeOut = function FadeOut(props) {
|
|
|
20
31
|
height = props.height;
|
|
21
32
|
var top = height - fadeHeight;
|
|
22
33
|
var styles = fadeOutStyles(height, top, backgroundColor);
|
|
34
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
23
35
|
return jsx("div", {
|
|
24
36
|
css: styles
|
|
25
37
|
}, children);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
-
var _templateObject, _templateObject2
|
|
2
|
+
var _templateObject, _templateObject2;
|
|
3
3
|
/** @jsx jsx */
|
|
4
4
|
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import Tooltip from '@atlaskit/tooltip';
|
|
@@ -15,13 +15,36 @@ export var StatusClassNames = /*#__PURE__*/function (StatusClassNames) {
|
|
|
15
15
|
StatusClassNames["SORTING_NOT_ALLOWED"] = "sorting-icon-svg__not-allowed";
|
|
16
16
|
return StatusClassNames;
|
|
17
17
|
}({});
|
|
18
|
+
|
|
19
|
+
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
18
20
|
var buttonStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n height: 28px;\n width: 28px;\n margin: ", ";\n right: 0;\n top: 0;\n border: 2px solid ", ";\n border-radius: ", ";\n background-color: ", ";\n justify-content: center;\n align-items: center;\n cursor: pointer;\n\n &:hover {\n background-color: ", ";\n }\n\n &:active {\n background-color: ", ";\n }\n\n &.", "__not-allowed {\n cursor: not-allowed;\n }\n"])), "var(--ds-space-075, 6px)", "var(--ds-border, #fff)", "var(--ds-border-radius-100, 4px)", "var(--ds-surface-overlay, ".concat(N20, ")"), "var(--ds-surface-overlay-hovered, ".concat(N30, ")"), "var(--ds-surface-overlay-pressed, rgba(179, 212, 255, 0.6))", RendererCssClassName.SORTABLE_COLUMN_ICON);
|
|
21
|
+
|
|
22
|
+
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- needs manual remediation
|
|
19
23
|
var iconWrapperStyles = css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n width: 8px;\n height: 12px;\n transition: transform 0.3s cubic-bezier(0.15, 1, 0.3, 1);\n transform-origin: 50% 50%;\n display: flex;\n justify-content: center;\n\n &.", " {\n transform: rotate(-180deg);\n }\n\n &.", "-inactive {\n opacity: 0.7;\n }\n"])), StatusClassNames.DESC, RendererCssClassName.SORTABLE_COLUMN_ICON);
|
|
20
24
|
|
|
21
25
|
// The icon is created with CSS due to the following Firefox issue: https://product-fabric.atlassian.net/browse/ED-8001
|
|
22
26
|
// The TL;DR is that svg's in tables mess up how HTML is copied in Firefox. Using a styled div instead solves the problem.
|
|
23
27
|
// For this reason, svg's should be avoided in tables until this issue is fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=1664350
|
|
24
|
-
var iconStyles = css(
|
|
28
|
+
var iconStyles = css({
|
|
29
|
+
height: '100%',
|
|
30
|
+
width: '2px',
|
|
31
|
+
borderRadius: '50px',
|
|
32
|
+
background: "var(--ds-icon, #42526E)",
|
|
33
|
+
'&::before, &::after': {
|
|
34
|
+
background: "var(--ds-icon, #42526E)",
|
|
35
|
+
content: "''",
|
|
36
|
+
height: '2px',
|
|
37
|
+
width: '6px',
|
|
38
|
+
position: 'absolute',
|
|
39
|
+
borderRadius: '50px'
|
|
40
|
+
},
|
|
41
|
+
'&::before': {
|
|
42
|
+
transform: 'rotate(45deg) translate(3.4px, 8.5px)'
|
|
43
|
+
},
|
|
44
|
+
'&::after': {
|
|
45
|
+
transform: 'rotate(-45deg) translate(-6.3px, 5.7px)'
|
|
46
|
+
}
|
|
47
|
+
});
|
|
25
48
|
var getIconClassName = function getIconClassName(isSortingAllowed, sortOrdered) {
|
|
26
49
|
var activated = sortOrdered !== SortOrder.NO_ORDER;
|
|
27
50
|
var activeStatusClass = "".concat(RendererCssClassName.SORTABLE_COLUMN_ICON, "-").concat(activated ? 'active' : 'inactive');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
|
-
import { AlignmentAttributes } from '@atlaskit/adf-schema';
|
|
3
|
-
import { MarkProps } from '../types';
|
|
2
|
+
import type { AlignmentAttributes } from '@atlaskit/adf-schema';
|
|
3
|
+
import type { MarkProps } from '../types';
|
|
4
4
|
export default function Alignment(props: MarkProps<AlignmentAttributes>): jsx.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
|
-
import { BreakoutMarkAttrs } from '@atlaskit/adf-schema';
|
|
4
|
-
import { MarkProps } from '../types';
|
|
3
|
+
import type { BreakoutMarkAttrs } from '@atlaskit/adf-schema';
|
|
4
|
+
import type { MarkProps } from '../types';
|
|
5
5
|
export declare const wrapperStyles: import("@emotion/react").SerializedStyles;
|
|
6
6
|
export default function Breakout(props: MarkProps<BreakoutMarkAttrs>): jsx.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
|
-
import { LinkAttributes } from '@atlaskit/adf-schema';
|
|
3
|
-
import { MarkProps } from '../types';
|
|
2
|
+
import type { LinkAttributes } from '@atlaskit/adf-schema';
|
|
3
|
+
import type { MarkProps } from '../types';
|
|
4
4
|
interface LinkProps extends LinkAttributes {
|
|
5
5
|
target?: string;
|
|
6
6
|
isMediaLink?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
|
-
import { AlignmentAttributes } from '@atlaskit/adf-schema';
|
|
3
|
-
import { MarkProps } from '../types';
|
|
2
|
+
import type { AlignmentAttributes } from '@atlaskit/adf-schema';
|
|
3
|
+
import type { MarkProps } from '../types';
|
|
4
4
|
export default function Alignment(props: MarkProps<AlignmentAttributes>): jsx.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import { jsx } from '@emotion/react';
|
|
3
|
-
import { BreakoutMarkAttrs } from '@atlaskit/adf-schema';
|
|
4
|
-
import { MarkProps } from '../types';
|
|
3
|
+
import type { BreakoutMarkAttrs } from '@atlaskit/adf-schema';
|
|
4
|
+
import type { MarkProps } from '../types';
|
|
5
5
|
export declare const wrapperStyles: import("@emotion/react").SerializedStyles;
|
|
6
6
|
export default function Breakout(props: MarkProps<BreakoutMarkAttrs>): jsx.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
|
-
import { LinkAttributes } from '@atlaskit/adf-schema';
|
|
3
|
-
import { MarkProps } from '../types';
|
|
2
|
+
import type { LinkAttributes } from '@atlaskit/adf-schema';
|
|
3
|
+
import type { MarkProps } from '../types';
|
|
4
4
|
interface LinkProps extends LinkAttributes {
|
|
5
5
|
target?: string;
|
|
6
6
|
isMediaLink?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "109.
|
|
3
|
+
"version": "109.20.0",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,30 +24,30 @@
|
|
|
24
24
|
"runReact18": true
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-schema": "^35.9.
|
|
27
|
+
"@atlaskit/adf-schema": "^35.9.2",
|
|
28
28
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
29
29
|
"@atlaskit/analytics-listeners": "^8.9.0",
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^6.9.0",
|
|
31
|
-
"@atlaskit/analytics-next": "^9.
|
|
32
|
-
"@atlaskit/button": "^17.
|
|
31
|
+
"@atlaskit/analytics-next": "^9.3.0",
|
|
32
|
+
"@atlaskit/button": "^17.14.0",
|
|
33
33
|
"@atlaskit/code": "^15.1.0",
|
|
34
|
-
"@atlaskit/editor-common": "^78.
|
|
35
|
-
"@atlaskit/editor-json-transformer": "^8.
|
|
34
|
+
"@atlaskit/editor-common": "^78.31.0",
|
|
35
|
+
"@atlaskit/editor-json-transformer": "^8.11.0",
|
|
36
36
|
"@atlaskit/editor-palette": "1.5.3",
|
|
37
|
-
"@atlaskit/editor-prosemirror": "
|
|
37
|
+
"@atlaskit/editor-prosemirror": "4.0.0",
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
39
39
|
"@atlaskit/emoji": "^67.6.0",
|
|
40
40
|
"@atlaskit/icon": "^22.1.0",
|
|
41
|
-
"@atlaskit/link-datasource": "^1.
|
|
41
|
+
"@atlaskit/link-datasource": "^1.29.0",
|
|
42
42
|
"@atlaskit/media-card": "^77.11.0",
|
|
43
43
|
"@atlaskit/media-client": "^26.3.0",
|
|
44
44
|
"@atlaskit/media-client-react": "^2.0.0",
|
|
45
45
|
"@atlaskit/media-common": "^11.1.0",
|
|
46
46
|
"@atlaskit/media-filmstrip": "^47.0.0",
|
|
47
|
-
"@atlaskit/media-ui": "^25.
|
|
47
|
+
"@atlaskit/media-ui": "^25.9.0",
|
|
48
48
|
"@atlaskit/media-viewer": "^48.4.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
50
|
-
"@atlaskit/smart-card": "^26.
|
|
50
|
+
"@atlaskit/smart-card": "^26.57.0",
|
|
51
51
|
"@atlaskit/status": "^1.4.0",
|
|
52
52
|
"@atlaskit/task-decision": "^17.9.0",
|
|
53
53
|
"@atlaskit/theme": "^12.7.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@af/visual-regression": "*",
|
|
73
73
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
74
74
|
"@atlaskit/css-reset": "^6.9.0",
|
|
75
|
-
"@atlaskit/editor-test-helpers": "^18.
|
|
75
|
+
"@atlaskit/editor-test-helpers": "^18.21.0",
|
|
76
76
|
"@atlaskit/link-provider": "^1.9.0",
|
|
77
77
|
"@atlaskit/link-test-helpers": "^7.0.0",
|
|
78
78
|
"@atlaskit/linking-common": "^5.6.0",
|
|
@@ -119,6 +119,9 @@
|
|
|
119
119
|
}
|
|
120
120
|
},
|
|
121
121
|
"platform-feature-flags": {
|
|
122
|
+
"platform.editor.renderer-inline-card-ssr-fix_kqcwl": {
|
|
123
|
+
"type": "boolean"
|
|
124
|
+
},
|
|
122
125
|
"platform.media-experience.media-viewer-v2_hgsii": {
|
|
123
126
|
"type": "boolean",
|
|
124
127
|
"referenceOnly": "true"
|