@invopop/popui 0.0.4 → 0.0.5

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.
@@ -17,4 +17,5 @@ function updateInput(event) {
17
17
  {checked}
18
18
  class="form-checkbox w-5 h-5 text-workspace-accent focus:text-workspace-accent rounded border border-neutral-200 focus:ring-0 focus:ring-offset-0"
19
19
  on:change={updateInput}
20
+ on:click|stopPropagation
20
21
  />
@@ -4,6 +4,7 @@ declare const __propDef: {
4
4
  checked?: boolean | undefined;
5
5
  };
6
6
  events: {
7
+ click: MouseEvent;
7
8
  change: CustomEvent<any>;
8
9
  } & {
9
10
  [evt: string]: CustomEvent<any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.0.4",
4
+ "version": "0.0.5",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",