@atlaskit/editor-plugin-metrics 9.0.12 → 9.0.13
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 +8 -0
- package/dist/types/metricsPlugin.d.ts +1 -1
- package/dist/types/pm-plugins/main.d.ts +5 -4
- package/dist/types/pm-plugins/utils/active-session-timer.d.ts +2 -2
- package/dist/types/pm-plugins/utils/analytics.d.ts +2 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/check-tr-action-type.d.ts +1 -1
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-content-moved.d.ts +2 -1
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-deleting-content.d.ts +3 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-empty-line-added-or-deleted.d.ts +3 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-list-type-node-changed.d.ts +3 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-mark-changed.d.ts +2 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-node-attribute-changed.d.ts +2 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-status-changed.d.ts +2 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-table-column-resized.d.ts +1 -1
- package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-text-input.d.ts +3 -2
- package/dist/types/pm-plugins/utils/check-tr-actions/types.d.ts +2 -2
- package/dist/types/pm-plugins/utils/get-new-plugin-state.d.ts +3 -2
- package/dist/types/pm-plugins/utils/get-node-changes.d.ts +1 -1
- package/dist/types/pm-plugins/utils/is-safe-insert.d.ts +1 -1
- package/dist/types/pm-plugins/utils/is-tr-with-doc-changes.d.ts +1 -1
- package/dist/types-ts4.5/metricsPlugin.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/main.d.ts +5 -4
- package/dist/types-ts4.5/pm-plugins/utils/active-session-timer.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/analytics.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/check-tr-action-type.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-content-moved.d.ts +2 -1
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-deleting-content.d.ts +3 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-empty-line-added-or-deleted.d.ts +3 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-list-type-node-changed.d.ts +3 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-mark-changed.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-node-attribute-changed.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-status-changed.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-table-column-resized.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-text-input.d.ts +3 -2
- package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/types.d.ts +2 -2
- package/dist/types-ts4.5/pm-plugins/utils/get-new-plugin-state.d.ts +3 -2
- package/dist/types-ts4.5/pm-plugins/utils/get-node-changes.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/is-safe-insert.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/utils/is-tr-with-doc-changes.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-metrics
|
|
2
2
|
|
|
3
|
+
## 9.0.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c0a8e9590b919`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0a8e9590b919) -
|
|
8
|
+
Mechanical type-import autofix for editor lint and metrics packages.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 9.0.12
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
2
|
import type { UserPreferencesProvider, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
|
-
import {
|
|
4
|
-
import { PluginKey
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
3
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
4
|
+
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
5
|
+
import type { Selection } from '@atlaskit/editor-prosemirror/state';
|
|
6
|
+
import type { MetricsPlugin } from '../metricsPluginType';
|
|
7
|
+
import type { TrActionType } from './utils/check-tr-actions/types';
|
|
7
8
|
export declare const metricsKey: PluginKey;
|
|
8
9
|
export type MetricsState = {
|
|
9
10
|
actionTypeCount: ActionByType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { MetricsPlugin } from '../../metricsPluginType';
|
|
3
3
|
export declare class ActiveSessionTimer {
|
|
4
4
|
private timerId;
|
|
5
5
|
private api;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ActiveSessionEventPayload } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
3
3
|
import type { MetricsState } from '../main';
|
|
4
4
|
export declare const getAnalyticsPayload: ({ currentContent, pluginState, toolbarDocking, }: {
|
|
5
5
|
currentContent: Fragment;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import { ActionType
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkContentPastedOrMoved: (tr: ReadonlyTransaction) => TrAction<ActionType.MOVING_CONTENT | ActionType.PASTING_CONTENT> | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkDeletingContent: (step: ReplaceStep) => TrAction<ActionType.DELETING_CONTENT> | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkEmptyLineAddedOrDeleted: (step: ReplaceStep) => TrAction<ActionType.EMPTY_LINE_ADDED_OR_DELETED> | undefined;
|
package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-list-type-node-changed.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceAroundStep, ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkListTypeNodeChanged: (step: ReplaceStep | ReplaceAroundStep) => TrAction<ActionType.INSERTING_NEW_LIST_TYPE_NODE | ActionType.UPDATING_NEW_LIST_TYPE_ITEM> | undefined;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { Step } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import type { MarkChangeAction } from '../types';
|
|
3
3
|
export declare const checkMarkChanged: (step: Step) => MarkChangeAction | undefined;
|
package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-node-attribute-changed.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { ReplaceAroundStep, ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
3
|
+
import type { AttrChangeAction } from '../types';
|
|
4
4
|
export declare const checkNodeAttributeChanged: (tr: ReadonlyTransaction, step: ReplaceAroundStep | ReplaceStep) => AttrChangeAction | undefined;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import type { StatusChangeAction } from '../types';
|
|
3
3
|
export declare const checkStatusChanged: (step: ReplaceStep) => StatusChangeAction | undefined;
|
package/dist/types/pm-plugins/utils/check-tr-actions/tr-checks/check-table-column-resized.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
2
|
+
import type { AttrChangeAction } from '../types';
|
|
3
3
|
export declare const checkTableColumnResized: (tr: ReadonlyTransaction) => AttrChangeAction | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkTextInput: (step: ReplaceStep) => TrAction<ActionType.TEXT_INPUT> | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { Slice } from '@atlaskit/editor-prosemirror/model';
|
|
2
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
3
3
|
export interface DetailedReplaceStep extends ReplaceStep {
|
|
4
4
|
from: number;
|
|
5
5
|
slice: Slice;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { EditorState, ReadonlyTransaction, Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
|
-
import {
|
|
4
|
-
import { ActionType
|
|
3
|
+
import type { MetricsState } from '../main';
|
|
4
|
+
import { ActionType } from './check-tr-actions/types';
|
|
5
|
+
import type { AttrChangeAction, MarkChangeAction, StatusChangeAction, TrAction } from './check-tr-actions/types';
|
|
5
6
|
export declare const getNewPluginState: ({ now, intentToStartEditTime, shouldPersistActiveSession, tr, pluginState, oldState, newState, }: {
|
|
6
7
|
intentToStartEditTime: number;
|
|
7
8
|
newState: EditorState;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { MetricsState } from '../main';
|
|
3
3
|
export declare const getNodeChanges: ({ currentContent, pluginState, }: {
|
|
4
4
|
currentContent: Fragment;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
2
|
+
import type { ActionType } from './check-tr-actions/types';
|
|
3
3
|
export declare const isSafeInsert: (tr: ReadonlyTransaction, insertPos: number, trType?: ActionType) => boolean;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
2
|
export declare const isTrWithDocChanges: (tr: ReadonlyTransaction) => boolean;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
2
|
import type { UserPreferencesProvider, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
|
-
import {
|
|
4
|
-
import { PluginKey
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
3
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
4
|
+
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
5
|
+
import type { Selection } from '@atlaskit/editor-prosemirror/state';
|
|
6
|
+
import type { MetricsPlugin } from '../metricsPluginType';
|
|
7
|
+
import type { TrActionType } from './utils/check-tr-actions/types';
|
|
7
8
|
export declare const metricsKey: PluginKey;
|
|
8
9
|
export type MetricsState = {
|
|
9
10
|
actionTypeCount: ActionByType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
2
|
+
import type { MetricsPlugin } from '../../metricsPluginType';
|
|
3
3
|
export declare class ActiveSessionTimer {
|
|
4
4
|
private timerId;
|
|
5
5
|
private api;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ActiveSessionEventPayload } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
3
3
|
import type { MetricsState } from '../main';
|
|
4
4
|
export declare const getAnalyticsPayload: ({ currentContent, pluginState, toolbarDocking, }: {
|
|
5
5
|
currentContent: Fragment;
|
package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-content-moved.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import { ActionType
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkContentPastedOrMoved: (tr: ReadonlyTransaction) => TrAction<ActionType.MOVING_CONTENT | ActionType.PASTING_CONTENT> | undefined;
|
package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-deleting-content.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkDeletingContent: (step: ReplaceStep) => TrAction<ActionType.DELETING_CONTENT> | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkEmptyLineAddedOrDeleted: (step: ReplaceStep) => TrAction<ActionType.EMPTY_LINE_ADDED_OR_DELETED> | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActionType
|
|
1
|
+
import type { ReplaceAroundStep, ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkListTypeNodeChanged: (step: ReplaceStep | ReplaceAroundStep) => TrAction<ActionType.INSERTING_NEW_LIST_TYPE_NODE | ActionType.UPDATING_NEW_LIST_TYPE_ITEM> | undefined;
|
package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-mark-changed.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { Step } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import type { MarkChangeAction } from '../types';
|
|
3
3
|
export declare const checkMarkChanged: (step: Step) => MarkChangeAction | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { ReplaceAroundStep, ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
3
|
+
import type { AttrChangeAction } from '../types';
|
|
4
4
|
export declare const checkNodeAttributeChanged: (tr: ReadonlyTransaction, step: ReplaceAroundStep | ReplaceStep) => AttrChangeAction | undefined;
|
package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-status-changed.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import type { StatusChangeAction } from '../types';
|
|
3
3
|
export declare const checkStatusChanged: (step: ReplaceStep) => StatusChangeAction | undefined;
|
package/dist/types-ts4.5/pm-plugins/utils/check-tr-actions/tr-checks/check-table-column-resized.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
2
|
+
import type { AttrChangeAction } from '../types';
|
|
3
3
|
export declare const checkTableColumnResized: (tr: ReadonlyTransaction) => AttrChangeAction | undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
2
|
+
import { ActionType } from '../types';
|
|
3
|
+
import type { TrAction } from '../types';
|
|
3
4
|
export declare const checkTextInput: (step: ReplaceStep) => TrAction<ActionType.TEXT_INPUT> | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { Slice } from '@atlaskit/editor-prosemirror/model';
|
|
2
|
+
import type { ReplaceStep } from '@atlaskit/editor-prosemirror/transform';
|
|
3
3
|
export interface DetailedReplaceStep extends ReplaceStep {
|
|
4
4
|
from: number;
|
|
5
5
|
slice: Slice;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { EditorState, ReadonlyTransaction, Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
|
-
import {
|
|
4
|
-
import { ActionType
|
|
3
|
+
import type { MetricsState } from '../main';
|
|
4
|
+
import { ActionType } from './check-tr-actions/types';
|
|
5
|
+
import type { AttrChangeAction, MarkChangeAction, StatusChangeAction, TrAction } from './check-tr-actions/types';
|
|
5
6
|
export declare const getNewPluginState: ({ now, intentToStartEditTime, shouldPersistActiveSession, tr, pluginState, oldState, newState, }: {
|
|
6
7
|
intentToStartEditTime: number;
|
|
7
8
|
newState: EditorState;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { Fragment } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { MetricsState } from '../main';
|
|
3
3
|
export declare const getNodeChanges: ({ currentContent, pluginState, }: {
|
|
4
4
|
currentContent: Fragment;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
-
import {
|
|
2
|
+
import type { ActionType } from './check-tr-actions/types';
|
|
3
3
|
export declare const isSafeInsert: (tr: ReadonlyTransaction, insertPos: number, trType?: ActionType) => boolean;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ReadonlyTransaction } from '@atlaskit/editor-prosemirror/state';
|
|
2
2
|
export declare const isTrWithDocChanges: (tr: ReadonlyTransaction) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-metrics",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.13",
|
|
4
4
|
"description": "Metrics plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"@atlaskit/editor-plugin-user-preferences": "^6.0.0",
|
|
34
34
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
35
35
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
36
|
-
"@atlaskit/tmp-editor-statsig": "^46.
|
|
36
|
+
"@atlaskit/tmp-editor-statsig": "^46.2.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0",
|
|
38
38
|
"bind-event-listener": "^3.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@atlaskit/editor-common": "^112.
|
|
41
|
+
"@atlaskit/editor-common": "^112.10.0",
|
|
42
42
|
"react": "^18.2.0",
|
|
43
43
|
"react-dom": "^18.2.0"
|
|
44
44
|
},
|