@atlaskit/editor-tables 2.6.1 → 2.6.2
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,11 @@
|
|
|
1
1
|
# @atlaskit/editor-tables
|
|
2
2
|
|
|
3
|
+
## 2.6.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#88717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88717) [`d92770eae702`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d92770eae702) - Adding internal eslint opt outs for a new rule `@atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop`.
|
|
8
|
+
|
|
3
9
|
## 2.6.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -209,6 +209,7 @@ function handleMouseDown(view, event, dragAndDropEnabled) {
|
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
view.root.addEventListener('mouseup', stop);
|
|
212
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
212
213
|
view.root.addEventListener('dragstart', stop);
|
|
213
214
|
view.root.addEventListener('mousemove', move);
|
|
214
215
|
return false;
|
|
@@ -208,6 +208,7 @@ export function handleMouseDown(view, event, dragAndDropEnabled) {
|
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
210
|
view.root.addEventListener('mouseup', stop);
|
|
211
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
211
212
|
view.root.addEventListener('dragstart', stop);
|
|
212
213
|
view.root.addEventListener('mousemove', move);
|
|
213
214
|
return false;
|
|
@@ -201,6 +201,7 @@ export function handleMouseDown(view, event, dragAndDropEnabled) {
|
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
view.root.addEventListener('mouseup', stop);
|
|
204
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
204
205
|
view.root.addEventListener('dragstart', stop);
|
|
205
206
|
view.root.addEventListener('mousemove', move);
|
|
206
207
|
return false;
|
package/package.json
CHANGED