Appearance
Interface: ShowNoticeOptions
Defined in: src/notice/showNotice.tsx:23
Options for showing a notice bubble.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
title? | ReactNode | Title shown in the bubble header. | src/notice/showNotice.tsx:25 |
description? | ReactNode | Description shown below the title. | src/notice/showNotice.tsx:28 |
icon? | string | Icon displayed in the bubble. | src/notice/showNotice.tsx:31 |
iconColor? | string | Color of the icon. | src/notice/showNotice.tsx:34 |
subtitle? | ReactNode | Subtitle shown in the bubble. | src/notice/showNotice.tsx:37 |
text | ReactNode | Main text content of the bubble. | src/notice/showNotice.tsx:40 |
buttons? | ButtonListItemProps[] | Buttons displayed in the bubble. | src/notice/showNotice.tsx:43 |
statuses? | Status[] | Status messages shown in the bubble. | src/notice/showNotice.tsx:46 |
game? | NoticeGame | Game to display in the bubble. | src/notice/showNotice.tsx:49 |
gameUI? | Omit<Omit<ClickerGameProps, "resolve">, "notice"> | UI configuration for the game. | src/notice/showNotice.tsx:52 |
gameScore? | ClickerGameScoreProps | Score data for the game. | src/notice/showNotice.tsx:55 |
forcePosition? | Position | Force the position of the bubble. | src/notice/showNotice.tsx:58 |
isDraggable? | boolean | If true, the bubble is draggable. Defaults to true. | src/notice/showNotice.tsx:61 |