From 08eafdff4ec25d34e2e76b386145a9fd122431dc Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Mon, 6 Feb 2012 14:32:11 -0800 Subject: Moving the data files to a separate folder for now until montage provides the final files. Signed-off-by: Valerio Virgillito --- node_modules/components-data/textfield.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 node_modules/components-data/textfield.json (limited to 'node_modules/components-data/textfield.json') diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json new file mode 100644 index 00000000..2a21394a --- /dev/null +++ b/node_modules/components-data/textfield.json @@ -0,0 +1,21 @@ +{ + "component": "textfield", + + "module": "montage/ui/textfield.reel", + + "name": "Textfield", + + "properties": [ + + { + "name": "value", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file -- cgit v1.2.3 From 47df0aff81c25334b129047bb227ea5015357eda Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Thu, 9 Feb 2012 16:22:03 -0800 Subject: Setting defaults and more cleanup Signed-off-by: Valerio Virgillito --- node_modules/components-data/textfield.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'node_modules/components-data/textfield.json') diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json index 2a21394a..4f8a1499 100644 --- a/node_modules/components-data/textfield.json +++ b/node_modules/components-data/textfield.json @@ -13,9 +13,9 @@ "default": "Button" }, { - "name": "enabled", + "name": "disabled", "type": "boolean", - "default": "true" + "default": "false" } ] } \ No newline at end of file -- cgit v1.2.3 From 90e2b3455a123af8751d63381609b3a5ae304051 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Thu, 16 Feb 2012 22:33:08 -0800 Subject: Fixing the selectInput and finishing the textinput Signed-off-by: Valerio Virgillito --- node_modules/components-data/textfield.json | 112 +++++++++++++++++++++++++++- 1 file changed, 108 insertions(+), 4 deletions(-) (limited to 'node_modules/components-data/textfield.json') diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json index 4f8a1499..7164b8b3 100644 --- a/node_modules/components-data/textfield.json +++ b/node_modules/components-data/textfield.json @@ -6,16 +6,120 @@ "name": "Textfield", "properties": [ - { - "name": "value", + "name": "accept", + "type": "string", + "default": null + }, + { + "name": "autocomplete", "type": "string", - "default": "Button" + "default": "" + }, + { + "name": "autofocus", + "type": "boolean", + "default": "" + }, + { + "name": "checked", + "type": "boolean", + "default": "" }, { "name": "disabled", "type": "boolean", - "default": "false" + "default": "" + }, + { + "name": "formaction", + "type": "string", + "default": "" + }, + { + "name": "formenctype", + "type": "string", + "default": "" + }, + { + "name": "formmethod", + "type": "string", + "default": "" + }, + { + "name": "formnovalidate", + "type": "boolean", + "default": "" + }, + { + "name": "formtarget", + "type": "string", + "default": "" + }, + { + "name": "list", + "type": "string", + "default": "" + }, + { + "name": "maxlength", + "type": "number", + "default": "" + }, + { + "name": "multiple", + "type": "boolean", + "default": "" + }, + { + "name": "name", + "type": "string", + "default": "" + }, + { + "name": "pattern", + "type": "string", + "default": "" + }, + { + "name": "placeholder", + "type": "string", + "default": "" + }, + { + "name": "readonly", + "type": "boolean", + "default": "" + }, + { + "name": "required", + "type": "boolean", + "default": "" + }, + { + "name": "selectionDirection", + "type": "string", + "default": "" + }, + { + "name": "size", + "type": "number", + "default": "" + }, + { + "name": "src", + "type": "string", + "default": "" + }, + { + "name": "step", + "type": "number", + "default": "" + }, + { + "name": "value", + "type": "string", + "default": "" } ] } \ No newline at end of file -- cgit v1.2.3