compote-ui 0.55.1 → 0.55.3

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.
@@ -130,7 +130,7 @@
130
130
  )}
131
131
  >
132
132
  {#if label}
133
- <Combobox.Label class="text-sm">
133
+ <Combobox.Label class="text-sm font-medium leading-none">
134
134
  {label}
135
135
  <Field.RequiredIndicator class="text-danger" />
136
136
  </Combobox.Label>
@@ -12,6 +12,7 @@
12
12
  invalid,
13
13
  readOnly,
14
14
  disabled,
15
+ hideTimeZone = true,
15
16
  ...restProps
16
17
  }: DateInputProps = $props();
17
18
 
@@ -26,6 +27,7 @@
26
27
 
27
28
  <DateInput.Root
28
29
  {...restProps}
30
+ {hideTimeZone}
29
31
  invalid={isInvalid}
30
32
  readOnly={isReadOnly}
31
33
  disabled={isDisabled}
@@ -8,7 +8,7 @@
8
8
 
9
9
  <Field.Textarea
10
10
  {...rest}
11
- {value}
11
+ bind:value
12
12
  class={cn(
13
13
  'flex min-h-20 w-full resize-y rounded-md border bg-surface-1 px-3 py-2 text-sm shadow-sm transition-colors placeholder:text-ink-dim focus-visible:ring-1 focus-visible:ring-ring focus-visible:outline-none data-disabled:cursor-not-allowed data-disabled:opacity-50 data-invalid:border-danger data-invalid:focus-visible:ring-danger data-readonly:cursor-default data-readonly:opacity-70',
14
14
  className
@@ -27,7 +27,7 @@
27
27
 
28
28
  <FileUpload.Root {maxFiles} {accept} class="flex flex-col gap-1.5" {...restProps}>
29
29
  {#if label}
30
- <FileUpload.Label class="text-sm font-medium">{label}</FileUpload.Label>
30
+ <FileUpload.Label class="text-sm font-medium leading-none">{label}</FileUpload.Label>
31
31
  {/if}
32
32
 
33
33
  <FileUpload.Context>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.55.1",
3
+ "version": "0.55.3",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",