Sidebar api

Overview
API
Theme
Examples

NbSidebarComponent

Inputs

NameTypeDescription
collapsedBreakpointsstring[]

Controls on which screen sizes sidebar should be switched to collapsed state. Works only when responsive mode is on. Default values are ['xs', 'is'].

compactedBreakpointsstring[]

Controls on which screen sizes sidebar should be switched to compacted state. Works only when responsive mode is on. Default values are ['xs', 'is', 'sm', 'md', 'lg'].

tagstring

Tags a sidebar with some ID, can be later used in the sidebar service to determine which sidebar triggered the action, if multiple sidebars exist on the page.

containerFixedboolean

Makes sidebar container fixed

endboolean

Places sidebar on the end edge of layout

fixedboolean

Makes sidebar fixed (shown above the layout content)

leftboolean

Places sidebar on the left side

responsiveboolean

Makes sidebar listen to media query events and change its behaviour

rightboolean

Places sidebar on the right side

startboolean

Places sidebar on the start edge of layout

statestring

Initial sidebar state, expanded|collapsed|compacted

Outputs

NameTypeDescription
responsiveStateChangeEventEmitter<undefined>

Emits whenever sidebar responsive state change.

stateChangeEventEmitter<undefined>

Emits whenever sidebar state change.

Properties

NameTypeDescription
RESPONSIVE_STATE_MOBILEstring
RESPONSIVE_STATE_PCstring
RESPONSIVE_STATE_TABLETstring
STATE_COLLAPSEDstring
STATE_COMPACTEDstring
STATE_EXPANDEDstring

Methods

NameDescription
collapse()
returns:void

Collapses the sidebar

compact()
returns:void

Compacts the sidebar (minimizes)

expand()
returns:void

Expands the sidebar

toggle()
parameters: compact: boolean
returns:void

Toggles sidebar state (expanded|collapsed|compacted)

NbSidebarService

Methods

NameDescription
collapse()
parameters: tag: string
returns:void

Collapses a sidebar

compact()
parameters: tag: string
returns:void

Makes sidebar compact

expand()
parameters: tag: string
returns:void

Expands a sidebar

getSidebarResponsiveState()
parameters: tag: string
returns:Observable<NbSidebarResponsiveState>

Returns sidebar state observable which emits once

getSidebarState()
parameters: tag: string
returns:Observable<NbSidebarState>

Returns sidebar state observable which emits once

onCollapse()
returns:Observable<{ tag: string }>

Subscribe to collapse evens

onCompact()
returns:Observable<{ tag: string }>

Subscribe to compact evens

onExpand()
returns:Observable<{ tag: string }>

Subscribe to expand events

onToggle()
returns:Observable<{ compact: boolean, tag: string }>

Subscribe to toggle events

toggle()
parameters: compact: boolean, tag: string
returns:void

Toggle a sidebar

Infinite List
Previous page
Menu
Next page

Need some help or found an issue?

Ask on Stack Overflow with tag `nebular` or post an issue on GitHub.