Skip to main content

hortensia

note

This design is part of the FreeSewing collection

Named exports

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'