compote-ui 0.41.1 → 0.41.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.
@@ -13,6 +13,6 @@
13
13
  let { class: className, children, ...restProps }: Props = $props();
14
14
  </script>
15
15
 
16
- <Listbox.Label {...restProps} class={cn('text-sm font-medium text-ink', className)}>
16
+ <Listbox.Label {...restProps} class={cn('text-sm font-medium', className)}>
17
17
  {@render children?.()}
18
18
  </Listbox.Label>
@@ -41,7 +41,7 @@
41
41
  class={rootClass}
42
42
  >
43
43
  {#if label}
44
- <NumberInput.Label>
44
+ <NumberInput.Label class="text-sm leading-none font-medium">
45
45
  {label}
46
46
  <Field.RequiredIndicator />
47
47
  </NumberInput.Label>
@@ -39,7 +39,7 @@
39
39
  class={cn(layout === 'horizontal' ? 'flex items-center gap-1.5' : 'grid gap-1.5')}
40
40
  >
41
41
  {#if label}
42
- <Select.Label>
42
+ <Select.Label class="text-sm leading-none font-medium">
43
43
  {label}
44
44
  <Field.RequiredIndicator />
45
45
  </Select.Label>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.41.1",
3
+ "version": "0.41.2",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",