Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Build assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Jacobs committed Jan 25, 2017
1 parent 92bc00f commit 1fb7cde
Show file tree
Hide file tree
Showing 11 changed files with 80 additions and 44 deletions.
2 changes: 1 addition & 1 deletion docs/404.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><head><base href="https://enigma-io.github.io/boundless/"><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Boundless</title><link href="assets/main.351262e1a11251747ee9cb7fd9ea0821.css" rel="stylesheet"></head><body><div id="root"></div><script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react-dom.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-javascript.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-bash.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-jsx.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-stylus.min.js"></script><script src="//cdn.polyfill.io/v2/polyfill.js?features=fetch,promise"></script><script type="text/javascript" src="assets/vendor.e50708b7f598d184769c.js"></script><script type="text/javascript" src="assets/main.ed9fbb868e87fb340ce5.js"></script></body></html><!-- Built from SHA: 57927a67053e7af405829de3d38ac9f002e9175b -->
<!DOCTYPE html><html><head><base href="https://enigma-io.github.io/boundless/"><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Boundless</title><link href="assets/main.30d4e871155e0ad708f650e45feeb876.css" rel="stylesheet"></head><body><div id="root"></div><script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react-dom.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-javascript.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-bash.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-jsx.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-stylus.min.js"></script><script src="//cdn.polyfill.io/v2/polyfill.js?features=fetch,promise"></script><script type="text/javascript" src="assets/vendor.5c0e7d343cf2f76fbd64.js"></script><script type="text/javascript" src="assets/main.573e978c320db25ea9a3.js"></script></body></html><!-- Built from SHA: 92bc00f169225acbb373c0c4e9f744be3cdcc0cc -->

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/assets/main.573e978c320db25ea9a3.js

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions docs/assets/main.ed9fbb868e87fb340ce5.js

This file was deleted.

Large diffs are not rendered by default.

28 changes: 20 additions & 8 deletions packages/boundless-dialog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,30 +66,42 @@ There are no required props.

<tr>
<td>closeOnEscKey</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnInsideClick</td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`</td>
<td>enable detection of clicks inside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideClick</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideFocus</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideScroll</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`; if a functio
is provided, the return value determines if the dialog will be closed</td>
</tr>

<tr>
Expand Down
28 changes: 20 additions & 8 deletions packages/boundless-modal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,30 +61,42 @@ There are no required props.

<tr>
<td>closeOnEscKey</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnInsideClick</td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`</td>
<td>enable detection of clicks inside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideClick</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideFocus</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideScroll</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`; if a functio
is provided, the return value determines if the dialog will be closed</td>
</tr>

<tr>
Expand Down
28 changes: 20 additions & 8 deletions packages/boundless-popover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,30 +126,42 @@ on `props.anchor`</td>

<tr>
<td>closeOnEscKey</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnInsideClick</td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of "Escape" keypresses to trigger `props.onClose`</td>
<td>enable detection of clicks inside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideClick</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of clicks outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideFocus</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of focus outside the dialog area to trigger `props.onClose`; if a function is provided, the return
value determines if the dialog will be closed</td>
</tr>

<tr>
<td>closeOnOutsideScroll</td>
<td><pre><code>bool</code></pre></td>
<td><pre><code>bool or function</code></pre></td>
<td><pre><code class="language-js">false</code></pre></td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`</td>
<td>enable detection of scroll and mousewheel events outside the dialog area to trigger `props.onClose`; if a functio
is provided, the return value determines if the dialog will be closed</td>
</tr>

<tr>
Expand Down
8 changes: 4 additions & 4 deletions public/boundless.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions public/boundless.standalone.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/boundless.standalone.min.js

Large diffs are not rendered by default.

0 comments on commit 1fb7cde

Please sign in to comment.