@atlaskit/editor-plugin-collab-edit 4.1.2 → 4.1.3

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,14 @@
1
1
  # @atlaskit/editor-plugin-collab-edit
2
2
 
3
+ ## 4.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#195649](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/195649)
8
+ [`231bb33e06dfe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/231bb33e06dfe) -
9
+ EDITOR-1131 Bump adf-schema version to 50.2.0
10
+ - Updated dependencies
11
+
3
12
  ## 4.1.2
4
13
 
5
14
  ### Patch Changes
@@ -81,12 +81,14 @@ var createTelepointers = exports.createTelepointers = function createTelepointer
81
81
  fullNameEl.textContent = fullName;
82
82
  fullNameEl.className = 'telepointer-fullname';
83
83
  fullNameEl.style.backgroundColor = avatarColor.backgroundColor;
84
+ fullNameEl.style.color = avatarColor.textColor;
84
85
  fullNameEl.setAttribute('aria-hidden', 'true');
85
86
  cursor.appendChild(fullNameEl);
86
87
  var initialEl = document.createElement('span');
87
88
  initialEl.textContent = initial;
88
89
  initialEl.className = 'telepointer-initial';
89
90
  initialEl.style.backgroundColor = avatarColor.backgroundColor;
91
+ initialEl.style.color = avatarColor.textColor;
90
92
  initialEl.setAttribute('aria-hidden', 'true');
91
93
  cursor.appendChild(initialEl);
92
94
  }
@@ -63,12 +63,14 @@ export const createTelepointers = (from, to, sessionId, isSelection, initial, pr
63
63
  fullNameEl.textContent = fullName;
64
64
  fullNameEl.className = 'telepointer-fullname';
65
65
  fullNameEl.style.backgroundColor = avatarColor.backgroundColor;
66
+ fullNameEl.style.color = avatarColor.textColor;
66
67
  fullNameEl.setAttribute('aria-hidden', 'true');
67
68
  cursor.appendChild(fullNameEl);
68
69
  const initialEl = document.createElement('span');
69
70
  initialEl.textContent = initial;
70
71
  initialEl.className = 'telepointer-initial';
71
72
  initialEl.style.backgroundColor = avatarColor.backgroundColor;
73
+ initialEl.style.color = avatarColor.textColor;
72
74
  initialEl.setAttribute('aria-hidden', 'true');
73
75
  cursor.appendChild(initialEl);
74
76
  }
@@ -72,12 +72,14 @@ export var createTelepointers = function createTelepointers(from, to, sessionId,
72
72
  fullNameEl.textContent = fullName;
73
73
  fullNameEl.className = 'telepointer-fullname';
74
74
  fullNameEl.style.backgroundColor = avatarColor.backgroundColor;
75
+ fullNameEl.style.color = avatarColor.textColor;
75
76
  fullNameEl.setAttribute('aria-hidden', 'true');
76
77
  cursor.appendChild(fullNameEl);
77
78
  var initialEl = document.createElement('span');
78
79
  initialEl.textContent = initial;
79
80
  initialEl.className = 'telepointer-initial';
80
81
  initialEl.style.backgroundColor = avatarColor.backgroundColor;
82
+ initialEl.style.color = avatarColor.textColor;
81
83
  initialEl.setAttribute('aria-hidden', 'true');
82
84
  cursor.appendChild(initialEl);
83
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-collab-edit",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "Collab Edit plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,9 +30,9 @@
30
30
  ".": "./src/index.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@atlaskit/adf-schema": "^50.0.1",
33
+ "@atlaskit/adf-schema": "^50.2.0",
34
34
  "@atlaskit/custom-steps": "^0.11.0",
35
- "@atlaskit/editor-json-transformer": "^8.24.0",
35
+ "@atlaskit/editor-json-transformer": "^8.25.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^3.0.0",
37
37
  "@atlaskit/editor-plugin-connectivity": "^3.1.0",
38
38
  "@atlaskit/editor-plugin-editor-viewmode": "^5.0.0",
@@ -42,12 +42,12 @@
42
42
  "@atlaskit/frontend-utilities": "^3.1.0",
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/prosemirror-collab": "^0.17.0",
45
- "@atlaskit/tmp-editor-statsig": "^9.17.0",
45
+ "@atlaskit/tmp-editor-statsig": "^9.22.0",
46
46
  "@babel/runtime": "^7.0.0",
47
47
  "memoize-one": "^6.0.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "@atlaskit/editor-common": "^107.12.0",
50
+ "@atlaskit/editor-common": "^107.16.0",
51
51
  "react": "^18.2.0",
52
52
  "react-dom": "^18.2.0"
53
53
  },