Project import generated by Copybara.
GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/node_modules/material-design-lite/dist/components/textfield/demo.html b/node_modules/material-design-lite/dist/components/textfield/demo.html
new file mode 100644
index 0000000..3e6625e
--- /dev/null
+++ b/node_modules/material-design-lite/dist/components/textfield/demo.html
@@ -0,0 +1,145 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>textfield test</title>
+
+ <!-- Fonts -->
+ <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'>
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
+ rel="stylesheet">
+
+ <!-- Page styles -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css">
+ <link rel="stylesheet" href="../../material.min.css">
+ <link rel="stylesheet" href="../../components/demos.css">
+ <script src="../../material.min.js"></script>
+
+
+ <style>
+
+ </style>
+
+ </head>
+ <body>
+
+ <div style="padding-top: 24px;">
+
+
+<style>
+ .demo-textfield__textfield-expanding .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-expanding.html" %}
+
+<!-- Expandable Textfield -->
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
+ <label class="mdl-button mdl-js-button mdl-button--icon" for="sample6">
+ <i class="material-icons">search</i>
+ </label>
+ <div class="mdl-textfield__expandable-holder">
+ <input class="mdl-textfield__input" type="text" id="sample6">
+ <label class="mdl-textfield__label" for="sample-expandable">Expandable Input</label>
+ </div>
+ </div>
+</form>
+
+<style>
+ .demo-textfield__textfield-floating-numeric .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-floating-numeric.html" %}
+
+<!-- Numeric Textfield with Floating Label -->
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
+ <input class="mdl-textfield__input" type="text" pattern="-?[0-9]*(\.[0-9]+)?" id="sample4">
+ <label class="mdl-textfield__label" for="sample4">Number...</label>
+ <span class="mdl-textfield__error">Input is not a number!</span>
+ </div>
+</form>
+
+<style>
+ .demo-textfield__textfield-floating-text .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-floating-text.html" %}
+
+<!-- Textfield with Floating Label -->
+
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
+ <input class="mdl-textfield__input" type="text" id="sample3">
+ <label class="mdl-textfield__label" for="sample3">Text...</label>
+ </div>
+</form>
+
+<style>
+ .demo-textfield__textfield-multi-line .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-multi-line.html" %}
+
+<!-- Floating Multiline Textfield -->
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield">
+ <textarea class="mdl-textfield__input" type="text" rows= "3" id="sample5" ></textarea>
+ <label class="mdl-textfield__label" for="sample5">Text lines...</label>
+ </div>
+</form>
+
+<style>
+ .demo-textfield__textfield-numeric .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-numeric.html" %}
+
+<!-- Numeric Textfield -->
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield">
+ <input class="mdl-textfield__input" type="text" pattern="-?[0-9]*(\.[0-9]+)?" id="sample2">
+ <label class="mdl-textfield__label" for="sample2">Number...</label>
+ <span class="mdl-textfield__error">Input is not a number!</span>
+ </div>
+</form>
+
+<style>
+ .demo-textfield__textfield-text .mdl-textfield {
+ width: 100px;
+ }
+</style>
+
+{% include "textfield-text.html" %}
+
+<!-- Simple Textfield -->
+<form action="#">
+ <div class="mdl-textfield mdl-js-textfield">
+ <input class="mdl-textfield__input" type="text" id="sample1">
+ <label class="mdl-textfield__label" for="sample1">Text...</label>
+ </div>
+</form>
+
+
+ </div>
+ <!-- Built with love using Material Design Lite -->
+
+
+ <script>
+
+ </script>
+ </body>
+</html>