diff --git a/tests/dummy/app/templates/date-picker.hbs b/tests/dummy/app/templates/date-picker.hbs index 96f8a1d..20a8864 100644 --- a/tests/dummy/app/templates/date-picker.hbs +++ b/tests/dummy/app/templates/date-picker.hbs @@ -17,6 +17,15 @@ {{code-snippet name="date-picker-advanced.hbs"}} +

Properties

+ + +

select

diff --git a/tests/dummy/app/templates/input-date.hbs b/tests/dummy/app/templates/input-date.hbs index 7da745d..876ee3b 100644 --- a/tests/dummy/app/templates/input-date.hbs +++ b/tests/dummy/app/templates/input-date.hbs @@ -16,6 +16,18 @@ {{code-snippet name="input-date-advanced.hbs"}} +

Properties

+ + +

value

@@ -147,7 +159,7 @@
-

Destination element

+

to

The date picker can be rendered into another DOM element @@ -167,7 +179,7 @@ {{code-snippet name="input-date-destinationElementId.hbs"}} {{! BEGIN-SNIPPET input-date-destinationElementId }} -{{input-date destinationElementId="date-picker-container"}} +{{input-date to="date-picker-container"}} {{! END-SNIPPET }}

This will position the date picker at the bottom/left corner of the destination element specified.

@@ -180,7 +192,7 @@ {{code-snippet name="input-date-position-by-cursor.hbs"}} {{! BEGIN-SNIPPET input-date-position-by-cursor }} -{{input-date setPositionByCursor=true destinationElementId="date-picker-container"}} +{{input-date setPositionByCursor=true to="date-picker-container"}} {{! END-SNIPPET }}

diff --git a/tests/dummy/app/templates/input-time.hbs b/tests/dummy/app/templates/input-time.hbs index b59ab5e..9153ff3 100644 --- a/tests/dummy/app/templates/input-time.hbs +++ b/tests/dummy/app/templates/input-time.hbs @@ -16,6 +16,21 @@ {{code-snippet name="input-time-advanced.hbs"}} +

Properties

+ + +

value

@@ -177,7 +192,7 @@
-

Destination element

+

to

The time picker can be rendered into another DOM element @@ -197,7 +212,7 @@ {{code-snippet name="input-time-destinationElementId.hbs"}} {{! BEGIN-SNIPPET input-time-destinationElementId }} -{{input-time destinationElementId="time-picker-container"}} +{{input-time to="time-picker-container"}} {{! END-SNIPPET }}

This will position the time picker at the bottom/left corner of the destination element specified.

@@ -210,7 +225,7 @@ {{code-snippet name="input-time-position-by-cursor.hbs"}} {{! BEGIN-SNIPPET input-time-position-by-cursor }} -{{input-time setPositionByCursor=true destinationElementId="time-picker-container"}} +{{input-time setPositionByCursor=true to="time-picker-container"}} {{! END-SNIPPET }}

diff --git a/tests/dummy/app/templates/time-picker.hbs b/tests/dummy/app/templates/time-picker.hbs index d8eab39..0fc1a2a 100644 --- a/tests/dummy/app/templates/time-picker.hbs +++ b/tests/dummy/app/templates/time-picker.hbs @@ -18,6 +18,18 @@ {{code-snippet name="time-picker-advanced.hbs"}} +

Properties

+ + +

select

diff --git a/tests/dummy/snippets/input-date-advanced.hbs b/tests/dummy/snippets/input-date-advanced.hbs index ddd7f01..ea75e54 100644 --- a/tests/dummy/snippets/input-date-advanced.hbs +++ b/tests/dummy/snippets/input-date-advanced.hbs @@ -2,4 +2,7 @@ value=date displayFormat='ddd DD/MM/YYYY' format='date|timestamp|object|YYYY-MM-DD' - disabled=true}} + setPositionByCursor=true|false + to="elementId" + placeholder="Placeholder text..." + disabled=true|false}} diff --git a/tests/dummy/snippets/input-time-advanced.hbs b/tests/dummy/snippets/input-time-advanced.hbs index 8c4f0a2..8112580 100644 --- a/tests/dummy/snippets/input-time-advanced.hbs +++ b/tests/dummy/snippets/input-time-advanced.hbs @@ -3,4 +3,9 @@ displayFormat='h:mm a' pickerDisplayFormat='hh:mm a' format='date|timestamp|object' - timeInterval=30}} + timeInterval=30 + setPositionByCursor=true|false + to="elementId" + scrollToSelectedTime=true|false + placeholder="Placeholder text..." + disabled=true|false}}