1
0
Fork 0
freesewing/designs/rendertest/config/index.js
2022-08-25 12:14:16 +02:00

54 lines
1.1 KiB
JavaScript

import pkg from '../package.json' assert { type: 'json' }
const { version } = pkg
export default {
version,
name: 'rendertest',
design: 'Joost De Cock',
code: 'Joost De Cock',
department: 'accessories',
type: 'pattern',
difficulty: 1,
optionGroups: {
size: ['width'],
content: ['only'],
advanced: [
'strokeColors',
'strokeWidths',
'strokeStyles',
'strokeCombos',
'circles',
'text',
'snippets',
'macros',
],
},
measurements: [],
parts: ['demo', 'circles', 'colors', 'widths', 'styles', 'combos', 'text', 'snippets', 'macros'],
options: {
width: { mm: 200, min: 50, max: 500, testIgnore: true },
strokeColors: { bool: true },
strokeWidths: { bool: true },
strokeStyles: { bool: true },
strokeCombos: { bool: true },
circles: { bool: true },
text: { bool: true },
snippets: { bool: true },
macros: { bool: true },
only: {
dflt: 'false',
list: [
'false',
'circles',
'colors',
'widths',
'styles',
'combos',
'text',
'snippets',
'macros',
],
},
},
}