@atlaskit/editor-plugin-toolbar-lists-indentation 4.2.7 → 4.2.9

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-toolbar-lists-indentation
2
2
 
3
+ ## 4.2.9
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
+ ## 4.2.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 4.2.7
4
18
 
5
19
  ### Patch Changes
@@ -2,17 +2,17 @@ import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/stat
2
2
  export type IndentationButtonNode = null | 'paragraph_heading' | 'list' | 'taskList';
3
3
  export interface IndentationButtons {
4
4
  indentDisabled: boolean;
5
- outdentDisabled: boolean;
6
5
  node: IndentationButtonNode;
6
+ outdentDisabled: boolean;
7
7
  }
8
8
  export interface TaskDecisionState {
9
- isInsideTask: boolean;
10
9
  indentDisabled: boolean;
10
+ isInsideTask: boolean;
11
11
  outdentDisabled: boolean;
12
12
  }
13
13
  interface IndentationState {
14
- isIndentationAllowed?: boolean;
15
14
  indentDisabled?: boolean;
15
+ isIndentationAllowed?: boolean;
16
16
  outdentDisabled?: boolean;
17
17
  }
18
18
  export declare function getIndentationButtonsState(editorState: EditorState, allowHeadingAndParagraphIndentation: boolean, taskDecisionState: TaskDecisionState | undefined, indentationState: IndentationState | undefined, isInsideListItem: ((tr: Transaction) => boolean | undefined) | undefined): IndentationButtons;
@@ -3,11 +3,11 @@ import type { ExtractInjectionAPI, FeatureFlags, ToolbarUiComponentFactoryParams
3
3
  import type { ToolbarListsIndentationPlugin } from './toolbarListsIndentationPluginType';
4
4
  export declare const toolbarListsIndentationPlugin: ToolbarListsIndentationPlugin;
5
5
  type PrimaryToolbarComponentProps = Pick<ToolbarUiComponentFactoryParams, 'editorView' | 'popupsMountPoint' | 'popupsBoundariesElement' | 'popupsScrollableElement' | 'disabled' | 'isToolbarReducedSpacing'> & {
6
+ allowHeadingAndParagraphIndentation: boolean;
6
7
  featureFlags: FeatureFlags;
7
8
  isSmall: boolean;
8
- showIndentationButtons?: boolean;
9
9
  pluginInjectionApi: ExtractInjectionAPI<typeof toolbarListsIndentationPlugin> | undefined;
10
- allowHeadingAndParagraphIndentation: boolean;
10
+ showIndentationButtons?: boolean;
11
11
  };
12
12
  export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): React.JSX.Element | null;
13
13
  export {};
@@ -9,8 +9,8 @@ import type { TasksAndDecisionsPlugin } from '@atlaskit/editor-plugin-tasks-and-
9
9
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
10
10
  import type { UserPreferencesPlugin } from '@atlaskit/editor-plugin-user-preferences';
11
11
  export type ToolbarListsIndentationPluginOptions = {
12
- showIndentationButtons: boolean;
13
12
  allowHeadingAndParagraphIndentation: boolean;
13
+ showIndentationButtons: boolean;
14
14
  };
15
15
  export type ToolbarListsIndentationPluginDependencies = [
16
16
  OptionalPlugin<FeatureFlagsPlugin>,
@@ -24,6 +24,6 @@ export type ToolbarListsIndentationPluginDependencies = [
24
24
  OptionalPlugin<ToolbarPlugin>
25
25
  ];
26
26
  export type ToolbarListsIndentationPlugin = NextEditorPlugin<'toolbarListsIndentation', {
27
- pluginConfiguration: ToolbarListsIndentationPluginOptions;
28
27
  dependencies: ToolbarListsIndentationPluginDependencies;
28
+ pluginConfiguration: ToolbarListsIndentationPluginOptions;
29
29
  }>;
@@ -10,19 +10,19 @@ export declare enum ToolbarType {
10
10
  }
11
11
  export type ListsIndentationInputMethod = INPUT_METHOD.TOOLBAR | INPUT_METHOD.FLOATING_TB;
12
12
  export interface ToolbarProps {
13
- editorView: EditorView;
14
- featureFlags: FeatureFlags;
15
13
  bulletListActive?: boolean;
16
14
  bulletListDisabled?: boolean;
17
- orderedListActive?: boolean;
18
- orderedListDisabled?: boolean;
19
15
  disabled?: boolean;
20
- isSmall?: boolean;
21
- isSeparator?: boolean;
22
- isReducedSpacing?: boolean;
23
- showIndentationButtons?: boolean;
16
+ editorView: EditorView;
17
+ featureFlags: FeatureFlags;
24
18
  indentDisabled?: boolean;
25
- outdentDisabled?: boolean;
19
+ isReducedSpacing?: boolean;
20
+ isSeparator?: boolean;
21
+ isSmall?: boolean;
26
22
  onItemActivated: ReturnType<typeof onItemActivated>;
23
+ orderedListActive?: boolean;
24
+ orderedListDisabled?: boolean;
25
+ outdentDisabled?: boolean;
27
26
  pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
27
+ showIndentationButtons?: boolean;
28
28
  }
@@ -1,7 +1,7 @@
1
1
  import { type ToolbarProps, ToolbarType } from '../types';
2
2
  export type DropdownProps = ToolbarProps & {
3
- popupsMountPoint?: HTMLElement;
4
3
  popupsBoundariesElement?: HTMLElement;
4
+ popupsMountPoint?: HTMLElement;
5
5
  popupsScrollableElement?: HTMLElement;
6
6
  toolbarType: ToolbarType;
7
7
  };
@@ -4,23 +4,23 @@ import type { IndentationButtonNode } from '../pm-plugins/indentation-buttons';
4
4
  import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
5
5
  import { ToolbarType } from '../types';
6
6
  export interface Props {
7
- editorView: EditorView;
8
- featureFlags: FeatureFlags;
9
7
  bulletListActive?: boolean;
10
8
  bulletListDisabled?: boolean;
11
- orderedListActive?: boolean;
12
- orderedListDisabled?: boolean;
13
9
  disabled?: boolean;
14
- isSmall?: boolean;
10
+ editorView: EditorView;
11
+ featureFlags: FeatureFlags;
12
+ indentationStateNode?: IndentationButtonNode;
13
+ indentDisabled?: boolean;
15
14
  isReducedSpacing?: boolean;
16
- popupsMountPoint?: HTMLElement;
15
+ isSmall?: boolean;
16
+ orderedListActive?: boolean;
17
+ orderedListDisabled?: boolean;
18
+ outdentDisabled?: boolean;
19
+ pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
17
20
  popupsBoundariesElement?: HTMLElement;
21
+ popupsMountPoint?: HTMLElement;
18
22
  popupsScrollableElement?: HTMLElement;
19
23
  showIndentationButtons?: boolean;
20
- indentDisabled?: boolean;
21
- outdentDisabled?: boolean;
22
- indentationStateNode?: IndentationButtonNode;
23
- pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
24
24
  toolbarType: ToolbarType;
25
25
  }
26
26
  export default function ToolbarListsIndentation(props: Props): JSX.Element;
@@ -3,10 +3,10 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarComponentTypes } from '@atlaskit/editor-toolbar-model';
4
4
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
5
5
  type IndentMenuItemType = {
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
6
  allowHeadingAndParagraphIndentation: boolean;
8
- showIndentationButtons: boolean;
7
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
9
8
  parents: ToolbarComponentTypes;
9
+ showIndentationButtons: boolean;
10
10
  };
11
11
  export declare const IndentMenuItem: ({ api, showIndentationButtons, allowHeadingAndParagraphIndentation, parents, }: IndentMenuItemType) => React.JSX.Element | null;
12
12
  export {};
@@ -2,9 +2,9 @@ import React from 'react';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
4
4
  type ListsIndentationMenuProps = {
5
- children: React.ReactNode;
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
5
  allowHeadingAndParagraphIndentation: boolean;
6
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
+ children: React.ReactNode;
8
8
  };
9
9
  export declare const ListsIndentationMenu: ({ children, api, allowHeadingAndParagraphIndentation, }: ListsIndentationMenuProps) => React.JSX.Element;
10
10
  export {};
@@ -3,10 +3,10 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarComponentTypes } from '@atlaskit/editor-toolbar-model';
4
4
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
5
5
  type OutdentMenuItemType = {
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
6
  allowHeadingAndParagraphIndentation: boolean;
8
- showIndentationButtons: boolean;
7
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
9
8
  parents: ToolbarComponentTypes;
9
+ showIndentationButtons: boolean;
10
10
  };
11
11
  export declare const OutdentMenuItem: ({ api, allowHeadingAndParagraphIndentation, showIndentationButtons, parents, }: OutdentMenuItemType) => React.JSX.Element | null;
12
12
  export {};
@@ -2,9 +2,9 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
2
2
  import type { RegisterComponent } from '@atlaskit/editor-toolbar-model';
3
3
  import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
4
4
  type GetToolbarComponentsProps = {
5
+ allowHeadingAndParagraphIndentation: boolean;
5
6
  api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
6
7
  showIndentationButtons: boolean;
7
- allowHeadingAndParagraphIndentation: boolean;
8
8
  };
9
9
  export declare const getToolbarComponents: ({ api, showIndentationButtons, allowHeadingAndParagraphIndentation, }: GetToolbarComponentsProps) => RegisterComponent[];
10
10
  export {};
@@ -2,8 +2,8 @@ import type { EditorState } from 'prosemirror-state';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
4
4
  type UseIndentationStateProps = {
5
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
6
5
  allowHeadingAndParagraphIndentation: boolean;
6
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
7
  state?: EditorState;
8
8
  };
9
9
  export declare const useIndentationState: ({ api, allowHeadingAndParagraphIndentation, state, }: UseIndentationStateProps) => import("../../pm-plugins/indentation-buttons").IndentationButtons | undefined;
@@ -2,17 +2,17 @@ import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/stat
2
2
  export type IndentationButtonNode = null | 'paragraph_heading' | 'list' | 'taskList';
3
3
  export interface IndentationButtons {
4
4
  indentDisabled: boolean;
5
- outdentDisabled: boolean;
6
5
  node: IndentationButtonNode;
6
+ outdentDisabled: boolean;
7
7
  }
8
8
  export interface TaskDecisionState {
9
- isInsideTask: boolean;
10
9
  indentDisabled: boolean;
10
+ isInsideTask: boolean;
11
11
  outdentDisabled: boolean;
12
12
  }
13
13
  interface IndentationState {
14
- isIndentationAllowed?: boolean;
15
14
  indentDisabled?: boolean;
15
+ isIndentationAllowed?: boolean;
16
16
  outdentDisabled?: boolean;
17
17
  }
18
18
  export declare function getIndentationButtonsState(editorState: EditorState, allowHeadingAndParagraphIndentation: boolean, taskDecisionState: TaskDecisionState | undefined, indentationState: IndentationState | undefined, isInsideListItem: ((tr: Transaction) => boolean | undefined) | undefined): IndentationButtons;
@@ -3,11 +3,11 @@ import type { ExtractInjectionAPI, FeatureFlags, ToolbarUiComponentFactoryParams
3
3
  import type { ToolbarListsIndentationPlugin } from './toolbarListsIndentationPluginType';
4
4
  export declare const toolbarListsIndentationPlugin: ToolbarListsIndentationPlugin;
5
5
  type PrimaryToolbarComponentProps = Pick<ToolbarUiComponentFactoryParams, 'editorView' | 'popupsMountPoint' | 'popupsBoundariesElement' | 'popupsScrollableElement' | 'disabled' | 'isToolbarReducedSpacing'> & {
6
+ allowHeadingAndParagraphIndentation: boolean;
6
7
  featureFlags: FeatureFlags;
7
8
  isSmall: boolean;
8
- showIndentationButtons?: boolean;
9
9
  pluginInjectionApi: ExtractInjectionAPI<typeof toolbarListsIndentationPlugin> | undefined;
10
- allowHeadingAndParagraphIndentation: boolean;
10
+ showIndentationButtons?: boolean;
11
11
  };
12
12
  export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): React.JSX.Element | null;
13
13
  export {};
@@ -9,8 +9,8 @@ import type { TasksAndDecisionsPlugin } from '@atlaskit/editor-plugin-tasks-and-
9
9
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
10
10
  import type { UserPreferencesPlugin } from '@atlaskit/editor-plugin-user-preferences';
11
11
  export type ToolbarListsIndentationPluginOptions = {
12
- showIndentationButtons: boolean;
13
12
  allowHeadingAndParagraphIndentation: boolean;
13
+ showIndentationButtons: boolean;
14
14
  };
15
15
  export type ToolbarListsIndentationPluginDependencies = [
16
16
  OptionalPlugin<FeatureFlagsPlugin>,
@@ -24,6 +24,6 @@ export type ToolbarListsIndentationPluginDependencies = [
24
24
  OptionalPlugin<ToolbarPlugin>
25
25
  ];
26
26
  export type ToolbarListsIndentationPlugin = NextEditorPlugin<'toolbarListsIndentation', {
27
- pluginConfiguration: ToolbarListsIndentationPluginOptions;
28
27
  dependencies: ToolbarListsIndentationPluginDependencies;
28
+ pluginConfiguration: ToolbarListsIndentationPluginOptions;
29
29
  }>;
@@ -10,19 +10,19 @@ export declare enum ToolbarType {
10
10
  }
11
11
  export type ListsIndentationInputMethod = INPUT_METHOD.TOOLBAR | INPUT_METHOD.FLOATING_TB;
12
12
  export interface ToolbarProps {
13
- editorView: EditorView;
14
- featureFlags: FeatureFlags;
15
13
  bulletListActive?: boolean;
16
14
  bulletListDisabled?: boolean;
17
- orderedListActive?: boolean;
18
- orderedListDisabled?: boolean;
19
15
  disabled?: boolean;
20
- isSmall?: boolean;
21
- isSeparator?: boolean;
22
- isReducedSpacing?: boolean;
23
- showIndentationButtons?: boolean;
16
+ editorView: EditorView;
17
+ featureFlags: FeatureFlags;
24
18
  indentDisabled?: boolean;
25
- outdentDisabled?: boolean;
19
+ isReducedSpacing?: boolean;
20
+ isSeparator?: boolean;
21
+ isSmall?: boolean;
26
22
  onItemActivated: ReturnType<typeof onItemActivated>;
23
+ orderedListActive?: boolean;
24
+ orderedListDisabled?: boolean;
25
+ outdentDisabled?: boolean;
27
26
  pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
27
+ showIndentationButtons?: boolean;
28
28
  }
@@ -1,7 +1,7 @@
1
1
  import { type ToolbarProps, ToolbarType } from '../types';
2
2
  export type DropdownProps = ToolbarProps & {
3
- popupsMountPoint?: HTMLElement;
4
3
  popupsBoundariesElement?: HTMLElement;
4
+ popupsMountPoint?: HTMLElement;
5
5
  popupsScrollableElement?: HTMLElement;
6
6
  toolbarType: ToolbarType;
7
7
  };
@@ -4,23 +4,23 @@ import type { IndentationButtonNode } from '../pm-plugins/indentation-buttons';
4
4
  import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
5
5
  import { ToolbarType } from '../types';
6
6
  export interface Props {
7
- editorView: EditorView;
8
- featureFlags: FeatureFlags;
9
7
  bulletListActive?: boolean;
10
8
  bulletListDisabled?: boolean;
11
- orderedListActive?: boolean;
12
- orderedListDisabled?: boolean;
13
9
  disabled?: boolean;
14
- isSmall?: boolean;
10
+ editorView: EditorView;
11
+ featureFlags: FeatureFlags;
12
+ indentationStateNode?: IndentationButtonNode;
13
+ indentDisabled?: boolean;
15
14
  isReducedSpacing?: boolean;
16
- popupsMountPoint?: HTMLElement;
15
+ isSmall?: boolean;
16
+ orderedListActive?: boolean;
17
+ orderedListDisabled?: boolean;
18
+ outdentDisabled?: boolean;
19
+ pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
17
20
  popupsBoundariesElement?: HTMLElement;
21
+ popupsMountPoint?: HTMLElement;
18
22
  popupsScrollableElement?: HTMLElement;
19
23
  showIndentationButtons?: boolean;
20
- indentDisabled?: boolean;
21
- outdentDisabled?: boolean;
22
- indentationStateNode?: IndentationButtonNode;
23
- pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
24
24
  toolbarType: ToolbarType;
25
25
  }
26
26
  export default function ToolbarListsIndentation(props: Props): JSX.Element;
@@ -3,10 +3,10 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarComponentTypes } from '@atlaskit/editor-toolbar-model';
4
4
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
5
5
  type IndentMenuItemType = {
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
6
  allowHeadingAndParagraphIndentation: boolean;
8
- showIndentationButtons: boolean;
7
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
9
8
  parents: ToolbarComponentTypes;
9
+ showIndentationButtons: boolean;
10
10
  };
11
11
  export declare const IndentMenuItem: ({ api, showIndentationButtons, allowHeadingAndParagraphIndentation, parents, }: IndentMenuItemType) => React.JSX.Element | null;
12
12
  export {};
@@ -2,9 +2,9 @@ import React from 'react';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
4
4
  type ListsIndentationMenuProps = {
5
- children: React.ReactNode;
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
5
  allowHeadingAndParagraphIndentation: boolean;
6
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
+ children: React.ReactNode;
8
8
  };
9
9
  export declare const ListsIndentationMenu: ({ children, api, allowHeadingAndParagraphIndentation, }: ListsIndentationMenuProps) => React.JSX.Element;
10
10
  export {};
@@ -3,10 +3,10 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarComponentTypes } from '@atlaskit/editor-toolbar-model';
4
4
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
5
5
  type OutdentMenuItemType = {
6
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
6
  allowHeadingAndParagraphIndentation: boolean;
8
- showIndentationButtons: boolean;
7
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
9
8
  parents: ToolbarComponentTypes;
9
+ showIndentationButtons: boolean;
10
10
  };
11
11
  export declare const OutdentMenuItem: ({ api, allowHeadingAndParagraphIndentation, showIndentationButtons, parents, }: OutdentMenuItemType) => React.JSX.Element | null;
12
12
  export {};
@@ -2,9 +2,9 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
2
2
  import type { RegisterComponent } from '@atlaskit/editor-toolbar-model';
3
3
  import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
4
4
  type GetToolbarComponentsProps = {
5
+ allowHeadingAndParagraphIndentation: boolean;
5
6
  api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
6
7
  showIndentationButtons: boolean;
7
- allowHeadingAndParagraphIndentation: boolean;
8
8
  };
9
9
  export declare const getToolbarComponents: ({ api, showIndentationButtons, allowHeadingAndParagraphIndentation, }: GetToolbarComponentsProps) => RegisterComponent[];
10
10
  export {};
@@ -2,8 +2,8 @@ import type { EditorState } from 'prosemirror-state';
2
2
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import type { ToolbarListsIndentationPlugin } from '../../toolbarListsIndentationPluginType';
4
4
  type UseIndentationStateProps = {
5
- api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
6
5
  allowHeadingAndParagraphIndentation: boolean;
6
+ api?: ExtractInjectionAPI<ToolbarListsIndentationPlugin>;
7
7
  state?: EditorState;
8
8
  };
9
9
  export declare const useIndentationState: ({ api, allowHeadingAndParagraphIndentation, state, }: UseIndentationStateProps) => import("../../pm-plugins/indentation-buttons").IndentationButtons | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-toolbar-lists-indentation",
3
- "version": "4.2.7",
3
+ "version": "4.2.9",
4
4
  "description": "Toolbar lists and indentation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -41,14 +41,14 @@
41
41
  "@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
42
42
  "@atlaskit/editor-plugin-selection-toolbar": "^4.3.0",
43
43
  "@atlaskit/editor-plugin-tasks-and-decisions": "^6.4.0",
44
- "@atlaskit/editor-plugin-toolbar": "^0.3.0",
44
+ "@atlaskit/editor-plugin-toolbar": "^0.4.0",
45
45
  "@atlaskit/editor-prosemirror": "7.0.0",
46
46
  "@atlaskit/editor-shared-styles": "^3.6.0",
47
47
  "@atlaskit/editor-toolbar": "^0.3.0",
48
48
  "@atlaskit/editor-toolbar-model": "^0.1.0",
49
49
  "@atlaskit/icon": "^28.0.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
- "@atlaskit/tmp-editor-statsig": "^11.4.0",
51
+ "@atlaskit/tmp-editor-statsig": "^11.5.0",
52
52
  "@atlaskit/tokens": "^6.0.0",
53
53
  "@babel/runtime": "^7.0.0"
54
54
  },
@@ -66,7 +66,6 @@
66
66
  "@atlaskit/editor-plugin-base": "^4.1.0",
67
67
  "@atlaskit/editor-plugin-text-formatting": "^3.0.0",
68
68
  "@atlaskit/ssr": "workspace:^",
69
- "@atlaskit/visual-regression": "workspace:^",
70
69
  "@testing-library/react": "^13.4.0",
71
70
  "wait-for-expect": "^1.2.0"
72
71
  },