@invopop/popui 0.0.33 → 0.0.35

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.
@@ -237,7 +237,9 @@ function handleKeydown(event) {
237
237
  {/each}
238
238
  {#if addExtraCell}
239
239
  <!-- if table has actions cell we need to add an extra header -->
240
- <th scope="col" class="bg-white sticky top-0 z-10 rounded-tr-md" />
240
+ <th scope="col" class="bg-white sticky top-0 z-10 rounded-tr-md">
241
+ <div class="border-b border-neutral-100 h-9" />
242
+ </th>
241
243
  {/if}
242
244
  </tr>
243
245
  </thead>
@@ -16,7 +16,7 @@ $:
16
16
  });
17
17
  $:
18
18
  headerStyles = clsx({
19
- "justify-end": field.rightAlign,
19
+ "self-end": field.rightAlign,
20
20
  "hover:bg-neutral-50 focus:bg-neutral-100": field.sortable,
21
21
  "pl-5": isFirst && !selectable,
22
22
  "pl-3": !isFirst,
@@ -71,7 +71,7 @@ function handleSortBy(event) {
71
71
  <div
72
72
  class="{headerStyles} py-2 text-left text-base font-normal tracking-normal whitespace-nowrap"
73
73
  >
74
- {field.headerLabel}
74
+ <div class="h-5">{field.headerLabel}</div>
75
75
  </div>
76
76
  {/if}
77
77
  </span>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.0.33",
4
+ "version": "0.0.35",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",