@industry-theme/xterm-terminal-panel 0.5.8 → 0.5.9

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1206,7 +1206,7 @@ var TabButton = ({
1206
1206
  }, [canAcceptDrop]);
1207
1207
  const handleDrop = useCallback2((e) => {
1208
1208
  e.preventDefault();
1209
- const draggedTabId = e.dataTransfer.getData("text/plain");
1209
+ const draggedTabId = e.dataTransfer.getData("application/x-tab-association");
1210
1210
  if (draggedTabId && draggedTabId !== tab.id) {
1211
1211
  onDrop?.(draggedTabId);
1212
1212
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@industry-theme/xterm-terminal-panel",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "Industry-themed xterm.js terminal components with panel framework integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",