Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishiv committed Jun 24, 2024
1 parent e4265c0 commit 69de99d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ Fine grained reactive UI Library.
</tr>
</table>

#### Sponsors

<table>
<tr>
<td><img align="middle" width="48" src="https://www.grati.co/assets/logo-2c341a38.png"></td>
<td>You might want to try out <a href="https://www.grati.co">grati.co</a>, a no-code programming environment with emacs like extensibility.</td>
</tr>
</table>

#### Example

[Counter - Codesandbox](https://codesandbox.io/s/counter-demo-alfama-t7ift3?file=/src/index.tsx)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfama",
"version": "0.3.21",
"version": "0.3.22",
"author": "Abhishiv Saxena<abhishiv@gmail.com>",
"license": "MIT",
"description": "Fine-grained reactive library with no compiler, no magic, and no virtual DOM",
Expand Down
2 changes: 1 addition & 1 deletion src/stdlib/Each/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const Each: <T extends ArrayOrObject>(
const firstNode = previousChildren[0];
if (firstNode) removeNode(renderContext, firstNode);
} else if (data.name === "splice") {
const previousChildren = [...parentStep.children];
const previousChildren = [...pStep.children];
const [startIndex, deleteCount, ...items] = data.args as [
number,
number,
Expand Down

0 comments on commit 69de99d

Please sign in to comment.