1
0
Fork 0
freesewing/designs/tutorial/config/index.js

37 lines
807 B
JavaScript
Raw Normal View History

import pkg from '../package.json' assert { type: 'json' }
const { version } = pkg
2019-05-30 21:19:06 +02:00
export default {
version,
name: 'tutorial',
design: 'joostdecock',
code: 'joostdecock',
department: 'accessorties',
type: 'pattern',
2019-05-30 21:19:06 +02:00
difficulty: 1,
tags: ['example'],
2019-05-30 21:19:06 +02:00
optionGroups: {
fit: ['neckRatio', 'widthRatio', 'lengthRatio'],
2021-04-24 10:16:31 +02:00
box: ['size'],
2019-05-30 21:19:06 +02:00
},
measurements: ['head'],
2019-05-30 21:19:06 +02:00
inject: {
step4: 'step3',
step5: 'step4',
step6: 'step5',
step7: 'step6',
step8: 'step7',
step9: 'step8',
step10: 'step9',
2021-04-24 10:16:31 +02:00
step11: 'step10',
2019-05-30 21:19:06 +02:00
},
parts: ['step1', 'step2', 'bib'],
2019-05-30 21:19:06 +02:00
options: {
size: { pct: 50, min: 10, max: 100 },
neckRatio: { pct: 80, min: 70, max: 90 },
widthRatio: { pct: 45, min: 35, max: 55 },
2021-04-24 10:16:31 +02:00
lengthRatio: { pct: 75, min: 55, max: 85 },
},
}