api-console-assets
Version:
This repo only exists to publish api console components to npm
110 lines (95 loc) • 3.93 kB
HTML
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>paper-masked-input demo</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html">
<link rel="import" href="../../iron-demo-helpers/demo-snippet.html">
<link rel="import" href="../../iron-icon/iron-icon.html">
<link rel="import" href="../../iron-icons/iron-icons.html">
<link rel="import" href="../../iron-input/iron-input.html">
<link rel="import" href="../../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../paper-styles/color.html">
<link rel="import" href="../paper-masked-input.html">
<style is="custom-style" include="demo-pages-shared-styles">
paper-input {
display: block;
}
demo-snippet.horizontal {
--demo-snippet-demo: {
@apply(--layout-horizontal);
@apply(--layout-justified);
@apply(--layout-wrap);
}
}
demo-snippet.horizontal paper-input {
display: inline-block;
}
button {
width: 70px;
}
#inputForValidation {
display: inline-block;
width: calc(100% - 75px);
}
.vertical-section-container {
max-width: 600px;
}
paper-icon-button {
color: var(--paper-red-300);
--paper-icon-button-ink-color: var(--paper-red-a100);
width: 23px; /* 15px + 2*4px for padding */
height: 23px;
padding: 0px 4px;
}
iron-icon {
padding-right: 5px;
}
</style>
</head>
<body unresolved>
<div class="vertical-section-container centered">
<h3>Regular password field</h3>
<demo-snippet>
<template>
<paper-masked-input label="password input"></paper-masked-input>
<paper-masked-input label="disabled password input" disabled></paper-masked-input>
<paper-masked-input label="Visible at render" visible></paper-masked-input>
</template>
</demo-snippet>
<h3>The label can have different floating states</h3>
<demo-snippet>
<template>
<paper-masked-input label="this label is always floating" placeholder="placeholder text"></paper-masked-input>
</template>
</demo-snippet>
<h3>Inputs can validate automatically or on demand, and can have custom error messages</h3>
<demo-snippet>
<template>
<paper-masked-input label="this password requires some text" required auto-validate error-message="needs some password!"></paper-masked-input>
<paper-masked-input label="this password requires letters only" auto-validate pattern="[a-zA-Z]*" error-message="password can have letters only!"></paper-masked-input>
<paper-masked-input label="this input will only let you type letters" auto-validate allowed-pattern="[a-zA-Z]"></paper-masked-input>
<paper-masked-input id="inputForValidation" required label="this input is manually validated" pattern="[a-zA-Z]*" error-message="letters only!"></paper-masked-input>
<button onclick="validate()">Validate!</button>
</template>
</demo-snippet>
</div>
<script>
function validate() {
document.getElementById('inputForValidation').validate();
}
</script>
</body>
</html>