Appearance
Interface: ShowNoticeOptions
Defined in: src/notice/showNotice.tsx:22
Options for showing a notice bubble.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
title? | ReactNode | Title shown in the bubble header. | src/notice/showNotice.tsx:24 |
description? | ReactNode | Description shown below the title. | src/notice/showNotice.tsx:27 |
icon? | string | Icon displayed in the bubble. | src/notice/showNotice.tsx:30 |
iconColor? | string | Color of the icon. | src/notice/showNotice.tsx:33 |
subtitle? | ReactNode | Subtitle shown in the bubble. | src/notice/showNotice.tsx:36 |
text | ReactNode | Main text content of the bubble. | src/notice/showNotice.tsx:39 |
buttons? | ButtonListItemProps[] | Buttons displayed in the bubble. | src/notice/showNotice.tsx:42 |
statuses? | Status[] | Status messages shown in the bubble. | src/notice/showNotice.tsx:45 |
game? | NoticeGame | Game to display in the bubble. | src/notice/showNotice.tsx:48 |
gameUI? | Omit<Omit<ClickerGameProps, "resolve">, "notice"> | UI configuration for the game. | src/notice/showNotice.tsx:51 |
gameScore? | ClickerGameScoreProps | Score data for the game. | src/notice/showNotice.tsx:54 |
forcePosition? | Position | Force the position of the bubble. | src/notice/showNotice.tsx:57 |
isDraggable? | boolean | If true, the bubble is draggable. Defaults to true. | src/notice/showNotice.tsx:60 |