<Ui xmlns="http://www.blizzard.com/wow/ui/">
  <!-- Template for a simple input box -->
  <Frame name="AuctionatorConfigurationTextInput" mixin="AuctionatorConfigTextInputMixin" inherits="AuctionatorConfigurationTooltip" virtual="true">
    <!--
      <KeyValues>
        <KeyValue key="tooltipTitleText" value="" type="string"/>
        <KeyValue key="tooltipText" value="" type="string"/>
      </KeyValues>
    -->
    <Size y="20"/>
    <Scripts>
      <OnLoad method="OnLoad"/>
      <OnMouseUp method="OnMouseUp"/>
    </Scripts>
    <Anchors>
      <Anchor point="LEFT" relativeKey="$parent" relativePoint="LEFT"/>
      <Anchor point="RIGHT" relativeKey="$parent" relativePoint="RIGHT"/>
    </Anchors>
    <Frames>
      <EditBox autoFocus="false" inherits="LargeInputBoxTemplate" parentKey="InputBox">
        <Size x="140" y="20"/>
        <Anchors>
          <Anchor point="TOPLEFT" x="25"/>
        </Anchors>
        <FontString inherits="ChatFontNormal" justifyH="LEFT"/>
        <Scripts>
          <OnEnter>self:GetParent():OnEnter()</OnEnter>
          <OnLeave>self:GetParent():OnLeave()</OnLeave>
          <OnEscapePressed>self:ClearFocus()</OnEscapePressed>
        </Scripts>
      </EditBox>
    </Frames>
  </Frame>
</Ui>