Skip to content

Commit 143f74e

Browse files
committed
[docs] Link
1 parent 2a560a3 commit 143f74e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/guides/releases/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<span class="comment">// -> 'function'</span>
3333

3434
<span class="function">disposeAppSolid</span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
35-
</code></pre><p>Read more in the <a href="/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the <a href="/demos/ui-components-solid/inspector-solid/"><inspector>(Solid)</inspector></a>demo.</p><h2 id="new-solid-demos">New Solid <a href="/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p><pre><code><span class="keyword">const</span> solidStore <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/creating-stores/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">.</span><span class="function"><a href="/api/the-essentials/setting-data/setcell/">setCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> <span class="string">'brown'</span><span class="punctuation">)</span><span class="punctuation">;</span>
35+
</code></pre><p>Read more in the <a href="/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the Inspector (Solid) demo.</p><h2 id="new-solid-demos">New Solid <a href="/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p><pre><code><span class="keyword">const</span> solidStore <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/creating-stores/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">.</span><span class="function"><a href="/api/the-essentials/setting-data/setcell/">setCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> <span class="string">'brown'</span><span class="punctuation">)</span><span class="punctuation">;</span>
3636

3737
<span class="function">createRoot</span><span class="punctuation">(</span><span class="punctuation">(</span><span class="parameter">dispose</span><span class="punctuation">)</span> <span class="operator">=></span> <span class="punctuation">{</span>
3838
<span class="keyword">const</span> color <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/using-react/usecell/">useCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> solidStore<span class="punctuation">)</span><span class="punctuation">;</span>

docs/guides/releases/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<span class="comment">// -> 'function'</span>
3333

3434
<span class="function">disposeAppSolid</span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
35-
</code></pre><p>Read more in the <a href="/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the <a href="/demos/ui-components-solid/inspector-solid/"><inspector>(Solid)</inspector></a>demo.</p><h2 id="new-solid-demos">New Solid <a href="/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p><pre><code><span class="keyword">const</span> solidStore <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/creating-stores/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">.</span><span class="function"><a href="/api/the-essentials/setting-data/setcell/">setCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> <span class="string">'brown'</span><span class="punctuation">)</span><span class="punctuation">;</span>
35+
</code></pre><p>Read more in the <a href="/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the Inspector (Solid) demo.</p><h2 id="new-solid-demos">New Solid <a href="/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p><pre><code><span class="keyword">const</span> solidStore <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/creating-stores/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">.</span><span class="function"><a href="/api/the-essentials/setting-data/setcell/">setCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> <span class="string">'brown'</span><span class="punctuation">)</span><span class="punctuation">;</span>
3636

3737
<span class="function">createRoot</span><span class="punctuation">(</span><span class="punctuation">(</span><span class="parameter">dispose</span><span class="punctuation">)</span> <span class="operator">=></span> <span class="punctuation">{</span>
3838
<span class="keyword">const</span> color <span class="operator">=</span> <span class="function"><a href="/api/the-essentials/using-react/usecell/">useCell</a></span><span class="punctuation">(</span><span class="string">'pets'</span><span class="punctuation">,</span> <span class="string">'fido'</span><span class="punctuation">,</span> <span class="string">'color'</span><span class="punctuation">,</span> solidStore<span class="punctuation">)</span><span class="punctuation">;</span>

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ console.log(typeof Inspector);
3737
disposeAppSolid();
3838
```
3939

40-
<p>Read more in the <a href="https://beta.tinybase.org/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the <a href="https://beta.tinybase.org/demos/ui-components-solid/inspector-solid/"><inspector>(Solid)</inspector></a>demo.</p><h2 id="new-solid-demos">New Solid <a href="https://beta.tinybase.org/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="https://beta.tinybase.org/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="https://beta.tinybase.org/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="https://beta.tinybase.org/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="https://beta.tinybase.org/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="https://beta.tinybase.org/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p>
40+
<p>Read more in the <a href="https://beta.tinybase.org/guides/building-uis-with-solid/using-solid-dom-components/">Using Solid DOM Components</a> guide and the Inspector (Solid) demo.</p><h2 id="new-solid-demos">New Solid <a href="https://beta.tinybase.org/demos/">Demos</a></h2><p>This release also adds a complete set of Solid UI component demos, plus an Inspector demo, so you can see the new modules working across Stores, <a href="https://beta.tinybase.org/api/indexes/interfaces/indexes/indexes/"><code>Indexes</code></a>, <a href="https://beta.tinybase.org/api/relationships/interfaces/relationships/relationships/"><code>Relationships</code></a>, <a href="https://beta.tinybase.org/api/queries/interfaces/queries/queries/"><code>Queries</code></a>, and editable views.</p><p><img src="https://beta.tinybase.org/shots/editablevalueview-solid-demo.png" alt="EditableValueView (Solid)" title="EditableValueView (Solid)"></p><p>These demos intentionally mirror the React set where possible, making it easier to compare implementation patterns across frameworks.</p><p>There are no intended breaking changes in this release. If you spot any issues with the new Solid DOM components or the Solid inspector, please let us know!</p><hr><h1 id="v8-3">v8.3</h1><h2 id="solid-support">Solid Support</h2><p>This release adds the new <a href="https://beta.tinybase.org/api/ui-solid/"><code>ui-solid</code></a> module, bringing TinyBase&#x27;s reactive <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> bindings to Solid apps. It provides Solid primitives that return Accessor functions, listener primitives that clean up with Solid&#x27;s lifecycle, Provider context helpers, and view components for rendering <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> data directly in a Solid component tree.</p><p>The primitives follow Solid&#x27;s fine-grained reactivity model. They read TinyBase data immediately, then update the Accessor when the underlying <a href="https://beta.tinybase.org/api/the-essentials/creating-stores/store/"><code>Store</code></a> data changes:</p>
4141

4242
```js
4343
const solidStore = createStore().setCell('pets', 'fido', 'color', 'brown');

site/guides/19_releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ console.log(typeof Inspector);
6363
disposeAppSolid();
6464
```
6565

66-
Read more in the Using Solid DOM Components guide and the <Inspector /> (Solid)
66+
Read more in the Using Solid DOM Components guide and the Inspector (Solid)
6767
demo.
6868

6969
## New Solid Demos

0 commit comments

Comments
 (0)