2023-11-11 00:59:09 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { i18n } from '../i18n/index.mjs'
|
|
|
|
import { data } from '../data.mjs'
|
|
|
|
// Parts
|
2023-12-16 17:57:37 +00:00
|
|
|
import { extendPath, controlPoints, createControlPoints, shape } from './shape.mjs'
|
2023-11-11 00:59:09 +00:00
|
|
|
import { leg } from './leg.mjs'
|
2023-11-20 05:46:10 +00:00
|
|
|
import { gusset } from './gusset.mjs'
|
2023-11-24 18:57:55 +00:00
|
|
|
import { waistband } from './waistband.mjs'
|
2023-11-11 00:59:09 +00:00
|
|
|
|
|
|
|
// Create new design
|
|
|
|
const Lumira = new Design({
|
|
|
|
data,
|
2023-12-12 01:36:23 +00:00
|
|
|
parts: [shape, gusset, leg, waistband],
|
2023-11-11 00:59:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Named exports
|
2023-12-16 17:57:37 +00:00
|
|
|
export {
|
|
|
|
i18n,
|
|
|
|
Lumira,
|
|
|
|
shape,
|
|
|
|
gusset,
|
|
|
|
leg,
|
|
|
|
waistband,
|
|
|
|
extendPath,
|
|
|
|
controlPoints,
|
|
|
|
createControlPoints,
|
|
|
|
}
|