fuma 2.0.25 → 2.0.26

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.
@@ -36,7 +36,7 @@
36
36
  export { klass as class }
37
37
  export let classList = ''
38
38
  export let inputElement: HTMLInputElement
39
- export let dropdown: DropDown
39
+ export let dropdown: DropDown | undefined
40
40
 
41
41
  let proposedItems: RelationItem[] = []
42
42
 
@@ -27,7 +27,7 @@ declare class __sveltets_Render<RelationItem extends {
27
27
  class?: string;
28
28
  classList?: string;
29
29
  inputElement: HTMLInputElement;
30
- dropdown: DropDown;
30
+ dropdown: DropDown | undefined;
31
31
  clear?: (() => Promise<void>) | undefined;
32
32
  select?: ((index?: number) => Promise<void>) | undefined;
33
33
  focus?: (() => void) | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuma",
3
- "version": "2.0.25",
3
+ "version": "2.0.26",
4
4
  "description": "My fullstack material build with sveltekit, daisyui, zod, prisma, lucia",
5
5
  "author": {
6
6
  "name": "Jonas Voisard",