@atlaskit/editor-plugin-collab-edit 9.0.10 → 9.0.12

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-collab-edit
2
2
 
3
+ ## 9.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [`5892e575833a1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5892e575833a1) -
8
+ Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme`
9
+ - Updated dependencies
10
+
11
+ ## 9.0.11
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 9.0.10
4
18
 
5
19
  ### Patch Changes
@@ -23,7 +23,7 @@ var findPointers = exports.findPointers = function findPointers(id, decorations)
23
23
  }, []);
24
24
  };
25
25
  function style(options) {
26
- var color = options && options.color || "var(--ds-border, black)";
26
+ var color = options && options.color || "var(--ds-border, #0B120E24)";
27
27
  var borderWidth = "var(--ds-border-width-focused, 2px)";
28
28
  return "border-right: ".concat(borderWidth, " solid ").concat(color, "; margin-right: calc(-1 * ").concat(borderWidth, "); z-index: 1");
29
29
  }
@@ -9,7 +9,7 @@ import { Decoration } from '@atlaskit/editor-prosemirror/view';
9
9
  import { getParticipantColor } from '@atlaskit/editor-shared-styles';
10
10
  export const findPointers = (id, decorations) => decorations.find().reduce((arr, deco) => deco.spec.pointer.presenceId === id ? arr.concat(deco) : arr, []);
11
11
  function style(options) {
12
- const color = options && options.color || "var(--ds-border, black)";
12
+ const color = options && options.color || "var(--ds-border, #0B120E24)";
13
13
  const borderWidth = "var(--ds-border-width-focused, 2px)";
14
14
  return `border-right: ${borderWidth} solid ${color}; margin-right: calc(-1 * ${borderWidth}); z-index: 1`;
15
15
  }
@@ -14,7 +14,7 @@ export var findPointers = function findPointers(id, decorations) {
14
14
  }, []);
15
15
  };
16
16
  function style(options) {
17
- var color = options && options.color || "var(--ds-border, black)";
17
+ var color = options && options.color || "var(--ds-border, #0B120E24)";
18
18
  var borderWidth = "var(--ds-border-width-focused, 2px)";
19
19
  return "border-right: ".concat(borderWidth, " solid ").concat(color, "; margin-right: calc(-1 * ").concat(borderWidth, "); z-index: 1");
20
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-collab-edit",
3
- "version": "9.0.10",
3
+ "version": "9.0.12",
4
4
  "description": "Collab Edit plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,13 +39,13 @@
39
39
  "@atlaskit/frontend-utilities": "^3.2.0",
40
40
  "@atlaskit/platform-feature-flags": "^1.1.0",
41
41
  "@atlaskit/prosemirror-collab": "^0.22.0",
42
- "@atlaskit/tmp-editor-statsig": "^45.0.0",
43
- "@atlaskit/tokens": "^11.1.0",
42
+ "@atlaskit/tmp-editor-statsig": "^46.1.0",
43
+ "@atlaskit/tokens": "^11.2.0",
44
44
  "@babel/runtime": "^7.0.0",
45
45
  "memoize-one": "^6.0.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "@atlaskit/editor-common": "^112.8.0",
48
+ "@atlaskit/editor-common": "^112.10.0",
49
49
  "react": "^18.2.0",
50
50
  "react-dom": "^18.2.0"
51
51
  },