@atlaskit/editor-plugin-insert-block 4.3.2 → 4.3.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 +16 -0
- package/dist/cjs/insertBlockPlugin.js +8 -2
- package/dist/cjs/ui/toolbar-components/EmojiButton.js +25 -83
- package/dist/cjs/ui/toolbar-components/InsertButton.js +250 -0
- package/dist/cjs/ui/toolbar-components/TableSizePicker.js +25 -48
- package/dist/cjs/ui/toolbar-components/hooks/useEmojiPickerPopup.js +52 -0
- package/dist/cjs/ui/toolbar-components/hooks/useInsertButtonState.js +89 -0
- package/dist/cjs/ui/toolbar-components/hooks/usePopupManager.js +65 -0
- package/dist/cjs/ui/toolbar-components/hooks/useTableSelectorPopup.js +35 -0
- package/dist/cjs/ui/toolbar-components/popups/EmojiPickerPopup.js +53 -0
- package/dist/cjs/ui/toolbar-components/popups/TableSelectorPopupWrapper.js +36 -0
- package/dist/cjs/ui/toolbar-components/shared/constants.js +18 -0
- package/dist/cjs/ui/toolbar-components/shared/types.js +5 -0
- package/dist/cjs/ui/toolbar-components.js +66 -2
- package/dist/es2019/insertBlockPlugin.js +8 -2
- package/dist/es2019/ui/toolbar-components/EmojiButton.js +24 -77
- package/dist/es2019/ui/toolbar-components/InsertButton.js +243 -0
- package/dist/es2019/ui/toolbar-components/TableSizePicker.js +26 -41
- package/dist/es2019/ui/toolbar-components/hooks/useEmojiPickerPopup.js +42 -0
- package/dist/es2019/ui/toolbar-components/hooks/useInsertButtonState.js +81 -0
- package/dist/es2019/ui/toolbar-components/hooks/usePopupManager.js +50 -0
- package/dist/es2019/ui/toolbar-components/hooks/useTableSelectorPopup.js +27 -0
- package/dist/es2019/ui/toolbar-components/popups/EmojiPickerPopup.js +47 -0
- package/dist/es2019/ui/toolbar-components/popups/TableSelectorPopupWrapper.js +30 -0
- package/dist/es2019/ui/toolbar-components/shared/constants.js +12 -0
- package/dist/es2019/ui/toolbar-components/shared/types.js +1 -0
- package/dist/es2019/ui/toolbar-components.js +63 -3
- package/dist/esm/insertBlockPlugin.js +8 -2
- package/dist/esm/ui/toolbar-components/EmojiButton.js +26 -83
- package/dist/esm/ui/toolbar-components/InsertButton.js +242 -0
- package/dist/esm/ui/toolbar-components/TableSizePicker.js +26 -48
- package/dist/esm/ui/toolbar-components/hooks/useEmojiPickerPopup.js +45 -0
- package/dist/esm/ui/toolbar-components/hooks/useInsertButtonState.js +82 -0
- package/dist/esm/ui/toolbar-components/hooks/usePopupManager.js +58 -0
- package/dist/esm/ui/toolbar-components/hooks/useTableSelectorPopup.js +28 -0
- package/dist/esm/ui/toolbar-components/popups/EmojiPickerPopup.js +46 -0
- package/dist/esm/ui/toolbar-components/popups/TableSelectorPopupWrapper.js +29 -0
- package/dist/esm/ui/toolbar-components/shared/constants.js +12 -0
- package/dist/esm/ui/toolbar-components/shared/types.js +1 -0
- package/dist/esm/ui/toolbar-components.js +67 -3
- package/dist/types/insertBlockPluginType.d.ts +2 -2
- package/dist/types/types/index.d.ts +3 -3
- package/dist/types/ui/ElementBrowser/types.d.ts +3 -3
- package/dist/types/ui/ToolbarInsertBlock/block-insert-element-browser.d.ts +8 -8
- package/dist/types/ui/ToolbarInsertBlock/block-insert-menu.d.ts +12 -12
- package/dist/types/ui/ToolbarInsertBlock/create-items.d.ts +24 -24
- package/dist/types/ui/ToolbarInsertBlock/dropdown-button.d.ts +4 -4
- package/dist/types/ui/ToolbarInsertBlock/index.d.ts +1 -1
- package/dist/types/ui/ToolbarInsertBlock/item.d.ts +2 -2
- package/dist/types/ui/ToolbarInsertBlock/types.d.ts +36 -36
- package/dist/types/ui/toolbar-components/EmojiButton.d.ts +2 -7
- package/dist/types/ui/toolbar-components/InsertButton.d.ts +18 -0
- package/dist/types/ui/toolbar-components/TableSizePicker.d.ts +3 -5
- package/dist/types/ui/toolbar-components/hooks/useEmojiPickerPopup.d.ts +20 -0
- package/dist/types/ui/toolbar-components/hooks/useInsertButtonState.d.ts +24 -0
- package/dist/types/ui/toolbar-components/hooks/usePopupManager.d.ts +21 -0
- package/dist/types/ui/toolbar-components/hooks/useTableSelectorPopup.d.ts +19 -0
- package/dist/types/ui/toolbar-components/popups/EmojiPickerPopup.d.ts +16 -0
- package/dist/types/ui/toolbar-components/popups/TableSelectorPopupWrapper.d.ts +15 -0
- package/dist/types/ui/toolbar-components/shared/constants.d.ts +12 -0
- package/dist/types/ui/toolbar-components/shared/types.d.ts +8 -0
- package/dist/types/ui/toolbar-components.d.ts +9 -2
- package/dist/types-ts4.5/insertBlockPluginType.d.ts +2 -2
- package/dist/types-ts4.5/types/index.d.ts +3 -3
- package/dist/types-ts4.5/ui/ElementBrowser/types.d.ts +3 -3
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/block-insert-element-browser.d.ts +8 -8
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/block-insert-menu.d.ts +12 -12
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/create-items.d.ts +24 -24
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/dropdown-button.d.ts +4 -4
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/item.d.ts +2 -2
- package/dist/types-ts4.5/ui/ToolbarInsertBlock/types.d.ts +36 -36
- package/dist/types-ts4.5/ui/toolbar-components/EmojiButton.d.ts +2 -7
- package/dist/types-ts4.5/ui/toolbar-components/InsertButton.d.ts +18 -0
- package/dist/types-ts4.5/ui/toolbar-components/TableSizePicker.d.ts +3 -5
- package/dist/types-ts4.5/ui/toolbar-components/hooks/useEmojiPickerPopup.d.ts +20 -0
- package/dist/types-ts4.5/ui/toolbar-components/hooks/useInsertButtonState.d.ts +24 -0
- package/dist/types-ts4.5/ui/toolbar-components/hooks/usePopupManager.d.ts +21 -0
- package/dist/types-ts4.5/ui/toolbar-components/hooks/useTableSelectorPopup.d.ts +19 -0
- package/dist/types-ts4.5/ui/toolbar-components/popups/EmojiPickerPopup.d.ts +16 -0
- package/dist/types-ts4.5/ui/toolbar-components/popups/TableSelectorPopupWrapper.d.ts +15 -0
- package/dist/types-ts4.5/ui/toolbar-components/shared/constants.d.ts +15 -0
- package/dist/types-ts4.5/ui/toolbar-components/shared/types.d.ts +8 -0
- package/dist/types-ts4.5/ui/toolbar-components.d.ts +9 -2
- package/package.json +8 -9
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ExtractInjectionAPI, Command } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
4
|
+
import type { InsertBlockPlugin } from '../../insertBlockPluginType';
|
|
5
|
+
type InsertButtonProps = {
|
|
6
|
+
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
7
|
+
expandEnabled?: boolean;
|
|
8
|
+
horizontalRuleEnabled?: boolean;
|
|
9
|
+
insertMenuItems?: MenuItem[];
|
|
10
|
+
isFullPageAppearance?: boolean;
|
|
11
|
+
nativeStatusSupported?: boolean;
|
|
12
|
+
numberOfButtons?: number;
|
|
13
|
+
onInsertBlockType?: (name: string) => Command;
|
|
14
|
+
showElementBrowserLink?: boolean;
|
|
15
|
+
tableSelectorSupported?: boolean;
|
|
16
|
+
};
|
|
17
|
+
export declare const InsertButton: ({ api, showElementBrowserLink, isFullPageAppearance, tableSelectorSupported, nativeStatusSupported, horizontalRuleEnabled, expandEnabled, insertMenuItems, numberOfButtons, onInsertBlockType, }: InsertButtonProps) => React.JSX.Element | null;
|
|
18
|
+
export {};
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
3
|
-
|
|
4
|
-
type TableSizePickerProps = {
|
|
5
|
-
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
2
|
+
import type { BaseToolbarButtonProps } from './shared/types';
|
|
3
|
+
interface TableSizePickerProps extends BaseToolbarButtonProps {
|
|
6
4
|
tableSelectorSupported?: boolean;
|
|
7
|
-
}
|
|
5
|
+
}
|
|
8
6
|
export declare const TableSizePicker: ({ api, tableSelectorSupported }: TableSizePickerProps) => React.JSX.Element | null;
|
|
9
7
|
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { EmojiId } from '@atlaskit/emoji/types';
|
|
4
|
+
import type { InsertBlockPlugin } from '../../../insertBlockPluginType';
|
|
5
|
+
interface UseEmojiPickerPopupProps {
|
|
6
|
+
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
7
|
+
buttonRef: React.RefObject<HTMLElement>;
|
|
8
|
+
}
|
|
9
|
+
export declare const useEmojiPickerPopup: ({ api, buttonRef }: UseEmojiPickerPopupProps) => {
|
|
10
|
+
handleSelectedEmoji: (emojiId: EmojiId) => true;
|
|
11
|
+
onPopupUnmount: () => void;
|
|
12
|
+
isOpen: boolean;
|
|
13
|
+
isOpenedByKeyboard: boolean;
|
|
14
|
+
toggle: (inputMethod?: import("@atlaskit/editor-common/types").TOOLBAR_MENU_TYPE | INPUT_METHOD) => void;
|
|
15
|
+
close: () => void;
|
|
16
|
+
handleEscapeKeydown: () => void;
|
|
17
|
+
handleClickOutside: (e: MouseEvent) => void;
|
|
18
|
+
handleKeyboardOpen: (event: React.KeyboardEvent) => void;
|
|
19
|
+
};
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
3
|
+
import type { EditorView } from '@atlaskit/editor-prosemirror/dist/types/view';
|
|
4
|
+
import type { EmojiProvider } from '@atlaskit/emoji';
|
|
5
|
+
import type { InsertBlockPlugin } from '../../../insertBlockPluginType';
|
|
6
|
+
import type { BlockMenuItem } from '../../ToolbarInsertBlock/create-items';
|
|
7
|
+
interface UseInsertButtonStateProps {
|
|
8
|
+
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
9
|
+
editorView?: EditorView;
|
|
10
|
+
expandEnabled?: boolean;
|
|
11
|
+
horizontalRuleEnabled?: boolean;
|
|
12
|
+
insertMenuItems?: MenuItem[];
|
|
13
|
+
nativeStatusSupported?: boolean;
|
|
14
|
+
numberOfButtons?: number;
|
|
15
|
+
showElementBrowserLink?: boolean;
|
|
16
|
+
tableSelectorSupported?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface InsertButtonState {
|
|
19
|
+
dropdownItems: BlockMenuItem[];
|
|
20
|
+
emojiProvider?: EmojiProvider;
|
|
21
|
+
isTypeAheadAllowed?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare const useInsertButtonState: ({ api, editorView, horizontalRuleEnabled, insertMenuItems, nativeStatusSupported, numberOfButtons, tableSelectorSupported, expandEnabled, showElementBrowserLink }: UseInsertButtonStateProps) => InsertButtonState;
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { RefObject } from 'react';
|
|
2
|
+
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
3
|
+
import type { TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
|
|
4
|
+
interface PopupManagerConfig {
|
|
5
|
+
analytics?: {
|
|
6
|
+
onToggle?: (isOpen: boolean, inputMethod?: TOOLBAR_MENU_TYPE | INPUT_METHOD) => void;
|
|
7
|
+
};
|
|
8
|
+
focusTarget?: RefObject<HTMLElement>;
|
|
9
|
+
onClose?: () => void;
|
|
10
|
+
onOpen?: (inputMethod?: TOOLBAR_MENU_TYPE | INPUT_METHOD) => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const usePopupManager: (config?: PopupManagerConfig) => {
|
|
13
|
+
isOpen: boolean;
|
|
14
|
+
isOpenedByKeyboard: boolean;
|
|
15
|
+
toggle: (inputMethod?: TOOLBAR_MENU_TYPE | INPUT_METHOD) => void;
|
|
16
|
+
close: () => void;
|
|
17
|
+
handleEscapeKeydown: () => void;
|
|
18
|
+
handleClickOutside: (e: MouseEvent) => void;
|
|
19
|
+
handleKeyboardOpen: (event: React.KeyboardEvent) => void;
|
|
20
|
+
};
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { InsertBlockPlugin } from '../../../insertBlockPluginType';
|
|
4
|
+
interface UseTableSelectorPopupProps {
|
|
5
|
+
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
6
|
+
buttonRef: React.RefObject<HTMLElement>;
|
|
7
|
+
}
|
|
8
|
+
export declare const useTableSelectorPopup: ({ api, buttonRef }: UseTableSelectorPopupProps) => {
|
|
9
|
+
handleSelectedTableSize: (rowsCount: number, colsCount: number) => void;
|
|
10
|
+
onPopupUnmount: () => void;
|
|
11
|
+
isOpen: boolean;
|
|
12
|
+
isOpenedByKeyboard: boolean;
|
|
13
|
+
toggle: (inputMethod?: import("@atlaskit/editor-common/types").TOOLBAR_MENU_TYPE | INPUT_METHOD) => void;
|
|
14
|
+
close: () => void;
|
|
15
|
+
handleEscapeKeydown: () => void;
|
|
16
|
+
handleClickOutside: (e: MouseEvent) => void;
|
|
17
|
+
handleKeyboardOpen: (event: React.KeyboardEvent) => void;
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { EmojiId, EmojiProvider } from '@atlaskit/emoji/types';
|
|
3
|
+
interface EmojiPickerPopupProps {
|
|
4
|
+
emojiProvider?: Promise<EmojiProvider>;
|
|
5
|
+
isOpen: boolean;
|
|
6
|
+
onClickOutside: (e: MouseEvent) => void;
|
|
7
|
+
onEscapeKeydown: () => void;
|
|
8
|
+
onSelection: (emojiId: EmojiId) => boolean;
|
|
9
|
+
onUnmount: () => void;
|
|
10
|
+
popupsBoundariesElement?: HTMLElement;
|
|
11
|
+
popupsMountPoint?: HTMLElement;
|
|
12
|
+
popupsScrollableElement?: HTMLElement;
|
|
13
|
+
targetRef: React.RefObject<HTMLElement>;
|
|
14
|
+
}
|
|
15
|
+
export declare const EmojiPickerPopup: ({ isOpen, targetRef, emojiProvider, onSelection, onClickOutside, onEscapeKeydown, onUnmount, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, }: EmojiPickerPopupProps) => React.JSX.Element | null;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface TableSelectorPopupWrapperProps {
|
|
3
|
+
isOpen: boolean;
|
|
4
|
+
isOpenedByKeyboard: boolean;
|
|
5
|
+
onClickOutside: (e: MouseEvent) => void;
|
|
6
|
+
onEscapeKeydown: () => void;
|
|
7
|
+
onSelection: (rowsCount: number, colsCount: number) => void;
|
|
8
|
+
onUnmount: () => void;
|
|
9
|
+
popupsBoundariesElement?: HTMLElement;
|
|
10
|
+
popupsMountPoint?: HTMLElement;
|
|
11
|
+
popupsScrollableElement?: HTMLElement;
|
|
12
|
+
targetRef: React.RefObject<HTMLElement>;
|
|
13
|
+
}
|
|
14
|
+
export declare const TableSelectorPopupWrapper: ({ isOpen, targetRef, isOpenedByKeyboard, onSelection, onClickOutside, onEscapeKeydown, onUnmount, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, }: TableSelectorPopupWrapperProps) => React.JSX.Element | null;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const POPUP_Z_INDEX = "akEditorMenuZIndex";
|
|
2
|
+
export declare const POPUP_DIMENSIONS: {
|
|
3
|
+
readonly EMOJI_PICKER: {
|
|
4
|
+
readonly fitHeight: 350;
|
|
5
|
+
readonly fitWidth: 350;
|
|
6
|
+
readonly offset: [
|
|
7
|
+
number,
|
|
8
|
+
number
|
|
9
|
+
];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const FOCUS_DELAY: {
|
|
13
|
+
readonly ANIMATION_FRAME: "requestAnimationFrame";
|
|
14
|
+
readonly MICROTASK: "queueMicrotask";
|
|
15
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { InsertBlockPlugin } from '../../../insertBlockPluginType';
|
|
3
|
+
export interface BaseToolbarButtonProps {
|
|
4
|
+
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
5
|
+
popupsBoundariesElement?: HTMLElement;
|
|
6
|
+
popupsMountPoint?: HTMLElement;
|
|
7
|
+
popupsScrollableElement?: HTMLElement;
|
|
8
|
+
}
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
1
|
+
import type { Command, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
2
3
|
import type { RegisterComponent } from '@atlaskit/editor-toolbar-model';
|
|
3
4
|
import type { InsertBlockPlugin } from '../insertBlockPluginType';
|
|
4
5
|
type GetToolbarComponentsProps = {
|
|
5
6
|
api?: ExtractInjectionAPI<InsertBlockPlugin>;
|
|
7
|
+
expandEnabled?: boolean;
|
|
8
|
+
horizontalRuleEnabled?: boolean;
|
|
9
|
+
insertMenuItems?: MenuItem[];
|
|
10
|
+
nativeStatusSupported?: boolean;
|
|
11
|
+
onInsertBlockType?: (name: string) => Command;
|
|
12
|
+
showElementBrowserLink?: boolean;
|
|
6
13
|
tableSelectorSupported?: boolean;
|
|
7
14
|
toolbarShowPlusInsertOnly?: boolean;
|
|
8
15
|
};
|
|
9
|
-
export declare const getToolbarComponents: ({ api, tableSelectorSupported, toolbarShowPlusInsertOnly, }: GetToolbarComponentsProps) => RegisterComponent[];
|
|
16
|
+
export declare const getToolbarComponents: ({ api, tableSelectorSupported, toolbarShowPlusInsertOnly, showElementBrowserLink, onInsertBlockType, nativeStatusSupported, horizontalRuleEnabled, expandEnabled, insertMenuItems, }: GetToolbarComponentsProps) => RegisterComponent[];
|
|
10
17
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.4",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-connectivity": "^3.1.0",
|
|
40
40
|
"@atlaskit/editor-plugin-date": "^5.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-emoji": "^4.3.0",
|
|
42
|
-
"@atlaskit/editor-plugin-expand": "^4.
|
|
42
|
+
"@atlaskit/editor-plugin-expand": "^4.3.0",
|
|
43
43
|
"@atlaskit/editor-plugin-extension": "^6.1.0",
|
|
44
44
|
"@atlaskit/editor-plugin-feature-flags": "^2.0.0",
|
|
45
45
|
"@atlaskit/editor-plugin-hyperlink": "^5.4.0",
|
|
46
46
|
"@atlaskit/editor-plugin-image-upload": "^3.0.0",
|
|
47
|
-
"@atlaskit/editor-plugin-layout": "^3.
|
|
48
|
-
"@atlaskit/editor-plugin-media": "^5.
|
|
47
|
+
"@atlaskit/editor-plugin-layout": "^3.2.0",
|
|
48
|
+
"@atlaskit/editor-plugin-media": "^5.3.0",
|
|
49
49
|
"@atlaskit/editor-plugin-media-insert": "^9.2.0",
|
|
50
50
|
"@atlaskit/editor-plugin-mentions": "^5.2.0",
|
|
51
51
|
"@atlaskit/editor-plugin-metrics": "^4.0.0",
|
|
52
|
-
"@atlaskit/editor-plugin-panel": "^5.
|
|
52
|
+
"@atlaskit/editor-plugin-panel": "^5.4.0",
|
|
53
53
|
"@atlaskit/editor-plugin-placeholder-text": "^3.1.0",
|
|
54
54
|
"@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
|
|
55
55
|
"@atlaskit/editor-plugin-quick-insert": "^3.0.0",
|
|
56
56
|
"@atlaskit/editor-plugin-rule": "^3.0.0",
|
|
57
57
|
"@atlaskit/editor-plugin-status": "^4.1.0",
|
|
58
|
-
"@atlaskit/editor-plugin-table": "^12.
|
|
58
|
+
"@atlaskit/editor-plugin-table": "^12.3.0",
|
|
59
59
|
"@atlaskit/editor-plugin-tasks-and-decisions": "^6.4.0",
|
|
60
60
|
"@atlaskit/editor-plugin-toolbar": "^0.4.0",
|
|
61
61
|
"@atlaskit/editor-plugin-type-ahead": "^3.1.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
71
71
|
"@atlaskit/primitives": "^14.11.0",
|
|
72
72
|
"@atlaskit/theme": "^19.0.0",
|
|
73
|
-
"@atlaskit/tmp-editor-statsig": "^11.
|
|
73
|
+
"@atlaskit/tmp-editor-statsig": "^11.6.0",
|
|
74
74
|
"@atlaskit/tokens": "^6.0.0",
|
|
75
75
|
"@atlaskit/tooltip": "^20.4.0",
|
|
76
76
|
"@babel/runtime": "^7.0.0",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"react-virtualized": "^9.8.0"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"@atlaskit/editor-common": "^107.
|
|
84
|
+
"@atlaskit/editor-common": "^107.30.0",
|
|
85
85
|
"react": "^18.2.0",
|
|
86
86
|
"react-dom": "^18.2.0",
|
|
87
87
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
@@ -90,7 +90,6 @@
|
|
|
90
90
|
"@af/integration-testing": "workspace:^",
|
|
91
91
|
"@af/visual-regression": "workspace:^",
|
|
92
92
|
"@atlaskit/ssr": "workspace:^",
|
|
93
|
-
"@atlaskit/visual-regression": "workspace:^",
|
|
94
93
|
"@testing-library/react": "^13.4.0",
|
|
95
94
|
"@types/react-virtualized": "^9.18.12"
|
|
96
95
|
},
|