@hkdigital/lib-sveltekit 0.1.87 → 0.1.88
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.
@@ -154,7 +154,7 @@
|
|
154
154
|
// Check if this is a file drop
|
155
155
|
if (event.dataTransfer.types.includes('Files')) {
|
156
156
|
// Handle file drop - you can extend this based on your needs
|
157
|
-
console.log('File drop detected:', event.dataTransfer.files);
|
157
|
+
// console.log('File drop detected:', event.dataTransfer.files);
|
158
158
|
return null; // Return null to indicate this is not an internal drag
|
159
159
|
}
|
160
160
|
|
@@ -280,7 +280,7 @@
|
|
280
280
|
if (event.dataTransfer.types.includes('Files')) {
|
281
281
|
// Handle file drops
|
282
282
|
const files = Array.from(event.dataTransfer.files);
|
283
|
-
console.log('Files dropped:', files);
|
283
|
+
// console.log('Files dropped:', files);
|
284
284
|
|
285
285
|
// You can add custom file handling here
|
286
286
|
// For now, just reset state and return
|