Class EmptyApplicationShell
Hierarchy
- SvelteComponent<
EmptyApplicationShell.Props,
EmptyApplicationShell.Events,
EmptyApplicationShell.Slots,
>- EmptyApplicationShell (View Summary)
Indexable
- [prop: string]: any
Constructors
constructor
- new EmptyApplicationShell(
options: ComponentConstructorOptions<EmptyApplicationShell.Props>,
): EmptyApplicationShellParameters
Returns EmptyApplicationShell
Accessors
appOffsetHeight
- get appOffsetHeight(): boolean
Getter for appOffsetHeight prop.
Returns boolean
- set appOffsetHeight(_: boolean): void
appOffsetWidth
- get appOffsetWidth(): boolean
Getter for appOffsetWidth prop.
Returns boolean
- set appOffsetWidth(_: boolean): void
contentHeight
- get contentHeight(): boolean
Getter for contentHeight prop.
Returns boolean
- set contentHeight(_: boolean): void
contentOffsetHeight
- get contentOffsetHeight(): boolean
Getter for contentOffsetHeight prop.
Returns boolean
- set contentOffsetHeight(_: boolean): void
contentOffsetWidth
- get contentOffsetWidth(): boolean
Getter for contentOffsetWidth prop.
Returns boolean
- set contentOffsetWidth(_: boolean): void
contentWidth
- get contentWidth(): boolean
Getter for contentWidth prop.
Returns boolean
- set contentWidth(_: boolean): void
elementContent
Getter for elementContent prop.
Returns HTMLElement
elementRoot
Getter for elementRoot prop.
Returns HTMLElement
inTransition
- get inTransition(): () => undefined
Getter for inTransition prop.
Returns () => undefined
- set inTransition(_: () => undefined): void
inTransitionOptions
- get inTransitionOptions(): {}
Getter for inTransitionOptions prop.
Returns {}
- set inTransitionOptions(_: {}): void
outTransition
- get outTransition(): () => undefined
Getter for outTransition prop.
Returns () => undefined
- set outTransition(_: () => undefined): void
outTransitionOptions
- get outTransitionOptions(): {}
Getter for outTransitionOptions prop.
Returns {}
- set outTransitionOptions(_: {}): void
stylesApp
- get stylesApp(): any
Getter for stylesApp prop.
Returns any
- set stylesApp(_: any): void
transition
- get transition(): () => undefined
Getter for transition prop.
Returns () => undefined
- set transition(_: () => undefined): void
transitionOptions
- get transitionOptions(): any
Getter for transitionOptions prop.
Returns any
- set transitionOptions(_: any): void
Methods
$destroy
Returns void
$on
Type Parameters
- K extends string
Parameters
- type: K
- callback: (e: CustomEvent<any>) => void
Returns () => void
Provides an empty application shell as a main top level slotted component.
Container queries (
inline-size
) are supported forwidth
queries. The main app window container is namedtjs-app-window
and the window content container istjs-app-content
. Take note that the width available is the inline-size width of the app window or content minus the border constraints. Container queries will be disabled if thewidth
app option isauto
or not an explicit constraint. Just a precautionary warning that If you setwidth
toauto
during runtime unexpected behavior or a collapse of the app window will occur which is to be expected.