@atlaskit/editor-plugin-code-bidi-warning 2.0.4 → 2.1.1

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,24 @@
1
1
  # @atlaskit/editor-plugin-code-bidi-warning
2
2
 
3
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 2.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#139139](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139139)
14
+ [`7f6b665d778dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6b665d778dd) -
15
+ [https://product-fabric.atlassian.net/browse/ED-27499](ED-27499) - the new
16
+ `@atlassian/confluence-presets` package with Confluence `full-page` preset is created
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+
3
22
  ## 2.0.4
4
23
 
5
24
  ### Patch Changes
@@ -1,8 +1,7 @@
1
1
  import type { EditorAppearance, NextEditorPlugin } from '@atlaskit/editor-common/types';
2
- type Config = {
2
+ export type CodeBidiWarningPluginOptions = {
3
3
  appearance?: EditorAppearance;
4
4
  };
5
5
  export type CodeBidiWarningPlugin = NextEditorPlugin<'codeBidiWarning', {
6
- pluginConfiguration: Config | undefined;
6
+ pluginConfiguration: CodeBidiWarningPluginOptions | undefined;
7
7
  }>;
8
- export {};
@@ -1,2 +1,2 @@
1
1
  export { codeBidiWarningPlugin } from './codeBidiWarningPlugin';
2
- export type { CodeBidiWarningPlugin } from './codeBidiWarningPluginType';
2
+ export type { CodeBidiWarningPlugin, CodeBidiWarningPluginOptions, } from './codeBidiWarningPluginType';
@@ -1,8 +1,7 @@
1
1
  import type { EditorAppearance, NextEditorPlugin } from '@atlaskit/editor-common/types';
2
- type Config = {
2
+ export type CodeBidiWarningPluginOptions = {
3
3
  appearance?: EditorAppearance;
4
4
  };
5
5
  export type CodeBidiWarningPlugin = NextEditorPlugin<'codeBidiWarning', {
6
- pluginConfiguration: Config | undefined;
6
+ pluginConfiguration: CodeBidiWarningPluginOptions | undefined;
7
7
  }>;
8
- export {};
@@ -1,2 +1,2 @@
1
1
  export { codeBidiWarningPlugin } from './codeBidiWarningPlugin';
2
- export type { CodeBidiWarningPlugin } from './codeBidiWarningPluginType';
2
+ export type { CodeBidiWarningPlugin, CodeBidiWarningPluginOptions, } from './codeBidiWarningPluginType';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-code-bidi-warning",
3
- "version": "2.0.4",
3
+ "version": "2.1.1",
4
4
  "description": "Code bidi warning plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,8 +31,8 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/code": "^17.0.0",
35
- "@atlaskit/editor-common": "^103.0.0",
34
+ "@atlaskit/code": "^17.1.0",
35
+ "@atlaskit/editor-common": "^104.0.0",
36
36
  "@atlaskit/editor-prosemirror": "7.0.0",
37
37
  "@atlaskit/platform-feature-flags": "^1.1.0",
38
38
  "@babel/runtime": "^7.0.0",
@@ -43,10 +43,10 @@
43
43
  "react-dom": "^18.2.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@af/integration-testing": "^0.5.0",
47
- "@af/visual-regression": "^1.3.0",
48
- "@atlaskit/ssr": "^0.4.0",
49
- "@atlaskit/visual-regression": "^0.10.0",
46
+ "@af/integration-testing": "workspace:^",
47
+ "@af/visual-regression": "workspace:^",
48
+ "@atlaskit/ssr": "workspace:^",
49
+ "@atlaskit/visual-regression": "workspace:^",
50
50
  "@testing-library/react": "^13.4.0",
51
51
  "typescript": "~5.4.2",
52
52
  "wait-for-expect": "^1.2.0"