simon
This design is part of the FreeSewing collection
Named exports
Simon: The design constructorabout: Metadata about the designback: The back part of the designbuttonPlacket: The buttonPlacket part of the designbuttonholePlacket: The buttonholePlacket part of the designcollar: The collar part of the designcollarStand: The collarStand part of the designcuff: The cuff part of the designfront: The front part of the designfrontLeft: The frontLeft part of the designfrontRight: The frontRight part of the designi18n: Internationalisation (i18n/translation) data for the designsleeve: The sleeve part of the designsleevePlacketOverlap: The sleevePlacketOverlap part of the designsleevePlacketUnderlap: The sleevePlacketUnderlap part of the designyoke: The yoke part of the design
Constructor
To create a new simon Design, import the constructur as such:
import { Simon } from '@freesewing/simon'
Then you can instantiate it by passing a settings object:
const pattern = new Simon(settings)
Design config
You can access the design configuration without instantiating a design.
It is available as the designConfig property of the design constructor:
import { Simon } from '@freesewing/simon'
// Access the design config from the constructor
const dConf = Simon.designConfig
Pattern config
You can access the pattern configuration without instantiating a design.
It is available as the patternConfig property of the design constructor:
import { Simon } from '@freesewing/simon'
// Access the pattern config from the constructor
const pConf = Simon.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/simon'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/simon'
Parts
back
The part itself
You can access this part as the back named export:
import { back } from '@freesewing/simon'
buttonPlacket
The part itself
You can access this part as the buttonPlacket named export:
import { buttonPlacket } from '@freesewing/simon'
buttonholePlacket
The part itself
You can access this part as the buttonholePlacket named export:
import { buttonholePlacket } from '@freesewing/simon'
collar
The part itself
You can access this part as the collar named export:
import { collar } from '@freesewing/simon'
collarStand
The part itself
You can access this part as the collarStand named export:
import { collarStand } from '@freesewing/simon'
cuff
The part itself
You can access this part as the cuff named export:
import { cuff } from '@freesewing/simon'
front
The part itself
You can access this part as the front named export:
import { front } from '@freesewing/simon'
frontLeft
The part itself
You can access this part as the frontLeft named export:
import { frontLeft } from '@freesewing/simon'
frontRight
The part itself
You can access this part as the frontRight named export:
import { frontRight } from '@freesewing/simon'
sleeve
The part itself
You can access this part as the sleeve named export:
import { sleeve } from '@freesewing/simon'
sleevePlacketOverlap
The part itself
You can access this part as the sleevePlacketOverlap named export:
import { sleevePlacketOverlap } from '@freesewing/simon'
sleevePlacketUnderlap
The part itself
You can access this part as the sleevePlacketUnderlap named export:
import { sleevePlacketUnderlap } from '@freesewing/simon'
yoke
The part itself
You can access this part as the yoke named export:
import { yoke } from '@freesewing/simon'