@atlaskit/editor-plugin-code-bidi-warning 11.0.14 → 11.0.15
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 +6 -0
- package/codeBidiWarningPlugin/package.json +1 -8
- package/codeBidiWarningPluginType/package.json +1 -8
- package/package.json +2 -2
- package/dist/types-ts4.5/codeBidiWarningPlugin.d.ts +0 -2
- package/dist/types-ts4.5/codeBidiWarningPluginType.d.ts +0 -11
- package/dist/types-ts4.5/entry-points/codeBidiWarningPlugin.d.ts +0 -1
- package/dist/types-ts4.5/entry-points/codeBidiWarningPluginType.d.ts +0 -1
- package/dist/types-ts4.5/index.d.ts +0 -2
- package/dist/types-ts4.5/pm-plugins/main.d.ts +0 -7
- package/dist/types-ts4.5/pm-plugins/plugin-key.d.ts +0 -2
- package/dist/types-ts4.5/pm-plugins/react-plugin-factory.d.ts +0 -18
- package/dist/types-ts4.5/pm-plugins/reducer.d.ts +0 -3
- package/dist/types-ts4.5/pm-plugins/types.d.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,5 @@
|
|
|
4
4
|
"module": "../dist/esm/entry-points/codeBidiWarningPlugin.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/codeBidiWarningPlugin.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/entry-points/codeBidiWarningPlugin.d.ts"
|
|
8
|
-
"typesVersions": {
|
|
9
|
-
">=4.5 <5.9": {
|
|
10
|
-
"*": [
|
|
11
|
-
"../dist/types-ts4.5/entry-points/codeBidiWarningPlugin.d.ts"
|
|
12
|
-
]
|
|
13
|
-
}
|
|
14
|
-
}
|
|
7
|
+
"types": "../dist/types/entry-points/codeBidiWarningPlugin.d.ts"
|
|
15
8
|
}
|
|
@@ -4,12 +4,5 @@
|
|
|
4
4
|
"module": "../dist/esm/entry-points/codeBidiWarningPluginType.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/codeBidiWarningPluginType.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/entry-points/codeBidiWarningPluginType.d.ts"
|
|
8
|
-
"typesVersions": {
|
|
9
|
-
">=4.5 <5.9": {
|
|
10
|
-
"*": [
|
|
11
|
-
"../dist/types-ts4.5/entry-points/codeBidiWarningPluginType.d.ts"
|
|
12
|
-
]
|
|
13
|
-
}
|
|
14
|
-
}
|
|
7
|
+
"types": "../dist/types/entry-points/codeBidiWarningPluginType.d.ts"
|
|
15
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-code-bidi-warning",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.15",
|
|
4
4
|
"description": "Code bidi warning plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@atlaskit/editor-plugin-limited-mode": "^8.0.0",
|
|
32
32
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
33
33
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
34
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
34
|
+
"@atlaskit/tmp-editor-statsig": "^103.0.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"uuid": "^3.1.0"
|
|
37
37
|
},
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { EditorAppearance, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
2
|
-
import type { LimitedModePlugin } from '@atlaskit/editor-plugin-limited-mode';
|
|
3
|
-
export type CodeBidiWarningPluginOptions = {
|
|
4
|
-
appearance?: EditorAppearance;
|
|
5
|
-
};
|
|
6
|
-
export type CodeBidiWarningPlugin = NextEditorPlugin<'codeBidiWarning', {
|
|
7
|
-
dependencies: [
|
|
8
|
-
OptionalPlugin<LimitedModePlugin>
|
|
9
|
-
];
|
|
10
|
-
pluginConfiguration: CodeBidiWarningPluginOptions | undefined;
|
|
11
|
-
}>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { codeBidiWarningPlugin } from '../codeBidiWarningPlugin';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { CodeBidiWarningPlugin, CodeBidiWarningPluginOptions, } from '../codeBidiWarningPluginType';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
2
|
-
import type { EditorAppearance, ExtractInjectionAPI, PMPluginFactoryParams } from '@atlaskit/editor-common/types';
|
|
3
|
-
import type { CodeBidiWarningPlugin } from '../codeBidiWarningPluginType';
|
|
4
|
-
import type { CodeBidiWarningPluginState } from './types';
|
|
5
|
-
export declare const createPlugin: (api: ExtractInjectionAPI<CodeBidiWarningPlugin> | undefined, { dispatch, getIntl, nodeViewPortalProviderAPI }: PMPluginFactoryParams, { appearance }: {
|
|
6
|
-
appearance?: EditorAppearance;
|
|
7
|
-
}) => SafePlugin<CodeBidiWarningPluginState>;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
|
|
2
|
-
import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
|
|
3
|
-
import type { Command } from '@atlaskit/editor-common/types';
|
|
4
|
-
import type { Node as PmNode } from '@atlaskit/editor-prosemirror/model';
|
|
5
|
-
import type { EditorState, Transaction, SafeStateField } from '@atlaskit/editor-prosemirror/state';
|
|
6
|
-
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
7
|
-
import type { CodeBidiWarningPluginState } from './types';
|
|
8
|
-
export declare const pluginFactoryCreator: (nodeViewPortalProviderAPI: PortalProviderAPI) => {
|
|
9
|
-
createCommand: <A = unknown>(action: A | ((state: Readonly<EditorState>) => false | A), transform?: (tr: Transaction, state: EditorState) => Transaction) => Command;
|
|
10
|
-
createPluginState: (dispatch: Dispatch, initialState: CodeBidiWarningPluginState | ((state: EditorState) => CodeBidiWarningPluginState)) => SafeStateField<CodeBidiWarningPluginState>;
|
|
11
|
-
getPluginState: (state: EditorState) => CodeBidiWarningPluginState;
|
|
12
|
-
};
|
|
13
|
-
export declare function createBidiWarningsDecorationSetFromDoc({ doc, codeBidiWarningLabel, tooltipEnabled, nodeViewPortalProviderAPI, }: {
|
|
14
|
-
codeBidiWarningLabel: string;
|
|
15
|
-
doc: PmNode;
|
|
16
|
-
nodeViewPortalProviderAPI: PortalProviderAPI;
|
|
17
|
-
tooltipEnabled: boolean;
|
|
18
|
-
}): DecorationSet;
|