@fluid-topics/ft-file-drop 1.1.40 → 1.1.42

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- A container that accepts dropping files.
1
+ A container in which users can drop files to upload.
2
2
 
3
3
  ## Install
4
4
 
@@ -10,7 +10,7 @@ import { FtLitElement } from "@fluid-topics/ft-wc-utils";
10
10
  import { classMap } from "lit/directives/class-map.js";
11
11
  import { matchAccept } from "./match-accept";
12
12
  import { FtChip } from "@fluid-topics/ft-chip";
13
- import { styles } from "./ft-file-drop.css";
13
+ import { styles } from "./ft-file-drop.styles";
14
14
  export class FileDropEvent extends CustomEvent {
15
15
  constructor(file) {
16
16
  super("file-drop", { detail: { file } });