You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.2 KiB
JSON
77 lines
2.2 KiB
JSON
{
|
|
"title": "TSV Viewer",
|
|
"description": "TSV Viewer settings.",
|
|
"jupyter.lab.setting-icon": "ui-components:spreadsheet",
|
|
"jupyter.lab.setting-icon-label": "TSV Viewer",
|
|
"jupyter.lab.toolbars": {
|
|
"TSVTable": [{ "name": "delimiter", "rank": 10 }]
|
|
},
|
|
"jupyter.lab.transform": true,
|
|
"properties": {
|
|
"toolbar": {
|
|
"title": "TSV viewer toolbar items",
|
|
"description": "Note: To disable a toolbar item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the delimiter selector item:\n{\n \"toolbar\": [\n {\n \"name\": \"delimiter\",\n \"disabled\": true\n }\n ]\n}\n\nToolbar description:",
|
|
"items": {
|
|
"$ref": "#/definitions/toolbarItem"
|
|
},
|
|
"type": "array",
|
|
"default": []
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"definitions": {
|
|
"toolbarItem": {
|
|
"properties": {
|
|
"name": {
|
|
"title": "Unique name",
|
|
"type": "string"
|
|
},
|
|
"args": {
|
|
"title": "Command arguments",
|
|
"type": "object"
|
|
},
|
|
"command": {
|
|
"title": "Command id",
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"disabled": {
|
|
"title": "Whether the item is ignored or not",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"icon": {
|
|
"title": "Item icon id",
|
|
"description": "If defined, it will override the command icon",
|
|
"type": "string"
|
|
},
|
|
"label": {
|
|
"title": "Item label",
|
|
"description": "If defined, it will override the command label",
|
|
"type": "string"
|
|
},
|
|
"caption": {
|
|
"title": "Item caption",
|
|
"description": "If defined, it will override the command caption",
|
|
"type": "string"
|
|
},
|
|
"type": {
|
|
"title": "Item type",
|
|
"type": "string",
|
|
"enum": ["command", "spacer"]
|
|
},
|
|
"rank": {
|
|
"title": "Item rank",
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"default": 50
|
|
}
|
|
},
|
|
"required": ["name"],
|
|
"additionalProperties": false,
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|