@atlaskit/editor-plugin-table 19.0.1 → 21.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 +47 -0
- package/dist/cjs/nodeviews/TableComponent.js +2 -2
- package/dist/cjs/nodeviews/TableResizer.js +2 -2
- package/dist/cjs/nodeviews/table.js +18 -2
- package/dist/cjs/nodeviews/toDOM.js +18 -4
- package/dist/cjs/pm-plugins/main.js +38 -4
- package/dist/cjs/pm-plugins/table-width.js +10 -0
- package/dist/cjs/pm-plugins/transforms/content-mode.js +48 -0
- package/dist/cjs/pm-plugins/transforms/fix-tables.js +4 -35
- package/dist/cjs/pm-plugins/transforms/table-transform-utils.js +62 -0
- package/dist/cjs/pm-plugins/utils/decoration.js +2 -2
- package/dist/cjs/pm-plugins/utils/tableMode.js +149 -0
- package/dist/cjs/pm-plugins/view-mode-sort/index.js +2 -2
- package/dist/cjs/ui/ColumnResizeWidget/index.js +2 -2
- package/dist/cjs/ui/DragHandle/index.js +2 -2
- package/dist/cjs/ui/FloatingContextualButton/index.js +2 -2
- package/dist/cjs/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/cjs/ui/FloatingDeleteButton/DeleteButton.js +2 -2
- package/dist/cjs/ui/FloatingDragMenu/DragMenu.js +2 -2
- package/dist/cjs/ui/FloatingInsertButton/InsertButton.js +3 -3
- package/dist/cjs/ui/FloatingInsertButton/index.js +2 -2
- package/dist/cjs/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +2 -2
- package/dist/cjs/ui/TableFloatingControls/CornerControls/DragCornerControls.js +3 -3
- package/dist/cjs/ui/TableFloatingControls/RowControls/ClassicControls.js +2 -2
- package/dist/cjs/ui/TableFullWidthLabel/index.js +2 -2
- package/dist/cjs/ui/event-handlers.js +3 -2
- package/dist/cjs/ui/toolbar.js +25 -2
- package/dist/es2019/nodeviews/TableComponent.js +1 -1
- package/dist/es2019/nodeviews/TableResizer.js +1 -1
- package/dist/es2019/nodeviews/table.js +18 -2
- package/dist/es2019/nodeviews/toDOM.js +18 -4
- package/dist/es2019/pm-plugins/main.js +38 -4
- package/dist/es2019/pm-plugins/table-width.js +10 -0
- package/dist/es2019/pm-plugins/transforms/content-mode.js +39 -0
- package/dist/es2019/pm-plugins/transforms/fix-tables.js +2 -33
- package/dist/es2019/pm-plugins/transforms/table-transform-utils.js +56 -0
- package/dist/es2019/pm-plugins/utils/decoration.js +1 -1
- package/dist/es2019/pm-plugins/utils/tableMode.js +148 -0
- package/dist/es2019/pm-plugins/view-mode-sort/index.js +1 -1
- package/dist/es2019/ui/ColumnResizeWidget/index.js +1 -1
- package/dist/es2019/ui/DragHandle/index.js +1 -1
- package/dist/es2019/ui/FloatingContextualButton/index.js +1 -1
- package/dist/es2019/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/es2019/ui/FloatingDeleteButton/DeleteButton.js +1 -1
- package/dist/es2019/ui/FloatingDragMenu/DragMenu.js +1 -1
- package/dist/es2019/ui/FloatingInsertButton/InsertButton.js +1 -1
- package/dist/es2019/ui/FloatingInsertButton/index.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/CornerControls/DragCornerControls.js +1 -1
- package/dist/es2019/ui/TableFloatingControls/RowControls/ClassicControls.js +1 -1
- package/dist/es2019/ui/TableFullWidthLabel/index.js +1 -1
- package/dist/es2019/ui/event-handlers.js +4 -3
- package/dist/es2019/ui/toolbar.js +23 -2
- package/dist/esm/nodeviews/TableComponent.js +1 -1
- package/dist/esm/nodeviews/TableResizer.js +1 -1
- package/dist/esm/nodeviews/table.js +18 -2
- package/dist/esm/nodeviews/toDOM.js +18 -4
- package/dist/esm/pm-plugins/main.js +38 -4
- package/dist/esm/pm-plugins/table-width.js +10 -0
- package/dist/esm/pm-plugins/transforms/content-mode.js +41 -0
- package/dist/esm/pm-plugins/transforms/fix-tables.js +2 -33
- package/dist/esm/pm-plugins/transforms/table-transform-utils.js +56 -0
- package/dist/esm/pm-plugins/utils/decoration.js +1 -1
- package/dist/esm/pm-plugins/utils/tableMode.js +143 -0
- package/dist/esm/pm-plugins/view-mode-sort/index.js +1 -1
- package/dist/esm/ui/ColumnResizeWidget/index.js +1 -1
- package/dist/esm/ui/DragHandle/index.js +1 -1
- package/dist/esm/ui/FloatingContextualButton/index.js +1 -1
- package/dist/esm/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/esm/ui/FloatingDeleteButton/DeleteButton.js +1 -1
- package/dist/esm/ui/FloatingDragMenu/DragMenu.js +1 -1
- package/dist/esm/ui/FloatingInsertButton/InsertButton.js +1 -1
- package/dist/esm/ui/FloatingInsertButton/index.js +1 -1
- package/dist/esm/ui/TableFloatingControls/CornerControls/ClassicCornerControls.js +1 -1
- package/dist/esm/ui/TableFloatingControls/CornerControls/DragCornerControls.js +1 -1
- package/dist/esm/ui/TableFloatingControls/RowControls/ClassicControls.js +1 -1
- package/dist/esm/ui/TableFullWidthLabel/index.js +1 -1
- package/dist/esm/ui/event-handlers.js +4 -3
- package/dist/esm/ui/toolbar.js +25 -2
- package/dist/types/nodeviews/TableComponent.d.ts +2 -2
- package/dist/types/pm-plugins/commands/column-resize.d.ts +1 -1
- package/dist/types/pm-plugins/commands/commands-with-analytics.d.ts +1 -1
- package/dist/types/pm-plugins/commands/go-to-next-cell.d.ts +1 -1
- package/dist/types/pm-plugins/commands/selection.d.ts +1 -1
- package/dist/types/pm-plugins/decorations/utils/column-resizing.d.ts +1 -1
- package/dist/types/pm-plugins/drag-and-drop/commands-with-analytics.d.ts +1 -1
- package/dist/types/pm-plugins/keymap.d.ts +1 -1
- package/dist/types/pm-plugins/main.d.ts +1 -1
- package/dist/types/pm-plugins/table-selection-keymap.d.ts +1 -1
- package/dist/types/pm-plugins/transforms/content-mode.d.ts +8 -0
- package/dist/types/pm-plugins/transforms/table-transform-utils.d.ts +11 -0
- package/dist/types/pm-plugins/utils/decoration.d.ts +1 -1
- package/dist/types/pm-plugins/utils/table.d.ts +1 -1
- package/dist/types/pm-plugins/utils/tableMode.d.ts +22 -0
- package/dist/types/types/index.d.ts +4 -1
- package/dist/types/ui/DragHandle/index.d.ts +2 -2
- package/dist/types/ui/FloatingContextualMenu/ContextualMenu.d.ts +2 -2
- package/dist/types/ui/FloatingDeleteButton/DeleteButton.d.ts +2 -2
- package/dist/types/ui/FloatingDragMenu/DragMenu.d.ts +2 -2
- package/dist/types/ui/FloatingInsertButton/InsertButton.d.ts +3 -3
- package/dist/types/ui/FloatingInsertButton/index.d.ts +2 -2
- package/dist/types/ui/TableFloatingControls/CornerControls/ClassicCornerControls.d.ts +2 -2
- package/dist/types/ui/TableFloatingControls/CornerControls/DragCornerControls.d.ts +3 -3
- package/dist/types/ui/TableFloatingControls/RowControls/ClassicControls.d.ts +2 -2
- package/dist/types-ts4.5/nodeviews/TableComponent.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/commands/column-resize.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/commands/commands-with-analytics.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/commands/go-to-next-cell.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/commands/selection.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/decorations/utils/column-resizing.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/drag-and-drop/commands-with-analytics.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/keymap.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/main.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/table-selection-keymap.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/transforms/content-mode.d.ts +8 -0
- package/dist/types-ts4.5/pm-plugins/transforms/table-transform-utils.d.ts +11 -0
- package/dist/types-ts4.5/pm-plugins/utils/decoration.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/table.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/tableMode.d.ts +22 -0
- package/dist/types-ts4.5/types/index.d.ts +4 -1
- package/dist/types-ts4.5/ui/DragHandle/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/FloatingContextualMenu/ContextualMenu.d.ts +2 -2
- package/dist/types-ts4.5/ui/FloatingDeleteButton/DeleteButton.d.ts +2 -2
- package/dist/types-ts4.5/ui/FloatingDragMenu/DragMenu.d.ts +2 -2
- package/dist/types-ts4.5/ui/FloatingInsertButton/InsertButton.d.ts +3 -3
- package/dist/types-ts4.5/ui/FloatingInsertButton/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/TableFloatingControls/CornerControls/ClassicCornerControls.d.ts +2 -2
- package/dist/types-ts4.5/ui/TableFloatingControls/CornerControls/DragCornerControls.d.ts +3 -3
- package/dist/types-ts4.5/ui/TableFloatingControls/RowControls/ClassicControls.d.ts +2 -2
- package/package.json +25 -21
- package/report.api.md +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IntlShape } from 'react-intl
|
|
1
|
+
import type { IntlShape } from 'react-intl';
|
|
2
2
|
import type { TableLayout } from '@atlaskit/adf-schema';
|
|
3
3
|
import type { TableColumnOrdering } from '@atlaskit/custom-steps';
|
|
4
4
|
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
@@ -95,6 +95,8 @@ export interface TablePluginState {
|
|
|
95
95
|
insertColumnButtonIndex?: number;
|
|
96
96
|
insertRowButtonIndex?: number;
|
|
97
97
|
isCellMenuOpenByKeyboard?: boolean;
|
|
98
|
+
isChromelessEditor?: boolean;
|
|
99
|
+
isCommentEditor?: boolean;
|
|
98
100
|
isContextualMenuOpen?: boolean;
|
|
99
101
|
isDragAndDropEnabled?: boolean;
|
|
100
102
|
isFullWidthModeEnabled?: boolean;
|
|
@@ -448,6 +450,7 @@ export declare const TableCssClassName: {
|
|
|
448
450
|
TABLE_STICKY_SENTINEL_TOP: "pm-table-sticky-sentinel-top";
|
|
449
451
|
TABLE_STICKY_SHADOW: "pm-table-sticky-shadow";
|
|
450
452
|
TABLE_STICKY_WRAPPER: "pm-table-sticky-wrapper";
|
|
453
|
+
TABLE_VIEW_CONTENT_WRAP: "tableView-content-wrap";
|
|
451
454
|
};
|
|
452
455
|
export interface ToolbarMenuConfig {
|
|
453
456
|
allowCollapse?: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { MouseEventHandler, FocusEventHandler } from 'react';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
3
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
4
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
import type { TriggerType } from '../../pm-plugins/drag-and-drop/types';
|
|
6
6
|
import type { CellHoverMeta, TableDirection } from '../../types';
|
|
@@ -23,7 +23,7 @@ type DragHandleProps = {
|
|
|
23
23
|
tableLocalId: string;
|
|
24
24
|
toggleDragMenu?: (trigger: TriggerType, event?: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
25
25
|
};
|
|
26
|
-
export declare const DragHandle: React.FC<import("react-intl
|
|
26
|
+
export declare const DragHandle: React.FC<import("react-intl").WithIntlProps<DragHandleProps & WrappedComponentProps>> & {
|
|
27
27
|
WrappedComponent: React.ComponentType<DragHandleProps & WrappedComponentProps>;
|
|
28
28
|
};
|
|
29
29
|
export {};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import React, { Component } from 'react';
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
7
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
8
8
|
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
9
9
|
import type { GetEditorContainerWidth, GetEditorFeatureFlags } from '@atlaskit/editor-common/types';
|
|
10
10
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
@@ -64,7 +64,7 @@ export declare class ContextualMenu extends Component<Props & WrappedComponentPr
|
|
|
64
64
|
private closeSubmenu;
|
|
65
65
|
private setColor;
|
|
66
66
|
}
|
|
67
|
-
declare const _default: React.FC<import("react-intl
|
|
67
|
+
declare const _default: React.FC<import("react-intl").WithIntlProps<Props & WrappedComponentProps>> & {
|
|
68
68
|
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
69
69
|
};
|
|
70
70
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { SyntheticEvent } from 'react';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import type { MessageDescriptor, WrappedComponentProps } from 'react-intl
|
|
3
|
+
import type { MessageDescriptor, WrappedComponentProps } from 'react-intl';
|
|
4
4
|
interface ButtonProps {
|
|
5
5
|
onClick?: (event: SyntheticEvent) => void;
|
|
6
6
|
onMouseEnter?: (event: SyntheticEvent) => void;
|
|
@@ -8,7 +8,7 @@ interface ButtonProps {
|
|
|
8
8
|
removeLabel: MessageDescriptor;
|
|
9
9
|
style?: object;
|
|
10
10
|
}
|
|
11
|
-
declare const _default: React.FC<import("react-intl
|
|
11
|
+
declare const _default: React.FC<import("react-intl").WithIntlProps<ButtonProps & WrappedComponentProps>> & {
|
|
12
12
|
WrappedComponent: React.ComponentType<ButtonProps & WrappedComponentProps>;
|
|
13
13
|
};
|
|
14
14
|
export default _default;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
/** @jsxFrag */
|
|
6
6
|
import React from 'react';
|
|
7
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
7
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
8
8
|
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
9
9
|
import type { ExtractInjectionAPI, GetEditorContainerWidth } from '@atlaskit/editor-common/types';
|
|
10
10
|
import type { AriaLiveElementAttributes } from '@atlaskit/editor-plugin-accessibility-utils';
|
|
@@ -35,7 +35,7 @@ type DragMenuProps = {
|
|
|
35
35
|
target?: Element;
|
|
36
36
|
targetCellPosition?: number;
|
|
37
37
|
};
|
|
38
|
-
declare const _default: React.FC<import("react-intl
|
|
38
|
+
declare const _default: React.FC<import("react-intl").WithIntlProps<DragMenuProps & WrappedComponentProps>> & {
|
|
39
39
|
WrappedComponent: React.ComponentType<DragMenuProps & WrappedComponentProps>;
|
|
40
40
|
};
|
|
41
41
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { SyntheticEvent } from 'react';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
3
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
4
4
|
import type { TableDirection } from '../../types';
|
|
5
5
|
interface ButtonProps {
|
|
6
6
|
hasStickyHeaders: boolean;
|
|
@@ -9,10 +9,10 @@ interface ButtonProps {
|
|
|
9
9
|
tableRef: HTMLElement;
|
|
10
10
|
type: TableDirection;
|
|
11
11
|
}
|
|
12
|
-
export declare const DragAndDropInsertButton: React.FC<import("react-intl
|
|
12
|
+
export declare const DragAndDropInsertButton: React.FC<import("react-intl").WithIntlProps<ButtonProps & WrappedComponentProps>> & {
|
|
13
13
|
WrappedComponent: React.ComponentType<ButtonProps & WrappedComponentProps>;
|
|
14
14
|
};
|
|
15
|
-
declare const _default: React.FC<import("react-intl
|
|
15
|
+
declare const _default: React.FC<import("react-intl").WithIntlProps<ButtonProps & WrappedComponentProps>> & {
|
|
16
16
|
WrappedComponent: React.ComponentType<ButtonProps & WrappedComponentProps>;
|
|
17
17
|
};
|
|
18
18
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
3
3
|
import type { DispatchAnalyticsEvent, EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import type { GetEditorContainerWidth, GetEditorFeatureFlags } from '@atlaskit/editor-common/types';
|
|
5
5
|
import type { Node as PmNode } from '@atlaskit/editor-prosemirror/model';
|
|
@@ -35,7 +35,7 @@ export declare class FloatingInsertButton extends React.Component<Props & Wrappe
|
|
|
35
35
|
private insertRow;
|
|
36
36
|
private insertColumn;
|
|
37
37
|
}
|
|
38
|
-
declare const _default: React.FC<import("react-intl
|
|
38
|
+
declare const _default: React.FC<import("react-intl").WithIntlProps<Props & WrappedComponentProps>> & {
|
|
39
39
|
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
40
40
|
};
|
|
41
41
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
3
3
|
import type { CornerControlProps } from './types';
|
|
4
|
-
export declare const CornerControls: React.FC<import("react-intl
|
|
4
|
+
export declare const CornerControls: React.FC<import("react-intl").WithIntlProps<CornerControlProps & WrappedComponentProps>> & {
|
|
5
5
|
WrappedComponent: React.ComponentType<CornerControlProps & WrappedComponentProps>;
|
|
6
6
|
};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
3
3
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { TablePlugin } from '../../../tablePluginType';
|
|
5
5
|
import type { CornerControlProps } from './types';
|
|
6
|
-
export declare const DragCornerControlsWithSelection: React.FC<import("react-intl
|
|
6
|
+
export declare const DragCornerControlsWithSelection: React.FC<import("react-intl").WithIntlProps<CornerControlProps & WrappedComponentProps & {
|
|
7
7
|
api?: ExtractInjectionAPI<TablePlugin>;
|
|
8
8
|
}>> & {
|
|
9
9
|
WrappedComponent: React.ComponentType<CornerControlProps & WrappedComponentProps & {
|
|
10
10
|
api?: ExtractInjectionAPI<TablePlugin>;
|
|
11
11
|
}>;
|
|
12
12
|
};
|
|
13
|
-
export declare const DragCornerControls: React.FC<import("react-intl
|
|
13
|
+
export declare const DragCornerControls: React.FC<import("react-intl").WithIntlProps<CornerControlProps & WrappedComponentProps>> & {
|
|
14
14
|
WrappedComponent: React.ComponentType<CornerControlProps & WrappedComponentProps>;
|
|
15
15
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { WrappedComponentProps } from 'react-intl
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl';
|
|
3
3
|
import type { Selection } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
export interface Props {
|
|
@@ -14,6 +14,6 @@ export interface Props {
|
|
|
14
14
|
stickyTop?: number;
|
|
15
15
|
tableRef: HTMLTableElement;
|
|
16
16
|
}
|
|
17
|
-
export declare const RowControls: React.FC<import("react-intl
|
|
17
|
+
export declare const RowControls: React.FC<import("react-intl").WithIntlProps<Props & WrappedComponentProps>> & {
|
|
18
18
|
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-table",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"description": "Table plugin for the @atlaskit/editor",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,40 +28,41 @@
|
|
|
28
28
|
"singleton": true
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/adf-schema": "^52.
|
|
31
|
+
"@atlaskit/adf-schema": "^52.5.0",
|
|
32
32
|
"@atlaskit/button": "^23.11.0",
|
|
33
33
|
"@atlaskit/custom-steps": "^0.16.0",
|
|
34
34
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
35
|
-
"@atlaskit/editor-plugin-accessibility-utils": "^
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
37
|
-
"@atlaskit/editor-plugin-batch-attribute-updates": "^
|
|
38
|
-
"@atlaskit/editor-plugin-content-insertion": "^
|
|
39
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^
|
|
40
|
-
"@atlaskit/editor-plugin-extension": "
|
|
41
|
-
"@atlaskit/editor-plugin-guideline": "^
|
|
42
|
-
"@atlaskit/editor-plugin-interaction": "^
|
|
43
|
-
"@atlaskit/editor-plugin-limited-mode": "^
|
|
44
|
-
"@atlaskit/editor-plugin-selection": "^
|
|
45
|
-
"@atlaskit/editor-plugin-toolbar": "^
|
|
46
|
-
"@atlaskit/editor-plugin-user-intent": "^
|
|
47
|
-
"@atlaskit/editor-plugin-width": "^
|
|
35
|
+
"@atlaskit/editor-plugin-accessibility-utils": "^10.0.0",
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
37
|
+
"@atlaskit/editor-plugin-batch-attribute-updates": "^10.0.0",
|
|
38
|
+
"@atlaskit/editor-plugin-content-insertion": "^10.0.0",
|
|
39
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^12.0.0",
|
|
40
|
+
"@atlaskit/editor-plugin-extension": "13.0.0",
|
|
41
|
+
"@atlaskit/editor-plugin-guideline": "^10.0.0",
|
|
42
|
+
"@atlaskit/editor-plugin-interaction": "^19.0.0",
|
|
43
|
+
"@atlaskit/editor-plugin-limited-mode": "^7.0.0",
|
|
44
|
+
"@atlaskit/editor-plugin-selection": "^10.0.0",
|
|
45
|
+
"@atlaskit/editor-plugin-toolbar": "^7.0.0",
|
|
46
|
+
"@atlaskit/editor-plugin-user-intent": "^8.0.0",
|
|
47
|
+
"@atlaskit/editor-plugin-width": "^11.0.0",
|
|
48
48
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
49
49
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
50
50
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
51
|
-
"@atlaskit/icon": "^34.
|
|
51
|
+
"@atlaskit/icon": "^34.2.0",
|
|
52
52
|
"@atlaskit/insm": "^0.4.0",
|
|
53
|
-
"@atlaskit/menu": "^8.
|
|
53
|
+
"@atlaskit/menu": "^8.5.0",
|
|
54
54
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
55
55
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
56
56
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
|
|
57
57
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|
|
58
58
|
"@atlaskit/primitives": "^19.0.0",
|
|
59
|
-
"@atlaskit/tmp-editor-statsig": "^62.
|
|
60
|
-
"@atlaskit/toggle": "^15.
|
|
59
|
+
"@atlaskit/tmp-editor-statsig": "^62.4.0",
|
|
60
|
+
"@atlaskit/toggle": "^15.6.0",
|
|
61
61
|
"@atlaskit/tokens": "^13.0.0",
|
|
62
62
|
"@atlaskit/tooltip": "^21.1.0",
|
|
63
63
|
"@babel/runtime": "^7.0.0",
|
|
64
64
|
"@emotion/react": "^11.7.1",
|
|
65
|
+
"bind-event-listener": "^3.0.0",
|
|
65
66
|
"classnames": "^2.2.5",
|
|
66
67
|
"lodash": "^4.17.21",
|
|
67
68
|
"memoize-one": "^6.0.0",
|
|
@@ -69,10 +70,10 @@
|
|
|
69
70
|
"uuid": "^3.1.0"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|
|
72
|
-
"@atlaskit/editor-common": "^
|
|
73
|
+
"@atlaskit/editor-common": "^114.0.0",
|
|
73
74
|
"react": "^18.2.0",
|
|
74
75
|
"react-dom": "^18.2.0",
|
|
75
|
-
"react-intl
|
|
76
|
+
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
76
77
|
},
|
|
77
78
|
"techstack": {
|
|
78
79
|
"@atlassian/frontend": {
|
|
@@ -168,5 +169,8 @@
|
|
|
168
169
|
"platform_editor_max_width_default_width": {
|
|
169
170
|
"type": "boolean"
|
|
170
171
|
}
|
|
172
|
+
},
|
|
173
|
+
"devDependencies": {
|
|
174
|
+
"react-intl": "^6.6.2"
|
|
171
175
|
}
|
|
172
176
|
}
|