Class TJSFileIconButton
Hierarchy
- SvelteComponent<
{
button?: object;
pickerOptions?: FVTTFilePickerBrowseOptions;
urlString?: string;
[x: string]: any;
},
{ "filepicker:urlString": CustomEvent<any> } & {
[evt: string]: CustomEvent<any>;
},
{},
>- TJSFileIconButton (View Summary)
Indexable
-
[prop: string]: any
Constructors
constructor
-
new TJSFileIconButton(
options: ComponentConstructorOptions<
{
button?: object;
pickerOptions?: FVTTFilePickerBrowseOptions;
urlString?: string;
[x: string]: any;
},
>,
): TJSFileIconButtonParameters
- options: ComponentConstructorOptions<
{
button?: object;
pickerOptions?: FVTTFilePickerBrowseOptions;
urlString?: string;
[x: string]: any;
},
>
Returns TJSFileIconButton
- options: ComponentConstructorOptions<
Methods
$destroy
-
Returns void
$on
-
$on<K extends string>(
type: K,
callback: (
e: (
{ "filepicker:urlString": CustomEvent<any> } & {
[evt: string]: CustomEvent<any>;
}
)[K],
) => void,
): () => voidType Parameters
- K extends string
Parameters
- type: K
- callback: (
e: (
{ "filepicker:urlString": CustomEvent<any> } & {
[evt: string]: CustomEvent<any>;
}
)[K],
) => void
Returns () => void
Provides a pre-configured icon button interfacing w/ the Foundry file picker.
Please see FVTTFilePickerBrowseOptions for the
pickerOptionsprop. Please see TJSIconButton for the button component / CSS variable support.This component provides one way binding by default. You may explicitly bind to the
urlStringprop to create a two-way binding.