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/anchor.json | 21 +++++++++++++++++++++ node_modules/components-data/checkbox.json | 21 +++++++++++++++++++++ node_modules/components-data/image.json | 21 +++++++++++++++++++++ node_modules/components-data/number-input.json | 21 +++++++++++++++++++++ node_modules/components-data/radio-button.json | 21 +++++++++++++++++++++ node_modules/components-data/range-input.json | 21 +++++++++++++++++++++ node_modules/components-data/select.json | 21 +++++++++++++++++++++ node_modules/components-data/textarea.json | 21 +++++++++++++++++++++ node_modules/components-data/toggle-button.json | 21 +++++++++++++++++++++ 9 files changed, 189 insertions(+) create mode 100644 node_modules/components-data/anchor.json create mode 100644 node_modules/components-data/checkbox.json create mode 100644 node_modules/components-data/image.json create mode 100644 node_modules/components-data/number-input.json create mode 100644 node_modules/components-data/radio-button.json create mode 100644 node_modules/components-data/range-input.json create mode 100644 node_modules/components-data/select.json create mode 100644 node_modules/components-data/textarea.json create mode 100644 node_modules/components-data/toggle-button.json (limited to 'node_modules/components-data') diff --git a/node_modules/components-data/anchor.json b/node_modules/components-data/anchor.json new file mode 100644 index 00000000..b0284c7e --- /dev/null +++ b/node_modules/components-data/anchor.json @@ -0,0 +1,21 @@ +{ + "component": "anchor", + + "module": "montage/ui/anchor.reel", + + "name": "Anchor", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file 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 diff --git a/node_modules/components-data/image.json b/node_modules/components-data/image.json new file mode 100644 index 00000000..4a90ec5b --- /dev/null +++ b/node_modules/components-data/image.json @@ -0,0 +1,21 @@ +{ + "component": "imageComponent", + + "module": "montage/ui/image.reel", + + "name": "Image", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/number-input.json b/node_modules/components-data/number-input.json new file mode 100644 index 00000000..1898ec4f --- /dev/null +++ b/node_modules/components-data/number-input.json @@ -0,0 +1,21 @@ +{ + "component": "numberInput", + + "module": "montage/ui/number-input.reel", + + "name": "NumberInput", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/radio-button.json b/node_modules/components-data/radio-button.json new file mode 100644 index 00000000..e76cc6b4 --- /dev/null +++ b/node_modules/components-data/radio-button.json @@ -0,0 +1,21 @@ +{ + "component": "radioButton", + + "module": "montage/ui/radio-button.reel", + + "name": "RadioButton", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/range-input.json b/node_modules/components-data/range-input.json new file mode 100644 index 00000000..44950890 --- /dev/null +++ b/node_modules/components-data/range-input.json @@ -0,0 +1,21 @@ +{ + "component": "rangeInput", + + "module": "montage/ui/range-input.reel", + + "name": "RangeInput", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/select.json b/node_modules/components-data/select.json new file mode 100644 index 00000000..b823f8d6 --- /dev/null +++ b/node_modules/components-data/select.json @@ -0,0 +1,21 @@ +{ + "component": "select", + + "module": "montage/ui/select-input.reel", + + "name": "SelectInput", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file 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 diff --git a/node_modules/components-data/toggle-button.json b/node_modules/components-data/toggle-button.json new file mode 100644 index 00000000..88b6eff0 --- /dev/null +++ b/node_modules/components-data/toggle-button.json @@ -0,0 +1,21 @@ +{ + "component": "toggleButton", + + "module": "montage/ui/toggle-button.reel", + + "name": "ToggleButton", + + "properties": [ + + { + "name": "label", + "type": "string", + "default": "Button" + }, + { + "name": "enabled", + "type": "boolean", + "default": "true" + } + ] +} \ No newline at end of file -- cgit v1.2.3