@atlaskit/editor-plugin-code-bidi-warning 2.0.3 → 2.1.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
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-code-bidi-warning
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#139139](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139139)
|
|
8
|
+
[`7f6b665d778dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6b665d778dd) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/ED-27499](ED-27499) - the new
|
|
10
|
+
`@atlassian/confluence-presets` package with Confluence `full-page` preset is created
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
16
|
+
## 2.0.4
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 2.0.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import type { EditorAppearance, NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
2
|
-
type
|
|
2
|
+
export type CodeBidiWarningPluginOptions = {
|
|
3
3
|
appearance?: EditorAppearance;
|
|
4
4
|
};
|
|
5
5
|
export type CodeBidiWarningPlugin = NextEditorPlugin<'codeBidiWarning', {
|
|
6
|
-
pluginConfiguration:
|
|
6
|
+
pluginConfiguration: CodeBidiWarningPluginOptions | undefined;
|
|
7
7
|
}>;
|
|
8
|
-
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
|
2
|
+
export type CodeBidiWarningPluginOptions = {
|
|
3
3
|
appearance?: EditorAppearance;
|
|
4
4
|
};
|
|
5
5
|
export type CodeBidiWarningPlugin = NextEditorPlugin<'codeBidiWarning', {
|
|
6
|
-
pluginConfiguration:
|
|
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
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Code bidi warning plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/code": "^17.0.0",
|
|
35
|
-
"@atlaskit/editor-common": "^
|
|
35
|
+
"@atlaskit/editor-common": "^103.4.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",
|