hortensia
This design is part of the FreeSewing collection
Named exports
Hortensia: The design constructorabout: Metadata about the designbottomPanel: The bottomPanel part of the designfrontPanel: The frontPanel part of the designi18n: Internationalisation (i18n/translation) data for the designsidePanel: The sidePanel part of the designsidePanelReinforcement: The sidePanelReinforcement part of the designstrap: The strap part of the designzipperPanel: The zipperPanel part of the design
Constructor
To create a new hortensia Design, import the constructur as such:
import { Hortensia } from '@freesewing/hortensia'
Then you can instantiate it by passing a settings object:
const pattern = new Hortensia(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 { Hortensia } from '@freesewing/hortensia'
// Access the design config from the constructor
const dConf = Hortensia.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 { Hortensia } from '@freesewing/hortensia'
// Access the pattern config from the constructor
const pConf = Hortensia.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/hortensia'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/hortensia'
Parts
bottomPanel
The part itself
You can access this part as the bottomPanel named export:
import { bottomPanel } from '@freesewing/hortensia'
frontPanel
The part itself
You can access this part as the frontPanel named export:
import { frontPanel } from '@freesewing/hortensia'
sidePanel
The part itself
You can access this part as the sidePanel named export:
import { sidePanel } from '@freesewing/hortensia'
sidePanelReinforcement
The part itself
You can access this part as the sidePanelReinforcement named export:
import { sidePanelReinforcement } from '@freesewing/hortensia'
strap
The part itself
You can access this part as the strap named export:
import { strap } from '@freesewing/hortensia'
zipperPanel
The part itself
You can access this part as the zipperPanel named export:
import { zipperPanel } from '@freesewing/hortensia'