1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Deployed 3b7b018084 to master with MkDocs 1.3.0 and mike 1.1.2

This commit is contained in:
GitHub Action 2022-04-07 15:36:40 +00:00
parent 98b291676d
commit 8800c8dc10
16 changed files with 100 additions and 48 deletions

View File

@ -1364,7 +1364,7 @@ produce a JSON serializable object representation of the current state.</p>
<p>BaseStore.unregisterIpcListener</p>
<hr />
<h3 id="createinstance">createInstance<a class="headerlink" href="#createinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(...<code>args</code>): <code>T</code></p>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, ...<code>args</code>): <code>T</code></p>
<p>Creates the single instance of the child class if one was not already created.</p>
<p>Multiple calls will return the same instance.
Essentially throwing away the arguments to the subsequent calls.</p>
@ -1400,6 +1400,11 @@ only the first's arguments will be used.</p>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>...args</code></td>
<td align="left"><code>R</code></td>
<td align="left">The constructor arguments for the child class</td>
@ -1413,7 +1418,7 @@ only the first's arguments will be used.</p>
<p>BaseStore.createInstance</p>
<hr />
<h3 id="getinstance">getInstance<a class="headerlink" href="#getinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>strict</code>): <code>T</code></p>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, <code>strict?</code>): <code>T</code></p>
<p>Get the instance of the child class that was previously created.</p>
<h4 id="type-parameters_3">Type parameters<a class="headerlink" href="#type-parameters_3" title="Permanent link">#</a></h4>
<table>
@ -1440,13 +1445,21 @@ only the first's arguments will be used.</p>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Default value</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left"><code>undefined</code></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>strict</code></td>
<td align="left"><code>boolean</code></td>
<td align="left"><code>true</code></td>
<td align="left">If false will return <code>undefined</code> instead of throwing when an instance doesn't exist. Default: <code>true</code></td>
</tr>
</tbody>

View File

@ -826,7 +826,7 @@ Licensed under MIT License. See LICENSE in root directory for more information.<
<p><strong>new Singleton</strong>()</p>
<h2 id="methods_1">Methods<a class="headerlink" href="#methods_1" title="Permanent link">#</a></h2>
<h3 id="createinstance">createInstance<a class="headerlink" href="#createinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(...<code>args</code>): <code>T</code></p>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, ...<code>args</code>): <code>T</code></p>
<p>Creates the single instance of the child class if one was not already created.</p>
<p>Multiple calls will return the same instance.
Essentially throwing away the arguments to the subsequent calls.</p>
@ -862,6 +862,11 @@ only the first's arguments will be used.</p>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>...args</code></td>
<td align="left"><code>R</code></td>
<td align="left">The constructor arguments for the child class</td>
@ -873,7 +878,7 @@ only the first's arguments will be used.</p>
<p>An instance of the child class</p>
<hr />
<h3 id="getinstance">getInstance<a class="headerlink" href="#getinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>strict</code>): <code>T</code></p>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, <code>strict?</code>): <code>T</code></p>
<p>Get the instance of the child class that was previously created.</p>
<h4 id="type-parameters_1">Type parameters<a class="headerlink" href="#type-parameters_1" title="Permanent link">#</a></h4>
<table>
@ -900,13 +905,21 @@ only the first's arguments will be used.</p>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Default value</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left"><code>undefined</code></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>strict</code></td>
<td align="left"><code>boolean</code></td>
<td align="left"><code>true</code></td>
<td align="left">If false will return <code>undefined</code> instead of throwing when an instance doesn't exist. Default: <code>true</code></td>
</tr>
</tbody>

View File

@ -1012,7 +1012,7 @@
<p>An optional disposer, Lens will cleanup when the extension is disabled or uninstalled even if this is not called</p>
<hr />
<h3 id="createinstance">createInstance<a class="headerlink" href="#createinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(...<code>args</code>): <code>T</code></p>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, ...<code>args</code>): <code>T</code></p>
<p>Creates the single instance of the child class if one was not already created.</p>
<p>Multiple calls will return the same instance.
Essentially throwing away the arguments to the subsequent calls.</p>
@ -1048,6 +1048,11 @@ only the first's arguments will be used.</p>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>...args</code></td>
<td align="left"><code>R</code></td>
<td align="left">The constructor arguments for the child class</td>
@ -1061,7 +1066,7 @@ only the first's arguments will be used.</p>
<p>IpcRegistrar.createInstance</p>
<hr />
<h3 id="getinstance">getInstance<a class="headerlink" href="#getinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>strict</code>): <code>T</code></p>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, <code>strict?</code>): <code>T</code></p>
<p>Get the instance of the child class that was previously created.</p>
<h4 id="type-parameters_1">Type parameters<a class="headerlink" href="#type-parameters_1" title="Permanent link">#</a></h4>
<table>
@ -1088,13 +1093,21 @@ only the first's arguments will be used.</p>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Default value</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left"><code>undefined</code></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>strict</code></td>
<td align="left"><code>boolean</code></td>
<td align="left"><code>true</code></td>
<td align="left">If false will return <code>undefined</code> instead of throwing when an instance doesn't exist. Default: <code>true</code></td>
</tr>
</tbody>

View File

@ -1017,7 +1017,7 @@ a component then putting the returned value in a <code>disposeOnUnmount</code> c
<p>An optional disposer, Lens will cleanup even if this is not called</p>
<hr />
<h3 id="createinstance">createInstance<a class="headerlink" href="#createinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(...<code>args</code>): <code>T</code></p>
<p><code>Static</code> <strong>createInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, ...<code>args</code>): <code>T</code></p>
<p>Creates the single instance of the child class if one was not already created.</p>
<p>Multiple calls will return the same instance.
Essentially throwing away the arguments to the subsequent calls.</p>
@ -1053,6 +1053,11 @@ only the first's arguments will be used.</p>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>...args</code></td>
<td align="left"><code>R</code></td>
<td align="left">The constructor arguments for the child class</td>
@ -1066,7 +1071,7 @@ only the first's arguments will be used.</p>
<p>IpcRegistrar.createInstance</p>
<hr />
<h3 id="getinstance">getInstance<a class="headerlink" href="#getinstance" title="Permanent link">#</a></h3>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>strict</code>): <code>T</code></p>
<p><code>Static</code> <strong>getInstance</strong>&lt;<code>T</code>, <code>R</code>>(<code>this</code>, <code>strict?</code>): <code>T</code></p>
<p>Get the instance of the child class that was previously created.</p>
<h4 id="type-parameters_1">Type parameters<a class="headerlink" href="#type-parameters_1" title="Permanent link">#</a></h4>
<table>
@ -1093,13 +1098,21 @@ only the first's arguments will be used.</p>
<tr>
<th align="left">Name</th>
<th align="left">Type</th>
<th align="left">Default value</th>
<th align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>this</code></td>
<td align="left"><code>StaticThis</code>&lt;<code>T</code>, <code>R</code>></td>
<td align="left"><code>undefined</code></td>
<td align="left">Implicit argument that is the child class type</td>
</tr>
<tr>
<td align="left"><code>strict</code></td>
<td align="left"><code>boolean</code></td>
<td align="left"><code>true</code></td>
<td align="left">If false will return <code>undefined</code> instead of throwing when an instance doesn't exist. Default: <code>true</code></td>
</tr>
</tbody>

View File

@ -1344,7 +1344,7 @@
<h2 id="hierarchy">Hierarchy<a class="headerlink" href="#hierarchy" title="Permanent link">#</a></h2>
<ul>
<li>
<p><code>ReactSelectProps</code>&lt;<code>T</code>, <code>boolean</code>></p>
<p><code>Props</code>&lt;<code>T</code>, <code>boolean</code>></p>
</li>
<li>
<p><code>CreatableProps</code>&lt;<code>T</code>, <code>boolean</code>></p>

View File

@ -872,31 +872,31 @@
</ul>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="appname">appName<a class="headerlink" href="#appname" title="Permanent link">#</a></h3>
<p><strong>appName</strong>: <code>string</code></p>
<p><code>Const</code> <strong>appName</strong>: <code>string</code></p>
<hr />
<h3 id="islinux">isLinux<a class="headerlink" href="#islinux" title="Permanent link">#</a></h3>
<p><strong>isLinux</strong>: <code>boolean</code></p>
<p><code>Const</code> <strong>isLinux</strong>: <code>boolean</code></p>
<hr />
<h3 id="ismac">isMac<a class="headerlink" href="#ismac" title="Permanent link">#</a></h3>
<p><strong>isMac</strong>: <code>boolean</code></p>
<p><code>Const</code> <strong>isMac</strong>: <code>boolean</code></p>
<hr />
<h3 id="issnap">isSnap<a class="headerlink" href="#issnap" title="Permanent link">#</a></h3>
<p><strong>isSnap</strong>: <code>boolean</code> = <code>!!process.env.SNAP</code></p>
<p><code>Const</code> <strong>isSnap</strong>: <code>boolean</code> = <code>!!process.env.SNAP</code></p>
<hr />
<h3 id="iswindows">isWindows<a class="headerlink" href="#iswindows" title="Permanent link">#</a></h3>
<p><strong>isWindows</strong>: <code>boolean</code></p>
<p><code>Const</code> <strong>isWindows</strong>: <code>boolean</code></p>
<hr />
<h3 id="issuestrackerurl">issuesTrackerUrl<a class="headerlink" href="#issuestrackerurl" title="Permanent link">#</a></h3>
<p><strong>issuesTrackerUrl</strong>: <code>string</code></p>
<p><code>Const</code> <strong>issuesTrackerUrl</strong>: <code>string</code></p>
<hr />
<h3 id="slackurl">slackUrl<a class="headerlink" href="#slackurl" title="Permanent link">#</a></h3>
<p><strong>slackUrl</strong>: <code>string</code></p>
<p><code>Const</code> <strong>slackUrl</strong>: <code>string</code></p>
<hr />
<h3 id="version">version<a class="headerlink" href="#version" title="Permanent link">#</a></h3>
<p><strong>version</strong>: <code>string</code></p>
<p><code>Const</code> <strong>version</strong>: <code>string</code></p>
<h2 id="functions_1">Functions<a class="headerlink" href="#functions_1" title="Permanent link">#</a></h2>
<h3 id="getenabledextensions">getEnabledExtensions<a class="headerlink" href="#getenabledextensions" title="Permanent link">#</a></h3>
<p><code>Const</code> <strong>getEnabledExtensions</strong>(): <code>string</code>[]</p>
<p><strong>getEnabledExtensions</strong>(): <code>string</code>[]</p>
<h4 id="returns">Returns<a class="headerlink" href="#returns" title="Permanent link">#</a></h4>
<p><code>string</code>[]</p>

View File

@ -950,7 +950,7 @@
<p>Ƭ <strong>WebLinkStatusPhase</strong>: <code>"available"</code> | <code>"unavailable"</code></p>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="kubernetesclustercategory">kubernetesClusterCategory<a class="headerlink" href="#kubernetesclustercategory" title="Permanent link">#</a></h3>
<p><strong>kubernetesClusterCategory</strong>: <code>KubernetesClusterCategory</code></p>
<p><code>Const</code> <strong>kubernetesClusterCategory</strong>: <code>KubernetesClusterCategory</code></p>
<p>Copyright (c) OpenLens Authors. All rights reserved.
Licensed under MIT License. See LICENSE in root directory for more information.</p>

View File

@ -785,7 +785,7 @@
</ul>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="appeventbus">appEventBus<a class="headerlink" href="#appeventbus" title="Permanent link">#</a></h3>
<p><strong>appEventBus</strong>: <code>EventEmitter</code>&lt;[<a href="../../interfaces/Common.EventBus.AppEvent/"><code>AppEvent</code></a>]></p>
<p><code>Const</code> <strong>appEventBus</strong>: <code>EventEmitter</code>&lt;[<a href="../../interfaces/Common.EventBus.AppEvent/"><code>AppEvent</code></a>]></p>
<p>Copyright (c) OpenLens Authors. All rights reserved.
Licensed under MIT License. See LICENSE in root directory for more information.</p>

View File

@ -863,7 +863,7 @@ running.</p>
<p><code>Promise</code>&lt;<code>void</code>></p>
<hr />
<h3 id="openexternal">openExternal<a class="headerlink" href="#openexternal" title="Permanent link">#</a></h3>
<p><code>Const</code> <strong>openExternal</strong>(<code>url</code>): <code>Promise</code>&lt;<code>void</code>></p>
<p><strong>openExternal</strong>(<code>url</code>): <code>Promise</code>&lt;<code>void</code>></p>
<p><strong><code>deprecated</code></strong> use openBrowser</p>
<h4 id="parameters_2">Parameters<a class="headerlink" href="#parameters_2" title="Permanent link">#</a></h4>
<table>

View File

@ -819,7 +819,7 @@
<p>Re-exports <a href="../Renderer.Catalog/#catalogcategories">catalogCategories</a></p>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="catalogentities">catalogEntities<a class="headerlink" href="#catalogentities" title="Permanent link">#</a></h3>
<p><strong>catalogEntities</strong>: <a href="../../classes/Main.Catalog.CatalogEntityRegistry/"><code>CatalogEntityRegistry</code></a></p>
<p><code>Const</code> <strong>catalogEntities</strong>: <a href="../../classes/Main.Catalog.CatalogEntityRegistry/"><code>CatalogEntityRegistry</code></a></p>

View File

@ -829,7 +829,7 @@
<p><code>void</code></p>
<h2 id="functions_1">Functions<a class="headerlink" href="#functions_1" title="Permanent link">#</a></h2>
<h3 id="onresume">onResume<a class="headerlink" href="#onresume" title="Permanent link">#</a></h3>
<p><code>Const</code> <strong>onResume</strong>(<code>listener</code>): <code>Disposer</code></p>
<p><strong>onResume</strong>(<code>listener</code>): <code>Disposer</code></p>
<p>Adds event listener to system resume event</p>
<h4 id="parameters">Parameters<a class="headerlink" href="#parameters" title="Permanent link">#</a></h4>
<table>
@ -853,7 +853,7 @@
<p>function to remove event listener</p>
<hr />
<h3 id="onshutdown">onShutdown<a class="headerlink" href="#onshutdown" title="Permanent link">#</a></h3>
<p><code>Const</code> <strong>onShutdown</strong>(<code>listener</code>): <code>Disposer</code></p>
<p><strong>onShutdown</strong>(<code>listener</code>): <code>Disposer</code></p>
<p>Adds event listener to the event which is emitted when
the system is about to reboot or shut down</p>
<h4 id="parameters_1">Parameters<a class="headerlink" href="#parameters_1" title="Permanent link">#</a></h4>
@ -878,7 +878,7 @@ the system is about to reboot or shut down</p>
<p>function to remove event listener</p>
<hr />
<h3 id="onsuspend">onSuspend<a class="headerlink" href="#onsuspend" title="Permanent link">#</a></h3>
<p><code>Const</code> <strong>onSuspend</strong>(<code>listener</code>): <code>Disposer</code></p>
<p><strong>onSuspend</strong>(<code>listener</code>): <code>Disposer</code></p>
<p>Adds event listener to system suspend events</p>
<h4 id="parameters_2">Parameters<a class="headerlink" href="#parameters_2" title="Permanent link">#</a></h4>
<table>

View File

@ -793,10 +793,10 @@
</ul>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="catalogcategories">catalogCategories<a class="headerlink" href="#catalogcategories" title="Permanent link">#</a></h3>
<p><strong>catalogCategories</strong>: <code>CatalogCategoryRegistry</code></p>
<p><code>Const</code> <strong>catalogCategories</strong>: <code>CatalogCategoryRegistry</code></p>
<hr />
<h3 id="catalogentities">catalogEntities<a class="headerlink" href="#catalogentities" title="Permanent link">#</a></h3>
<p><strong>catalogEntities</strong>: <a href="../../classes/Renderer.Catalog.CatalogEntityRegistry/"><code>CatalogEntityRegistry</code></a></p>
<p><code>Const</code> <strong>catalogEntities</strong>: <a href="../../classes/Renderer.Catalog.CatalogEntityRegistry/"><code>CatalogEntityRegistry</code></a></p>

File diff suppressed because one or more lines are too long

View File

@ -1164,7 +1164,7 @@
</ul>
<h2 id="variables_1">Variables<a class="headerlink" href="#variables_1" title="Permanent link">#</a></h2>
<h3 id="apimanager">apiManager<a class="headerlink" href="#apimanager" title="Permanent link">#</a></h3>
<p><strong>apiManager</strong>: <code>ApiManager</code></p>
<p><code>Const</code> <strong>apiManager</strong>: <code>ApiManager</code></p>
<hr />
<h3 id="clusterroleapi">clusterRoleApi<a class="headerlink" href="#clusterroleapi" title="Permanent link">#</a></h3>
<p><strong>clusterRoleApi</strong>: <a href="../../classes/Renderer.K8sApi.KubeApi/"><code>KubeApi</code></a>&lt;<a href="../../classes/Renderer.K8sApi.ClusterRole/"><code>ClusterRole</code></a>></p>

File diff suppressed because one or more lines are too long

Binary file not shown.