<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<control xmlns="http://www.sap.com/sap.ui.library.xsd">
    <name>calendar/DatesRow</name>
    <derived/>
    <documentation>renders a row of days with ItemNavigation
This is used inside the calendar. Not for stand alone usage
If used inside the calendar the properties and aggregation are directly taken from the parent
(To not duplicate and sync DateRanges and so on...)</documentation>
    <since>1.30.0</since>
    <baseType>sap.ui.unified/calendar/Month</baseType>
    <properties>
        <property name="startDate" type="sap.ui.core/object" group="Data">
            <documentation>Start date of the row
If in rendering phase the date property is not in the range startDate + days,
it is set to the start date
So after setting the start date the date should be set to be in the range of the start date</documentation>
        </property>
        <property name="days" type="sap.ui.core/int" defaultValue="7" group="Appearance">
            <documentation>number of days displayed</documentation>
        </property>
        <property name="showDayNamesLine" type="sap.ui.core/boolean" defaultValue="true" group="Appearance" since="1.34.0">
            <documentation>If set the day names are shown in a separate line.
If not set the day names are shown inside the single days.</documentation>
        </property>
    </properties>
    <methods>
        <method name="displayDate" type="sap.ui.unified/calendar/DatesRow">
            <documentation>displays the a given date without setting the focus

Property &lt;code&gt;date&lt;/code&gt; date to be focused or displayed. It must be in the displayed date range
beginning with &lt;code&gt;startDate&lt;/code&gt; and &lt;code&gt;days&lt;/code&gt; days
So set this properties before setting the date.</documentation>
            <parameters>
                <parameter name="date" type="sap.ui.core/object">
                    <documentation>JavaScript date object for focused date.</documentation>
                </parameter>
            </parameters>
        </method>
    </methods>
</control>
