@atlaskit/renderer 94.0.0 → 96.0.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 +48 -0
- package/dist/cjs/react/index.js +0 -2
- package/dist/cjs/react/marks/link.js +3 -1
- package/dist/cjs/react/nodes/codeBlock.js +5 -0
- package/dist/cjs/react/nodes/codeBlockCopyButton.js +3 -1
- package/dist/cjs/react/nodes/embedCard.js +2 -5
- package/dist/cjs/react/nodes/heading-anchor.js +4 -2
- package/dist/cjs/react/nodes/inlineCard.js +5 -1
- package/dist/cjs/react/nodes/mediaInline.js +41 -4
- package/dist/cjs/react/nodes/mediaSingle/index.js +3 -7
- package/dist/cjs/react/nodes/table/colgroup.js +6 -12
- package/dist/cjs/react/nodes/table/sticky.js +21 -21
- package/dist/cjs/react/nodes/table/table.js +1 -3
- package/dist/cjs/react/nodes/table.js +20 -9
- package/dist/cjs/react/nodes/tableCell.js +5 -3
- package/dist/cjs/render-document.js +142 -55
- package/dist/cjs/ui/MediaCard.js +2 -2
- package/dist/cjs/ui/Renderer/breakout-ssr.js +6 -8
- package/dist/cjs/ui/Renderer/index.js +22 -34
- package/dist/cjs/ui/Renderer/style.js +30 -28
- package/dist/cjs/ui/Renderer/truncated-wrapper.js +6 -3
- package/dist/cjs/ui/SortingIcon.js +6 -2
- package/dist/cjs/ui/annotations/draft/component.js +1 -1
- package/dist/cjs/ui/annotations/element/mark.js +1 -1
- package/dist/cjs/ui/annotations/hooks/use-events.js +4 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/react/index.js +0 -2
- package/dist/es2019/react/marks/link.js +8 -3
- package/dist/es2019/react/nodes/codeBlock.js +5 -0
- package/dist/es2019/react/nodes/codeBlockCopyButton.js +7 -6
- package/dist/es2019/react/nodes/embedCard.js +4 -7
- package/dist/es2019/react/nodes/heading-anchor.js +3 -2
- package/dist/es2019/react/nodes/inlineCard.js +4 -1
- package/dist/es2019/react/nodes/mediaInline.js +36 -4
- package/dist/es2019/react/nodes/mediaSingle/index.js +5 -9
- package/dist/es2019/react/nodes/table/colgroup.js +2 -8
- package/dist/es2019/react/nodes/table/sticky.js +30 -28
- package/dist/es2019/react/nodes/table/table.js +1 -3
- package/dist/es2019/react/nodes/table.js +18 -9
- package/dist/es2019/react/nodes/tableCell.js +4 -1
- package/dist/es2019/render-document.js +117 -56
- package/dist/es2019/ui/MediaCard.js +1 -1
- package/dist/es2019/ui/Renderer/breakout-ssr.js +6 -8
- package/dist/es2019/ui/Renderer/index.js +6 -19
- package/dist/es2019/ui/Renderer/style.js +50 -32
- package/dist/es2019/ui/Renderer/truncated-wrapper.js +5 -3
- package/dist/es2019/ui/SortingIcon.js +7 -5
- package/dist/es2019/ui/annotations/draft/component.js +1 -1
- package/dist/es2019/ui/annotations/element/mark.js +1 -1
- package/dist/es2019/ui/annotations/hooks/use-events.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/react/index.js +0 -2
- package/dist/esm/react/marks/link.js +3 -2
- package/dist/esm/react/nodes/codeBlock.js +5 -0
- package/dist/esm/react/nodes/codeBlockCopyButton.js +2 -1
- package/dist/esm/react/nodes/embedCard.js +4 -7
- package/dist/esm/react/nodes/heading-anchor.js +3 -2
- package/dist/esm/react/nodes/inlineCard.js +4 -1
- package/dist/esm/react/nodes/mediaInline.js +36 -4
- package/dist/esm/react/nodes/mediaSingle/index.js +5 -9
- package/dist/esm/react/nodes/table/colgroup.js +6 -12
- package/dist/esm/react/nodes/table/sticky.js +20 -22
- package/dist/esm/react/nodes/table/table.js +1 -3
- package/dist/esm/react/nodes/table.js +20 -9
- package/dist/esm/react/nodes/tableCell.js +5 -3
- package/dist/esm/render-document.js +137 -55
- package/dist/esm/ui/MediaCard.js +1 -1
- package/dist/esm/ui/Renderer/breakout-ssr.js +6 -8
- package/dist/esm/ui/Renderer/index.js +21 -33
- package/dist/esm/ui/Renderer/style.js +30 -28
- package/dist/esm/ui/Renderer/truncated-wrapper.js +5 -3
- package/dist/esm/ui/SortingIcon.js +5 -3
- package/dist/esm/ui/annotations/draft/component.js +1 -1
- package/dist/esm/ui/annotations/element/mark.js +1 -1
- package/dist/esm/ui/annotations/hooks/use-events.js +4 -2
- package/dist/esm/version.json +1 -1
- package/dist/types/react/index.d.ts +0 -2
- package/dist/types/react/nodes/embedCard.d.ts +0 -1
- package/dist/types/react/nodes/extension.d.ts +6 -0
- package/dist/types/react/nodes/index.d.ts +1 -2
- package/dist/types/react/nodes/media.d.ts +0 -1
- package/dist/types/react/nodes/mediaInline.d.ts +6 -3
- package/dist/types/react/nodes/mediaSingle/index.d.ts +0 -1
- package/dist/types/react/nodes/table/sticky.d.ts +1 -2
- package/dist/types/react/nodes/table/table.d.ts +1 -1
- package/dist/types/react/nodes/table/types.d.ts +0 -1
- package/dist/types/react/types.d.ts +0 -1
- package/dist/types/render-document.d.ts +1 -1
- package/dist/types/renderer-context.d.ts +1 -0
- package/dist/types/ui/MediaCard.d.ts +1 -1
- package/dist/types/ui/Renderer/breakout-ssr.d.ts +2 -4
- package/dist/types/ui/renderer-props.d.ts +1 -0
- package/package.json +27 -20
|
@@ -30,7 +30,7 @@ export var useAnnotationStateByTypeEvent = function useAnnotationStateByTypeEven
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
var nextStates = Object.values(payload).reduce(function (acc, curr) {
|
|
33
|
-
if (curr.annotationType === type) {
|
|
33
|
+
if (curr.id && curr.annotationType === type) {
|
|
34
34
|
// Check for empty state to prevent additional renders
|
|
35
35
|
var isEmpty = curr.state === null || curr.state === undefined;
|
|
36
36
|
return _objectSpread(_objectSpread({}, acc), {}, _defineProperty({}, curr.id, !isEmpty ? curr.state : states[curr.id]));
|
|
@@ -95,7 +95,9 @@ export var useAnnotationClickEvent = function useAnnotationClickEvent(props) {
|
|
|
95
95
|
var cb = function cb(_ref3) {
|
|
96
96
|
var annotationIds = _ref3.annotationIds,
|
|
97
97
|
eventTarget = _ref3.eventTarget;
|
|
98
|
-
var annotationsByType = annotationIds.
|
|
98
|
+
var annotationsByType = annotationIds.filter(function (id) {
|
|
99
|
+
return !!id;
|
|
100
|
+
}).map(function (id) {
|
|
99
101
|
return {
|
|
100
102
|
id: id,
|
|
101
103
|
type: AnnotationTypes.INLINE_COMMENT
|
package/dist/esm/version.json
CHANGED
|
@@ -19,7 +19,6 @@ export interface ReactSerializerInit {
|
|
|
19
19
|
appearance?: RendererAppearance;
|
|
20
20
|
disableHeadingIDs?: boolean;
|
|
21
21
|
disableActions?: boolean;
|
|
22
|
-
allowDynamicTextSizing?: boolean;
|
|
23
22
|
allowHeadingAnchorLinks?: HeadingAnchorLinksProps;
|
|
24
23
|
allowColumnSorting?: boolean;
|
|
25
24
|
fireAnalyticsEvent?: (event: AnalyticsEventPayload) => void;
|
|
@@ -60,7 +59,6 @@ export default class ReactSerializer implements Serializer<JSX.Element> {
|
|
|
60
59
|
* for headers under this ticket -> https://product-fabric.atlassian.net/browse/ED-9668
|
|
61
60
|
*/
|
|
62
61
|
private expandHeadingIds;
|
|
63
|
-
private allowDynamicTextSizing?;
|
|
64
62
|
private allowHeadingAnchorLinks?;
|
|
65
63
|
private allowColumnSorting?;
|
|
66
64
|
private allowCopyToClipboard?;
|
|
@@ -28,6 +28,8 @@ declare const _default: {
|
|
|
28
28
|
new (props: Readonly<Props>): {
|
|
29
29
|
overflowContainer?: HTMLElement | null | undefined;
|
|
30
30
|
container?: HTMLElement | undefined;
|
|
31
|
+
shadowObserver?: import("@atlaskit/editor-common/ui").ShadowObserver | undefined;
|
|
32
|
+
overflowContainerWidth: number;
|
|
31
33
|
scrollable?: NodeList | undefined;
|
|
32
34
|
diff?: number | undefined;
|
|
33
35
|
state: {
|
|
@@ -42,6 +44,7 @@ declare const _default: {
|
|
|
42
44
|
calcOverflowDiff: () => number;
|
|
43
45
|
calcScrollableWidth: () => number;
|
|
44
46
|
handleContainer: (container: HTMLElement | null) => void;
|
|
47
|
+
initShadowObserver(): void;
|
|
45
48
|
render(): JSX.Element;
|
|
46
49
|
context: any;
|
|
47
50
|
setState<K extends keyof import("@atlaskit/editor-common/ui").OverflowShadowState>(state: import("@atlaskit/editor-common/ui").OverflowShadowState | ((prevState: Readonly<import("@atlaskit/editor-common/ui").OverflowShadowState>, props: Readonly<Props>) => import("@atlaskit/editor-common/ui").OverflowShadowState | Pick<import("@atlaskit/editor-common/ui").OverflowShadowState, K> | null) | Pick<import("@atlaskit/editor-common/ui").OverflowShadowState, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -66,6 +69,8 @@ declare const _default: {
|
|
|
66
69
|
new (props: Props, context?: any): {
|
|
67
70
|
overflowContainer?: HTMLElement | null | undefined;
|
|
68
71
|
container?: HTMLElement | undefined;
|
|
72
|
+
shadowObserver?: import("@atlaskit/editor-common/ui").ShadowObserver | undefined;
|
|
73
|
+
overflowContainerWidth: number;
|
|
69
74
|
scrollable?: NodeList | undefined;
|
|
70
75
|
diff?: number | undefined;
|
|
71
76
|
state: {
|
|
@@ -80,6 +85,7 @@ declare const _default: {
|
|
|
80
85
|
calcOverflowDiff: () => number;
|
|
81
86
|
calcScrollableWidth: () => number;
|
|
82
87
|
handleContainer: (container: HTMLElement | null) => void;
|
|
88
|
+
initShadowObserver(): void;
|
|
83
89
|
render(): JSX.Element;
|
|
84
90
|
context: any;
|
|
85
91
|
setState<K_1 extends keyof import("@atlaskit/editor-common/ui").OverflowShadowState>(state: import("@atlaskit/editor-common/ui").OverflowShadowState | ((prevState: Readonly<import("@atlaskit/editor-common/ui").OverflowShadowState>, props: Readonly<Props>) => import("@atlaskit/editor-common/ui").OverflowShadowState | Pick<import("@atlaskit/editor-common/ui").OverflowShadowState, K_1> | null) | Pick<import("@atlaskit/editor-common/ui").OverflowShadowState, K_1> | null, callback?: (() => void) | undefined): void;
|
|
@@ -41,7 +41,6 @@ declare const EmbedCard: React.ComponentType<{
|
|
|
41
41
|
layout: import("@atlaskit/adf-schema").RichMediaLayout;
|
|
42
42
|
rendererAppearance?: import("../..").RendererAppearance;
|
|
43
43
|
isInsideOfBlockNode?: boolean | undefined;
|
|
44
|
-
allowDynamicTextSizing?: boolean | undefined;
|
|
45
44
|
}> & Loadable.LoadableComponent;
|
|
46
45
|
declare const InlineCard: React.ComponentType<import("@atlaskit/editor-common/utils").Diff<import("./inlineCard").InlineCardProps & import("../../ui/SmartCardStorage").WithSmartCardStorageProps, import("../../ui/SmartCardStorage").WithSmartCardStorageProps>> & Loadable.LoadableComponent;
|
|
47
46
|
declare const BlockCard: React.ComponentType<{
|
|
@@ -53,7 +52,7 @@ declare const BlockCard: React.ComponentType<{
|
|
|
53
52
|
}> & Loadable.LoadableComponent;
|
|
54
53
|
declare const Media: React.ComponentType<import("./media").MediaProps> & Loadable.LoadableComponent;
|
|
55
54
|
declare const MediaGroup: React.ComponentType<import("./mediaGroup").MediaGroupProps> & Loadable.LoadableComponent;
|
|
56
|
-
declare const MediaInline: React.ComponentType<import("./mediaInline").MediaInlineProps
|
|
55
|
+
declare const MediaInline: React.ComponentType<import("react-intl-next").WithIntlProps<import("./mediaInline").MediaInlineProps & import("react-intl-next").WrappedComponentProps<"intl">>> & Loadable.LoadableComponent;
|
|
57
56
|
declare const MediaSingle: React.ComponentType<import("react-intl-next").WithIntlProps<import("./mediaSingle").Props & import("react-intl-next").WrappedComponentProps<"intl">>> & Loadable.LoadableComponent;
|
|
58
57
|
declare const Mention: React.ComponentType<import("./mention").Props> & Loadable.LoadableComponent;
|
|
59
58
|
declare const Expand: React.ComponentType<import("react-intl-next").WithIntlProps<import("../../ui/Expand").ExpandProps & import("react-intl-next").WrappedComponentProps<"intl">>> & Loadable.LoadableComponent;
|
|
@@ -12,7 +12,6 @@ export declare type MediaProps = MediaCardProps & {
|
|
|
12
12
|
providers?: ProviderFactory;
|
|
13
13
|
allowAltTextOnImages?: boolean;
|
|
14
14
|
children?: React.ReactNode;
|
|
15
|
-
allowDynamicTextSizing?: boolean;
|
|
16
15
|
isInsideOfBlockNode?: boolean;
|
|
17
16
|
marks: Array<LinkDefinition>;
|
|
18
17
|
isLinkMark: () => boolean;
|
|
@@ -2,9 +2,10 @@ import React from 'react';
|
|
|
2
2
|
import { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
3
3
|
import { FileIdentifier } from '@atlaskit/media-client';
|
|
4
4
|
import { MediaProvider } from '../../ui/MediaCard';
|
|
5
|
+
import { WrappedComponentProps } from 'react-intl-next';
|
|
5
6
|
export declare type RenderMediaInlineProps = {
|
|
6
7
|
identifier: FileIdentifier;
|
|
7
|
-
mediaProvider
|
|
8
|
+
mediaProvider: Promise<MediaProvider>;
|
|
8
9
|
children?: React.ReactNode;
|
|
9
10
|
};
|
|
10
11
|
export declare type MediaInlineProps = {
|
|
@@ -13,5 +14,7 @@ export declare type MediaInlineProps = {
|
|
|
13
14
|
providers: ProviderFactory;
|
|
14
15
|
};
|
|
15
16
|
export declare const RenderMediaInline: React.FC<RenderMediaInlineProps>;
|
|
16
|
-
declare const
|
|
17
|
-
|
|
17
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<MediaInlineProps & WrappedComponentProps<"intl">>> & {
|
|
18
|
+
WrappedComponent: React.ComponentType<MediaInlineProps & WrappedComponentProps<"intl">>;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -11,7 +11,6 @@ export interface Props {
|
|
|
11
11
|
layout: MediaSingleLayout;
|
|
12
12
|
eventHandlers?: EventHandlers;
|
|
13
13
|
width?: number;
|
|
14
|
-
allowDynamicTextSizing?: boolean;
|
|
15
14
|
isInsideOfBlockNode?: boolean;
|
|
16
15
|
rendererAppearance: RendererAppearance;
|
|
17
16
|
fireAnalyticsEvent?: (event: AnalyticsEventPayload) => void;
|
|
@@ -24,9 +24,8 @@ export declare type StickyTableProps = {
|
|
|
24
24
|
layout: TableLayout;
|
|
25
25
|
columnWidths?: number[];
|
|
26
26
|
renderWidth: number;
|
|
27
|
-
allowDynamicTextSizing?: boolean;
|
|
28
27
|
} & OverflowShadowProps;
|
|
29
|
-
export declare const StickyTable: ({ top, left, mode, shadowClassNames, innerRef, wrapperWidth, tableWidth, isNumberColumnEnabled, layout, children, columnWidths, renderWidth,
|
|
28
|
+
export declare const StickyTable: ({ top, left, mode, shadowClassNames, innerRef, wrapperWidth, tableWidth, isNumberColumnEnabled, layout, children, columnWidths, renderWidth, rowHeight, }: StickyTableProps) => jsx.JSX.Element;
|
|
30
29
|
export declare class OverflowParent {
|
|
31
30
|
private ref;
|
|
32
31
|
private constructor();
|
|
@@ -4,4 +4,4 @@ export declare type TableProps = SharedTableProps & {
|
|
|
4
4
|
innerRef?: React.RefObject<HTMLTableElement>;
|
|
5
5
|
children: React.ReactNode[];
|
|
6
6
|
};
|
|
7
|
-
export declare const Table: React.MemoExoticComponent<({ innerRef, isNumberColumnEnabled, columnWidths, layout, renderWidth,
|
|
7
|
+
export declare const Table: React.MemoExoticComponent<({ innerRef, isNumberColumnEnabled, columnWidths, layout, renderWidth, children, }: TableProps) => JSX.Element>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Serializer } from './serializer';
|
|
2
|
-
import { ADFStage } from '@atlaskit/editor-common/validator';
|
|
2
|
+
import type { ADFStage } from '@atlaskit/editor-common/validator';
|
|
3
3
|
import type { UnsupportedContentLevelsTracking } from '@atlaskit/editor-common/utils';
|
|
4
4
|
import { Node as PMNode, Schema } from 'prosemirror-model';
|
|
5
5
|
import { AnalyticsEventPayload } from './analytics/events';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
|
-
import { ADFEntity } from '@atlaskit/adf-utils';
|
|
2
|
+
import type { ADFEntity } from '@atlaskit/adf-utils/types';
|
|
3
3
|
import { CardAppearance, CardDimensions, CardOnClickCallback, NumericalCardDimensions } from '@atlaskit/media-card';
|
|
4
4
|
import { MediaClientConfig } from '@atlaskit/media-core';
|
|
5
5
|
import { ImageResizeMode, Identifier, FileState } from '@atlaskit/media-client';
|
|
@@ -5,9 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* More info: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1216218119/Renderer+SSR+for+Breakout+Nodes
|
|
7
7
|
*/
|
|
8
|
-
export declare function BreakoutSSRInlineScript(
|
|
9
|
-
|
|
10
|
-
}): JSX.Element | null;
|
|
11
|
-
export declare function createBreakoutInlineScript(id: number, allowDynamicTextSizing: boolean): string;
|
|
8
|
+
export declare function BreakoutSSRInlineScript(): JSX.Element | null;
|
|
9
|
+
export declare function createBreakoutInlineScript(id: number): string;
|
|
12
10
|
export declare const breakoutInlineScriptContext: string;
|
|
13
11
|
export declare const calcLineLength: any;
|
|
@@ -39,6 +39,7 @@ export interface RendererProps {
|
|
|
39
39
|
adfStage?: ADFStage;
|
|
40
40
|
disableHeadingIDs?: boolean;
|
|
41
41
|
disableActions?: boolean;
|
|
42
|
+
/** @deprecated [ED-14507] allowDynamicTextSizing is no longer in use */
|
|
42
43
|
allowDynamicTextSizing?: boolean;
|
|
43
44
|
allowHeadingAnchorLinks?: HeadingAnchorLinksProps;
|
|
44
45
|
allowPlaceholderText?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "96.0.0",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,25 +24,27 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-schema": "^23.
|
|
28
|
-
"@atlaskit/adf-utils": "^
|
|
27
|
+
"@atlaskit/adf-schema": "^23.1.0",
|
|
28
|
+
"@atlaskit/adf-utils": "^17.0.0",
|
|
29
29
|
"@atlaskit/analytics-listeners": "^8.2.0",
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^6.4.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^8.2.0",
|
|
32
32
|
"@atlaskit/button": "^16.3.0",
|
|
33
33
|
"@atlaskit/code": "^14.3.0",
|
|
34
|
-
"@atlaskit/editor-common": "^
|
|
34
|
+
"@atlaskit/editor-common": "^68.0.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.7.0",
|
|
36
|
-
"@atlaskit/editor-shared-styles": "^2.
|
|
36
|
+
"@atlaskit/editor-shared-styles": "^2.1.0",
|
|
37
37
|
"@atlaskit/icon": "^21.10.0",
|
|
38
|
-
"@atlaskit/media-card": "^73.
|
|
39
|
-
"@atlaskit/media-client": "^
|
|
40
|
-
"@atlaskit/media-common": "^2.
|
|
41
|
-
"@atlaskit/media-filmstrip": "^
|
|
42
|
-
"@atlaskit/media-
|
|
38
|
+
"@atlaskit/media-card": "^73.7.0",
|
|
39
|
+
"@atlaskit/media-client": "^16.0.0",
|
|
40
|
+
"@atlaskit/media-common": "^2.14.0",
|
|
41
|
+
"@atlaskit/media-filmstrip": "^44.0.0",
|
|
42
|
+
"@atlaskit/media-ui": "^22.1.0",
|
|
43
|
+
"@atlaskit/media-viewer": "^46.4.0",
|
|
43
44
|
"@atlaskit/status": "^1.1.0",
|
|
44
45
|
"@atlaskit/task-decision": "^17.4.0",
|
|
45
46
|
"@atlaskit/theme": "^12.1.0",
|
|
47
|
+
"@atlaskit/tokens": "^0.10.0",
|
|
46
48
|
"@atlaskit/tooltip": "^17.5.0",
|
|
47
49
|
"@babel/runtime": "^7.0.0",
|
|
48
50
|
"@emotion/react": "^11.7.1",
|
|
@@ -56,28 +58,28 @@
|
|
|
56
58
|
"uuid": "^3.1.0"
|
|
57
59
|
},
|
|
58
60
|
"peerDependencies": {
|
|
59
|
-
"@atlaskit/media-core": "^
|
|
60
|
-
"@atlaskit/smart-card": "^19.
|
|
61
|
+
"@atlaskit/media-core": "^33.0.0",
|
|
62
|
+
"@atlaskit/smart-card": "^19.1.12",
|
|
61
63
|
"react": "^16.8.0",
|
|
62
64
|
"react-dom": "^16.8.0"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
65
67
|
"@atlaskit/analytics-gas-types": "^5.0.5",
|
|
66
|
-
"@atlaskit/avatar": "^
|
|
68
|
+
"@atlaskit/avatar": "^21.0.0",
|
|
67
69
|
"@atlaskit/css-reset": "^6.3.0",
|
|
68
70
|
"@atlaskit/docs": "*",
|
|
69
|
-
"@atlaskit/editor-core": "^
|
|
71
|
+
"@atlaskit/editor-core": "^167.0.0",
|
|
70
72
|
"@atlaskit/editor-test-helpers": "^17.0.0",
|
|
71
|
-
"@atlaskit/logo": "^13.
|
|
72
|
-
"@atlaskit/media-core": "^
|
|
73
|
+
"@atlaskit/logo": "^13.7.0",
|
|
74
|
+
"@atlaskit/media-core": "^33.0.0",
|
|
73
75
|
"@atlaskit/media-integration-test-helpers": "^2.6.0",
|
|
74
|
-
"@atlaskit/media-test-helpers": "^
|
|
76
|
+
"@atlaskit/media-test-helpers": "^30.0.0",
|
|
75
77
|
"@atlaskit/mention": "^21.0.0",
|
|
76
78
|
"@atlaskit/navigation-next": "^9.0.0",
|
|
77
79
|
"@atlaskit/profilecard": "^16.4.0",
|
|
78
80
|
"@atlaskit/radio": "^5.3.0",
|
|
79
81
|
"@atlaskit/range": "^6.0.0",
|
|
80
|
-
"@atlaskit/smart-card": "^19.
|
|
82
|
+
"@atlaskit/smart-card": "^19.1.0",
|
|
81
83
|
"@atlaskit/ssr": "*",
|
|
82
84
|
"@atlaskit/util-data-test": "^17.2.0",
|
|
83
85
|
"@atlaskit/visual-regression": "*",
|
|
@@ -91,7 +93,7 @@
|
|
|
91
93
|
"enzyme": "^3.10.0",
|
|
92
94
|
"jsdom": "^16.2.2",
|
|
93
95
|
"mockdate": "^3.0.2",
|
|
94
|
-
"puppeteer": "
|
|
96
|
+
"puppeteer": "13.7.0",
|
|
95
97
|
"react": "^16.8.0",
|
|
96
98
|
"react-dom": "^16.8.0",
|
|
97
99
|
"react-live-clock": "^4.0.0",
|
|
@@ -101,5 +103,10 @@
|
|
|
101
103
|
"typescript": "4.2.4",
|
|
102
104
|
"worker-plugin": "^4.0.2"
|
|
103
105
|
},
|
|
104
|
-
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
106
|
+
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
|
|
107
|
+
"techstack": {
|
|
108
|
+
"@repo/internal": {
|
|
109
|
+
"theming": "tokens"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
105
112
|
}
|