<mvc:View xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core"
	xmlns:l="sap.ui.layout" visible="true" xmlns:f="sap.ui.layout.form"
	xmlns="sap.m" class="sapUiSizeCompact">
	<f:SimpleForm id="idPropertyTypeForm" maxContainerCols="1"
		editable="true" labelMinWidth="300" layout="ResponsiveGridLayout"
		labelSpanL="3" labelSpanM="4" labelSpanS="4" emptySpanL="1"
		emptySpanM="1" emptySpanS="1" columnsL="1" columnsM="1" width="100%"
		class="formTopPadding formBottomPadding" ariaLabelledBy="idAriaPropertyForBasicDataGroup">
		<core:InvisibleText id="idAriaPropertyForBasicDataGroup"/>
		<f:content>
			<Label id="idPropertyTypeLabel">
				<layoutData>
					<l:GridData span="L2 M2 S2" />
				</layoutData>
			</Label>
			<Select id="idPropertyType" visible="true" enabled="true"
				width="100%" maxWidth="100%" type="Default" autoAdjustWidth="false"
				change="handleChangeForPropertyTypeAsPromise" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
				<layoutData>
					<l:GridData id="idPropertyTypeLayout" span="L2 M2 S2" />
				</layoutData>
			</Select>
			<Select id="idLabelDisplayOptionType" visible="true" enabled="true"
				width="100%" maxWidth="100%" type="Default" autoAdjustWidth="false"
				change="handleChangeForLabelDisplayOptionType" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
				<layoutData>
					<l:GridData span="L2 M2 S2" />
				</layoutData>
			</Select>
			<Label id="idPropertyLabel">
				<layoutData>
					<l:GridData span="L2 M2 S1" />
				</layoutData>
			</Label>
			<Input id="idPropertyLabelText" editable="true"
				change="handleChangeForLabelText" showSuggestion="true"
				suggestionItems="{/Objects}" suggest="handleSuggestions">
				<core:Item key="{key}" text="{name}" />
				<layoutData>
					<l:GridData span="L3 M3 S2" />
				</layoutData>
			</Input>
			<HBox xmlns="sap.m" id="idIconLayout" class="plusMinusLayout">
				<layoutData>
					<l:GridData span="L1 M1 S1" />
				</layoutData>
				<items>
					<core:Icon id="idAddPropertyIcon" src="sap-icon://add"
						width="100%" press="handlePressOfAddPropertyIcon" ariaLabelledBy="idAriaPropertyForAdd" />
					<core:Icon id="idRemovePropertyIcon" src="sap-icon://less"
						width="100%" press="handlePressOfRemovePropertyIcon" class="lessIcon"
						ariaLabelledBy="idAriaPropertyForDelete" />
				</items>
			</HBox>
		</f:content>
	</f:SimpleForm>
	<core:InvisibleText id="idAriaPropertyForAdd" />
	<core:InvisibleText id="idAriaPropertyForDelete" />
</mvc:View>