@atlaskit/editor-plugin-guideline 6.0.3 → 6.0.5
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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-guideline
|
|
2
2
|
|
|
3
|
+
## 6.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 6.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`55920a92e882a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55920a92e882a) -
|
|
14
|
+
tsignores added for help-center local consumpton removed
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.0.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -44,11 +44,9 @@ var EMPTY_STATE = exports.EMPTY_STATE = {
|
|
|
44
44
|
var guidelinePMPlugin = new _safePlugin.SafePlugin({
|
|
45
45
|
key: key,
|
|
46
46
|
state: {
|
|
47
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
48
47
|
init: function init() {
|
|
49
48
|
return EMPTY_STATE;
|
|
50
49
|
},
|
|
51
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
52
50
|
apply: function apply(tr, currentPluginState) {
|
|
53
51
|
var nextPluginState = tr.getMeta(key);
|
|
54
52
|
if (nextPluginState) {
|
|
@@ -36,13 +36,9 @@ export const EMPTY_STATE = {
|
|
|
36
36
|
const guidelinePMPlugin = new SafePlugin({
|
|
37
37
|
key,
|
|
38
38
|
state: {
|
|
39
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
40
|
-
|
|
41
39
|
init() {
|
|
42
40
|
return EMPTY_STATE;
|
|
43
41
|
},
|
|
44
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
45
|
-
|
|
46
42
|
apply(tr, currentPluginState) {
|
|
47
43
|
const nextPluginState = tr.getMeta(key);
|
|
48
44
|
if (nextPluginState) {
|
|
@@ -39,11 +39,9 @@ export var EMPTY_STATE = {
|
|
|
39
39
|
var guidelinePMPlugin = new SafePlugin({
|
|
40
40
|
key: key,
|
|
41
41
|
state: {
|
|
42
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
43
42
|
init: function init() {
|
|
44
43
|
return EMPTY_STATE;
|
|
45
44
|
},
|
|
46
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
47
45
|
apply: function apply(tr, currentPluginState) {
|
|
48
46
|
var nextPluginState = tr.getMeta(key);
|
|
49
47
|
if (nextPluginState) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-guideline",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.5",
|
|
4
4
|
"description": "guideline plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,21 +22,20 @@
|
|
|
22
22
|
"atlaskit:src": "src/index.ts",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@atlaskit/editor-plugin-width": "^7.0.0",
|
|
25
|
-
"@atlaskit/editor-prosemirror": "7.
|
|
25
|
+
"@atlaskit/editor-prosemirror": "^7.2.0",
|
|
26
26
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
27
27
|
"@atlaskit/theme": "^21.0.0",
|
|
28
|
-
"@atlaskit/tokens": "^
|
|
28
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
29
29
|
"@babel/runtime": "^7.0.0",
|
|
30
30
|
"@emotion/react": "^11.7.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@atlaskit/editor-common": "^110.
|
|
33
|
+
"@atlaskit/editor-common": "^110.46.0",
|
|
34
34
|
"react": "^18.2.0",
|
|
35
35
|
"react-dom": "^18.2.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"@testing-library/react": "^13.4.0",
|
|
38
|
+
"@testing-library/react": "^16.3.0",
|
|
40
39
|
"wait-for-expect": "^1.2.0"
|
|
41
40
|
},
|
|
42
41
|
"techstack": {
|