compote-ui 0.7.0 → 0.8.0

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.
@@ -105,7 +105,7 @@
105
105
 
106
106
  <Combobox.Control
107
107
  class={cn(
108
- 'rounded-ark flex min-h-9 items-center gap-1 border px-3 shadow-sm',
108
+ 'flex min-h-9 items-center gap-1 rounded border px-3 shadow-sm',
109
109
  'focus-within:ring-1 focus-within:ring-primary',
110
110
  'data-invalid:border-danger data-invalid:focus-within:ring-danger',
111
111
  multiple && 'flex-wrap py-1'
@@ -1,5 +1,7 @@
1
1
  import type { FileUploadRootProps } from '@ark-ui/svelte/file-upload';
2
+ export type { FileUploadFileChangeDetails } from '@ark-ui/svelte/file-upload';
2
3
  import type { FileType } from './utils';
4
+ export type { FileType } from './utils';
3
5
  export interface FileUploadDropzoneProps extends FileUploadRootProps {
4
6
  fileType: FileType;
5
7
  label: string;
package/dist/index.d.ts CHANGED
@@ -10,8 +10,7 @@ export { default as AlertDialog } from './components/dialog/alert-dialog.svelte'
10
10
  export type { DialogProps, AlertDialogProps } from './components/dialog/dialog.types';
11
11
  export { default as FileUploadDropzone } from './components/file-upload/file-upload-dropzone.svelte';
12
12
  export { default as FileUpload } from './components/file-upload/file-upload.svelte';
13
- export type { FileUploadProps } from './components/file-upload/types';
14
- export type { FileType } from './components/file-upload/utils';
13
+ export type { FileUploadProps, FileUploadFileChangeDetails, FileType } from './components/file-upload/types';
15
14
  export { default as ImageCropper } from './components/image-cropper/image-cropper.svelte';
16
15
  export type { ImageCropperProps, ImageCropperCropData } from './components/image-cropper/types';
17
16
  export { default as ImageCropDialog } from './components/image-crop-dialog/image-crop-dialog.svelte';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compote-ui",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",