mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
fb395655e6
* adapt static adapter to cloudflare * fix(frontend): Various bug fix * fix typecheck * numerous fixes * fix all connects * fix all connects * more improvements * more improvements * everything work? Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
11 lines
321 B
TypeScript
11 lines
321 B
TypeScript
import { BUTTON_COLORS } from '../../../common'
|
|
|
|
const buttonColorOptions = [...BUTTON_COLORS]
|
|
|
|
export const staticValues = {
|
|
buttonColorOptions,
|
|
buttonSizeOptions: ['xs', 'sm', 'md', 'lg', 'xl'],
|
|
tableSearchOptions: ['Component', 'Runnable', 'Disabled'],
|
|
chartThemeOptions: ['theme1', 'theme2', 'theme3']
|
|
} as const
|