Skip to content

Password input

...

Browser support

...

Parameters

The CSS component uses the <label> tag.

The parametrization of the component can be done with the following custom HTML params:

NameTypeDescription
z-password-inputstring

The main parameter has two components following the pattern: <shape><?:size>.

  • shape: Establishes the styling of the input. Default value is line . Possible values are: shaped or line. ,
  • size: (optional) defines de size of the input. The default value is m, being omitted from the param. The possible values are: m or l.
labelstringLabel of the input
readonlyboolean?Transforms the input into an output
valuestring?Value of the model
disabledboolean?Blocks the interaction with the input component.
requiredboolean?Marks the input component as required.
namestring?Identification for the field inside the form
help-textstring?The forced message to be shown under the input

The events emitted from the component are:

NamePayloadDescription
onchangestringReturns the new value of the "value" attribute

Invalid input

If you require to make the input invalid, use the native API of the input using setCustomValidity. If no message is provided, the input is set to valid.

ts
// Make invalid
input.setCustomValidity('Error message');
input.checkValidity();

Or you can use the data-invalid attribute if you are using the scripts:

html
<label z-password-input>
  <span>Password input</span>
  <input type="password" data-invalid />
</label>

Playground

Customization

HTML Examples

Imports
html
<script type="module" src="/0.3.6/@zurich/css-components/javascript.js"></script>
<link rel="stylesheet" href="/0.3.6/@zurich/css-components/base.css" />
<link rel="stylesheet" href="/0.3.6/@zurich/css-components/PasswordInput.css" />
Code
html
<!-- Default -->
  <label z-password-input>
    <span>Password input</span>
    <input type="password" />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <input type="password" />
  </label>

<!-- With value -->
  <label z-password-input>
    <span>Password input</span>
    <input type="password" value="password" />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <input type="password" value="password" />
  </label>

<!-- Disabled -->
  <label z-password-input>
    <span>Password input</span>
    <input type="password" disabled />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <input type="password" disabled />
  </label>

<!-- Readonly -->
  <label z-password-input>
    <span>Password input</span>
    <input type="password" readonly value="password" />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <input type="password" readonly value="password" />
  </label>

<!-- With help text -->
  <label z-password-input>
    <span>Password input</span>
    <small>Help text</small>
    <input type="password" />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <small>Help text</small>
    <input type="password" />
  </label>

<!-- Invalid -->
  <label z-password-input>
    <span>Password input</span>
    <small>Invalid input</small>
    <input type="password" data-invalid />
  </label>
  <label z-password-input="shaped">
    <span>Password input</span>
    <small>Invalid input</small>
    <input type="password" data-invalid />
  </label>