@websline/system-components 1.2.6 → 1.2.7

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.
@@ -65,7 +65,7 @@
65
65
  size="large"
66
66
  {...rest}>
67
67
  {#snippet child({ props })}
68
- <Button {...props} {...buttonProps}>
68
+ <Button {...props} onkeydown={null} {...buttonProps}>
69
69
  {@render children?.()}
70
70
  </Button>
71
71
  {/snippet}
@@ -21,7 +21,7 @@
21
21
  {#if showClose}
22
22
  <Dialog.Close class={styles.close()}>
23
23
  {#snippet child({ props })}
24
- <CloseButton {...props} />
24
+ <CloseButton {...props} onkeydown={null} />
25
25
  {/snippet}
26
26
  </Dialog.Close>
27
27
  {/if}
@@ -55,7 +55,7 @@
55
55
  {#if showClose}
56
56
  <Popover.Close>
57
57
  {#snippet child({ props })}
58
- <CloseButton class={styles.close()} {...props} />
58
+ <CloseButton class={styles.close()} {...props} onkeydown={null} />
59
59
  {/snippet}
60
60
  </Popover.Close>
61
61
  {/if}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@websline/system-components",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },