Sha256: f441bf5cca7daa3372f1cd948187f631dbbeb916c49775298556ebedd63778ab

Contents?: true

Size: 1.27 KB

Versions: 12

Compression:

Stored size: 1.27 KB

Contents

{% assign id=include.id %}
{% assign name=include.id %}

{% if include.required %}
  {% assign required="data-parsley-required='true'" %}
{% endif %}

<p class="uikit-text-input__root {{ include.className | default: null }}">
  {% if include.label %}
    <label class="uikit-text-input__label" for="{{ include.id | default: id }}">
      {{ include.label }}
    </label>
  {% endif %}
  {% if include.hint %}
    <label class="uikit-text-input__hint" for="{{ include.id | default: id }}">{{ include.hint }}</label>
  {% endif %}
  <input
    class="uikit-text-input uikit-text-input--block"
    placeholder="{{ include.placeholder }}"
    type="{{ include.type | default: "text" }}"
    id="{{ include.id }}"
    value="{{ include.value | default: "" }}"
    name="{{ include.name | default: name }}"
    {{ required }}
    {% if include.step %}step="{{ include.step }}"{% endif %}
    {% if include.list %}list="{{ include.list }}"{% endif %}
    {% if include.pattern %}data-parsley-pattern="{{ include.pattern }}" pattern="{{ include.pattern }}"{% endif %}
    {% if include.validation_message %}data-parsley-error-message="{{ include.validation_message }}"{% endif %}
  />
  {% if include.description %}
    <p class="uikit-text-input__description">{{ include.description }}</p>
  {% endif %}
</p>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
dta_rapid-0.7.7 _includes/forms/text-field.html
dta_rapid-0.7.6 _includes/forms/text-field.html
dta_rapid-0.7.5 _includes/forms/text-field.html
dta_rapid-0.7.4 _includes/forms/text-field.html
dta_rapid-0.7.3 _includes/forms/text-field.html
dta_rapid-0.7.2 _includes/forms/text-field.html
dta_rapid-0.7.1 _includes/forms/text-field.html
dta_rapid-0.7.0 _includes/forms/text-field.html
dta_rapid-0.6.6 _includes/forms/text-field.html
dta_rapid-0.6.5 _includes/forms/text-field.html
dta_rapid-0.6.4 _includes/forms/text-field.html
dta_rapid-0.6.3 _includes/forms/text-field.html