runeforge 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -121,7 +121,7 @@
121
121
  </div>
122
122
  {/snippet}
123
123
 
124
- <div class="list-root flex flex-col gap-6">
124
+ <div class="flex flex-col gap-6">
125
125
 
126
126
  <Header
127
127
  admin
@@ -159,18 +159,20 @@
159
159
  {/snippet}
160
160
  </Header>
161
161
 
162
- <PaginatedTable
163
- {data}
164
- {columns}
165
- {pageSize}
166
- selectable={allowDelete}
167
- {selected}
168
- rowActions={showRowActions ? actionsCell : undefined}
169
- />
162
+ <div class="table-wrapper">
163
+ <PaginatedTable
164
+ {data}
165
+ {columns}
166
+ {pageSize}
167
+ selectable={allowDelete}
168
+ {selected}
169
+ rowActions={showRowActions ? actionsCell : undefined}
170
+ />
171
+ </div>
170
172
  </div>
171
173
 
172
174
  <style>
173
- .list-root {
175
+ .table-wrapper {
174
176
  width: 100%;
175
177
  max-width: var(--runeforge-crud-max-width);
176
178
  margin-inline: auto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "runeforge",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "SvelteKit toolkit for building metadata-driven CRUD interfaces with tables, forms, and actions",
5
5
  "license": "MIT",
6
6
  "author": "Ezequiel Puerta",