2022-09-04 19:48:15 +02:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
|
|
|
import { banner } from './plugin-banner.mjs'
|
|
|
|
import { bartack } from './plugin-bartack.mjs'
|
|
|
|
import { buttons } from './plugin-buttons.mjs'
|
2023-03-08 05:43:10 +00:00
|
|
|
import { crossbox } from './plugin-crossbox.mjs'
|
2022-09-04 19:48:15 +02:00
|
|
|
import { cutonfold } from './plugin-cutonfold.mjs'
|
|
|
|
import { dimension } from './plugin-dimension.mjs'
|
|
|
|
import { flip } from './plugin-flip.mjs'
|
|
|
|
import { gore } from './plugin-gore.mjs'
|
|
|
|
import { grainline } from './plugin-grainline.mjs'
|
|
|
|
import { i18n } from './plugin-i18n.mjs'
|
|
|
|
import { logo } from './plugin-logo.mjs'
|
|
|
|
import { measurements } from './plugin-measurements.mjs'
|
|
|
|
import { mirror } from './plugin-mirror.mjs'
|
|
|
|
import { notches } from './plugin-notches.mjs'
|
2023-03-08 05:43:10 +00:00
|
|
|
import { pleat } from './plugin-pleat.mjs'
|
2022-09-04 19:48:15 +02:00
|
|
|
import { round } from './plugin-round.mjs'
|
|
|
|
import { scalebox } from './plugin-scalebox.mjs'
|
2023-03-08 05:43:10 +00:00
|
|
|
import { sewtogether } from './plugin-sewtogether.mjs'
|
2022-09-04 19:48:15 +02:00
|
|
|
import { sprinkle } from './plugin-sprinkle.mjs'
|
|
|
|
import { title } from './plugin-title.mjs'
|
2022-01-16 17:26:52 +01:00
|
|
|
|
2022-09-04 19:48:15 +02:00
|
|
|
// Setup our new design
|
|
|
|
const Plugintest = new Design({
|
|
|
|
data,
|
|
|
|
parts: [
|
|
|
|
banner,
|
|
|
|
bartack,
|
|
|
|
buttons,
|
2023-03-08 05:43:10 +00:00
|
|
|
crossbox,
|
2022-09-04 19:48:15 +02:00
|
|
|
cutonfold,
|
|
|
|
dimension,
|
|
|
|
flip,
|
|
|
|
gore,
|
|
|
|
grainline,
|
|
|
|
i18n,
|
|
|
|
logo,
|
|
|
|
measurements,
|
|
|
|
mirror,
|
|
|
|
notches,
|
2023-03-08 05:43:10 +00:00
|
|
|
pleat,
|
2022-09-04 19:48:15 +02:00
|
|
|
round,
|
|
|
|
scalebox,
|
2023-03-08 05:43:10 +00:00
|
|
|
sewtogether,
|
2022-09-04 19:48:15 +02:00
|
|
|
sprinkle,
|
|
|
|
title,
|
2022-09-11 16:34:08 +02:00
|
|
|
],
|
2022-09-04 19:48:15 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Named exports
|
|
|
|
export {
|
2022-01-16 17:26:52 +01:00
|
|
|
banner,
|
|
|
|
bartack,
|
2022-01-16 19:01:54 +01:00
|
|
|
buttons,
|
2023-03-08 05:43:10 +00:00
|
|
|
crossbox,
|
2022-01-17 18:14:05 +01:00
|
|
|
cutonfold,
|
2022-01-18 08:30:33 +01:00
|
|
|
dimension,
|
2022-01-18 09:03:16 +01:00
|
|
|
flip,
|
2022-01-18 09:13:18 +01:00
|
|
|
gore,
|
2022-01-18 10:14:50 +01:00
|
|
|
grainline,
|
2022-09-04 19:48:15 +02:00
|
|
|
i18n,
|
2022-01-18 12:16:09 +01:00
|
|
|
logo,
|
2022-01-18 12:24:07 +01:00
|
|
|
measurements,
|
2022-01-18 14:12:36 +01:00
|
|
|
mirror,
|
2022-01-18 14:27:01 +01:00
|
|
|
notches,
|
2023-03-08 05:43:10 +00:00
|
|
|
pleat,
|
2022-01-18 14:36:02 +01:00
|
|
|
round,
|
2022-01-18 14:40:26 +01:00
|
|
|
scalebox,
|
2023-03-08 05:43:10 +00:00
|
|
|
sewtogether,
|
2022-01-18 14:58:10 +01:00
|
|
|
sprinkle,
|
2022-01-18 16:28:44 +01:00
|
|
|
title,
|
2022-09-04 19:48:15 +02:00
|
|
|
Plugintest,
|
2022-01-16 17:26:52 +01:00
|
|
|
}
|