✨ Added tutorial pattern
This commit is contained in:
parent
a1e9badc2c
commit
7d9e41ec6f
28 changed files with 11984 additions and 0 deletions
57
packages/tutorial/config/index.js
Normal file
57
packages/tutorial/config/index.js
Normal file
|
@ -0,0 +1,57 @@
|
|||
import { version } from "../package.json";
|
||||
|
||||
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
|
||||
|
||||
export default {
|
||||
name: "tutorial",
|
||||
version,
|
||||
design: "joostdecock",
|
||||
code: "joostdecock",
|
||||
department: "womenswear",
|
||||
type: "pattern",
|
||||
difficulty: 1,
|
||||
tags: [
|
||||
"freesewing",
|
||||
"design",
|
||||
"diy",
|
||||
"fashion",
|
||||
"made to measure",
|
||||
"parametric design",
|
||||
"pattern",
|
||||
"sewing",
|
||||
"sewing pattern"
|
||||
],
|
||||
optionGroups: {
|
||||
fit: ["neckRatio", "widthRatio", "lengthRatio"],
|
||||
box: ["size"]
|
||||
},
|
||||
measurements: ["headCircumference"],
|
||||
dependencies: {
|
||||
step4: "step3",
|
||||
step5: "step4",
|
||||
step6: "step5",
|
||||
step7: "step6",
|
||||
step8: "step7",
|
||||
step9: "step8",
|
||||
step10: "step9",
|
||||
step11: "step10"
|
||||
},
|
||||
inject: {
|
||||
step4: "step3",
|
||||
step5: "step4",
|
||||
step6: "step5",
|
||||
step7: "step6",
|
||||
step8: "step7",
|
||||
step9: "step8",
|
||||
step10: "step9",
|
||||
step11: "step10"
|
||||
},
|
||||
hide: [],
|
||||
parts: ["step1", "step2", "bib"],
|
||||
options: {
|
||||
size: { pct: 50, min: 10, max: 100 },
|
||||
neckRatio: { pct: 80, min: 70, max: 90 },
|
||||
widthRatio: { pct: 45, min: 35, max: 55 },
|
||||
lengthRatio: { pct: 75, min: 55, max: 85 }
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue