Documentation Index
Fetch the complete documentation index at: https://docs.velt.dev/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Notifications Primitives API provides granular components that can be used independently to build fully custom notification tool and panel interfaces. All primitives share a common set of inputs documented below; list-type primitives additionally support template forwarding via slot attributes ([listItemTemplate], [itemTemplate], [triggerTemplate]).
All Notifications primitive components accept the following inputs. See NotificationsPrimitiveCommonProps for the full type definition.
| React Prop | HTML Attribute | Type | Default | Description |
|---|
variant | variant | string | — | Visual variant for the component. |
darkMode | dark-mode | boolean | false | Enables dark mode rendering. |
shadowDom | shadow-dom | boolean | false | Renders the component inside a Shadow DOM. |
parentLocalUIState | parent-local-ui-state | object | — | Local UI state passed down from a parent primitive. |
Components
Icon displayed in the notifications tool trigger button.
React / Next.js
Other Frameworks
<VeltNotificationsToolIcon />
Props: Common inputs only (see Common Inputs section).<velt-notifications-tool-icon></velt-notifications-tool-icon>
Attributes: Common attributes only (see Common Inputs section).
Icon shown in the notifications tool trigger when there are unread notifications.
React / Next.js
Other Frameworks
<VeltNotificationsToolUnreadIcon />
Props: Common inputs only (see Common Inputs section).<velt-notifications-tool-unread-icon></velt-notifications-tool-unread-icon>
Attributes: Common attributes only (see Common Inputs section).
Text label displayed in the notifications tool trigger button.
React / Next.js
Other Frameworks
<VeltNotificationsToolLabel />
Props: Common inputs only (see Common Inputs section).<velt-notifications-tool-label></velt-notifications-tool-label>
Attributes: Common attributes only (see Common Inputs section).
Badge showing the count of unread notifications on the tool trigger.
React / Next.js
Other Frameworks
<VeltNotificationsToolUnreadCount />
Props: Common inputs only (see Common Inputs section).<velt-notifications-tool-unread-count></velt-notifications-tool-unread-count>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelTitle
Title container at the top of the notifications panel.
React / Next.js
Other Frameworks
<VeltNotificationsPanelTitle />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-title></velt-notifications-panel-title>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelTitleText
Text displayed inside the notifications panel title.
React / Next.js
Other Frameworks
<VeltNotificationsPanelTitleText />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-title-text></velt-notifications-panel-title-text>
Attributes: Common attributes only (see Common Inputs section).
Header bar of the notifications panel containing tabs and action buttons.
React / Next.js
Other Frameworks
<VeltNotificationsPanelHeader />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-header></velt-notifications-panel-header>
Attributes: Common attributes only (see Common Inputs section).
Tab in the panel header that filters notifications addressed to the current user.
React / Next.js
Other Frameworks
<VeltNotificationsPanelHeaderTabForYou />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-header-tab-for-you></velt-notifications-panel-header-tab-for-you>
Attributes: Common attributes only (see Common Inputs section).
Tab in the panel header that groups notifications by people.
React / Next.js
Other Frameworks
<VeltNotificationsPanelHeaderTabPeople />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-header-tab-people></velt-notifications-panel-header-tab-people>
Attributes: Common attributes only (see Common Inputs section).
Tab in the panel header that groups notifications by document.
React / Next.js
Other Frameworks
<VeltNotificationsPanelHeaderTabDocuments />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-header-tab-documents></velt-notifications-panel-header-tab-documents>
Attributes: Common attributes only (see Common Inputs section).
Tab in the panel header that shows all notifications.
React / Next.js
Other Frameworks
<VeltNotificationsPanelHeaderTabAll />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-header-tab-all></velt-notifications-panel-header-tab-all>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContent
Main content area of the notifications panel that renders the active tab’s view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContent />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content></velt-notifications-panel-content>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentForYou
Content view for the “For You” tab listing notifications directed at the current user.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentForYou />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-for-you></velt-notifications-panel-content-for-you>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentAll
Content view for the “All” tab showing every notification.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAll />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-all></velt-notifications-panel-content-all>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentAllList
Scrollable list of all notifications inside the “All” content view. Forwards [listItemTemplate] to each VeltNotificationsPanelContentAllListItem rendered inside it.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAllList />
Props: Common inputs (see Common Inputs section) plus:| Prop | Type | Description |
|---|
listItemTemplate | TemplateRef | Custom template forwarded to each list item child. |
<velt-notifications-panel-content-all-list></velt-notifications-panel-content-all-list>
Attributes: Common attributes (see Common Inputs section) plus:| Attribute | Type | Description |
|---|
list-item-template | TemplateRef | Custom template forwarded to each list item child. |
VeltNotificationsPanelContentAllListItem
A single notification row inside the “All” list. Supports [listItemTemplate] for custom row templates.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAllListItem />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-all-list-item></velt-notifications-panel-content-all-list-item>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentAllListItemLabel
Label displayed on a notification row in the “All” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAllListItemLabel />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-all-list-item-label></velt-notifications-panel-content-all-list-item-label>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentAllListItemContent
Content body of a single notification row in the “All” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAllListItemContent />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-all-list-item-content></velt-notifications-panel-content-all-list-item-content>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentAllReadContainer
Container that groups already-read notifications in the “All” view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentAllReadContainer />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-all-read-container></velt-notifications-panel-content-all-read-container>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeople
Content view for the “People” tab grouping notifications by sender.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeople />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people></velt-notifications-panel-content-people>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeopleList
Scrollable list of people groups inside the “People” content view. Forwards [listItemTemplate] to each VeltNotificationsPanelContentPeopleListItem rendered inside it.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleList />
Props: Common inputs (see Common Inputs section) plus:| Prop | Type | Description |
|---|
listItemTemplate | TemplateRef | Custom template forwarded to each list item child. |
<velt-notifications-panel-content-people-list></velt-notifications-panel-content-people-list>
Attributes: Common attributes (see Common Inputs section) plus:| Attribute | Type | Description |
|---|
list-item-template | TemplateRef | Custom template forwarded to each list item child. |
VeltNotificationsPanelContentPeopleListItem
A single person group row in the “People” list. Supports [listItemTemplate] for custom row templates.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleListItem />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people-list-item></velt-notifications-panel-content-people-list-item>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeopleListItemAvatar
Avatar image for a person in the “People” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleListItemAvatar />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people-list-item-avatar></velt-notifications-panel-content-people-list-item-avatar>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeopleListItemName
Display name for a person in the “People” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleListItemName />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people-list-item-name></velt-notifications-panel-content-people-list-item-name>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeopleListItemCount
Unread notification count badge for a person in the “People” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleListItemCount />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people-list-item-count></velt-notifications-panel-content-people-list-item-count>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentPeopleListItemContent
Expanded notification content displayed under a person row in the “People” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentPeopleListItemContent />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-people-list-item-content></velt-notifications-panel-content-people-list-item-content>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocuments
Content view for the “Documents” tab grouping notifications by document.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocuments />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents></velt-notifications-panel-content-documents>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocumentsList
Scrollable list of document groups inside the “Documents” content view. Forwards [listItemTemplate] to each VeltNotificationsPanelContentDocumentsListItem rendered inside it.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsList />
Props: Common inputs (see Common Inputs section) plus:| Prop | Type | Description |
|---|
listItemTemplate | TemplateRef | Custom template forwarded to each list item child. |
<velt-notifications-panel-content-documents-list></velt-notifications-panel-content-documents-list>
Attributes: Common attributes (see Common Inputs section) plus:| Attribute | Type | Description |
|---|
list-item-template | TemplateRef | Custom template forwarded to each list item child. |
VeltNotificationsPanelContentDocumentsListItem
A single document group row in the “Documents” list. Supports [listItemTemplate] for custom row templates.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsListItem />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents-list-item></velt-notifications-panel-content-documents-list-item>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocumentsListItemName
Document name displayed in a “Documents” list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsListItemName />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents-list-item-name></velt-notifications-panel-content-documents-list-item-name>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocumentsListItemCount
Unread notification count badge for a document in the “Documents” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsListItemCount />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents-list-item-count></velt-notifications-panel-content-documents-list-item-count>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocumentsListItemContent
Expanded notification content displayed under a document row in the “Documents” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsListItemContent />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents-list-item-content></velt-notifications-panel-content-documents-list-item-content>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentDocumentsListItemUnread
Unread indicator shown on a document row in the “Documents” list.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentDocumentsListItemUnread />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-documents-list-item-unread></velt-notifications-panel-content-documents-list-item-unread>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentList
Generic scrollable notification list used across multiple tab views. Forwards [listItemTemplate] to each VeltNotificationsPanelContentListItem rendered inside it.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentList />
Props: Common inputs (see Common Inputs section) plus:| Prop | Type | Description |
|---|
listItemTemplate | TemplateRef | Custom template forwarded to each list item child. |
<velt-notifications-panel-content-list></velt-notifications-panel-content-list>
Attributes: Common attributes (see Common Inputs section) plus:| Attribute | Type | Description |
|---|
list-item-template | TemplateRef | Custom template forwarded to each list item child. |
VeltNotificationsPanelContentListItem
A single row in the generic notification list. Supports [listItemTemplate] for custom row templates.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItem />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item></velt-notifications-panel-content-list-item>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemAvatar
User avatar displayed on a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemAvatar />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-avatar></velt-notifications-panel-content-list-item-avatar>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemUnread
Unread dot indicator on a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemUnread />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-unread></velt-notifications-panel-content-list-item-unread>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemHeadline
Primary headline text of a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemHeadline />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-headline></velt-notifications-panel-content-list-item-headline>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemBody
Body text beneath the headline on a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemBody />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-body></velt-notifications-panel-content-list-item-body>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemFileName
File or document name displayed on a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemFileName />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-file-name></velt-notifications-panel-content-list-item-file-name>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentListItemTime
Relative or absolute timestamp on a notification list row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentListItemTime />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-list-item-time></velt-notifications-panel-content-list-item-time>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelContentLoadMore
Button to load additional notifications beyond the initial set.
React / Next.js
Other Frameworks
<VeltNotificationsPanelContentLoadMore />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-content-load-more></velt-notifications-panel-content-load-more>
Attributes: Common attributes only (see Common Inputs section).
Button that closes the notifications panel.
React / Next.js
Other Frameworks
<VeltNotificationsPanelCloseButton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-close-button></velt-notifications-panel-close-button>
Attributes: Common attributes only (see Common Inputs section).
Button that marks all notifications as read.
React / Next.js
Other Frameworks
<VeltNotificationsPanelReadAllButton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-read-all-button></velt-notifications-panel-read-all-button>
Attributes: Common attributes only (see Common Inputs section).
Button that navigates to a full notifications view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelViewAllButton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-view-all-button></velt-notifications-panel-view-all-button>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSkeleton
Loading skeleton displayed while notification data is being fetched.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSkeleton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-skeleton></velt-notifications-panel-skeleton>
Attributes: Common attributes only (see Common Inputs section).
Button that opens the notifications settings panel.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsButton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-button></velt-notifications-panel-settings-button>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettings
Container for the notifications settings view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettings />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings></velt-notifications-panel-settings>
Attributes: Common attributes only (see Common Inputs section).
Header bar of the notifications settings view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsHeader />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-header></velt-notifications-panel-settings-header>
Attributes: Common attributes only (see Common Inputs section).
Title text displayed in the notifications settings header.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsHeaderTitle />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-header-title></velt-notifications-panel-settings-header-title>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsTitle
Section title within the notifications settings view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsTitle />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-title></velt-notifications-panel-settings-title>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsDescription
Descriptive text for a settings section.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsDescription />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-description></velt-notifications-panel-settings-description>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsList
List container for notification settings items.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsList />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-list></velt-notifications-panel-settings-list>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsMuteAllTitle
Title label for the mute-all notifications toggle row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsMuteAllTitle />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-mute-all-title></velt-notifications-panel-settings-mute-all-title>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsMuteAllDescription
Description text for the mute-all notifications toggle row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsMuteAllDescription />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-mute-all-description></velt-notifications-panel-settings-mute-all-description>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsMuteAllToggle
Toggle switch that mutes all notifications.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsMuteAllToggle />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-mute-all-toggle></velt-notifications-panel-settings-mute-all-toggle>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordion
Accordion container for grouped notification settings options. Forwards [itemTemplate] to each VeltNotificationsPanelSettingsAccordionContentItem and [triggerTemplate] to each VeltNotificationsPanelSettingsAccordionTrigger rendered inside it.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordion />
Props: Common inputs (see Common Inputs section) plus:| Prop | Type | Description |
|---|
itemTemplate | TemplateRef | Custom template forwarded to each accordion content item child. |
triggerTemplate | TemplateRef | Custom template forwarded to each accordion trigger child. |
<velt-notifications-panel-settings-accordion></velt-notifications-panel-settings-accordion>
Attributes: Common attributes (see Common Inputs section) plus:| Attribute | Type | Description |
|---|
item-template | TemplateRef | Custom template forwarded to each accordion content item child. |
trigger-template | TemplateRef | Custom template forwarded to each accordion trigger child. |
VeltNotificationsPanelSettingsAccordionTrigger
Clickable trigger row that expands or collapses a settings accordion section.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionTrigger />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-trigger></velt-notifications-panel-settings-accordion-trigger>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionTriggerLabel
Label text displayed on a settings accordion trigger row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionTriggerLabel />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-trigger-label></velt-notifications-panel-settings-accordion-trigger-label>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionTriggerIcon
Icon displayed on a settings accordion trigger row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionTriggerIcon />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-trigger-icon></velt-notifications-panel-settings-accordion-trigger-icon>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionTriggerSelectedValue
Displays the currently selected value on a settings accordion trigger row.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionTriggerSelectedValue />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-trigger-selected-value></velt-notifications-panel-settings-accordion-trigger-selected-value>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionContent
Expanded content area of a settings accordion section.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionContent />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-content></velt-notifications-panel-settings-accordion-content>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionContentItem
A single selectable option inside an expanded settings accordion. Supports [itemTemplate] for custom option templates.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionContentItem />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-content-item></velt-notifications-panel-settings-accordion-content-item>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionContentItemLabel
Label text for a settings accordion content option.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionContentItemLabel />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-content-item-label></velt-notifications-panel-settings-accordion-content-item-label>
Attributes: Common attributes only (see Common Inputs section).
VeltNotificationsPanelSettingsAccordionContentItemIcon
Icon for a settings accordion content option.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsAccordionContentItemIcon />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-accordion-content-item-icon></velt-notifications-panel-settings-accordion-content-item-icon>
Attributes: Common attributes only (see Common Inputs section).
Button that navigates back from the settings view to the main notifications panel.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsBackButton />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-back-button></velt-notifications-panel-settings-back-button>
Attributes: Common attributes only (see Common Inputs section).
Footer area of the notifications settings view.
React / Next.js
Other Frameworks
<VeltNotificationsPanelSettingsFooter />
Props: Common inputs only (see Common Inputs section).<velt-notifications-panel-settings-footer></velt-notifications-panel-settings-footer>
Attributes: Common attributes only (see Common Inputs section).