compote-ui 0.5.1 → 0.5.2

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.
@@ -56,7 +56,7 @@
56
56
  {collection}
57
57
  onValueChange={handleValueChange}
58
58
  {...restProps}
59
- class={cn('flex h-full w-full flex-col gap-1.5 overflow-hidden', className)}
59
+ class={cn('flex h-full w-full flex-col gap-1.5 overflow-hidden p-0.5', className)}
60
60
  >
61
61
  {#if label}
62
62
  <Listbox.Label>{label}</Listbox.Label>
@@ -65,7 +65,7 @@
65
65
  <Listbox.Input
66
66
  placeholder={filterPlaceholder}
67
67
  oninput={(e) => (filterText = e.currentTarget.value)}
68
- class="mx-1 h-8 w-full rounded-xs border border-surface-3 bg-transparent px-2.5 text-sm outline-none placeholder:text-ink-dim focus-visible:ring-1 focus-visible:ring-primary"
68
+ class="h-8 w-full rounded-xs border border-surface-3 bg-transparent px-2.5 text-sm outline-none placeholder:text-ink-dim focus-visible:ring-1 focus-visible:ring-primary"
69
69
  />
70
70
  {/if}
71
71
  <Listbox.Content class="flex min-h-0 w-full flex-1 flex-col gap-1 overflow-y-auto outline-none">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",