Skip to content

Commit

Permalink
v 2.0.33-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
poirazis committed Aug 14, 2024
1 parent 240a96e commit 5297f98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bb-component-SuperTable",
"version": "2.0.32-alpha",
"version": "2.0.33-alpha",
"description": "A Fully Customizable Budibase Table Component",
"author": "Michael Poirazi",
"license": "MIT",
Expand All @@ -14,7 +14,7 @@
"@crownframework/svelte-error-boundary": "^1.0.3",
"svelte": "^4.2.18",
"svelte-fsm": "^1.2.0",
"svelte-legos": "^0.2.3"
"svelte-legos": "^0.2.4"
},
"devDependencies": {
"@budibase/backend-core": "^2.30.3",
Expand Down
13 changes: 4 additions & 9 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,7 @@
"barStyle": "buttons",
"barIcon": "SortOrderDown",
"barTitle": "Sortable"
}
]
},
{
"section": true,
"name": "Column Settings",
"collapsed": true,
"settings": [
},
{
"type": "boolean",
"key": "autocolumns",
Expand Down Expand Up @@ -387,7 +380,9 @@
"label": "Row Menu",
"options": [
{ "label": "Disabled", "value": false },
{ "label": "Column", "value": "actionColumn" }
{ "label": "Column - Left", "value": "columnLeft" },
{ "label": "Column - Right", "value": "columnRight" },
{ "label": "Context Menu", "value": "contextMenu" }
],
"defaultValue": false
},
Expand Down
2 changes: 2 additions & 0 deletions src/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
export let rowSelectMode;
export let rowMenu = false;
export let rowMenuItems;
export let rowMenuIcon = "ri-more-fill";
export let selectionMenu = false;
export let selectionMenuItems;
export let menuItemsVisible;
Expand Down Expand Up @@ -136,6 +137,7 @@
{rowSelectMode}
{rowMenu}
{rowMenuItems}
{rowMenuIcon}
{menuItemsVisible}
{selectionMenu}
{selectionMenuItems}
Expand Down

0 comments on commit 5297f98

Please sign in to comment.