@atlaskit/editor-plugin-guideline 6.0.3 → 6.0.4

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,13 @@
1
1
  # @atlaskit/editor-plugin-guideline
2
2
 
3
+ ## 6.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`55920a92e882a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55920a92e882a) -
8
+ tsignores added for help-center local consumpton removed
9
+ - Updated dependencies
10
+
3
11
  ## 6.0.3
4
12
 
5
13
  ### 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",
3
+ "version": "6.0.4",
4
4
  "description": "guideline plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -25,17 +25,16 @@
25
25
  "@atlaskit/editor-prosemirror": "7.0.0",
26
26
  "@atlaskit/editor-shared-styles": "^3.10.0",
27
27
  "@atlaskit/theme": "^21.0.0",
28
- "@atlaskit/tokens": "^8.3.0",
28
+ "@atlaskit/tokens": "^8.4.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.34.0",
33
+ "@atlaskit/editor-common": "^110.36.0",
34
34
  "react": "^18.2.0",
35
35
  "react-dom": "^18.2.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@af/visual-regression": "workspace:^",
39
38
  "@testing-library/react": "^13.4.0",
40
39
  "wait-for-expect": "^1.2.0"
41
40
  },