compote-ui 0.55.0 → 0.55.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.
@@ -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>
@@ -1,5 +1,5 @@
1
1
  import type { DateInputRootBaseProps } from '@ark-ui/svelte/date-input';
2
- import type { DateInputDateValue as DateValue } from '@ark-ui/svelte/date-input';
2
+ import type { DateValue } from '@internationalized/date';
3
3
  export type { DateValue };
4
4
  export interface DateInputProps extends Omit<DateInputRootBaseProps, 'value' | 'defaultValue'> {
5
5
  value?: DateValue | null;
@@ -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/dist/index.d.ts CHANGED
@@ -52,6 +52,7 @@ export * as Fieldset from './components/fieldset';
52
52
  export { default as TreeView } from './components/tree-view/tree-view.svelte';
53
53
  export { LocaleProvider, useLocaleContext } from '@ark-ui/svelte/locale';
54
54
  export { getLocalTimeZone, parseAbsolute, parseDateTime } from '@internationalized/date';
55
+ export type { DateValue } from '@internationalized/date';
55
56
  export { Portal } from '@ark-ui/svelte/portal';
56
57
  export type { PortalProps } from '@ark-ui/svelte/portal';
57
58
  export { createListCollection, createTreeCollection } from './utils/collections';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.55.0",
3
+ "version": "0.55.2",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev --open",