bonny
Named exports
Bonny: The design constructorabout: Metadata about the designi18n: Internationalisation (i18n/translation) data for the designside: The side part of the design
Constructor
To create a new bonny Design, import the constructur as such:
import { Bonny } from '@freesewing/bonny'
Then you can instantiate it by passing a settings object:
const pattern = new Bonny(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 { Bonny } from '@freesewing/bonny'
// Access the design config from the constructor
const dConf = Bonny.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 { Bonny } from '@freesewing/bonny'
// Access the pattern config from the constructor
const pConf = Bonny.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/bonny'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/bonny'
Parts
side
The part itself
You can access this part as the side named export:
import { side } from '@freesewing/bonny'