@invopop/popui 0.0.34 → 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.
@@ -43,7 +43,7 @@ function handleSortBy(event) {
43
43
  slot="trigger"
44
44
  class="{headerStyles} w-full py-2 flex items-center justify-start space-x-1 text-left text-base tracking-normal whitespace-nowrap font-normal"
45
45
  >
46
- <span class="min-h-5" />
46
+ <span>{field.headerLabel}</span>
47
47
  {#if sortBy === field.slug}
48
48
  <svg
49
49
  viewBox="0 0 12 12"
@@ -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.34",
4
+ "version": "0.0.35",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",