@fluid-topics/ft-file-button 0.1.17 → 0.2.1
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-button.d.ts +4 -2
- package/build/ft-file-button.inline-styles.js +642 -0
- package/build/ft-file-button.js +11 -9
- package/build/ft-file-button.light.js +274 -321
- package/build/ft-file-button.min.js +313 -349
- 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
|
@@ -14,15 +14,17 @@ export declare class FileChangeEvent extends CustomEvent<{
|
|
|
14
14
|
}
|
|
15
15
|
export declare class FtFileButton extends FtLitElement implements FtFileButtonProperties {
|
|
16
16
|
static elementDefinitions: ElementDefinitionsMap;
|
|
17
|
-
|
|
17
|
+
static get styles(): import("lit").CSSResult;
|
|
18
18
|
disabled: boolean;
|
|
19
19
|
label: string;
|
|
20
20
|
icon?: string;
|
|
21
21
|
trailingIcon: boolean;
|
|
22
22
|
accept: string;
|
|
23
23
|
private input;
|
|
24
|
-
|
|
24
|
+
private button;
|
|
25
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
25
26
|
private onFileChange;
|
|
27
|
+
focus(): void;
|
|
26
28
|
clear(): void;
|
|
27
29
|
}
|
|
28
30
|
//# sourceMappingURL=ft-file-button.d.ts.map
|