From 71b2eb133ab720551aa1921744cafba3a477633f Mon Sep 17 00:00:00 2001 From: Raymond Zhao Date: Wed, 1 Dec 2021 16:54:57 -0800 Subject: [PATCH] Add new features --- configuration-sample/package.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/configuration-sample/package.json b/configuration-sample/package.json index 51619666..0b821e21 100644 --- a/configuration-sample/package.json +++ b/configuration-sample/package.json @@ -31,8 +31,25 @@ "title": "Settings Editor Widget Samples", "order": 2, "properties": { + "conf.settingsEditor.numericObjectSetting": { + "type": "object", + "order": 2, + "description": "An example numeric object setting.", + "properties": { + "intprop": { + "type": "integer", + "description": "Integer property" + }, + "numprop": { + "type": "number", + "description": "Numeric property" + } + }, + "additionalProperties": false + }, "conf.settingsEditor.boolObjectSetting": { "type": "object", + "order": 1, "description": "An example bool object setting.", "properties": { "prop1": { @@ -71,7 +88,7 @@ } }, { - "title": "Configuration Samples", + "title": "Configuration Sample", "order": 1, "properties": { "conf.view.showOnWindowOpen": {