@likable-hair/svelte 3.0.48 → 3.0.49

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.
@@ -261,6 +261,11 @@ let items = [
261
261
  items={items}
262
262
  bind:values={selected}
263
263
  {...autocompleteProps}
264
+ on:blur
265
+ on:close
266
+ on:focus
267
+ on:keydown
268
+ on:change
264
269
  >
265
270
  <svelte:fragment
266
271
  slot="chip-label"
@@ -39,6 +39,12 @@ declare const __propDef: {
39
39
  selected?: Item[] | undefined;
40
40
  };
41
41
  events: {
42
+ blur: FocusEvent;
43
+ close: CustomEvent<{}>;
44
+ focus: FocusEvent;
45
+ keydown: KeyboardEvent;
46
+ change: CustomEvent<any>;
47
+ } & {
42
48
  [evt: string]: CustomEvent<any>;
43
49
  };
44
50
  slots: {};
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.48",
4
+ "version": "3.0.49",
5
5
  "scripts": {
6
6
  "host": "vite --host",
7
7
  "dev": "vite dev",