Move marker property from BaseWidget to SliderWidget (#584)

* Move marker property from BaseWidget to SliderWidget

* nit
This commit is contained in:
Chenlei Hu
2025-02-24 16:35:34 -05:00
committed by GitHub
parent 170341db73
commit 59dea644f2
3 changed files with 3 additions and 3 deletions

View File

@@ -7,9 +7,7 @@ import type { IBaseWidget, IWidget, IWidgetOptions, TWidgetType, TWidgetValue }
export abstract class BaseWidget implements IBaseWidget {
linkedWidgets?: IWidget[]
options: IWidgetOptions<unknown>
marker?: number
label?: string
clicked?: boolean
name?: string
type?: TWidgetType
value?: TWidgetValue