@likable-hair/svelte 3.0.75 → 3.0.76

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.
@@ -126,7 +126,8 @@ $:
126
126
  }
127
127
 
128
128
  dispatch('input', {
129
- item
129
+ item,
130
+ items
130
131
  })
131
132
  }}
132
133
  on:click
@@ -150,7 +151,8 @@ $:
150
151
  }, {})
151
152
 
152
153
  dispatch('input', {
153
- item: item
154
+ item,
155
+ items
154
156
  })
155
157
  }}
156
158
  />
@@ -35,6 +35,7 @@ declare const __propDef: {
35
35
  }>;
36
36
  input: CustomEvent<{
37
37
  item: Item;
38
+ items: Item[];
38
39
  }>;
39
40
  } & {
40
41
  [evt: string]: CustomEvent<any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@likable-hair/svelte",
3
3
  "description": "A Svelte component for likablehair",
4
- "version": "3.0.75",
4
+ "version": "3.0.76",
5
5
  "scripts": {
6
6
  "host": "vite --host",
7
7
  "dev": "vite dev",