mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-15 13:18:40 -09:00
Fix decorators check and documentation (#1601)
This commit is contained in:
parent
1f3ea081e8
commit
3fb2e04eae
3 changed files with 9 additions and 5 deletions
|
|
@ -22,10 +22,10 @@ const availableExtensions = new Set([
|
||||||
'reduceUI', 'reduceSessions', 'reduceTermGroups',
|
'reduceUI', 'reduceSessions', 'reduceTermGroups',
|
||||||
'decorateMenu', 'decorateTerm', 'decorateHyper',
|
'decorateMenu', 'decorateTerm', 'decorateHyper',
|
||||||
'decorateHyperTerm', // for backwards compatibility with hyperterm
|
'decorateHyperTerm', // for backwards compatibility with hyperterm
|
||||||
'decorateTab',
|
'decorateHeader', 'decorateTerms', 'decorateTab',
|
||||||
'decorateNotification', 'decorateNotifications',
|
'decorateNotification', 'decorateNotifications',
|
||||||
'decorateTabs', 'decorateConfig', 'decorateEnv',
|
'decorateTabs', 'decorateConfig', 'decorateEnv',
|
||||||
'decorateTermGroup', 'getTermProps',
|
'decorateTermGroup', 'decorateSplitPane', 'getTermProps',
|
||||||
'getTabProps', 'getTabsProps', 'getTermGroupProps',
|
'getTabProps', 'getTabsProps', 'getTermGroupProps',
|
||||||
'mapHyperTermState', 'mapTermsState',
|
'mapHyperTermState', 'mapTermsState',
|
||||||
'mapHeaderState', 'mapNotificationsState',
|
'mapHeaderState', 'mapNotificationsState',
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@ This is the static site that shows up when you access [hyper.is](https://hyper.i
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
||||||
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
|
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
|
||||||
3. Move into the repository's directory: `cd hyper-website`
|
3. Move into the website's directory: `cd hyper/website`
|
||||||
4. Install dependencies: `npm install`
|
4. Install dependencies: `npm install`
|
||||||
6. Run [serve](https://github.com/zeit/serve): `npm start`
|
6. Run [serve](https://github.com/zeit/serve): `npm start`
|
||||||
|
|
|
||||||
|
|
@ -1174,11 +1174,15 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<code>decorateHyper</code><br>
|
<code>decorateHyper</code><br>
|
||||||
<code>decorateTerms</code><br>
|
<code>decorateNotifications</code><br>
|
||||||
<code>decorateTerm</code><br>
|
<code>decorateNotification</code>
|
||||||
<code>decorateHeader</code><br>
|
<code>decorateHeader</code><br>
|
||||||
<code>decorateTabs</code><br>
|
<code>decorateTabs</code><br>
|
||||||
<code>decorateTab</code>
|
<code>decorateTab</code>
|
||||||
|
<code>decorateTerms</code><br>
|
||||||
|
<code>decorateTermGroup</code><br>
|
||||||
|
<code>decorateSplitPane</code><br>
|
||||||
|
<code>decorateTerm</code><br>
|
||||||
</td>
|
</td>
|
||||||
<td>Renderer</td>
|
<td>Renderer</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue