Skip to content

Commit e032660

Browse files
committed
adds settable row height
1 parent a319193 commit e032660

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/crud-table-config-html.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ let table_config = {
88
{name: 'job', show: true, edit: true, size: '200px'},
99
{name: 'name', show: true, edit: true, size: '200px'},
1010
{name: 'private', show: true, edit: false, size: '200px'},
11-
{name: 'html', show: true, edit: true, size: '200px', type: 'html'}
12-
]
11+
{name: 'html', show: true, edit: true, size: '500px', type: 'html'}
12+
],
13+
row_settings: {height: '2em'}
1314
}
1415

1516
let genericCrudTable = document.querySelector('crud-table');

dist/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<title>Generic Crud Table</title>
77
<link rel='icon' type='image/png' href='favicon.png'>
88
<link rel='stylesheet' href='global.css'>
9-
<link rel='stylesheet' href='build/crud-table.css'>
109
<script defer src='build/crud-table.js'></script>
1110
</head>
1211

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-generic-crud-table",
3-
"version": "1.5.62",
3+
"version": "1.5.63",
44
"description": "<crud-table> renders object-arrays with options-panel and inline edit per row. Dispatches events for ongoing data handling. As self-containing webcomponent or for Svelte in 60KB",
55
"main": "dist/build/crud-table.js",
66
"module": "dist/build/crud-table.mjs",

0 commit comments

Comments
 (0)