Skip to content

LogViewSlotProps

Defined in: src/components/feedback/LogView/LogView.types.ts:372

Per-slot props for the default composition (see LogViewBaseProps.slotProps).

Each key maps to a slot of the batteries-included layout and is typed as that slot’s own props. children is omitted for slots whose content LogView owns — the toolbar (its children are the search / filter / action buttons) and the footer (its content comes from the footer prop). clear and copy keep children so you can swap their icon while keeping the layout.

Properties

body?

optional body: LogViewBodyProps

Defined in: src/components/feedback/LogView/LogView.types.ts:384

The scrollable log body.


clear?

optional clear: LogViewClearProps

Defined in: src/components/feedback/LogView/LogView.types.ts:382

The clear action button (pass children to swap its icon).


copy?

optional copy: LogViewCopyProps

Defined in: src/components/feedback/LogView/LogView.types.ts:380

The copy-all action button (pass children to swap its icon).


optional footer: Omit<LogViewFooterProps, "children">

Defined in: src/components/feedback/LogView/LogView.types.ts:386

The footer bar (its content still comes from the footer prop).


levelFilter?

optional levelFilter: LogViewLevelFilterProps

Defined in: src/components/feedback/LogView/LogView.types.ts:378

The level-filter chip group.


optional search: LogViewSearchProps

Defined in: src/components/feedback/LogView/LogView.types.ts:376

The search input.


toolbar?

optional toolbar: Omit<LogViewToolbarProps, "children">

Defined in: src/components/feedback/LogView/LogView.types.ts:374

The toolbar container that wraps search, level chips, and the actions.