2021-10-17 17:34:55 +02:00
|
|
|
***
|
|
|
|
|
|
|
|
## title: The advanced option group
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
Naming an option group `advanced` will hide it by default from the user
|
|
|
|
unless they enable *expert mode*.
|
|
|
|
|
|
|
|
```js
|
|
|
|
optionGroups: {
|
|
|
|
fit: ["chestEase", "hipsEase", "stretchFactor"],
|
|
|
|
style: ["armholeDrop", "backlineBend"],
|
|
|
|
advanced: [ "plutoniumCount" ]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
<Tip>
|
|
|
|
|
|
|
|
The `advanced` option group can also have nested groups
|
|
|
|
|
|
|
|
</Tip>
|