> ## Documentation Index
> Fetch the complete documentation index at: https://velt-codex-ui-customization-guide-refresh.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Wireframe components & slot trees (complete)

> Reference Velt wireframe components, slot trees, slot props, and required structure.

<Note>
  **Source of truth: exhaustive for what it covers.** Generated from Velt wireframe metadata. **If a `-wireframe` slot isn't in the Appendix, it doesn't exist**: registering or filling an unregistered `-wireframe` tag renders nothing. Never invent or guess a slot name; use only tags that appear verbatim here or that you verified against ground truth and added here. *Scope: the Appendix aims to list every registered `velt-*-wireframe` slot element; it was extended with the verified families noted in the Appendix sub-sections (Comment Dialog **Visibility Dropdown** standalone family, Comments Sidebar **root + filter-checkbox** slots, **Reactions root** slots). The autocomplete **panel** child elements (`velt-autocomplete-panel`, …) are live custom elements, not `-wireframe` slots, so they are intentionally not in this wireframe appendix.*
</Note>

The **82** wireframe components `@veltdev/react` exports (the mount points), the full slot trees for the major surfaces, the slots that take input props, and: in the [Appendix](#appendix--all-790-wireframe-slot-elements-complete): the **complete list of all 790 `velt-*-wireframe` slot elements** registered by the SDK. Names are exact: copy verbatim.

Every slot also accepts the **common props** `veltIf`, `veltClass`, and `variant`. `veltIf`/`veltClass` → [`Wireframe tokens`](/ui-customization/conditional-templates); variables → [`Wireframe variables`](/ui-customization/template-variables); `variant` (registering multiple looks for one component) → [wireframe variants](/ui-customization/layout#3c-variants--multiple-looks-for-the-same-component); general usage → [`Wireframes`](/ui-customization/layout).

***

## 1. Wireframe components vs. wireframe slot elements (read this)

Two numbers, both real:

* **82 top-level React components** (`Velt*Wireframe`): these are what you **import and mount** (e.g. `VeltCommentDialogWireframe`, `VeltNotificationsPanelWireframe`). Listed by family below.
* **790 wireframe slot *elements***: every fillable slot (including all nesting like `…ThreadCard.Avatar`) is its own registered `velt-*-wireframe` element. In React you reach them via the static dotted accessors (`VeltCommentDialogWireframe.ThreadCard.Avatar`); the **complete, authoritative list of all 790 is in the [Appendix](#appendix--all-790-wireframe-slot-elements-complete)** at the bottom.

The family list below is the 82 mount points (the **Agent Suggestion** sub-family is summarized for readability):

```
VeltWireframe                              (the registry root: one per app)

Comments
  VeltCommentDialogWireframe
  VeltCommentThreadWireframe
  VeltCommentComposerWireframe
  VeltCommentBubbleWireframe
  VeltCommentPinWireframe
  VeltCommentsSidebarWireframe
  VeltCommentsSidebarV2Wireframe
  VeltCommentsSidebarButtonWireframe
  VeltCommentsSidebarStatusDropdownWireframe
  VeltSidebarButtonWireframe
  VeltCommentToolWireframe
  VeltMultiThreadCommentDialogWireframe
  VeltInlineCommentsSectionWireframe
  VeltPersistentCommentModeWireframe
  VeltTextCommentToolWireframe
  VeltTextCommentToolbarWireframe
  VeltConfirmDialogWireframe
  VeltButtonWireframe
  VeltUserSelectorDropdownWireframe
  VeltCommentDialogOptionsDropdownContentWireframe / …TriggerWireframe
  VeltCommentDialogStatusDropdownContentWireframe   / …TriggerWireframe
  VeltCommentDialogPriorityDropdownContentWireframe / …TriggerWireframe

Comment Dialog: Agent Suggestion (sub-family, 30 components)
  VeltCommentDialogAgentSuggestionWireframe + …Body/…Header/…Footer/…Banner/…Menu/
  …Actions/…Agent/…Author/…Timestamp + their nested Avatar/Name/Label/etc. wireframes
  (see the dialog slot tree below for the composed shape)

Reactions
  VeltReactionToolWireframe
  VeltReactionPinWireframe
  VeltReactionPinTooltipWireframe
  VeltReactionsPanelWireframe
  VeltInlineReactionsSectionWireframe

Notifications
  VeltNotificationsPanelWireframe
  VeltNotificationsToolWireframe

Presence / Cursor
  VeltPresenceWireframe
  VeltPresenceTooltipWireframe
  VeltCursorPointerWireframe

Recorder / Transcription
  VeltRecorderControlPanelWireframe
  VeltRecorderPlayerWireframe
  VeltRecorderPlayerExpandedWireframe
  VeltRecorderAllToolWireframe
  VeltRecorderAllToolMenuWireframe
  VeltRecorderAudioToolWireframe
  VeltRecorderVideoToolWireframe
  VeltRecorderScreenToolWireframe
  VeltRecordingPreviewStepsDialogWireframe
  VeltMediaSourceSettingsWireframe
  VeltSubtitlesWireframe
  VeltTranscriptionWireframe

Autocomplete (@mentions)
  VeltAutocompleteOptionWireframe
  VeltAutocompleteGroupOptionWireframe
  VeltAutocompleteEmptyWireframe
  VeltAutocompleteChipTooltipWireframe

Other
  VeltActivityLogWireframe
  VeltSingleEditorModePanelWireframe
  VeltVideoEditorPlayerWireframe
```

(If a name isn't in this list, it isn't an exported wireframe.)

***

## 2. `VeltCommentDialogWireframe`: full slot tree

Slots are static properties; you arrange them in any layout. Fill the ones you want; the rest fall back to defaults.

<Warning>
  **`ThreadCard` must be nested inside `Body → Threads`**: verified in-browser. `Body`/`Threads` is the **per-comment loop**; the `ThreadCard` template only receives comment data (avatar, name, time, **message**) when it lives inside it. Place `ThreadCard` at the dialog root instead and it renders as an **empty** card (header shows, body blank). Correct nesting:
</Warning>

> ```
> VeltCommentDialogWireframe
>   Header …
>   Body → Threads → ThreadCard (Avatar, Name, Time, Message, Reactions…)
>   Composer …
> ```
>
> In plain HTML: `<velt-comment-dialog-body-wireframe><velt-comment-dialog-threads-wireframe><velt-comment-dialog-thread-card-wireframe>…</…></…></…>`.
>
> **Per-context `variant`:** the dialog renders in two contexts: the floating pin dialog **and** each sidebar list row. Give them different layouts by registering two `ThreadCard`/`Header` wireframes with `variant="dialog"` vs `variant="sidebar"` (the live component picks the matching variant; see [wireframe variants](/ui-customization/layout#3c-variants--multiple-looks-for-the-same-component)). Without a variant, one template serves both.
>
> **Styling wireframe markup: shadow-DOM rule (verified in-browser):** registering a **root** wireframe (e.g. `VeltCommentDialogWireframe` / `velt-comment-dialog-wireframe`) **auto-removes that component's own shadow DOM**, so it renders in **light DOM** and your external **class** CSS reaches it normally (no `shadowDom={false}` needed for the dialog itself). **But** registering only a **nested/leaf** wireframe (e.g. just `ThreadCard`, with no root dialog wireframe) does **not** remove shadow DOM: your layout markup applies but class CSS won't reach inside, so you must set `shadowDom={false}` (or `dialogShadowDom={false}` / `injectCustomCss`) explicitly. **Inline `style=""` always works** in both cases (it survives the clone and lives inside whatever DOM). Caveat: a root-wireframed dialog that renders *inside another shadow-DOM component* (e.g. the sidebar with its default shadow on) still sits in **that** component's shadow root: turn the outer component's shadow off too if you need class CSS there. See [shadow-DOM & wireframes](/ui-customization/styling#shadow-dom--wireframes-root-vs-nested).

```
VeltCommentDialogWireframe
├── Header                              ├── CommentIndex / CommentNumber
├── Status (.Trigger, .Content)        ├── Approve / DeleteButton / CloseButton
├── Priority (.Trigger, .Content)      ├── NavigationButton
├── CopyLink                           ├── AllComment
├── ResolveButton / UnresolveButton    ├── CommentCategory
├── Options (.Trigger, .Content)       ├── SignIn / Upgrade
├── AssignMenu                         ├── ToggleReply (.Icon, .Text, .Count)
├── PrivateBanner / GhostBanner        ├── HideReply / MoreReply (.Count, .Text)
├── AssigneeBanner                     ├── ReplyAvatars (.List→.Item, .RemainingCount)
│   ├── UserAvatar / UserName          └── Body / Threads
│   └── ResolveButton / UnresolveButton
├── VisibilityBanner
│   ├── Icon / Text
│   └── Dropdown
│       ├── Trigger (.Label, .AvatarList→{Item,RemainingCount}, .Icon)
│       └── Content (.Item[type], .OrgPicker, .UserPicker)
├── VisibilityDropdown (.Trigger→{Icon,Label}, .Content→{Public,Private})
├── CustomAnnotationDropdown
│   ├── Trigger (.Arrow, .List→.Item, .Placeholder, .RemainingCount)
│   └── Content → .Item (.Icon, .Label)
├── Composer
│   ├── Avatar / Input[placeholder…] / Recordings / PrivateBadge / AssignUser
│   ├── ActionButton[type, hotkey]
│   ├── FormatToolbar → Button[type]
│   └── Attachments
│       ├── Selected → Image(.Preview,.Delete,.Download,.Loading)
│       │             Other(.Icon,.Delete,.Download,.Loading,.Name,.Size)
│       └── Invalid  → Item(.Preview,.Message,.Delete)
├── ThreadCard
│   ├── Avatar / Name / Time / Unread / Draft / Edited / DeviceType
│   ├── Message (.ShowMore, .ShowLess)
│   ├── Attachments → Image(.Preview,.Delete,.Download) / Other(.Icon,.Delete,.Download,.Name,.Size)
│   ├── Reactions[excludeReactionIds] / ReactionTool[excludeReactionIds] / ReactionPin[reactionId]
│   ├── Options (.Trigger, .Content)   / AssignButton / Recordings
│   ├── Reply / EditComposer
│   └── SeenDropdown (.Trigger, .Content→{Title, Items→Item(.Avatar,.Name,.Time)})
└── AgentSuggestion
    ├── Body / Header / Footer(.OpenComment) / Actions(.Accept,.Reject)
    ├── Header → Agent(.Avatar,.Name) / Author(.Avatar,.Name) / Timestamp
    │            Menu(.Trigger, .Content→Item(.Icon,.Label))
    └── Banner → Avatar(.UserImage,.StatusIcon) / Label / Separator / Timestamp / ResolverUserName
```

**Options dropdown content** (`…Options.Content` = `VeltCommentDialogOptionsDropdownContentWireframe`): `Assign`, `MakePrivate`(.Enable,.Disable), `Edit`, `Delete`(.Comment,.Thread), `Notification`(.Subscribe,.Unsubscribe), `MarkAsRead`.
**Status content**: `Item`(.Icon,.Name). **Status trigger**: `Arrow`,`Name`,`Icon`. **Priority content**: `Item`(.Icon,.Name,.Tick). **Priority trigger**: `Arrow`,`Name`,`Icon`.

***

## 3. `VeltCommentsSidebarWireframe` (V1): full slot tree

```
VeltCommentsSidebarWireframe
├── Skeleton / Panel / Header / CloseButton / ActionButton / ResetFilterButton
├── EmptyPlaceholder
├── Search[placeholder]
├── PageModeComposer
├── FullscreenButton
├── List → Item (.DialogContainer, .Group(.Count,.Arrow,.Name))
├── FocusedThread (.BackButton, .DialogContainer)
├── Status (= VeltCommentsSidebarStatusDropdownWireframe)
│   ├── Trigger (.Arrow,.Name,.Indicator)
│   └── Content → Item (.Icon,.Name,.Count,.Checkbox→{Checked,Unchecked})
├── FilterButton
├── MinimalFilterDropdown (.Trigger, .Content→{FilterAll,FilterUnread,FilterRead,
│       FilterResolved,FilterOpen,FilterAssignedToMe,FilterReset,SelectedIcon,SortDate,SortUnread})
├── MinimalActionsDropdown (.Trigger, .Content→{MarkAllRead,MarkAllResolved})
├── LocationFilterDropdown (.Trigger→.Label, .Content)
├── DocumentFilterDropdown (.Trigger→.Label, .Content)
└── Filter
    ├── Title / CloseButton / DoneButton / ResetButton / Search[placeholder] / GroupBy
    ├── Item (.Checkbox→{Checked,Unchecked}, .Count, .Name)
    ├── Location/People/Assigned/Tagged/Category/Priority/Versions/Status/Document/Involved
    │       (each: .Name, .Item, .Search[, .ViewAll])
    ├── CommentType (.Name, .Item)
    └── Custom[id] (.Name)
```

## 4. `VeltCommentsSidebarV2Wireframe`: full slot tree

```
VeltCommentsSidebarV2Wireframe
├── Skeleton / Panel / Header / CloseButton / FullscreenButton
├── EmptyPlaceholder → ResetFilterButton
├── Search (.Icon, .Input)
├── PageModeComposer
├── List → Item / GroupHeader(.Label,.Count,.Separator,.Chevron)
├── FocusedThread (.BackButton, .DialogContainer)
├── FilterButton → AppliedIcon
├── FilterDropdown
│   ├── Trigger
│   └── Content → List → Item(.Indicator,.Label,.Count) / Category(.Content,.Label)
└── FilterContainer
    ├── Title / CloseButton / GroupBy / ResetButton / ApplyButton
    └── SectionList → Section
        ├── Label
        └── Field
            ├── Control (.Value, .ChipList→.Chip, .Search, .Chevron)   ← dropdown style
            └── OptionList → Option (.Checkbox, .Name, .Count)         ← checkbox style
```

> **Filter as bottom-sheet vs panel, and options as checkbox vs dropdown, are *also* controllable by props** on the sidebar primitive: `filterPanelLayout` and `filterOptionLayout`. See [`Component config`](/ui-customization/reference/component-config).

## 5. Smaller surfaces

* **`VeltCommentBubbleWireframe`**: `Avatar`, `CommentsCount`, `UnreadIcon`.
* **`VeltCommentPinWireframe`** (root tag `velt-comment-pin-wireframe`; **replaces the whole pin**): `Index` (alias `Number`), `Triangle`, `GhostCommentIndicator`, `PrivateCommentIndicator`, `UnreadCommentIndicator`.
  * **Index / Number: what they are:** a **normal (pin/DOM-anchored) comment** has an **index** (`annotation.annotationIndex`, placement order 1,2,3…) and an **annotationNumber** (`annotation.annotationNumber`). A **page-mode comment has neither** (it isn't pinned to a coordinate), so those fields are empty for it. In the **default** pin/primitive these render automatically for normal comments (the on-pin number badge is gated by the `commentIndex` feature).
  * **In a custom pin wireframe** (verified in-browser): the bare `Index`/`Number` slot elements render as **empty containers**: when you replace the whole pin, print the value yourself with `<velt-data field="annotation.annotationIndex">` (or `annotation.annotationNumber`). For a **page-mode** comment this renders blank (no index/number exists), so guard with `velt-if` if needed. Putting the bare `<velt-data>` directly in your markup gives full control of placement/style; the `Index` slot also carries its own default chrome (a positioned circle).
  * **Color/shape-by-status:** wrap branches in `velt-if="{annotation.status.id} === 'OPEN' | 'IN_PROGRESS' | 'RESOLVED'"` (multi-branch `velt-if` verified working). Inline styles required (pin renders in a shadow root).
* **`VeltCommentsSidebarButtonWireframe`**: `Icon`, `CommentsCount`, `UnreadIcon`.
* **`VeltReactionPinWireframe`**: `Count`, `Emoji`. **`VeltReactionsPanelWireframe`**: `Items → Item → Emoji`.
* **`VeltNotificationsToolWireframe`** (root prop `variant`): `Icon`, `Label`, `UnreadIcon`, `UnreadCount`.
* **`VeltNotificationsPanelWireframe`**: `Header`(.TabAll,.TabForYou,.TabDocuments,.TabPeople), `Title`/`TitleText`, `ReadAllButton`, `ViewAllButton`, `CloseButton`, `SettingsButton`, `Skeleton`, `Content`(.All,.ForYou,.Documents,.People,.List→Item(.Avatar,.Body,.FileName,.Headline,.Time,.Unread),.LoadMore,.AllReadContainer), `Settings`(.BackButton,.Header→Title,.Description,.List→Accordion(.Trigger,.Content→Item),.MuteAllToggle,.Footer).
* **Leaf wireframes (no sub-slots):** `VeltCommentThreadWireframe`, `VeltCommentComposerWireframe`, `VeltReactionToolWireframe`, `VeltCommentDialogOptionsDropdownTriggerWireframe`.

For the deepest nesting of the smaller/recorder/autocomplete wireframes, compose the named sub-slots shown above; to confirm what a specific element renders as, inspect it in DevTools (`shadowDom={false}`) and look for its `velt-*-wireframe` tag.

***

## 6. Slots that take input props

Beyond `veltIf`/`veltClass`/`variant`, these slots accept extra props:

| Slot                                                                          | Prop                                                    | Allowed values                                                                                                                                     |
| ----------------------------------------------------------------------------- | ------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| `…Composer.ActionButton`                                                      | `type`                                                  | `userMentions` · `autocomplete` · `file` · `audio` · `video` · `screen` · `submit` · `attachments` · `format`                                      |
| `…Composer.ActionButton`                                                      | `hotkey`                                                | string                                                                                                                                             |
| `…Composer.FormatToolbar.Button`                                              | `type`                                                  | `bold` · `italic` · `underline` · `strikethrough`                                                                                                  |
| `…Composer.Input`                                                             | `placeholder`, `commentplaceholder`, `replyplaceholder` | string                                                                                                                                             |
| `…VisibilityBanner.Dropdown.Content.Item`                                     | `type`                                                  | `restrictedSelf` · `restrictedSelectedPeople` · `organizationPrivate` · `public`                                                                   |
| `…ThreadCard.Reactions` / `.ReactionTool`                                     | `excludeReactionIds`                                    | `string[]`                                                                                                                                         |
| `…ThreadCard.ReactionPin`                                                     | `reactionId`                                            | string                                                                                                                                             |
| `VeltCommentsSidebarWireframe.Search` / `.Filter.Search` / `.Filter.*.Search` | `placeholder`                                           | string                                                                                                                                             |
| `VeltCommentsSidebarWireframe.Filter.Custom`                                  | `id`                                                    | string                                                                                                                                             |
| `VeltNotificationsToolWireframe` (root)                                       | `variant`                                               | string                                                                                                                                             |
| `VeltButtonWireframe`                                                         | `id`, `type`                                            | string (`type="button"` etc.): used with `useVeltEventCallback('veltButtonClick')`, see [`Patterns and tips`](/ui-customization/patterns-and-tips) |

> The filter bottom-sheet-vs-panel / checkbox-vs-dropdown distinction is **structural** in V1 (which slot subtree you compose) but **prop-driven** on the primitive (`filterPanelLayout`, `filterOptionLayout`): see [`Component config`](/ui-customization/reference/component-config).

***

## Appendix: all 790 wireframe slot elements (complete)

The **authoritative, exhaustive** list: every `velt-*-wireframe` element the SDK registers (from the component registry). Each is a fillable slot. In React, top-level ones are `Velt*Wireframe` components; nested ones are dotted accessors on their parent (e.g. `velt-comment-dialog-thread-card-avatar-wireframe` → `VeltCommentDialogWireframe.ThreadCard.Avatar`). A `-wireframe` element not in this list doesn't exist ([source-of-truth invariant](/ui-customization/reference/source-of-truth-invariant)).

### Comment dialog (210)

```
velt-comment-dialog-agent-suggestion-action-accept-wireframe
velt-comment-dialog-agent-suggestion-action-reject-wireframe
velt-comment-dialog-agent-suggestion-actions-wireframe
velt-comment-dialog-agent-suggestion-agent-avatar-wireframe
velt-comment-dialog-agent-suggestion-agent-name-wireframe
velt-comment-dialog-agent-suggestion-agent-wireframe
velt-comment-dialog-agent-suggestion-author-avatar-wireframe
velt-comment-dialog-agent-suggestion-author-name-wireframe
velt-comment-dialog-agent-suggestion-author-wireframe
velt-comment-dialog-agent-suggestion-banner-avatar-status-icon-wireframe
velt-comment-dialog-agent-suggestion-banner-avatar-user-image-wireframe
velt-comment-dialog-agent-suggestion-banner-avatar-wireframe
velt-comment-dialog-agent-suggestion-banner-label-wireframe
velt-comment-dialog-agent-suggestion-banner-resolver-user-name-wireframe
velt-comment-dialog-agent-suggestion-banner-separator-wireframe
velt-comment-dialog-agent-suggestion-banner-timestamp-wireframe
velt-comment-dialog-agent-suggestion-banner-wireframe
velt-comment-dialog-agent-suggestion-body-wireframe
velt-comment-dialog-agent-suggestion-footer-open-comment-wireframe
velt-comment-dialog-agent-suggestion-footer-wireframe
velt-comment-dialog-agent-suggestion-header-wireframe
velt-comment-dialog-agent-suggestion-menu-content-item-icon-wireframe
velt-comment-dialog-agent-suggestion-menu-content-item-label-wireframe
velt-comment-dialog-agent-suggestion-menu-content-item-wireframe
velt-comment-dialog-agent-suggestion-menu-content-wireframe
velt-comment-dialog-agent-suggestion-menu-trigger-wireframe
velt-comment-dialog-agent-suggestion-menu-wireframe
velt-comment-dialog-agent-suggestion-timestamp-wireframe
velt-comment-dialog-agent-suggestion-wireframe
velt-comment-dialog-all-comment-wireframe
velt-comment-dialog-approve-wireframe
velt-comment-dialog-assign-menu-wireframe
velt-comment-dialog-assignee-banner-resolve-button-wireframe
velt-comment-dialog-assignee-banner-unresolve-button-wireframe
velt-comment-dialog-assignee-banner-user-avatar-wireframe
velt-comment-dialog-assignee-banner-user-name-wireframe
velt-comment-dialog-assignee-banner-wireframe
velt-comment-dialog-body-wireframe
velt-comment-dialog-close-button-wireframe
velt-comment-dialog-comment-category-wireframe
velt-comment-dialog-comment-index-wireframe
velt-comment-dialog-comment-number-wireframe
velt-comment-dialog-comment-suggestion-status-wireframe
velt-comment-dialog-composer-action-button-wireframe
velt-comment-dialog-composer-assign-user-wireframe
velt-comment-dialog-composer-attachments-image-delete-wireframe
velt-comment-dialog-composer-attachments-image-download-wireframe
velt-comment-dialog-composer-attachments-image-loading-wireframe
velt-comment-dialog-composer-attachments-image-preview-wireframe
velt-comment-dialog-composer-attachments-image-wireframe
velt-comment-dialog-composer-attachments-invalid-item-delete-wireframe
velt-comment-dialog-composer-attachments-invalid-item-message-wireframe
velt-comment-dialog-composer-attachments-invalid-item-preview-wireframe
velt-comment-dialog-composer-attachments-invalid-item-wireframe
velt-comment-dialog-composer-attachments-invalid-wireframe
velt-comment-dialog-composer-attachments-other-delete-wireframe
velt-comment-dialog-composer-attachments-other-download-wireframe
velt-comment-dialog-composer-attachments-other-icon-wireframe
velt-comment-dialog-composer-attachments-other-loading-wireframe
velt-comment-dialog-composer-attachments-other-name-wireframe
velt-comment-dialog-composer-attachments-other-size-wireframe
velt-comment-dialog-composer-attachments-other-wireframe
velt-comment-dialog-composer-attachments-selected-wireframe
velt-comment-dialog-composer-attachments-wireframe
velt-comment-dialog-composer-avatar-wireframe
velt-comment-dialog-composer-format-toolbar-button-wireframe
velt-comment-dialog-composer-format-toolbar-wireframe
velt-comment-dialog-composer-input-wireframe
velt-comment-dialog-composer-private-badge-wireframe
velt-comment-dialog-composer-recordings-wireframe
velt-comment-dialog-composer-wireframe
velt-comment-dialog-copy-link-wireframe
velt-comment-dialog-custom-annotation-dropdown-content-item-icon-wireframe
velt-comment-dialog-custom-annotation-dropdown-content-item-label-wireframe
velt-comment-dialog-custom-annotation-dropdown-content-item-wireframe
velt-comment-dialog-custom-annotation-dropdown-content-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-arrow-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-list-item-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-list-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-placeholder-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-remaining-count-wireframe
velt-comment-dialog-custom-annotation-dropdown-trigger-wireframe
velt-comment-dialog-custom-annotation-dropdown-wireframe
velt-comment-dialog-delete-button-wireframe
velt-comment-dialog-ghost-banner-wireframe
velt-comment-dialog-header-wireframe
velt-comment-dialog-hide-reply-wireframe
velt-comment-dialog-metadata-wireframe
velt-comment-dialog-more-reply-count-wireframe
velt-comment-dialog-more-reply-text-wireframe
velt-comment-dialog-more-reply-wireframe
velt-comment-dialog-navigation-button-wireframe
velt-comment-dialog-options-dropdown-content-assign-wireframe
velt-comment-dialog-options-dropdown-content-delete-comment-wireframe
velt-comment-dialog-options-dropdown-content-delete-thread-wireframe
velt-comment-dialog-options-dropdown-content-delete-wireframe
velt-comment-dialog-options-dropdown-content-edit-wireframe
velt-comment-dialog-options-dropdown-content-make-private-disable-wireframe
velt-comment-dialog-options-dropdown-content-make-private-enable-wireframe
velt-comment-dialog-options-dropdown-content-make-private-wireframe
velt-comment-dialog-options-dropdown-content-mark-as-read-mark-read-wireframe
velt-comment-dialog-options-dropdown-content-mark-as-read-mark-unread-wireframe
velt-comment-dialog-options-dropdown-content-mark-as-read-wireframe
velt-comment-dialog-options-dropdown-content-notification-subscribe-wireframe
velt-comment-dialog-options-dropdown-content-notification-unsubscribe-wireframe
velt-comment-dialog-options-dropdown-content-notification-wireframe
velt-comment-dialog-options-dropdown-content-wireframe
velt-comment-dialog-options-dropdown-trigger-wireframe
velt-comment-dialog-options-dropdown-wireframe
velt-comment-dialog-options-wireframe
velt-comment-dialog-priority-dropdown-content-item-icon-wireframe
velt-comment-dialog-priority-dropdown-content-item-name-wireframe
velt-comment-dialog-priority-dropdown-content-item-tick-wireframe
velt-comment-dialog-priority-dropdown-content-item-wireframe
velt-comment-dialog-priority-dropdown-content-wireframe
velt-comment-dialog-priority-dropdown-trigger-arrow-wireframe
velt-comment-dialog-priority-dropdown-trigger-icon-wireframe
velt-comment-dialog-priority-dropdown-trigger-name-wireframe
velt-comment-dialog-priority-dropdown-trigger-wireframe
velt-comment-dialog-priority-dropdown-wireframe
velt-comment-dialog-priority-wireframe
velt-comment-dialog-private-banner-wireframe
velt-comment-dialog-reply-avatars-list-item-wireframe
velt-comment-dialog-reply-avatars-list-wireframe
velt-comment-dialog-reply-avatars-remaining-count-wireframe
velt-comment-dialog-reply-avatars-wireframe
velt-comment-dialog-resolve-button-wireframe
velt-comment-dialog-sign-in-wireframe
velt-comment-dialog-status-dropdown-content-item-icon-wireframe
velt-comment-dialog-status-dropdown-content-item-name-wireframe
velt-comment-dialog-status-dropdown-content-item-wireframe
velt-comment-dialog-status-dropdown-content-wireframe
velt-comment-dialog-status-dropdown-trigger-arrow-wireframe
velt-comment-dialog-status-dropdown-trigger-icon-wireframe
velt-comment-dialog-status-dropdown-trigger-name-wireframe
velt-comment-dialog-status-dropdown-trigger-wireframe
velt-comment-dialog-status-dropdown-wireframe
velt-comment-dialog-status-wireframe
velt-comment-dialog-suggestion-action-accept-wireframe
velt-comment-dialog-suggestion-action-reject-wireframe
velt-comment-dialog-suggestion-action-wireframe
velt-comment-dialog-thread-card-assign-button-wireframe
velt-comment-dialog-thread-card-attachments-image-delete-wireframe
velt-comment-dialog-thread-card-attachments-image-download-wireframe
velt-comment-dialog-thread-card-attachments-image-preview-wireframe
velt-comment-dialog-thread-card-attachments-image-wireframe
velt-comment-dialog-thread-card-attachments-other-delete-wireframe
velt-comment-dialog-thread-card-attachments-other-download-wireframe
velt-comment-dialog-thread-card-attachments-other-icon-wireframe
velt-comment-dialog-thread-card-attachments-other-name-wireframe
velt-comment-dialog-thread-card-attachments-other-size-wireframe
velt-comment-dialog-thread-card-attachments-other-wireframe
velt-comment-dialog-thread-card-attachments-wireframe
velt-comment-dialog-thread-card-avatar-wireframe
velt-comment-dialog-thread-card-device-type-wireframe
velt-comment-dialog-thread-card-draft-wireframe
velt-comment-dialog-thread-card-edit-composer-wireframe
velt-comment-dialog-thread-card-edited-wireframe
velt-comment-dialog-thread-card-message-show-less-wireframe
velt-comment-dialog-thread-card-message-show-more-wireframe
velt-comment-dialog-thread-card-message-wireframe
velt-comment-dialog-thread-card-name-wireframe
velt-comment-dialog-thread-card-options-wireframe
velt-comment-dialog-thread-card-reaction-pin-wireframe
velt-comment-dialog-thread-card-reaction-tool-wireframe
velt-comment-dialog-thread-card-reactions-wireframe
velt-comment-dialog-thread-card-recordings-wireframe
velt-comment-dialog-thread-card-reply-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-item-avatar-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-item-name-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-item-time-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-item-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-items-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-title-wireframe
velt-comment-dialog-thread-card-seen-dropdown-content-wireframe
velt-comment-dialog-thread-card-seen-dropdown-trigger-wireframe
velt-comment-dialog-thread-card-seen-dropdown-wireframe
velt-comment-dialog-thread-card-time-wireframe
velt-comment-dialog-thread-card-unread-wireframe
velt-comment-dialog-thread-card-wireframe
velt-comment-dialog-threads-wireframe
velt-comment-dialog-toggle-reply-count-wireframe
velt-comment-dialog-toggle-reply-icon-wireframe
velt-comment-dialog-toggle-reply-text-wireframe
velt-comment-dialog-toggle-reply-wireframe
velt-comment-dialog-unresolve-button-wireframe
velt-comment-dialog-upgrade-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-item-icon-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-item-label-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-item-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-org-picker-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-user-picker-wireframe
velt-comment-dialog-visibility-banner-dropdown-content-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-avatar-list-item-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-avatar-list-remaining-count-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-avatar-list-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-icon-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-label-wireframe
velt-comment-dialog-visibility-banner-dropdown-trigger-wireframe
velt-comment-dialog-visibility-banner-dropdown-wireframe
velt-comment-dialog-visibility-banner-icon-wireframe
velt-comment-dialog-visibility-banner-text-wireframe
velt-comment-dialog-visibility-banner-wireframe
velt-comment-dialog-visibility-dropdown-content-private-wireframe
velt-comment-dialog-visibility-dropdown-content-public-wireframe
velt-comment-dialog-visibility-dropdown-content-wireframe
velt-comment-dialog-visibility-dropdown-trigger-icon-wireframe
velt-comment-dialog-visibility-dropdown-trigger-label-wireframe
velt-comment-dialog-visibility-dropdown-trigger-wireframe
velt-comment-dialog-visibility-dropdown-wireframe
```

### Comments sidebar (V1 + button + status) (163)

```
velt-comment-sidebar-panel-wireframe
velt-comment-sidebar-skeleton-wireframe
velt-comments-sidebar-action-button-wireframe
velt-comments-sidebar-button-comments-count-wireframe
velt-comments-sidebar-button-icon-wireframe
velt-comments-sidebar-button-unread-icon-wireframe
velt-comments-sidebar-button-wireframe
velt-comments-sidebar-close-button-v2-wireframe
velt-comments-sidebar-close-button-wireframe
velt-comments-sidebar-document-filter-dropdown-content-wireframe
velt-comments-sidebar-document-filter-dropdown-trigger-label-wireframe
velt-comments-sidebar-document-filter-dropdown-trigger-wireframe
velt-comments-sidebar-document-filter-dropdown-wireframe
velt-comments-sidebar-empty-placeholder-v2-wireframe
velt-comments-sidebar-empty-placeholder-wireframe
velt-comments-sidebar-filter-all-option-wireframe
velt-comments-sidebar-filter-assigned-wireframe
velt-comments-sidebar-filter-button-v2-applied-icon-wireframe
velt-comments-sidebar-filter-button-v2-wireframe
velt-comments-sidebar-filter-button-wireframe
velt-comments-sidebar-filter-category-wireframe
velt-comments-sidebar-filter-checkbox-checked-wireframe
velt-comments-sidebar-filter-checkbox-unchecked-wireframe
velt-comments-sidebar-filter-checkbox-wireframe
velt-comments-sidebar-filter-close-button-wireframe
velt-comments-sidebar-filter-comment-type-wireframe
velt-comments-sidebar-filter-container-v2-apply-button-wireframe
velt-comments-sidebar-filter-container-v2-close-button-wireframe
velt-comments-sidebar-filter-container-v2-group-by-wireframe
velt-comments-sidebar-filter-container-v2-reset-button-wireframe
velt-comments-sidebar-filter-container-v2-section-control-chevron-wireframe
velt-comments-sidebar-filter-container-v2-section-control-chip-list-wireframe
velt-comments-sidebar-filter-container-v2-section-control-chip-wireframe
velt-comments-sidebar-filter-container-v2-section-control-search-wireframe
velt-comments-sidebar-filter-container-v2-section-control-value-wireframe
velt-comments-sidebar-filter-container-v2-section-control-wireframe
velt-comments-sidebar-filter-container-v2-section-field-wireframe
velt-comments-sidebar-filter-container-v2-section-label-wireframe
velt-comments-sidebar-filter-container-v2-section-list-wireframe
velt-comments-sidebar-filter-container-v2-section-option-checkbox-wireframe
velt-comments-sidebar-filter-container-v2-section-option-count-wireframe
velt-comments-sidebar-filter-container-v2-section-option-list-wireframe
velt-comments-sidebar-filter-container-v2-section-option-name-wireframe
velt-comments-sidebar-filter-container-v2-section-option-wireframe
velt-comments-sidebar-filter-container-v2-section-wireframe
velt-comments-sidebar-filter-container-v2-title-wireframe
velt-comments-sidebar-filter-container-v2-wireframe
velt-comments-sidebar-filter-custom-wireframe
velt-comments-sidebar-filter-document-wireframe
velt-comments-sidebar-filter-done-button-wireframe
velt-comments-sidebar-filter-dropdown-content-list-category-content-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-category-label-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-category-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-item-count-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-item-indicator-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-item-label-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-item-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-list-v2-wireframe
velt-comments-sidebar-filter-dropdown-content-v2-wireframe
velt-comments-sidebar-filter-dropdown-trigger-v2-wireframe
velt-comments-sidebar-filter-dropdown-v2-wireframe
velt-comments-sidebar-filter-group-by-wireframe
velt-comments-sidebar-filter-involved-wireframe
velt-comments-sidebar-filter-item-checkbox-checked-wireframe
velt-comments-sidebar-filter-item-checkbox-unchecked-wireframe
velt-comments-sidebar-filter-item-checkbox-wireframe
velt-comments-sidebar-filter-item-count-wireframe
velt-comments-sidebar-filter-item-name-wireframe
velt-comments-sidebar-filter-item-wireframe
velt-comments-sidebar-filter-location-wireframe
velt-comments-sidebar-filter-name-wireframe
velt-comments-sidebar-filter-people-wireframe
velt-comments-sidebar-filter-priority-wireframe
velt-comments-sidebar-filter-reset-button-wireframe
velt-comments-sidebar-filter-search-dropdown-icon-wireframe
velt-comments-sidebar-filter-search-hidden-count-wireframe
velt-comments-sidebar-filter-search-input-wireframe
velt-comments-sidebar-filter-search-tags-item-close-wireframe
velt-comments-sidebar-filter-search-tags-item-name-wireframe
velt-comments-sidebar-filter-search-tags-item-wireframe
velt-comments-sidebar-filter-search-tags-wireframe
velt-comments-sidebar-filter-search-wireframe
velt-comments-sidebar-filter-status-wireframe
velt-comments-sidebar-filter-tagged-wireframe
velt-comments-sidebar-filter-title-wireframe
velt-comments-sidebar-filter-versions-wireframe
velt-comments-sidebar-filter-view-all-wireframe
velt-comments-sidebar-filter-wireframe
velt-comments-sidebar-focused-thread-back-button-v2-wireframe
velt-comments-sidebar-focused-thread-back-button-wireframe
velt-comments-sidebar-focused-thread-dialog-container-v2-wireframe
velt-comments-sidebar-focused-thread-dialog-container-wireframe
velt-comments-sidebar-focused-thread-v2-wireframe
velt-comments-sidebar-focused-thread-wireframe
velt-comments-sidebar-fullscreen-button-v2-wireframe
velt-comments-sidebar-fullscreen-button-wireframe
velt-comments-sidebar-header-v2-wireframe
velt-comments-sidebar-header-wireframe
velt-comments-sidebar-list-group-header-v2-chevron-wireframe
velt-comments-sidebar-list-group-header-v2-count-wireframe
velt-comments-sidebar-list-group-header-v2-label-wireframe
velt-comments-sidebar-list-group-header-v2-separator-wireframe
velt-comments-sidebar-list-group-header-v2-wireframe
velt-comments-sidebar-list-item-dialog-container-wireframe
velt-comments-sidebar-list-item-group-arrow-wireframe
velt-comments-sidebar-list-item-group-count-wireframe
velt-comments-sidebar-list-item-group-name-wireframe
velt-comments-sidebar-list-item-group-wireframe
velt-comments-sidebar-list-item-v2-wireframe
velt-comments-sidebar-list-item-wireframe
velt-comments-sidebar-list-v2-wireframe
velt-comments-sidebar-list-wireframe
velt-comments-sidebar-location-filter-dropdown-content-wireframe
velt-comments-sidebar-location-filter-dropdown-trigger-label-wireframe
velt-comments-sidebar-location-filter-dropdown-trigger-wireframe
velt-comments-sidebar-location-filter-dropdown-wireframe
velt-comments-sidebar-minimal-actions-dropdown-content-mark-all-read-wireframe
velt-comments-sidebar-minimal-actions-dropdown-content-mark-all-resolved-wireframe
velt-comments-sidebar-minimal-actions-dropdown-content-wireframe
velt-comments-sidebar-minimal-actions-dropdown-trigger-wireframe
velt-comments-sidebar-minimal-actions-dropdown-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-all-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-assigned-to-me-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-open-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-read-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-reset-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-resolved-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-filter-unread-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-selected-icon-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-sort-date-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-sort-unread-wireframe
velt-comments-sidebar-minimal-filter-dropdown-content-wireframe
velt-comments-sidebar-minimal-filter-dropdown-trigger-wireframe
velt-comments-sidebar-minimal-filter-dropdown-wireframe
velt-comments-sidebar-page-mode-composer-v2-wireframe
velt-comments-sidebar-page-mode-composer-wireframe
velt-comments-sidebar-page-mode-wireframe
velt-comments-sidebar-panel-v2-wireframe
velt-comments-sidebar-panel-wireframe
velt-comments-sidebar-reset-filter-button-v2-wireframe
velt-comments-sidebar-reset-filter-button-wireframe
velt-comments-sidebar-search-v2-icon-wireframe
velt-comments-sidebar-search-v2-input-wireframe
velt-comments-sidebar-search-v2-wireframe
velt-comments-sidebar-search-wireframe
velt-comments-sidebar-skeleton-v2-wireframe
velt-comments-sidebar-skeleton-wireframe
velt-comments-sidebar-status-dropdown-content-item-checkbox-checked-wireframe
velt-comments-sidebar-status-dropdown-content-item-checkbox-unchecked-wireframe
velt-comments-sidebar-status-dropdown-content-item-checkbox-wireframe
velt-comments-sidebar-status-dropdown-content-item-count-wireframe
velt-comments-sidebar-status-dropdown-content-item-icon-wireframe
velt-comments-sidebar-status-dropdown-content-item-name-wireframe
velt-comments-sidebar-status-dropdown-content-item-wireframe
velt-comments-sidebar-status-dropdown-content-wireframe
velt-comments-sidebar-status-dropdown-trigger-arrow-wireframe
velt-comments-sidebar-status-dropdown-trigger-indicator-wireframe
velt-comments-sidebar-status-dropdown-trigger-name-wireframe
velt-comments-sidebar-status-dropdown-trigger-wireframe
velt-comments-sidebar-status-dropdown-wireframe
velt-comments-sidebar-status-wireframe
velt-comments-sidebar-v2-wireframe
velt-comments-sidebar-wireframe
```

### Comment bubble / pin / thread / composer / tool (13)

```
velt-comment-bubble-avatar-wireframe
velt-comment-bubble-comments-count-wireframe
velt-comment-bubble-unread-icon-wireframe
velt-comment-bubble-wireframe
velt-comment-composer-wireframe
velt-comment-pin-ghost-comment-indicator-wireframe
velt-comment-pin-index-wireframe
velt-comment-pin-number-wireframe
velt-comment-pin-private-comment-indicator-wireframe
velt-comment-pin-triangle-wireframe
velt-comment-pin-unread-comment-indicator-wireframe
velt-comment-thread-wireframe
velt-comment-tool-wireframe
```

### Multi-thread comment dialog (24)

```
velt-multi-thread-comment-dialog-close-button-wireframe
velt-multi-thread-comment-dialog-comment-count-wireframe
velt-multi-thread-comment-dialog-composer-container-wireframe
velt-multi-thread-comment-dialog-empty-placeholder-wireframe
velt-multi-thread-comment-dialog-list-wireframe
velt-multi-thread-comment-dialog-minimal-actions-dropdown-content-mark-all-read-wireframe
velt-multi-thread-comment-dialog-minimal-actions-dropdown-content-mark-all-resolved-wireframe
velt-multi-thread-comment-dialog-minimal-actions-dropdown-content-wireframe
velt-multi-thread-comment-dialog-minimal-actions-dropdown-trigger-wireframe
velt-multi-thread-comment-dialog-minimal-actions-dropdown-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-filter-all-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-filter-read-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-filter-resolved-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-filter-unread-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-selected-icon-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-sort-date-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-sort-unread-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-content-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-trigger-wireframe
velt-multi-thread-comment-dialog-minimal-filter-dropdown-wireframe
velt-multi-thread-comment-dialog-new-thread-button-wireframe
velt-multi-thread-comment-dialog-panel-wireframe
velt-multi-thread-comment-dialog-reset-filter-button-wireframe
velt-multi-thread-comment-dialog-wireframe
```

### Inline comments section (25)

```
velt-inline-comments-section-comment-count-wireframe
velt-inline-comments-section-composer-container-wireframe
velt-inline-comments-section-filter-dropdown-content-apply-button-wireframe
velt-inline-comments-section-filter-dropdown-content-list-item-checkbox-wireframe
velt-inline-comments-section-filter-dropdown-content-list-item-label-wireframe
velt-inline-comments-section-filter-dropdown-content-list-item-wireframe
velt-inline-comments-section-filter-dropdown-content-list-wireframe
velt-inline-comments-section-filter-dropdown-content-wireframe
velt-inline-comments-section-filter-dropdown-trigger-arrow-wireframe
velt-inline-comments-section-filter-dropdown-trigger-name-wireframe
velt-inline-comments-section-filter-dropdown-trigger-wireframe
velt-inline-comments-section-filter-dropdown-wireframe
velt-inline-comments-section-list-wireframe
velt-inline-comments-section-panel-wireframe
velt-inline-comments-section-skeleton-wireframe
velt-inline-comments-section-sorting-dropdown-content-item-icon-wireframe
velt-inline-comments-section-sorting-dropdown-content-item-name-wireframe
velt-inline-comments-section-sorting-dropdown-content-item-tick-wireframe
velt-inline-comments-section-sorting-dropdown-content-item-wireframe
velt-inline-comments-section-sorting-dropdown-content-wireframe
velt-inline-comments-section-sorting-dropdown-trigger-icon-wireframe
velt-inline-comments-section-sorting-dropdown-trigger-name-wireframe
velt-inline-comments-section-sorting-dropdown-trigger-wireframe
velt-inline-comments-section-sorting-dropdown-wireframe
velt-inline-comments-section-wireframe
```

### Text comment (7)

```
velt-text-comment-tool-wireframe
velt-text-comment-toolbar-comment-annotation-wireframe
velt-text-comment-toolbar-copywriter-wireframe
velt-text-comment-toolbar-divider-wireframe
velt-text-comment-toolbar-generic-wireframe
velt-text-comment-toolbar-wireframe
velt-text-comment-wireframe
```

### Notifications (69)

```
velt-notifications-panel-close-button-wireframe
velt-notifications-panel-content-all-list-item-content-wireframe
velt-notifications-panel-content-all-list-item-label-wireframe
velt-notifications-panel-content-all-list-item-wireframe
velt-notifications-panel-content-all-list-wireframe
velt-notifications-panel-content-all-read-container-wireframe
velt-notifications-panel-content-all-wireframe
velt-notifications-panel-content-documents-list-item-content-wireframe
velt-notifications-panel-content-documents-list-item-count-wireframe
velt-notifications-panel-content-documents-list-item-name-wireframe
velt-notifications-panel-content-documents-list-item-unread-wireframe
velt-notifications-panel-content-documents-list-item-wireframe
velt-notifications-panel-content-documents-list-wireframe
velt-notifications-panel-content-documents-wireframe
velt-notifications-panel-content-for-you-wireframe
velt-notifications-panel-content-list-item-avatar-wireframe
velt-notifications-panel-content-list-item-body-wireframe
velt-notifications-panel-content-list-item-file-name-wireframe
velt-notifications-panel-content-list-item-headline-wireframe
velt-notifications-panel-content-list-item-time-wireframe
velt-notifications-panel-content-list-item-unread-wireframe
velt-notifications-panel-content-list-item-wireframe
velt-notifications-panel-content-list-wireframe
velt-notifications-panel-content-load-more-wireframe
velt-notifications-panel-content-people-list-item-avatar-wireframe
velt-notifications-panel-content-people-list-item-content-wireframe
velt-notifications-panel-content-people-list-item-count-wireframe
velt-notifications-panel-content-people-list-item-name-wireframe
velt-notifications-panel-content-people-list-item-wireframe
velt-notifications-panel-content-people-list-wireframe
velt-notifications-panel-content-people-wireframe
velt-notifications-panel-content-wireframe
velt-notifications-panel-header-tab-all-wireframe
velt-notifications-panel-header-tab-documents-wireframe
velt-notifications-panel-header-tab-for-you-wireframe
velt-notifications-panel-header-tab-people-wireframe
velt-notifications-panel-header-wireframe
velt-notifications-panel-read-all-button-wireframe
velt-notifications-panel-settings-accordion-content-item-icon-wireframe
velt-notifications-panel-settings-accordion-content-item-label-wireframe
velt-notifications-panel-settings-accordion-content-item-wireframe
velt-notifications-panel-settings-accordion-content-wireframe
velt-notifications-panel-settings-accordion-trigger-icon-wireframe
velt-notifications-panel-settings-accordion-trigger-label-wireframe
velt-notifications-panel-settings-accordion-trigger-selected-value-wireframe
velt-notifications-panel-settings-accordion-trigger-wireframe
velt-notifications-panel-settings-accordion-wireframe
velt-notifications-panel-settings-back-button-wireframe
velt-notifications-panel-settings-button-wireframe
velt-notifications-panel-settings-description-wireframe
velt-notifications-panel-settings-footer-wireframe
velt-notifications-panel-settings-header-title-wireframe
velt-notifications-panel-settings-header-wireframe
velt-notifications-panel-settings-list-wireframe
velt-notifications-panel-settings-mute-all-description-wireframe
velt-notifications-panel-settings-mute-all-title-wireframe
velt-notifications-panel-settings-mute-all-toggle-wireframe
velt-notifications-panel-settings-title-wireframe
velt-notifications-panel-settings-wireframe
velt-notifications-panel-skeleton-wireframe
velt-notifications-panel-title-text-wireframe
velt-notifications-panel-title-wireframe
velt-notifications-panel-view-all-button-wireframe
velt-notifications-panel-wireframe
velt-notifications-tool-icon-wireframe
velt-notifications-tool-label-wireframe
velt-notifications-tool-unread-count-wireframe
velt-notifications-tool-unread-icon-wireframe
velt-notifications-tool-wireframe
```

### Reactions (17)

```
velt-inline-reactions-section-list-wireframe
velt-inline-reactions-section-panel-wireframe
velt-inline-reactions-section-tool-container-wireframe
velt-inline-reactions-section-wireframe
velt-reaction-pin-count-wireframe
velt-reaction-pin-emoji-wireframe
velt-reaction-pin-tooltip-user-avatar-wireframe
velt-reaction-pin-tooltip-user-name-wireframe
velt-reaction-pin-tooltip-user-wireframe
velt-reaction-pin-tooltip-users-wireframe
velt-reaction-pin-tooltip-wireframe
velt-reaction-pin-wireframe
velt-reaction-tool-wireframe
velt-reactions-panel-item-emoji-wireframe
velt-reactions-panel-item-wireframe
velt-reactions-panel-items-wireframe
velt-reactions-panel-wireframe
```

### Recorder (111)

```
velt-media-source-settings-audio-wireframe
velt-media-source-settings-divider-wireframe
velt-media-source-settings-options-item-icon-wireframe
velt-media-source-settings-options-item-label-wireframe
velt-media-source-settings-options-wireframe
velt-media-source-settings-selected-label-wireframe
velt-media-source-settings-toggle-icon-close-wireframe
velt-media-source-settings-toggle-icon-open-wireframe
velt-media-source-settings-toggle-icon-wireframe
velt-media-source-settings-video-wireframe
velt-media-source-settings-wireframe
velt-recorder-all-tool-menu-audio-wireframe
velt-recorder-all-tool-menu-screen-wireframe
velt-recorder-all-tool-menu-video-wireframe
velt-recorder-all-tool-menu-wireframe
velt-recorder-all-tool-wireframe
velt-recorder-audio-tool-wireframe
velt-recorder-control-panel-action-bar-clear-wireframe
velt-recorder-control-panel-action-bar-pip-wireframe
velt-recorder-control-panel-action-bar-stop-wireframe
velt-recorder-control-panel-action-bar-time-wireframe
velt-recorder-control-panel-action-bar-toggle-pause-wireframe
velt-recorder-control-panel-action-bar-toggle-play-wireframe
velt-recorder-control-panel-action-bar-toggle-wireframe
velt-recorder-control-panel-action-bar-type-icon-wireframe
velt-recorder-control-panel-action-bar-waveform-wireframe
velt-recorder-control-panel-action-bar-wireframe
velt-recorder-control-panel-collapsed-button-off-wireframe
velt-recorder-control-panel-collapsed-button-on-wireframe
velt-recorder-control-panel-collapsed-button-wireframe
velt-recorder-control-panel-floating-mode-container-wireframe
velt-recorder-control-panel-floating-mode-waveform-wireframe
velt-recorder-control-panel-floating-mode-wireframe
velt-recorder-control-panel-loading-wireframe
velt-recorder-control-panel-paused-wireframe
velt-recorder-control-panel-screen-mini-container-wireframe
velt-recorder-control-panel-screen-wireframe
velt-recorder-control-panel-thread-mode-wireframe
velt-recorder-control-panel-video-wireframe
velt-recorder-player-audio-container-wireframe
velt-recorder-player-audio-toggle-pause-wireframe
velt-recorder-player-audio-toggle-play-wireframe
velt-recorder-player-audio-toggle-wireframe
velt-recorder-player-audio-waveform-wireframe
velt-recorder-player-audio-wireframe
velt-recorder-player-avatar-wireframe
velt-recorder-player-copy-link-wireframe
velt-recorder-player-delete-wireframe
velt-recorder-player-edit-button-wireframe
velt-recorder-player-expanded-controls-current-time-wireframe
velt-recorder-player-expanded-controls-delete-button-wireframe
velt-recorder-player-expanded-controls-progress-bar-wireframe
velt-recorder-player-expanded-controls-settings-button-wireframe
velt-recorder-player-expanded-controls-subtitle-button-icon-wireframe
velt-recorder-player-expanded-controls-subtitle-button-tooltip-wireframe
velt-recorder-player-expanded-controls-subtitle-button-wireframe
velt-recorder-player-expanded-controls-time-wireframe
velt-recorder-player-expanded-controls-toggle-button-wireframe
velt-recorder-player-expanded-controls-toggle-pause-wireframe
velt-recorder-player-expanded-controls-toggle-play-wireframe
velt-recorder-player-expanded-controls-total-time-wireframe
velt-recorder-player-expanded-controls-transcription-button-wireframe
velt-recorder-player-expanded-controls-transcription-icon-wireframe
velt-recorder-player-expanded-controls-transcription-tooltip-wireframe
velt-recorder-player-expanded-controls-volume-button-wireframe
velt-recorder-player-expanded-controls-wireframe
velt-recorder-player-expanded-copy-link-wireframe
velt-recorder-player-expanded-display-wireframe
velt-recorder-player-expanded-minimize-button-wireframe
velt-recorder-player-expanded-panel-wireframe
velt-recorder-player-expanded-subtitles-wireframe
velt-recorder-player-expanded-transcription-wireframe
velt-recorder-player-expanded-wireframe
velt-recorder-player-full-screen-button-wireframe
velt-recorder-player-name-wireframe
velt-recorder-player-overlay-wireframe
velt-recorder-player-play-button-wireframe
velt-recorder-player-subtitles-button-wireframe
velt-recorder-player-subtitles-wireframe
velt-recorder-player-time-wireframe
velt-recorder-player-timeline-seek-bar-wireframe
velt-recorder-player-timeline-wireframe
velt-recorder-player-transcription-wireframe
velt-recorder-player-video-container-wireframe
velt-recorder-player-video-wireframe
velt-recorder-screen-tool-wireframe
velt-recorder-video-tool-wireframe
velt-recording-preview-steps-dialog-audio-wireframe
velt-recording-preview-steps-dialog-bottom-panel-close-wireframe
velt-recording-preview-steps-dialog-bottom-panel-countdown-wireframe
velt-recording-preview-steps-dialog-bottom-panel-icon-wireframe
velt-recording-preview-steps-dialog-bottom-panel-wireframe
velt-recording-preview-steps-dialog-button-panel-wireframe
velt-recording-preview-steps-dialog-camera-button-off-wireframe
velt-recording-preview-steps-dialog-camera-button-on-wireframe
velt-recording-preview-steps-dialog-camera-button-wireframe
velt-recording-preview-steps-dialog-camera-off-message-wireframe
velt-recording-preview-steps-dialog-close-button-wireframe
velt-recording-preview-steps-dialog-mic-button-off-wireframe
velt-recording-preview-steps-dialog-mic-button-on-wireframe
velt-recording-preview-steps-dialog-mic-button-wireframe
velt-recording-preview-steps-dialog-screen-player-wireframe
velt-recording-preview-steps-dialog-settings-panel-wireframe
velt-recording-preview-steps-dialog-settings-wireframe
velt-recording-preview-steps-dialog-start-recording-wireframe
velt-recording-preview-steps-dialog-timer-cancel-wireframe
velt-recording-preview-steps-dialog-timer-countdown-wireframe
velt-recording-preview-steps-dialog-timer-wireframe
velt-recording-preview-steps-dialog-video-player-wireframe
velt-recording-preview-steps-dialog-video-wireframe
velt-recording-preview-steps-dialog-waveform-wireframe
```

### Transcription / subtitles (26)

```
velt-subtitles-button-wireframe
velt-subtitles-close-button-wireframe
velt-subtitles-embed-mode-wireframe
velt-subtitles-floating-mode-wireframe
velt-subtitles-panel-wireframe
velt-subtitles-text-wireframe
velt-subtitles-tooltip-wireframe
velt-transcription-button-wireframe
velt-transcription-close-button-wireframe
velt-transcription-content-item-text-wireframe
velt-transcription-content-item-time-wireframe
velt-transcription-content-item-wireframe
velt-transcription-content-wireframe
velt-transcription-copy-link-button-wireframe
velt-transcription-copy-link-tooltip-wireframe
velt-transcription-copy-link-wireframe
velt-transcription-embed-mode-wireframe
velt-transcription-floating-mode-wireframe
velt-transcription-panel-container-wireframe
velt-transcription-panel-wireframe
velt-transcription-summary-expand-toggle-off-wireframe
velt-transcription-summary-expand-toggle-on-wireframe
velt-transcription-summary-expand-toggle-wireframe
velt-transcription-summary-text-wireframe
velt-transcription-summary-wireframe
velt-transcription-tooltip-wireframe
```

### Autocomplete / @mentions (11)

```
velt-autocomplete-chip-tooltip-description-wireframe
velt-autocomplete-chip-tooltip-icon-wireframe
velt-autocomplete-chip-tooltip-name-wireframe
velt-autocomplete-chip-tooltip-wireframe
velt-autocomplete-empty-wireframe
velt-autocomplete-group-option-wireframe
velt-autocomplete-option-description-wireframe
velt-autocomplete-option-error-icon-wireframe
velt-autocomplete-option-icon-wireframe
velt-autocomplete-option-name-wireframe
velt-autocomplete-option-wireframe
```

### Presence / cursor (20)

```
velt-cursor-pointer-arrow-wireframe
velt-cursor-pointer-audio-huddle-audio-wireframe
velt-cursor-pointer-audio-huddle-avatar-wireframe
velt-cursor-pointer-audio-huddle-wireframe
velt-cursor-pointer-avatar-wireframe
velt-cursor-pointer-default-comment-wireframe
velt-cursor-pointer-default-name-wireframe
velt-cursor-pointer-default-wireframe
velt-cursor-pointer-video-huddle-wireframe
velt-cursor-pointer-wireframe
velt-presence-avatar-list-item-wireframe
velt-presence-avatar-list-wireframe
velt-presence-avatar-remaining-count-wireframe
velt-presence-tooltip-avatar-wireframe
velt-presence-tooltip-status-container-wireframe
velt-presence-tooltip-user-active-wireframe
velt-presence-tooltip-user-inactive-wireframe
velt-presence-tooltip-user-name-wireframe
velt-presence-tooltip-wireframe
velt-presence-wireframe
```

### Activity log (27)

```
velt-activity-log-empty-wireframe
velt-activity-log-header-close-button-wireframe
velt-activity-log-header-filter-content-item-icon-wireframe
velt-activity-log-header-filter-content-item-label-wireframe
velt-activity-log-header-filter-content-item-wireframe
velt-activity-log-header-filter-content-wireframe
velt-activity-log-header-filter-trigger-icon-wireframe
velt-activity-log-header-filter-trigger-label-wireframe
velt-activity-log-header-filter-trigger-wireframe
velt-activity-log-header-filter-wireframe
velt-activity-log-header-title-wireframe
velt-activity-log-header-wireframe
velt-activity-log-list-date-group-label-wireframe
velt-activity-log-list-date-group-wireframe
velt-activity-log-list-item-avatar-wireframe
velt-activity-log-list-item-content-action-wireframe
velt-activity-log-list-item-content-detail-wireframe
velt-activity-log-list-item-content-target-wireframe
velt-activity-log-list-item-content-user-wireframe
velt-activity-log-list-item-content-wireframe
velt-activity-log-list-item-icon-wireframe
velt-activity-log-list-item-time-wireframe
velt-activity-log-list-item-wireframe
velt-activity-log-list-show-more-wireframe
velt-activity-log-list-wireframe
velt-activity-log-loading-wireframe
velt-activity-log-wireframe
```

### Other (67)

```
velt-button-wireframe
velt-confirm-dialog-approve-button-wireframe
velt-confirm-dialog-message-wireframe
velt-confirm-dialog-reject-button-wireframe
velt-confirm-dialog-title-wireframe
velt-confirm-dialog-wireframe
velt-persistent-comment-mode-close-button-wireframe
velt-persistent-comment-mode-label-private-wireframe
velt-persistent-comment-mode-label-public-wireframe
velt-persistent-comment-mode-label-wireframe
velt-persistent-comment-mode-wireframe
velt-sidebar-button-comments-count-wireframe
velt-sidebar-button-icon-wireframe
velt-sidebar-button-unread-icon-wireframe
velt-sidebar-button-wireframe
velt-single-editor-mode-panel-accept-request-wireframe
velt-single-editor-mode-panel-cancel-request-wireframe
velt-single-editor-mode-panel-countdown-wireframe
velt-single-editor-mode-panel-edit-here-wireframe
velt-single-editor-mode-panel-editor-text-wireframe
velt-single-editor-mode-panel-reject-request-wireframe
velt-single-editor-mode-panel-request-access-wireframe
velt-single-editor-mode-panel-viewer-text-wireframe
velt-single-editor-mode-panel-wireframe
velt-user-selector-dropdown-avatar-wireframe
velt-user-selector-dropdown-email-wireframe
velt-user-selector-dropdown-error-icon-wireframe
velt-user-selector-dropdown-name-wireframe
velt-user-selector-dropdown-wireframe
velt-video-editor-player-add-zoom-button-wireframe
velt-video-editor-player-apply-button-loading-wireframe
velt-video-editor-player-apply-button-wireframe
velt-video-editor-player-close-button-wireframe
velt-video-editor-player-current-time-wireframe
velt-video-editor-player-delete-button-wireframe
velt-video-editor-player-download-button-wireframe
velt-video-editor-player-preview-loading-wireframe
velt-video-editor-player-preview-video-wireframe
velt-video-editor-player-preview-wireframe
velt-video-editor-player-retake-button-wireframe
velt-video-editor-player-split-button-wireframe
velt-video-editor-player-time-wireframe
velt-video-editor-player-timeline-backspace-hint-wireframe
velt-video-editor-player-timeline-container-wireframe
velt-video-editor-player-timeline-marker-wireframe
velt-video-editor-player-timeline-onboarding-arrow-wireframe
velt-video-editor-player-timeline-onboarding-content-wireframe
velt-video-editor-player-timeline-onboarding-text-description-wireframe
velt-video-editor-player-timeline-onboarding-text-title-wireframe
velt-video-editor-player-timeline-onboarding-text-wireframe
velt-video-editor-player-timeline-onboarding-wireframe
velt-video-editor-player-timeline-playhead-actions-wireframe
velt-video-editor-player-timeline-playhead-line-wireframe
velt-video-editor-player-timeline-playhead-wireframe
velt-video-editor-player-timeline-scale-wireframe
velt-video-editor-player-timeline-trim-wireframe
velt-video-editor-player-timeline-wireframe
velt-video-editor-player-title-wireframe
velt-video-editor-player-toggle-button-wireframe
velt-video-editor-player-total-time-wireframe
velt-video-editor-player-wireframe
velt-video-editor-player-zoom-button-options-input-wireframe
velt-video-editor-player-zoom-button-options-list-item-wireframe
velt-video-editor-player-zoom-button-options-list-wireframe
velt-video-editor-player-zoom-button-options-wireframe
velt-video-editor-player-zoom-button-trigger-wireframe
velt-video-editor-player-zoom-button-wireframe
```
