wip(shared): Work on workbench views
This commit is contained in:
parent
cab7f5d2c5
commit
c53ff25053
25 changed files with 386 additions and 96 deletions
|
@ -0,0 +1,36 @@
|
|||
export const loadSettingsConfig = () => ({
|
||||
control: {
|
||||
control: 1, // Show when control > 0
|
||||
list: ['1', '2', '3', '4', '5'],
|
||||
choiceTitles: {
|
||||
1: 'renderWithReact',
|
||||
2: 'renderWithCore',
|
||||
3: 'renderWithCore',
|
||||
4: 'renderWithCore',
|
||||
5: 'renderWithCore',
|
||||
},
|
||||
valueTitles: {
|
||||
1: 'renderWithReact',
|
||||
2: 'renderWithCore',
|
||||
3: 'renderWithCore',
|
||||
4: 'renderWithCore',
|
||||
5: 'renderWithCore',
|
||||
},
|
||||
dflt: '2',
|
||||
emoji: '🖥️',
|
||||
},
|
||||
renderer: {
|
||||
control: 4, // Show when control > 3
|
||||
list: ['react', 'svg'],
|
||||
choiceTitles: {
|
||||
react: 'renderWithReact',
|
||||
svg: 'renderWithCore',
|
||||
},
|
||||
valueTitles: {
|
||||
react: 'React',
|
||||
svg: 'SVG',
|
||||
},
|
||||
dflt: 'react',
|
||||
emoji: '🚀',
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue