Files
windmill/frontend/src/lib/components/apps/editor/componentsPanel/componentStaticValues.ts
T
Faton Ramadani fb395655e6 App bugfix (#1049)
* 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>
2022-12-29 12:47:53 +01:00

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