Project import generated by Copybara.
GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/node_modules/material-design-lite/dist/components/chip/demo.html b/node_modules/material-design-lite/dist/components/chip/demo.html
new file mode 100644
index 0000000..46c2217
--- /dev/null
+++ b/node_modules/material-design-lite/dist/components/chip/demo.html
@@ -0,0 +1,66 @@
+<!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>chip 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;">
+
+
+<!-- Basic Chip -->
+<span class="mdl-chip">
+ <span class="mdl-chip__text">Basic Chip</span>
+</span>
+<!-- Button Chip -->
+<button type="button" class="mdl-chip">
+ <span class="mdl-chip__text">Button Chip</span>
+</button>
+<!-- Contact Chip -->
+<span class="mdl-chip mdl-chip--contact">
+ <span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">A</span>
+ <span class="mdl-chip__text">Contact Chip</span>
+</span>
+
+<!-- Deletable Contact Chip -->
+<span class="mdl-chip mdl-chip--contact mdl-chip--deletable">
+ <img class="mdl-chip__contact" src="/templates/dashboard/images/user.jpg"></img>
+ <span class="mdl-chip__text">Deletable Contact Chip</span>
+ <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a>
+</span>
+<!-- Deletable Chip -->
+<span class="mdl-chip mdl-chip--deletable">
+ <span class="mdl-chip__text">Deletable Chip</span>
+ <button type="button" class="mdl-chip__action"><i class="material-icons">cancel</i></button>
+</span>
+
+ </div>
+ <!-- Built with love using Material Design Lite -->
+
+
+ <script>
+
+ </script>
+ </body>
+</html>
diff --git a/node_modules/material-design-lite/dist/components/chip/index.html b/node_modules/material-design-lite/dist/components/chip/index.html
new file mode 100644
index 0000000..3aac0fc
--- /dev/null
+++ b/node_modules/material-design-lite/dist/components/chip/index.html
@@ -0,0 +1,83 @@
+
+
+
+<h2 id="introduction">Introduction</h2>
+<p>The Material Design Lite (MDL) <strong>chip</strong> component is a small, interactive element.
+Chips are commonly used for contacts, text, rules, icons, and photos.</p>
+<h2 id="to-include-an-mdl-chip-component-">TO INCLUDE AN MDL CHIP COMPONENT:</h2>
+<p> 1. Create a container element for the chip; typically <code><span></code> and <code><div></code> are used, but any container element should work equally well. If you need interactivity, use a <code><button></code>, or add the <code>tabindex</code> attribute to your container.</p>
+<pre><code class="lang-html"><span>
+</span>
+</code></pre>
+<p> 2. Add in the text wrapper and the MDL classes.</p>
+<pre><code class="lang-html"><span class="mdl-chip">
+ <span class="mdl-chip__text">Chip Text</span>
+</span>
+</code></pre>
+<p> 3. For deletable chips, add in the delete icon. This can be an <code><a></code>, <code><button></code> or non-interactive tags like <code><span></code>.</p>
+<pre><code class="lang-html"><span class="mdl-chip">
+ <span class="mdl-chip__text">Chip Text</span>
+ <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a>
+</span>
+</code></pre>
+<p> 4. Contact chips need to have the <code>mdl-chip--contact</code> class added to the container, along with another container for the contact icon. The icon container for photos is typically an <code><img></code> tag, but other types of content can be used with a little extra supporting css.</p>
+<pre><code class="lang-html"><span class="mdl-chip">
+ <span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">A</span>
+ <span class="mdl-chip__text">Chip Text</span>
+ <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a>
+</span>
+</code></pre>
+<h2 id="examples">Examples</h2>
+<p>A button based contact chip whose contact image is a <code><span></code> with a <code>background-image</code>.</p>
+<pre><code class="lang-html"><style>
+ .demo-chip .mdl-chip__contact {
+ background-image: url("./path/to/image");
+ background-size: cover;
+ }
+</style>
+
+<button class="mdl-chip demo-chip">
+ <span class="mdl-chip__contact">&nbsp;</span>
+ <span class="mdl-chip__text">Chip Text</span>
+ <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a>
+</button>
+</code></pre>
+<h2 id="css-classes">CSS Classes</h2>
+<table>
+<thead>
+<tr>
+<th>MDL Class</th>
+<th>Effect</th>
+<th>Remarks</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><code>mdl-chip</code></td>
+<td>Defines element as an MDL chip container</td>
+<td>Required on "outer" container</td>
+</tr>
+<tr>
+<td><code>mdl-chip--contact</code></td>
+<td>Defines an MDL chip as a contact style chip</td>
+<td>Optional, goes on "outer" container</td>
+</tr>
+<tr>
+<td><code>mdl-chip__text</code></td>
+<td>Defines element as the chip's text</td>
+<td>Required on "inner" text container</td>
+</tr>
+<tr>
+<td><code>mdl-chip__action</code></td>
+<td>Defines element as the chip's action</td>
+<td>Required on "inner" action container, if present</td>
+</tr>
+<tr>
+<td><code>mdl-chip__contact</code></td>
+<td>Defines element as the chip's contact container</td>
+<td>Required on "inner" contact container, if the <code>mdl-chip--contact</code> class is present on "outer" container</td>
+</tr>
+</tbody>
+</table>
+
+