@atlaskit/editor-plugin-code-bidi-warning 11.0.13 → 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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/editor-plugin-code-bidi-warning
2
2
 
3
+ ## 11.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 11.0.14
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 11.0.13
4
16
 
5
17
  ### Patch Changes
@@ -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.13",
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": "^101.0.0",
34
+ "@atlaskit/tmp-editor-statsig": "^103.0.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "uuid": "^3.1.0"
37
37
  },
@@ -1,2 +0,0 @@
1
- import type { CodeBidiWarningPlugin } from './codeBidiWarningPluginType';
2
- export declare const codeBidiWarningPlugin: CodeBidiWarningPlugin;
@@ -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,2 +0,0 @@
1
- export { codeBidiWarningPlugin } from './codeBidiWarningPlugin';
2
- 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,2 +0,0 @@
1
- import { PluginKey } from '@atlaskit/editor-prosemirror/state';
2
- export declare const codeBidiWarningPluginKey: PluginKey;
@@ -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;
@@ -1,3 +0,0 @@
1
- import type { CodeBidiWarningPluginState } from './types';
2
- declare const _default: (pluginState: CodeBidiWarningPluginState, action: unknown) => CodeBidiWarningPluginState;
3
- export default _default;
@@ -1,6 +0,0 @@
1
- import type { DecorationSet } from '@atlaskit/editor-prosemirror/view';
2
- export type CodeBidiWarningPluginState = {
3
- codeBidiWarningLabel: string;
4
- decorationSet: DecorationSet;
5
- tooltipEnabled: boolean;
6
- };