@atlaskit/editor-plugin-code-bidi-warning 15.0.4 → 16.0.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,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-code-bidi-warning
|
|
2
2
|
|
|
3
|
+
## 16.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 15.0.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`656801b9e097c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/656801b9e097c) -
|
|
14
|
+
VOLTC-331 - Migrate updated package usage in platform/editor: rewrite barrel imports of
|
|
15
|
+
voltCompliant provider packages to deep/subpath imports (consumer-side debarrel). No public API
|
|
16
|
+
changes.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 15.0.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -9,8 +9,8 @@ exports.pluginFactoryCreator = void 0;
|
|
|
9
9
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
10
10
|
var _react = _interopRequireDefault(require("react"));
|
|
11
11
|
var _v = _interopRequireDefault(require("uuid/v4"));
|
|
12
|
-
var
|
|
13
|
-
var _bidiWarningDecorator = _interopRequireDefault(require("@atlaskit/code/bidi-warning-decorator"));
|
|
12
|
+
var _bidiWarningUi = _interopRequireDefault(require("@atlaskit/code/bidi-warning-ui"));
|
|
13
|
+
var _bidiWarningDecorator = _interopRequireDefault(require("@atlaskit/code/bidi-warning/bidi-warning-decorator"));
|
|
14
14
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
15
15
|
var _view = require("@atlaskit/editor-prosemirror/view");
|
|
16
16
|
var _pluginKey = require("./plugin-key");
|
|
@@ -118,7 +118,7 @@ function renderDOM(_ref5) {
|
|
|
118
118
|
renderKey = _ref5.renderKey;
|
|
119
119
|
var element = document.createElement('span');
|
|
120
120
|
nodeViewPortalProviderAPI.render(function () {
|
|
121
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
121
|
+
return /*#__PURE__*/_react.default.createElement(_bidiWarningUi.default, {
|
|
122
122
|
bidiCharacter: bidiCharacter,
|
|
123
123
|
skipChildren: true,
|
|
124
124
|
label: codeBidiWarningLabel,
|
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
|
|
3
3
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
4
4
|
import uuid from 'uuid/v4';
|
|
5
|
-
import CodeBidiWarning from '@atlaskit/code/bidi-warning';
|
|
6
|
-
import codeBidiWarningDecorator from '@atlaskit/code/bidi-warning-decorator';
|
|
5
|
+
import CodeBidiWarning from '@atlaskit/code/bidi-warning-ui';
|
|
6
|
+
import codeBidiWarningDecorator from '@atlaskit/code/bidi-warning/bidi-warning-decorator';
|
|
7
7
|
import { pluginFactory, stepHasSlice } from '@atlaskit/editor-common/utils';
|
|
8
8
|
import { Decoration, DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
9
9
|
import { codeBidiWarningPluginKey } from './plugin-key';
|
|
@@ -5,8 +5,8 @@ import React from 'react';
|
|
|
5
5
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
7
7
|
import uuid from 'uuid/v4';
|
|
8
|
-
import CodeBidiWarning from '@atlaskit/code/bidi-warning';
|
|
9
|
-
import codeBidiWarningDecorator from '@atlaskit/code/bidi-warning-decorator';
|
|
8
|
+
import CodeBidiWarning from '@atlaskit/code/bidi-warning-ui';
|
|
9
|
+
import codeBidiWarningDecorator from '@atlaskit/code/bidi-warning/bidi-warning-decorator';
|
|
10
10
|
import { pluginFactory, stepHasSlice } from '@atlaskit/editor-common/utils';
|
|
11
11
|
import { Decoration, DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
12
12
|
import { codeBidiWarningPluginKey } from './plugin-key';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-code-bidi-warning",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.0",
|
|
4
4
|
"description": "Code bidi warning plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"atlaskit:src": "src/index.ts",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@atlaskit/code": "^19.
|
|
23
|
-
"@atlaskit/editor-plugin-limited-mode": "^
|
|
22
|
+
"@atlaskit/code": "^19.1.0",
|
|
23
|
+
"@atlaskit/editor-plugin-limited-mode": "^13.0.0",
|
|
24
24
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
25
25
|
"@atlaskit/platform-feature-flags": "^2.1.0",
|
|
26
26
|
"@babel/runtime": "^7.0.0",
|
|
27
27
|
"uuid": "^3.1.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@atlaskit/editor-common": "^
|
|
30
|
+
"@atlaskit/editor-common": "^120.0.0",
|
|
31
31
|
"react": "^18.2.0 || ^19.2.0",
|
|
32
32
|
"react-dom": "^18.2.0 || ^19.2.0"
|
|
33
33
|
},
|