formsflow-theming
Version:
US Web Design System templates for form.io
24 lines (23 loc) • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = [
{
type: 'select',
key: 'theme',
overrideEditForm: true,
label: 'Theme',
input: true,
tooltip: 'The color theme of this button.',
dataSrc: 'values',
weight: 140,
data: {
values: [
{ label: 'Default', value: 'primary' },
{ label: 'Secondary', value: 'secondary' },
{ label: 'Accent Cool', value: 'accent-cool' },
{ label: 'Base', value: 'base' },
{ label: 'Outline', value: 'outline' },
],
},
},
];