2021-01-30 13:15:25 +01:00
|
|
|
import { version } from "../package.json";
|
|
|
|
|
|
|
|
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "hortensia",
|
|
|
|
version,
|
2021-01-31 09:20:04 +01:00
|
|
|
design: ['Stoffsuchti', 'Wouter Van Wageningen'],
|
|
|
|
code: 'Wouter Van Wageningen',
|
2021-01-30 13:15:25 +01:00
|
|
|
department: "accessories",
|
|
|
|
type: "pattern",
|
|
|
|
difficulty: 3,
|
|
|
|
tags: [
|
2021-01-31 09:21:00 +01:00
|
|
|
"handbag",
|
|
|
|
"accessories",
|
2021-01-30 13:15:25 +01:00
|
|
|
],
|
|
|
|
optionGroups: {
|
|
|
|
options: ["size", "zipperSize","strapLength","handleWidth"]
|
|
|
|
},
|
|
|
|
measurements: [],
|
2021-01-31 09:18:12 +01:00
|
|
|
dependencies: {
|
|
|
|
strap: 'sidepanel',
|
|
|
|
bottompanel: 'sidepanel',
|
|
|
|
frontpanel: 'sidepanel',
|
|
|
|
sidepanelreinforcement: 'sidepanel',
|
|
|
|
zipperpanel: 'sidepanel',
|
|
|
|
},
|
2021-01-30 13:15:25 +01:00
|
|
|
options: {
|
|
|
|
width: 230,
|
|
|
|
height: 330,
|
|
|
|
minHandleSpaceWidth: 80,
|
|
|
|
maxHandleSpaceWidth: 250,
|
|
|
|
pctHandleSpace: 50,
|
|
|
|
pctHandleVert: 42,
|
|
|
|
strapLength: { pct: 160, min: 75, max: 250 },
|
|
|
|
handleWidth: { mm: 20, min: 7, max: 30 },
|
|
|
|
size: { pct: 50, min: 20, max: 200 },
|
2021-01-31 09:18:12 +01:00
|
|
|
zipperSize: { dflt: '#5', list: ['#3','#4','#4.5','#5','#6','#8','#10','Invisible']}
|
2021-01-30 13:15:25 +01:00
|
|
|
}
|
|
|
|
};
|