2022-06-14 13:09:16 +02:00
|
|
|
import { version } from '../package.json'
|
|
|
|
import { config as simonConfig } from '@freesewing/simon'
|
2019-09-25 18:02:05 +02:00
|
|
|
|
2022-05-21 18:01:59 +02:00
|
|
|
const config = {
|
2022-06-14 13:09:16 +02:00
|
|
|
version,
|
|
|
|
...simonConfig,
|
2019-09-25 18:02:05 +02:00
|
|
|
name: 'simone',
|
|
|
|
optionGroups: {
|
2022-06-14 13:09:16 +02:00
|
|
|
...simonConfig.optionGroups,
|
2022-08-17 13:27:06 -07:00
|
|
|
style: [
|
|
|
|
...simonConfig.optionGroups.style,
|
|
|
|
'frontDarts',
|
|
|
|
'contour',
|
|
|
|
'bustAlignedButtons',
|
|
|
|
],
|
2019-09-25 18:02:05 +02:00
|
|
|
advanced: [
|
2022-06-14 13:09:16 +02:00
|
|
|
...simonConfig.optionGroups.advanced,
|
2019-09-25 18:02:05 +02:00
|
|
|
'bustDartAngle',
|
|
|
|
'bustDartLength',
|
|
|
|
'frontDartLength',
|
2021-04-24 10:16:31 +02:00
|
|
|
],
|
2019-09-25 18:02:05 +02:00
|
|
|
},
|
2022-06-14 13:09:16 +02:00
|
|
|
measurements: [...simonConfig.measurements, 'bustSpan', 'highBust', 'hpsToBust'],
|
2019-09-25 18:02:05 +02:00
|
|
|
inject: {
|
2022-06-14 13:09:16 +02:00
|
|
|
...simonConfig.inject,
|
2019-09-25 18:02:05 +02:00
|
|
|
fbaFront: 'front',
|
|
|
|
frontRight: 'fbaFront',
|
|
|
|
frontLeft: 'fbaFront',
|
|
|
|
buttonPlacket: 'fbaFront',
|
|
|
|
buttonholePlacket: 'fbaFront',
|
|
|
|
sleeveBase: 'fbaFront',
|
|
|
|
},
|
2022-06-14 13:09:16 +02:00
|
|
|
hide: [...simonConfig.hide, 'fbaFront'],
|
2019-09-25 18:02:05 +02:00
|
|
|
options: {
|
2022-06-14 13:09:16 +02:00
|
|
|
...simonConfig.options,
|
2022-05-21 18:01:59 +02:00
|
|
|
|
2019-09-25 18:02:05 +02:00
|
|
|
// Constants
|
|
|
|
minimalDartShaping: 5,
|
2022-05-21 13:40:59 +02:00
|
|
|
|
|
|
|
// Simone specific
|
2022-05-21 18:01:59 +02:00
|
|
|
bustDartAngle: { deg: 10, min: 0, max: 20 },
|
2019-09-25 18:02:05 +02:00
|
|
|
bustDartLength: { pct: 80, min: 50, max: 90 },
|
2022-06-14 23:16:26 +02:00
|
|
|
frontDarts: { bool: false },
|
2019-09-29 16:58:21 +02:00
|
|
|
frontDartLength: { pct: 45, min: 30, max: 60 },
|
2021-04-24 10:16:31 +02:00
|
|
|
contour: { pct: 50, min: 30, max: 75 },
|
2022-08-17 13:27:06 -07:00
|
|
|
bustAlignedButtons: {
|
|
|
|
dflt: 'Disabled',
|
|
|
|
list: ['Even spacing', 'Split spacing', 'Disabled'], },
|
2021-04-24 10:16:31 +02:00
|
|
|
},
|
2019-09-25 18:02:05 +02:00
|
|
|
}
|
2022-05-21 18:01:59 +02:00
|
|
|
|
|
|
|
export default config
|