fix(interface/input): add missing color type to typings (#407)

Add color option
This commit is contained in:
Galuža moree
2023-09-01 20:13:16 +02:00
committed by GitHub
parent 3e527ac517
commit 2fca9491ba

View File

@@ -1,7 +1,7 @@
local input local input
---@class InputDialogRowProps ---@class InputDialogRowProps
---@field type 'input' | 'number' | 'checkbox' | 'select' | 'slider' | 'multi-select' | 'date' | 'date-range' | 'time' | 'textarea' ---@field type 'input' | 'number' | 'checkbox' | 'select' | 'slider' | 'multi-select' | 'date' | 'date-range' | 'time' | 'textarea' | 'color'
---@field label string ---@field label string
---@field options? { value: string, label: string, default?: string }[] ---@field options? { value: string, label: string, default?: string }[]
---@field password? boolean ---@field password? boolean