UNPKG

@glance-networks/agent-plugin

Version:

Glance Networks Agent Plugin

27 lines (26 loc) 564 B
export const INPUT_VARIANTS = { border: 'border', solid: 'solid', }; export const INPUT_SIZES = { small: 'small', medium: 'medium', }; export const DEFAULT_INPUT_SIZE = INPUT_SIZES.medium; export const INPUT_SHAPES = { rounded: 'rounded', 'rounded-full': 'rounded-full', 'none': 'none', }; export const DEFAULT_INPUT_SHAPE = INPUT_SHAPES.rounded; export const ALLOWED_INPUT_TYPES = [ 'text', 'password', 'email', 'number', 'tel', 'url', 'search', 'textarea', ]; export const DEFAULT_INPUT_TYPE = 'text';