1
0
Fork 0
freesewing/designs/carlton/src/index.mjs

37 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-09-04 11:37:23 -07:00
import { Design } from '@freesewing/core'
import { data } from '../data.mjs'
2019-03-25 18:20:15 +01:00
// Parts
2022-09-04 11:37:23 -07:00
import { front } from './front.mjs'
import { back } from './back.mjs'
import { tail } from './tail.mjs'
import { topSleeve } from './topsleeve.mjs'
import { underSleeve } from './undersleeve.mjs'
import { belt } from './belt.mjs'
import { collarStand } from './collarstand.mjs'
import { collar } from './collar.mjs'
import { cuffFacing } from './cufffacing.mjs'
import { pocket } from './pocket.mjs'
import { pocketFlap } from './pocketflap.mjs'
import { pocketLining } from './pocketlining.mjs'
import { chestPocketWelt } from './chestpocketwelt.mjs'
import { chestPocketBag } from './chestpocketbag.mjs'
import { innerPocketWelt } from './innerpocketwelt.mjs'
import { innerPocketBag } from './innerpocketbag.mjs'
import { innerPocketTab } from './innerpockettab.mjs'
// Create design
2022-09-04 11:37:23 -07:00
const Carlton = new Design({
data,
parts: [ front, back, tail, topSleeve, underSleeve, belt, collarStand,
collar, cuffFacing, pocket, pocketFlap, pocketLining, chestPocketWelt,
chestPocketBag, innerPocketWelt, innerPocketBag, innerPocketTab, ],
})
2019-03-25 18:20:15 +01:00
// Named exports
2022-09-04 11:37:23 -07:00
export {
front, back, tail, topSleeve, underSleeve, belt, collarStand, collar,
cuffFacing, pocket, pocketFlap, pocketLining, chestPocketWelt,
chestPocketBag, innerPocketWelt, innerPocketBag, innerPocketTab,
Carlton
}