Type Alias TJSScrollContainerData
TJSScrollContainerData: {
class?: SvelteComponent;
props?: object;
scrollTop?: Writable<number>;
styles?: { [key: string]: string };
}
class?: SvelteComponent;
props?: object;
scrollTop?: Writable<number>;
styles?: { [key: string]: string };
}
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 }Inline styles to assign to the container.
A svelte component class used as the content component when there is no slotted component defined.