willow-cli
Version:
CLI for installing Willow Design System components
16 lines (15 loc) • 564 B
JavaScript
export const WILLOW_REGISTRY = 'https://iridescent-brigadeiros-fe4174.netlify.app/r';
export const STABLE_COMPONENTS = [
'button', 'badge', 'card', 'input', 'label', 'select', 'textarea',
'accordion', 'tabs', 'modal', 'checkbox', 'chip',
'fancy-button', 'form-card', 'form-field', 'gradient-bg',
'highlight', 'icon', 'info-card', 'list', 'logo', 'skeleton',
'switch', 'tag', 'toast'
];
export const UNSTABLE_COMPONENTS = [
'avatar', 'tooltip'
];
export const AVAILABLE_COMPONENTS = [
...STABLE_COMPONENTS,
...UNSTABLE_COMPONENTS
];