aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/native/input-date.reel/input-date.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-17 22:31:44 -0700
committerValerio Virgillito2012-06-17 22:31:44 -0700
commit8fe92b94ce5e1e2857d088752d94e19db7e3d8a8 (patch)
treed84807aae0b974b5200050972dd94da6066e363b /node_modules/montage/ui/native/input-date.reel/input-date.js
parente570fc8518cf03dd03c15982edcf17c5ba0a293d (diff)
downloadninja-8fe92b94ce5e1e2857d088752d94e19db7e3d8a8.tar.gz
montage v11 merge into ninja
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/native/input-date.reel/input-date.js')
-rw-r--r--node_modules/montage/ui/native/input-date.reel/input-date.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/node_modules/montage/ui/native/input-date.reel/input-date.js b/node_modules/montage/ui/native/input-date.reel/input-date.js
new file mode 100644
index 00000000..25649d25
--- /dev/null
+++ b/node_modules/montage/ui/native/input-date.reel/input-date.js
@@ -0,0 +1,46 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7/**
8 @module "montage/ui/input-date.reel"
9 @requires montage/core/core
10 @requires montage/ui/component
11 @requires montage/ui/text-input
12*/
13var Montage = require("montage").Montage,
14 Component = require("ui/component").Component,
15 TextInput = require("ui/text-input").TextInput;
16
17/**
18 Wraps an &lt;input type="date"> element as a component.
19 @class module:"montage/ui/input-date.reel".InputDate
20 @extends module:montage/ui/text-input.TextInput
21 */
22var InputDate = exports.InputDate = Montage.create(TextInput, {
23});
24
25InputDate.addAttributes( /** @lends module:"montage/ui/input-date.reel".InputDate# */{
26
27/**
28 The upper bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24).
29 @type {string}
30 @default: null
31*/
32 max: null,
33/**
34 The lower bound for the element’s value represented in the "full-date" format, (for example, 2001-05-24).
35 @type {string}
36 @default: null
37*/
38 min: null,
39
40/**
41 The amount the date changes with each step.
42 @type {string|number}
43 @default null
44*/
45 step: null
46}); \ No newline at end of file