mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 08:02:38 +00:00
* feat(frontend): Add divider app component * fix(frontend): Separate horizontal and vertical * fix(frontend): Update aligments * fix(frontend): Remove unused static value
14 lines
588 B
TypeScript
14 lines
588 B
TypeScript
import { BUTTON_COLORS } from '../../../common'
|
|
|
|
const buttonColorOptions = [...BUTTON_COLORS]
|
|
|
|
export const staticValues = {
|
|
buttonColorOptions,
|
|
buttonSizeOptions: ['xs', 'sm', 'md', 'lg', 'xl'],
|
|
tableSearchOptions: ['By Component', 'By Runnable', 'Disabled'],
|
|
chartThemeOptions: ['theme1', 'theme2', 'theme3'],
|
|
textStyleOptions: ['Title', 'Subtitle', 'Body', 'Label', 'Caption'],
|
|
currencyOptions: ['USD', 'EUR', 'GBP', 'CAD', 'AUD', 'JPY', 'CNY', 'INR', 'BRL'],
|
|
localeOptions: ['en-US', 'en-GB', 'en-IE', 'de-DE', 'fr-FR', 'br-FR', 'ja-JP', 'pt-TL', 'fr-CA', 'en-CA']
|
|
} as const
|