Skip to content

Commit

Permalink
2.0.39-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
poirazis committed Oct 14, 2024
1 parent b9d9108 commit 8928fd7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bb-component-SuperTable",
"version": "2.0.38-alpha",
"version": "2.0.39-alpha",
"description": "A Fully Customizable Budibase Table Component",
"author": "Michael Poirazi",
"license": "MIT",
Expand Down
5 changes: 5 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
"key": "row",
"type": "object"
},
{
"label": "Hovered Row",
"key": "hoveredRow",
"type": "object"
},
{
"label": "Rows",
"key": "rows",
Expand Down
8 changes: 5 additions & 3 deletions src/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
</script>

<div use:styleable={$component.styles}>
<SuperTable {comp_id} inBuilder={$builderStore.inBuilder} {...$$props}>
<slot />
</SuperTable>
{#key $component.children}
<SuperTable {comp_id} inBuilder={$builderStore.inBuilder} {...$$props}>
<slot />
</SuperTable>
{/key}
</div>

0 comments on commit 8928fd7

Please sign in to comment.