Support for hidden & advanced widgets (#250)

This commit is contained in:
pythongosssss
2024-11-01 01:41:31 +00:00
committed by GitHub
parent d9d0837423
commit eaaa0a4c39
4 changed files with 48 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ export interface ISerialisedNode {
boxcolor?: string
color?: string
bgcolor?: string
showAdvanced?: boolean
widgets_values?: TWidgetValue[]
}

View File

@@ -107,6 +107,9 @@ export interface IBaseWidget<TElement extends HTMLElement = HTMLElement> {
last_y?: number
width?: number
disabled?: boolean
hidden?: boolean
advanced?: boolean
tooltip?: string