2022-01-23 13:22:13 +01:00
|
|
|
import pkg from '../package.json'
|
2019-05-06 17:01:44 +02:00
|
|
|
|
|
|
|
export default {
|
2021-01-31 09:26:26 +01:00
|
|
|
name: 'rendertest',
|
2022-01-23 13:22:13 +01:00
|
|
|
version: pkg.version,
|
2021-01-31 09:26:26 +01:00
|
|
|
design: 'Joost De Cock',
|
|
|
|
code: 'Joost De Cock',
|
2021-05-31 19:23:56 +02:00
|
|
|
department: 'accessories',
|
2021-01-31 09:26:26 +01:00
|
|
|
type: 'pattern',
|
2019-05-06 17:01:44 +02:00
|
|
|
difficulty: 1,
|
|
|
|
optionGroups: {
|
2021-01-31 09:26:26 +01:00
|
|
|
size: ['width'],
|
2022-01-19 12:35:02 +01:00
|
|
|
content: ['only'],
|
2022-01-19 16:35:54 +01:00
|
|
|
advanced: [
|
|
|
|
'strokeColors',
|
|
|
|
'strokeWidths',
|
|
|
|
'strokeStyles',
|
|
|
|
'strokeCombos',
|
|
|
|
'circles',
|
|
|
|
'text',
|
|
|
|
'snippets',
|
|
|
|
'macros',
|
|
|
|
],
|
2019-05-06 17:01:44 +02:00
|
|
|
},
|
|
|
|
measurements: [],
|
2022-01-19 16:23:13 +01:00
|
|
|
parts: ['demo', 'circles', 'colors', 'widths', 'styles', 'combos', 'text', 'snippets', 'macros'],
|
2019-05-06 17:01:44 +02:00
|
|
|
options: {
|
2021-10-27 18:41:22 +02:00
|
|
|
width: { mm: 200, min: 50, max: 500, testIgnore: true },
|
2021-12-24 13:28:34 +01:00
|
|
|
strokeColors: { bool: true },
|
|
|
|
strokeWidths: { bool: true },
|
|
|
|
strokeStyles: { bool: true },
|
|
|
|
strokeCombos: { bool: true },
|
2019-05-07 12:50:49 +02:00
|
|
|
circles: { bool: true },
|
|
|
|
text: { bool: true },
|
|
|
|
snippets: { bool: true },
|
2019-05-20 16:25:43 +02:00
|
|
|
macros: { bool: true },
|
2022-01-19 12:35:02 +01:00
|
|
|
only: {
|
2022-01-19 16:35:54 +01:00
|
|
|
dflt: 'false',
|
2022-01-19 12:35:02 +01:00
|
|
|
list: [
|
2022-01-19 16:35:54 +01:00
|
|
|
'false',
|
2022-01-19 12:35:02 +01:00
|
|
|
'circles',
|
|
|
|
'colors',
|
|
|
|
'widths',
|
|
|
|
'styles',
|
|
|
|
'combos',
|
|
|
|
'text',
|
|
|
|
'snippets',
|
|
|
|
'macros',
|
2022-01-19 16:23:13 +01:00
|
|
|
],
|
|
|
|
},
|
2021-04-24 10:16:31 +02:00
|
|
|
},
|
2021-01-31 09:26:26 +01:00
|
|
|
}
|