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/textarea.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 node_modules/components-data/textarea.json (limited to 'node_modules/components-data/textarea.json') diff --git a/node_modules/components-data/textarea.json b/node_modules/components-data/textarea.json new file mode 100644 index 00000000..608011e1 --- /dev/null +++ b/node_modules/components-data/textarea.json @@ -0,0 +1,21 @@ +{ + "component": "textarea", + + "module": "montage/ui/textarea.reel", + + "name": "TextArea", + + "properties": [ + + { + "name": "value", + "type": "string", + "default": "Button" + }, + { + "name": "disabled", + "type": "boolean", + "default": "false" + } + ] +} \ 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/textarea.json | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'node_modules/components-data/textarea.json') diff --git a/node_modules/components-data/textarea.json b/node_modules/components-data/textarea.json index 608011e1..6e3d78c2 100644 --- a/node_modules/components-data/textarea.json +++ b/node_modules/components-data/textarea.json @@ -8,14 +8,25 @@ "properties": [ { - "name": "value", + "name": "rows", + "type": "number", + "default": null + }, + { + "name": "cols", + "type": "number", + "default": null + }, + { + "name": "wrap", "type": "string", - "default": "Button" + "default": "soft", + "possibleValues": ["hard", "soft"] }, { - "name": "disabled", - "type": "boolean", - "default": "false" + "name": "textContent", + "type": "string", + "default": null } ] } \ No newline at end of file -- cgit v1.2.3