@atlaskit/editor-plugin-block-type 6.2.9 → 6.2.11

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,19 @@
1
1
  # @atlaskit/editor-plugin-block-type
2
2
 
3
+ ## 6.2.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [`265c1bf0cefa4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/265c1bf0cefa4) -
8
+ Sorted type and interface props to improve Atlaskit docs
9
+ - Updated dependencies
10
+
11
+ ## 6.2.10
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 6.2.9
4
18
 
5
19
  ### Patch Changes
@@ -9,7 +9,14 @@ import type { ClearFormattingInputMethod, InputMethod } from './pm-plugins/comma
9
9
  import type { BlockTypeState } from './pm-plugins/main';
10
10
  import type { BlockTypePluginOptions } from './pm-plugins/types';
11
11
  export type BlockTypePlugin = NextEditorPlugin<'blockType', {
12
- pluginConfiguration: BlockTypePluginOptions | undefined;
12
+ actions: {
13
+ insertBlockQuote: (inputMethod: InputMethod) => Command;
14
+ };
15
+ commands: {
16
+ clearFormatting: (inputMethod: ClearFormattingInputMethod) => EditorCommand;
17
+ insertBlockQuote: (inputMethod: InputMethod) => EditorCommand;
18
+ setTextLevel: (level: TextBlockTypes, inputMethod: InputMethod, fromBlockQuote?: boolean) => EditorCommand;
19
+ };
13
20
  dependencies: [
14
21
  OptionalPlugin<AnalyticsPlugin>,
15
22
  OptionalPlugin<PrimaryToolbarPlugin>,
@@ -17,13 +24,6 @@ export type BlockTypePlugin = NextEditorPlugin<'blockType', {
17
24
  OptionalPlugin<UserPreferencesPlugin>,
18
25
  OptionalPlugin<ToolbarPlugin>
19
26
  ];
27
+ pluginConfiguration: BlockTypePluginOptions | undefined;
20
28
  sharedState: BlockTypeState | undefined;
21
- actions: {
22
- insertBlockQuote: (inputMethod: InputMethod) => Command;
23
- };
24
- commands: {
25
- setTextLevel: (level: TextBlockTypes, inputMethod: InputMethod, fromBlockQuote?: boolean) => EditorCommand;
26
- insertBlockQuote: (inputMethod: InputMethod) => EditorCommand;
27
- clearFormatting: (inputMethod: ClearFormattingInputMethod) => EditorCommand;
28
- };
29
29
  }>;
@@ -4,11 +4,11 @@ import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
4
  import type { BlockTypePlugin } from '../blockTypePluginType';
5
5
  import type { BlockType } from './types';
6
6
  export type BlockTypeState = {
7
- currentBlockType: BlockType;
8
- blockTypesDisabled: boolean;
9
7
  availableBlockTypes: BlockType[];
10
- availableWrapperBlockTypes: BlockType[];
11
8
  availableBlockTypesInDropdown: BlockType[];
9
+ availableWrapperBlockTypes: BlockType[];
10
+ blockTypesDisabled: boolean;
11
+ currentBlockType: BlockType;
12
12
  formattingIsPresent?: boolean;
13
13
  };
14
14
  export declare const pluginKey: PluginKey<BlockTypeState>;
@@ -4,27 +4,27 @@ import type { AllowedBlockTypes, HeadingLevelsAndNormalText } from '@atlaskit/ed
4
4
  import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
5
5
  export type BlockTypeName = 'normal' | 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'blockquote' | 'codeblock' | 'panel' | 'notePanel' | 'successPanel' | 'warningPanel' | 'errorPanel' | 'other';
6
6
  export interface BlockType {
7
+ icon?: ReactElement;
8
+ LEGACY_icon?: ReactElement;
9
+ level?: HeadingLevelsAndNormalText;
7
10
  name: string;
8
- title: MessageDescriptor;
9
11
  nodeName: string;
10
12
  tagName?: string;
11
- level?: HeadingLevelsAndNormalText;
12
- icon?: ReactElement;
13
- LEGACY_icon?: ReactElement;
13
+ title: MessageDescriptor;
14
14
  }
15
15
  export interface BlockTypeWithRank extends BlockType {
16
- toolbarRank: number;
17
16
  toolbarKey: string;
17
+ toolbarRank: number;
18
18
  }
19
19
  export interface BlockTypeNode {
20
20
  name: AllowedBlockTypes;
21
21
  node: NodeSpec;
22
22
  }
23
23
  export interface BlockTypePluginOptions {
24
- lastNodeMustBeParagraph?: boolean;
25
24
  allowBlockType?: {
26
25
  exclude?: Array<AllowedBlockTypes>;
27
26
  };
28
- isUndoRedoButtonsEnabled?: boolean;
29
27
  includeBlockQuoteAsTextstyleOption?: boolean;
28
+ isUndoRedoButtonsEnabled?: boolean;
29
+ lastNodeMustBeParagraph?: boolean;
30
30
  }
@@ -2,12 +2,12 @@ import React from 'react';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../blockTypePluginType';
4
4
  interface PrimaryToolbarComponentProps {
5
+ api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
6
+ disabled: boolean;
5
7
  isSmall: boolean;
6
8
  isToolbarReducedSpacing: boolean;
7
- disabled: boolean;
8
- api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
9
- popupsMountPoint?: HTMLElement;
10
9
  popupsBoundariesElement?: HTMLElement;
10
+ popupsMountPoint?: HTMLElement;
11
11
  popupsScrollableElement?: HTMLElement;
12
12
  shouldUseDefaultRole: boolean;
13
13
  }
@@ -3,8 +3,8 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../../blockTypePluginType';
4
4
  import type { BlockTypeWithRank } from '../../types';
5
5
  type HeadingButtonProps = {
6
- blockType: BlockTypeWithRank;
7
6
  api?: ExtractInjectionAPI<BlockTypePlugin>;
7
+ blockType: BlockTypeWithRank;
8
8
  };
9
9
  export declare const HeadingButton: ({ blockType, api }: HeadingButtonProps) => React.JSX.Element | null;
10
10
  export {};
@@ -3,8 +3,8 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../../blockTypePluginType';
4
4
  import type { BlockTypeWithRank } from '../../types';
5
5
  type QuoteButtonProps = {
6
- blockType: BlockTypeWithRank;
7
6
  api?: ExtractInjectionAPI<BlockTypePlugin>;
7
+ blockType: BlockTypeWithRank;
8
8
  };
9
9
  export declare const QuoteButton: ({ blockType, api }: QuoteButtonProps) => React.JSX.Element | null;
10
10
  export {};
@@ -6,16 +6,16 @@ import React, { type ReactElement } from 'react';
6
6
  import { jsx } from '@emotion/react';
7
7
  import type { MessageDescriptor, WrappedComponentProps } from 'react-intl-next';
8
8
  export interface BlockTypeButtonProps {
9
- isSmall?: boolean;
10
- isReducedSpacing?: boolean;
11
9
  'aria-expanded': React.AriaAttributes['aria-expanded'];
12
- selected: boolean;
10
+ blockTypeIcon?: ReactElement;
11
+ blockTypeName?: string;
13
12
  disabled: boolean;
14
- title: MessageDescriptor;
13
+ formatMessage: WrappedComponentProps['intl']['formatMessage'];
14
+ isReducedSpacing?: boolean;
15
+ isSmall?: boolean;
15
16
  onClick(e: React.MouseEvent): void;
16
17
  onKeyDown(e: React.KeyboardEvent): void;
17
- formatMessage: WrappedComponentProps['intl']['formatMessage'];
18
- blockTypeName?: string;
19
- blockTypeIcon?: ReactElement;
18
+ selected: boolean;
19
+ title: MessageDescriptor;
20
20
  }
21
21
  export declare const BlockTypeButton: (props: BlockTypeButtonProps) => jsx.JSX.Element;
@@ -15,29 +15,29 @@ export type DropdownItem = MenuItem & {
15
15
  value: BlockType;
16
16
  };
17
17
  export interface Props {
18
- isDisabled?: boolean;
19
- isSmall?: boolean;
20
- isReducedSpacing?: boolean;
21
- currentBlockType?: BlockType;
22
- blockTypesDisabled?: boolean;
18
+ api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
23
19
  availableBlockTypes?: BlockType[];
24
20
  availableBlockTypesInDropdown?: BlockType[];
21
+ blockTypesDisabled?: boolean;
22
+ clearFormatting: () => void;
23
+ currentBlockType?: BlockType;
24
+ editorView?: EditorView;
25
25
  formattingIsPresent?: boolean;
26
- popupsMountPoint?: HTMLElement;
26
+ isDisabled?: boolean;
27
+ isReducedSpacing?: boolean;
28
+ isSmall?: boolean;
27
29
  popupsBoundariesElement?: HTMLElement;
30
+ popupsMountPoint?: HTMLElement;
28
31
  popupsScrollableElement?: HTMLElement;
29
- editorView?: EditorView;
30
32
  setTextLevel: (type: TextBlockTypes, fromBlockQuote?: boolean) => void;
31
- wrapBlockQuote: (type: TextBlockTypes) => void;
32
- clearFormatting: () => void;
33
33
  shouldUseDefaultRole?: boolean;
34
- api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
34
+ wrapBlockQuote: (type: TextBlockTypes) => void;
35
35
  }
36
36
  export interface State {
37
37
  active: boolean;
38
38
  isOpenedByKeyboard: boolean;
39
- typographyTheme: 'typography' | 'typography-adg3' | 'typography-modernized' | 'typography-refreshed' | undefined;
40
39
  observer: ThemeMutationObserver | null;
40
+ typographyTheme: 'typography' | 'typography-adg3' | 'typography-modernized' | 'typography-refreshed' | undefined;
41
41
  }
42
42
  declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
43
43
  WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
@@ -5,9 +5,9 @@ import type { BlockType } from './types';
5
5
  export declare const isNodeAWrappingBlockNode: (node?: PMNode | null) => boolean;
6
6
  export declare const createJoinNodesRule: (match: RegExp, nodeType: NodeType) => InputRuleWrapper;
7
7
  type WrappingTextRuleProps = {
8
+ getAttrs?: Record<string, any> | ((matchResult: RegExpExecArray) => Record<string, any>);
8
9
  match: RegExp;
9
10
  nodeType: NodeType;
10
- getAttrs?: Record<string, any> | ((matchResult: RegExpExecArray) => Record<string, any>);
11
11
  };
12
12
  export declare const createWrappingTextBlockRule: ({ match, nodeType, getAttrs, }: WrappingTextRuleProps) => InputRuleWrapper;
13
13
  /**
@@ -9,7 +9,14 @@ import type { ClearFormattingInputMethod, InputMethod } from './pm-plugins/comma
9
9
  import type { BlockTypeState } from './pm-plugins/main';
10
10
  import type { BlockTypePluginOptions } from './pm-plugins/types';
11
11
  export type BlockTypePlugin = NextEditorPlugin<'blockType', {
12
- pluginConfiguration: BlockTypePluginOptions | undefined;
12
+ actions: {
13
+ insertBlockQuote: (inputMethod: InputMethod) => Command;
14
+ };
15
+ commands: {
16
+ clearFormatting: (inputMethod: ClearFormattingInputMethod) => EditorCommand;
17
+ insertBlockQuote: (inputMethod: InputMethod) => EditorCommand;
18
+ setTextLevel: (level: TextBlockTypes, inputMethod: InputMethod, fromBlockQuote?: boolean) => EditorCommand;
19
+ };
13
20
  dependencies: [
14
21
  OptionalPlugin<AnalyticsPlugin>,
15
22
  OptionalPlugin<PrimaryToolbarPlugin>,
@@ -17,13 +24,6 @@ export type BlockTypePlugin = NextEditorPlugin<'blockType', {
17
24
  OptionalPlugin<UserPreferencesPlugin>,
18
25
  OptionalPlugin<ToolbarPlugin>
19
26
  ];
27
+ pluginConfiguration: BlockTypePluginOptions | undefined;
20
28
  sharedState: BlockTypeState | undefined;
21
- actions: {
22
- insertBlockQuote: (inputMethod: InputMethod) => Command;
23
- };
24
- commands: {
25
- setTextLevel: (level: TextBlockTypes, inputMethod: InputMethod, fromBlockQuote?: boolean) => EditorCommand;
26
- insertBlockQuote: (inputMethod: InputMethod) => EditorCommand;
27
- clearFormatting: (inputMethod: ClearFormattingInputMethod) => EditorCommand;
28
- };
29
29
  }>;
@@ -4,11 +4,11 @@ import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
4
  import type { BlockTypePlugin } from '../blockTypePluginType';
5
5
  import type { BlockType } from './types';
6
6
  export type BlockTypeState = {
7
- currentBlockType: BlockType;
8
- blockTypesDisabled: boolean;
9
7
  availableBlockTypes: BlockType[];
10
- availableWrapperBlockTypes: BlockType[];
11
8
  availableBlockTypesInDropdown: BlockType[];
9
+ availableWrapperBlockTypes: BlockType[];
10
+ blockTypesDisabled: boolean;
11
+ currentBlockType: BlockType;
12
12
  formattingIsPresent?: boolean;
13
13
  };
14
14
  export declare const pluginKey: PluginKey<BlockTypeState>;
@@ -4,27 +4,27 @@ import type { AllowedBlockTypes, HeadingLevelsAndNormalText } from '@atlaskit/ed
4
4
  import type { NodeSpec } from '@atlaskit/editor-prosemirror/model';
5
5
  export type BlockTypeName = 'normal' | 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'blockquote' | 'codeblock' | 'panel' | 'notePanel' | 'successPanel' | 'warningPanel' | 'errorPanel' | 'other';
6
6
  export interface BlockType {
7
+ icon?: ReactElement;
8
+ LEGACY_icon?: ReactElement;
9
+ level?: HeadingLevelsAndNormalText;
7
10
  name: string;
8
- title: MessageDescriptor;
9
11
  nodeName: string;
10
12
  tagName?: string;
11
- level?: HeadingLevelsAndNormalText;
12
- icon?: ReactElement;
13
- LEGACY_icon?: ReactElement;
13
+ title: MessageDescriptor;
14
14
  }
15
15
  export interface BlockTypeWithRank extends BlockType {
16
- toolbarRank: number;
17
16
  toolbarKey: string;
17
+ toolbarRank: number;
18
18
  }
19
19
  export interface BlockTypeNode {
20
20
  name: AllowedBlockTypes;
21
21
  node: NodeSpec;
22
22
  }
23
23
  export interface BlockTypePluginOptions {
24
- lastNodeMustBeParagraph?: boolean;
25
24
  allowBlockType?: {
26
25
  exclude?: Array<AllowedBlockTypes>;
27
26
  };
28
- isUndoRedoButtonsEnabled?: boolean;
29
27
  includeBlockQuoteAsTextstyleOption?: boolean;
28
+ isUndoRedoButtonsEnabled?: boolean;
29
+ lastNodeMustBeParagraph?: boolean;
30
30
  }
@@ -2,12 +2,12 @@ import React from 'react';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../blockTypePluginType';
4
4
  interface PrimaryToolbarComponentProps {
5
+ api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
6
+ disabled: boolean;
5
7
  isSmall: boolean;
6
8
  isToolbarReducedSpacing: boolean;
7
- disabled: boolean;
8
- api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
9
- popupsMountPoint?: HTMLElement;
10
9
  popupsBoundariesElement?: HTMLElement;
10
+ popupsMountPoint?: HTMLElement;
11
11
  popupsScrollableElement?: HTMLElement;
12
12
  shouldUseDefaultRole: boolean;
13
13
  }
@@ -3,8 +3,8 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../../blockTypePluginType';
4
4
  import type { BlockTypeWithRank } from '../../types';
5
5
  type HeadingButtonProps = {
6
- blockType: BlockTypeWithRank;
7
6
  api?: ExtractInjectionAPI<BlockTypePlugin>;
7
+ blockType: BlockTypeWithRank;
8
8
  };
9
9
  export declare const HeadingButton: ({ blockType, api }: HeadingButtonProps) => React.JSX.Element | null;
10
10
  export {};
@@ -3,8 +3,8 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { BlockTypePlugin } from '../../../blockTypePluginType';
4
4
  import type { BlockTypeWithRank } from '../../types';
5
5
  type QuoteButtonProps = {
6
- blockType: BlockTypeWithRank;
7
6
  api?: ExtractInjectionAPI<BlockTypePlugin>;
7
+ blockType: BlockTypeWithRank;
8
8
  };
9
9
  export declare const QuoteButton: ({ blockType, api }: QuoteButtonProps) => React.JSX.Element | null;
10
10
  export {};
@@ -6,16 +6,16 @@ import React, { type ReactElement } from 'react';
6
6
  import { jsx } from '@emotion/react';
7
7
  import type { MessageDescriptor, WrappedComponentProps } from 'react-intl-next';
8
8
  export interface BlockTypeButtonProps {
9
- isSmall?: boolean;
10
- isReducedSpacing?: boolean;
11
9
  'aria-expanded': React.AriaAttributes['aria-expanded'];
12
- selected: boolean;
10
+ blockTypeIcon?: ReactElement;
11
+ blockTypeName?: string;
13
12
  disabled: boolean;
14
- title: MessageDescriptor;
13
+ formatMessage: WrappedComponentProps['intl']['formatMessage'];
14
+ isReducedSpacing?: boolean;
15
+ isSmall?: boolean;
15
16
  onClick(e: React.MouseEvent): void;
16
17
  onKeyDown(e: React.KeyboardEvent): void;
17
- formatMessage: WrappedComponentProps['intl']['formatMessage'];
18
- blockTypeName?: string;
19
- blockTypeIcon?: ReactElement;
18
+ selected: boolean;
19
+ title: MessageDescriptor;
20
20
  }
21
21
  export declare const BlockTypeButton: (props: BlockTypeButtonProps) => jsx.JSX.Element;
@@ -15,29 +15,29 @@ export type DropdownItem = MenuItem & {
15
15
  value: BlockType;
16
16
  };
17
17
  export interface Props {
18
- isDisabled?: boolean;
19
- isSmall?: boolean;
20
- isReducedSpacing?: boolean;
21
- currentBlockType?: BlockType;
22
- blockTypesDisabled?: boolean;
18
+ api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
23
19
  availableBlockTypes?: BlockType[];
24
20
  availableBlockTypesInDropdown?: BlockType[];
21
+ blockTypesDisabled?: boolean;
22
+ clearFormatting: () => void;
23
+ currentBlockType?: BlockType;
24
+ editorView?: EditorView;
25
25
  formattingIsPresent?: boolean;
26
- popupsMountPoint?: HTMLElement;
26
+ isDisabled?: boolean;
27
+ isReducedSpacing?: boolean;
28
+ isSmall?: boolean;
27
29
  popupsBoundariesElement?: HTMLElement;
30
+ popupsMountPoint?: HTMLElement;
28
31
  popupsScrollableElement?: HTMLElement;
29
- editorView?: EditorView;
30
32
  setTextLevel: (type: TextBlockTypes, fromBlockQuote?: boolean) => void;
31
- wrapBlockQuote: (type: TextBlockTypes) => void;
32
- clearFormatting: () => void;
33
33
  shouldUseDefaultRole?: boolean;
34
- api: ExtractInjectionAPI<BlockTypePlugin> | undefined;
34
+ wrapBlockQuote: (type: TextBlockTypes) => void;
35
35
  }
36
36
  export interface State {
37
37
  active: boolean;
38
38
  isOpenedByKeyboard: boolean;
39
- typographyTheme: 'typography' | 'typography-adg3' | 'typography-modernized' | 'typography-refreshed' | undefined;
40
39
  observer: ThemeMutationObserver | null;
40
+ typographyTheme: 'typography' | 'typography-adg3' | 'typography-modernized' | 'typography-refreshed' | undefined;
41
41
  }
42
42
  declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
43
43
  WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
@@ -5,9 +5,9 @@ import type { BlockType } from './types';
5
5
  export declare const isNodeAWrappingBlockNode: (node?: PMNode | null) => boolean;
6
6
  export declare const createJoinNodesRule: (match: RegExp, nodeType: NodeType) => InputRuleWrapper;
7
7
  type WrappingTextRuleProps = {
8
+ getAttrs?: Record<string, any> | ((matchResult: RegExpExecArray) => Record<string, any>);
8
9
  match: RegExp;
9
10
  nodeType: NodeType;
10
- getAttrs?: Record<string, any> | ((matchResult: RegExpExecArray) => Record<string, any>);
11
11
  };
12
12
  export declare const createWrappingTextBlockRule: ({ match, nodeType, getAttrs, }: WrappingTextRuleProps) => InputRuleWrapper;
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-type",
3
- "version": "6.2.9",
3
+ "version": "6.2.11",
4
4
  "description": "BlockType plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,7 +39,7 @@
39
39
  "@atlaskit/editor-plugin-analytics": "^3.0.0",
40
40
  "@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
41
41
  "@atlaskit/editor-plugin-selection-toolbar": "^4.3.0",
42
- "@atlaskit/editor-plugin-toolbar": "^0.3.0",
42
+ "@atlaskit/editor-plugin-toolbar": "^0.4.0",
43
43
  "@atlaskit/editor-prosemirror": "7.0.0",
44
44
  "@atlaskit/editor-shared-styles": "^3.6.0",
45
45
  "@atlaskit/editor-tables": "^2.9.0",
@@ -51,7 +51,7 @@
51
51
  "@atlaskit/primitives": "^14.11.0",
52
52
  "@atlaskit/prosemirror-input-rules": "^3.4.0",
53
53
  "@atlaskit/theme": "^19.0.0",
54
- "@atlaskit/tmp-editor-statsig": "^11.4.0",
54
+ "@atlaskit/tmp-editor-statsig": "^11.5.0",
55
55
  "@atlaskit/tokens": "^6.0.0",
56
56
  "@babel/runtime": "^7.0.0",
57
57
  "@emotion/react": "^11.7.1"
@@ -68,7 +68,6 @@
68
68
  "@atlaskit/editor-plugin-quick-insert": "^3.0.0",
69
69
  "@atlaskit/editor-plugin-type-ahead": "^3.1.0",
70
70
  "@atlaskit/ssr": "workspace:^",
71
- "@atlaskit/visual-regression": "workspace:^",
72
71
  "@testing-library/react": "^13.4.0",
73
72
  "@testing-library/user-event": "^14.4.3",
74
73
  "wait-for-expect": "^1.2.0"