Updated Design: Palette Management UI (markdown)

Nick O'Leary 2016-08-09 23:32:55 +01:00
parent 32d011dab2
commit 88330fc804
1 changed files with 10 additions and 3 deletions

@ -61,12 +61,19 @@ By default, the catalog will be one we provide. But it needs to be possible cust
editorTheme: { editorTheme: {
... ...
palette: { palette: {
catalogues: [ // An array of urls for catalogues // An array of urls for catalogues:
catalogues: [
"http://catalogue.nodered.org/catalogue.json", "http://catalogue.nodered.org/catalogue.json",
"..." "..."
], ],
categories: [] // <-- supersedes existing paletteCatagories option,
editable: true/false // Default: true. Allows the editable palette to be disabled entirely // Customise the order of palette categories
// (supersedes existing top-level paletteCategories option)
categories: []
// Allows the editable palette feature to be disabled entirely by setting to false.
// Default: true
editable: true/false
} }
... ...
} }