Skip to content
Entangle UI v0.13.0

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.

optional body?: LogViewBodyProps

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

The scrollable log body.


optional clear?: LogViewClearProps

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

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


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).


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.


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.