Skip to main content

yuri

note

This design is part of the FreeSewing collection

Named exports

Constructor

To create a new yuri Design, import the constructur as such:

import { Yuri } from '@freesewing/yuri'

Then you can instantiate it by passing a settings object:

const pattern = new Yuri(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 { Yuri } from '@freesewing/yuri'

// Access the design config from the constructor
const dConf = Yuri.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 { Yuri } from '@freesewing/yuri'

// Access the pattern config from the constructor
const pConf = Yuri.patternConfig

Metadata

You can access the design's metadata through the about named export:

import { about } from '@freesewing/yuri'

I18n

You can access the design's internationalization data through the i18n named export:

import { i18n } from '@freesewing/yuri'

Parts

back

The part itself

You can access this part as the back named export:

import { back } from '@freesewing/yuri'

front

The part itself

You can access this part as the front named export:

import { front } from '@freesewing/yuri'

gusset

The part itself

You can access this part as the gusset named export:

import { gusset } from '@freesewing/yuri'

hoodCenter

The part itself

You can access this part as the hoodCenter named export:

import { hoodCenter } from '@freesewing/yuri'

hoodSide

The part itself

You can access this part as the hoodSide named export:

import { hoodSide } from '@freesewing/yuri'

sleeve

The part itself

You can access this part as the sleeve named export:

import { sleeve } from '@freesewing/yuri'