diff options
-rwxr-xr-x | js/panels/components-panel.reel/components-panel.js | 5 | ||||
-rw-r--r-- | node_modules/components-data/anchor.json | 2 | ||||
-rw-r--r-- | node_modules/components-data/button.json | 2 | ||||
-rw-r--r-- | node_modules/components-data/checkbox.json | 4 | ||||
-rw-r--r-- | node_modules/components-data/image.json | 2 | ||||
-rw-r--r-- | node_modules/components-data/number-input.json | 4 | ||||
-rw-r--r-- | node_modules/components-data/radio-button.json | 4 | ||||
-rw-r--r-- | node_modules/components-data/range-input.json | 4 | ||||
-rw-r--r-- | node_modules/components-data/select.json | 4 | ||||
-rw-r--r-- | node_modules/components-data/textarea.json | 2 | ||||
-rw-r--r-- | node_modules/components-data/textfield.json | 4 |
11 files changed, 16 insertions, 21 deletions
diff --git a/js/panels/components-panel.reel/components-panel.js b/js/panels/components-panel.reel/components-panel.js index e6b7a6e3..46f91410 100755 --- a/js/panels/components-panel.reel/components-panel.js +++ b/js/panels/components-panel.reel/components-panel.js | |||
@@ -98,11 +98,6 @@ exports.ComponentsPanel = Montage.create(Component, { | |||
98 | "text": "Textfield", | 98 | "text": "Textfield", |
99 | "dataFile" : "node_modules/components-data/textfield.json", | 99 | "dataFile" : "node_modules/components-data/textfield.json", |
100 | "component": "textfield" | 100 | "component": "textfield" |
101 | }, | ||
102 | { | ||
103 | "text": "Toggle Button", | ||
104 | "dataFile" : "node_modules/components-data/toggle-button.json", | ||
105 | "component": "toggleButton" | ||
106 | } | 101 | } |
107 | ] | 102 | ] |
108 | } | 103 | } |
diff --git a/node_modules/components-data/anchor.json b/node_modules/components-data/anchor.json index 028a759b..e3847374 100644 --- a/node_modules/components-data/anchor.json +++ b/node_modules/components-data/anchor.json | |||
@@ -1,7 +1,7 @@ | |||
1 | { | 1 | { |
2 | "component": "anchor", | 2 | "component": "anchor", |
3 | 3 | ||
4 | "module": "montage/ui/anchor.reel", | 4 | "module": "montage/ui/native/anchor.reel", |
5 | 5 | ||
6 | "name": "Anchor", | 6 | "name": "Anchor", |
7 | 7 | ||
diff --git a/node_modules/components-data/button.json b/node_modules/components-data/button.json index a931afcb..73ed2c9c 100644 --- a/node_modules/components-data/button.json +++ b/node_modules/components-data/button.json | |||
@@ -1,7 +1,7 @@ | |||
1 | { | 1 | { |
2 | "component": "button", | 2 | "component": "button", |
3 | 3 | ||
4 | "module": "montage/ui/button.reel", | 4 | "module": "montage/ui/native/button.reel", |
5 | 5 | ||
6 | "name": "Button", | 6 | "name": "Button", |
7 | 7 | ||
diff --git a/node_modules/components-data/checkbox.json b/node_modules/components-data/checkbox.json index e91a107e..58f09cb6 100644 --- a/node_modules/components-data/checkbox.json +++ b/node_modules/components-data/checkbox.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "checkbox", | 2 | "component": "checkbox", |
3 | 3 | ||
4 | "module": "montage/ui/input-checkbox.reel", | 4 | "module": "montage/ui/native/input-checkbox.reel", |
5 | 5 | ||
6 | "name": "Checkbox", | 6 | "name": "InputCheckbox", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | 9 | ||
diff --git a/node_modules/components-data/image.json b/node_modules/components-data/image.json index 22548cf9..3dee2365 100644 --- a/node_modules/components-data/image.json +++ b/node_modules/components-data/image.json | |||
@@ -1,7 +1,7 @@ | |||
1 | { | 1 | { |
2 | "component": "imageComponent", | 2 | "component": "imageComponent", |
3 | 3 | ||
4 | "module": "montage/ui/image.reel", | 4 | "module": "montage/ui/native/image.reel", |
5 | 5 | ||
6 | "name": "Image", | 6 | "name": "Image", |
7 | 7 | ||
diff --git a/node_modules/components-data/number-input.json b/node_modules/components-data/number-input.json index 5e53fe58..521b4921 100644 --- a/node_modules/components-data/number-input.json +++ b/node_modules/components-data/number-input.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "numberInput", | 2 | "component": "numberInput", |
3 | 3 | ||
4 | "module": "montage/ui/number-input.reel", | 4 | "module": "montage/ui/native/input-number.reel", |
5 | 5 | ||
6 | "name": "NumberInput", | 6 | "name": "InputNumber", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | { | 9 | { |
diff --git a/node_modules/components-data/radio-button.json b/node_modules/components-data/radio-button.json index df0893ad..5a771c97 100644 --- a/node_modules/components-data/radio-button.json +++ b/node_modules/components-data/radio-button.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "radioButton", | 2 | "component": "radioButton", |
3 | 3 | ||
4 | "module": "montage/ui/radio-button.reel", | 4 | "module": "montage/ui/native/input-radio.reel", |
5 | 5 | ||
6 | "name": "RadioButton", | 6 | "name": "InputRadio", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | { | 9 | { |
diff --git a/node_modules/components-data/range-input.json b/node_modules/components-data/range-input.json index 1f3f5b20..23f9b070 100644 --- a/node_modules/components-data/range-input.json +++ b/node_modules/components-data/range-input.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "rangeInput", | 2 | "component": "rangeInput", |
3 | 3 | ||
4 | "module": "montage/ui/range-input.reel", | 4 | "module": "montage/ui/native/input-range.reel", |
5 | 5 | ||
6 | "name": "RangeInput", | 6 | "name": "InputRange", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | { | 9 | { |
diff --git a/node_modules/components-data/select.json b/node_modules/components-data/select.json index 33849fb6..123b935f 100644 --- a/node_modules/components-data/select.json +++ b/node_modules/components-data/select.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "select", | 2 | "component": "select", |
3 | 3 | ||
4 | "module": "montage/ui/select-input.reel", | 4 | "module": "montage/ui/native/select.reel", |
5 | 5 | ||
6 | "name": "SelectInput", | 6 | "name": "Select", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | ] | 9 | ] |
diff --git a/node_modules/components-data/textarea.json b/node_modules/components-data/textarea.json index 0dd7714e..15cdf8ad 100644 --- a/node_modules/components-data/textarea.json +++ b/node_modules/components-data/textarea.json | |||
@@ -1,7 +1,7 @@ | |||
1 | { | 1 | { |
2 | "component": "textarea", | 2 | "component": "textarea", |
3 | 3 | ||
4 | "module": "montage/ui/textarea.reel", | 4 | "module": "montage/ui/native/textarea.reel", |
5 | 5 | ||
6 | "name": "Textarea", | 6 | "name": "Textarea", |
7 | 7 | ||
diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json index 2df06ec3..d82723b7 100644 --- a/node_modules/components-data/textfield.json +++ b/node_modules/components-data/textfield.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "component": "textfield", | 2 | "component": "textfield", |
3 | 3 | ||
4 | "module": "montage/ui/input-text.reel", | 4 | "module": "montage/ui/native/input-text.reel", |
5 | 5 | ||
6 | "name": "Textfield", | 6 | "name": "InputText", |
7 | 7 | ||
8 | "properties": [ | 8 | "properties": [ |
9 | { | 9 | { |