@fluid-topics/ft-file-drop 0.1.15 → 0.1.18
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/build/ft-file-drop.d.ts +2 -2
- package/build/ft-file-drop.inline-styles.js +568 -0
- package/build/ft-file-drop.js +84 -90
- package/build/ft-file-drop.light.js +290 -349
- package/build/ft-file-drop.min.js +324 -373
- package/build/index.d.ts +2 -0
- package/build/index.js +5 -0
- package/build/inline-styles.d.ts +2 -0
- package/build/inline-styles.js +4 -0
- package/package.json +6 -6
package/build/ft-file-drop.d.ts
CHANGED
|
@@ -23,14 +23,14 @@ export declare class FileDropEvent extends CustomEvent<{
|
|
|
23
23
|
}
|
|
24
24
|
export declare class FtFileDrop extends FtLitElement implements FtFileDropProperties {
|
|
25
25
|
static elementDefinitions: ElementDefinitionsMap;
|
|
26
|
-
|
|
26
|
+
static styles: import("lit").CSSResult;
|
|
27
27
|
dropHint: string;
|
|
28
28
|
accept: string;
|
|
29
29
|
fileTypeError: string;
|
|
30
30
|
visible: boolean;
|
|
31
31
|
private dragging;
|
|
32
32
|
private fileError;
|
|
33
|
-
protected
|
|
33
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
34
34
|
private onDragEnter;
|
|
35
35
|
private onDragOver;
|
|
36
36
|
private onDragLeave;
|