@emamid/svelte-data-table 0.0.4 → 0.0.5
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.
- package/dist/DataTable.svelte +2 -2
- package/package.json +1 -1
package/dist/DataTable.svelte
CHANGED
|
@@ -19,7 +19,7 @@ export let tableClassOverride = "";
|
|
|
19
19
|
const tableClassDefault = "";
|
|
20
20
|
export let theadClassAppend = "";
|
|
21
21
|
export let theadClassOverride = "";
|
|
22
|
-
const theadClassDefault = "text-xs uppercase sticky top-0";
|
|
22
|
+
const theadClassDefault = "text-xs uppercase sticky top-0 z-1";
|
|
23
23
|
export let thClassAppend = "";
|
|
24
24
|
export let thClassOverride = "";
|
|
25
25
|
const thClassDefault = "";
|
|
@@ -188,7 +188,7 @@ const rowClicked = (item) => {
|
|
|
188
188
|
</script>
|
|
189
189
|
|
|
190
190
|
<Table class={tableClass} {divClass}>
|
|
191
|
-
<TableHead defaultRow={false} {theadClass}>
|
|
191
|
+
<TableHead defaultRow={false} class={theadClass}>
|
|
192
192
|
{#each internalColumns as column}
|
|
193
193
|
<DataTableHeaderCell
|
|
194
194
|
{column}
|