From 69f0dbbe2ebbbc8d7fa89afe1a7078d0fe206be9 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Tue, 14 Feb 2012 15:53:08 -0800 Subject: Adding all the components to the panel Signed-off-by: Valerio Virgillito --- node_modules/components-data/checkbox.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 node_modules/components-data/checkbox.json (limited to 'node_modules/components-data/checkbox.json') diff --git a/node_modules/components-data/checkbox.json b/node_modules/components-data/checkbox.json new file mode 100644 index 00000000..8991d210 --- /dev/null +++ b/node_modules/components-data/checkbox.json @@ -0,0 +1,21 @@ +{ + "component": "checkbox", + + "module": "montage/ui/checkbox.reel", + + "name": "Checkbox", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file -- cgit v1.2.3 From 747616980cad14f0b65fbcc7f497ed9680a39d29 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Wed, 15 Feb 2012 14:55:21 -0800 Subject: Adding more components pi Added rest of the components pi. Missing text-input and select Signed-off-by: Valerio Virgillito --- node_modules/components-data/checkbox.json | 38 ++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) (limited to 'node_modules/components-data/checkbox.json') diff --git a/node_modules/components-data/checkbox.json b/node_modules/components-data/checkbox.json index 8991d210..a03ee00f 100644 --- a/node_modules/components-data/checkbox.json +++ b/node_modules/components-data/checkbox.json @@ -8,14 +8,44 @@ "properties": [ { - "name": "label", + "name": "autofocus", + "type": "boolean", + "default": "false" + }, + { + "name": "disabled", + "type": "boolean", + "default": "false" + }, + { + "name": "checked", + "type": "boolean", + "default": "false" + }, + { + "name": "form", "type": "string", - "default": "Button" + "default": "" }, { - "name": "enabled", + "name": "name", + "type": "string", + "default": "" + }, + { + "name": "readonly", "type": "boolean", - "default": "true" + "default": null + }, + { + "name": "title", + "type": "string", + "default": "" + }, + { + "name": "value", + "type": "string", + "default": "on" } ] } \ No newline at end of file -- cgit v1.2.3