Type Alias TJSScrollContainerData
TJSScrollContainerData : {
class?: SvelteComponent;
props?: object;
scrollTop?: Writable<number>;
styles?: {
[key: string]: string | null;
};
}
class?: SvelteComponent;
props?: object;
scrollTop?: Writable<number>;
styles?: {
[key: string]: string | null;
};
}
Type declaration
Optional
class?: SvelteComponentOptional
props?: objectAn object to apply to any data defined Svelte component when there is no slotted component defined.
Optional
scrollTop ?: Writable<number>A Svelte store that serializes the scroll top position of the scrollable container.
Optional
styles?: {
[key: string]: string | null;
}Inline styles to assign to the container.
[key: string]: string | null
A svelte component class used as the content component when there is no slotted component defined.