From 9b8a24a7360416d5750828c9580e33dd336ff882 Mon Sep 17 00:00:00 2001 From: François Frisch Date: Fri, 16 Mar 2012 17:57:18 -0700 Subject: Getting ownerComponent bindings --- node_modules/components-data/textfield.json | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'node_modules/components-data') diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json index 7164b8b3..39c65eab 100644 --- a/node_modules/components-data/textfield.json +++ b/node_modules/components-data/textfield.json @@ -7,6 +7,10 @@ "properties": [ { + "name": "valueBinding", + "type": "string", + "default": null + },{ "name": "accept", "type": "string", "default": null -- cgit v1.2.3 From 14f28d0031dc9d522b4ae7d1dbff192b8d8a670e Mon Sep 17 00:00:00 2001 From: François Frisch Date: Sat, 17 Mar 2012 11:58:58 -0700 Subject: Adding components to PI --- node_modules/components-data/feed-reader.json | 15 +++++++++++++++ node_modules/components-data/map.json | 22 ++++++++++++++++++++++ node_modules/components-data/searchfield.json | 20 ++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 node_modules/components-data/feed-reader.json create mode 100644 node_modules/components-data/map.json create mode 100644 node_modules/components-data/searchfield.json (limited to 'node_modules/components-data') diff --git a/node_modules/components-data/feed-reader.json b/node_modules/components-data/feed-reader.json new file mode 100644 index 00000000..6caf768d --- /dev/null +++ b/node_modules/components-data/feed-reader.json @@ -0,0 +1,15 @@ +{ + "component": "feedreader", + + "module": "montage/ui/feed-reader/feed-reader.reel", + + "name": "FeedReader", + + "properties": [ + { + "name": "feedURL", + "type": "string", + "default": null + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/map.json b/node_modules/components-data/map.json new file mode 100644 index 00000000..071fa73a --- /dev/null +++ b/node_modules/components-data/map.json @@ -0,0 +1,22 @@ +{ + "component": "map", + + "module": "montage/ui/map.reel", + + "name": "Map", + + "properties": [ + { + "name": "category", + "type": "string", + "default": null, + "possibleValues": ["restaurant", "hospital", "cafe", "museum"] + }, + { + "name": "center", + "type": "string", + "default": null + } + + ] +} \ No newline at end of file diff --git a/node_modules/components-data/searchfield.json b/node_modules/components-data/searchfield.json new file mode 100644 index 00000000..94c570d9 --- /dev/null +++ b/node_modules/components-data/searchfield.json @@ -0,0 +1,20 @@ +{ + "component": "searchfield", + + "module": "montage/ui/textfield.reel", + + "name": "Textfield", + + "properties": [ + { + "name": "valueBinding", + "type": "string", + "default": null + }, + { + "name": "value", + "type": "string", + "default": "" + } + ] +} \ No newline at end of file -- cgit v1.2.3 From 09852e9b9b8e64f003bed5aa57630d8b42c8ac95 Mon Sep 17 00:00:00 2001 From: François Frisch Date: Sat, 17 Mar 2012 19:28:30 -0700 Subject: Integrating picasa carousel and youtube channel --- node_modules/components-data/map.json | 4 ++-- node_modules/components-data/picasa-carousel.json | 15 +++++++++++++++ node_modules/components-data/youtube-channel.json | 16 ++++++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 node_modules/components-data/picasa-carousel.json create mode 100644 node_modules/components-data/youtube-channel.json (limited to 'node_modules/components-data') diff --git a/node_modules/components-data/map.json b/node_modules/components-data/map.json index 071fa73a..796b2fad 100644 --- a/node_modules/components-data/map.json +++ b/node_modules/components-data/map.json @@ -9,13 +9,13 @@ { "name": "category", "type": "string", - "default": null, + "default": "", "possibleValues": ["restaurant", "hospital", "cafe", "museum"] }, { "name": "center", "type": "string", - "default": null + "default": "" } ] diff --git a/node_modules/components-data/picasa-carousel.json b/node_modules/components-data/picasa-carousel.json new file mode 100644 index 00000000..34fe0e8f --- /dev/null +++ b/node_modules/components-data/picasa-carousel.json @@ -0,0 +1,15 @@ +{ + "component": "picasa-carousel", + + "module": "montage/ui/picasa-carousel.reel", + + "name": "PicasaCarousel", + + "properties": [ + { + "name": "queryParameter", + "type": "string", + "default": "" + } + ] +} \ No newline at end of file diff --git a/node_modules/components-data/youtube-channel.json b/node_modules/components-data/youtube-channel.json new file mode 100644 index 00000000..8affffba --- /dev/null +++ b/node_modules/components-data/youtube-channel.json @@ -0,0 +1,16 @@ +{ + "component": "youtube-channel", + + "module": "montage/ui/youtube-channel.reel", + + "name": "YoutubeChannel", + + "properties": [ + { + "name": "channelUrl", + "type": "string", + "default": "" + } + + ] +} \ No newline at end of file -- cgit v1.2.3