noph-ui 0.21.6 → 0.21.8

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.
@@ -19,7 +19,7 @@
19
19
  let focused = $state(false)
20
20
  let visible = $state(false)
21
21
  let element: HTMLButtonElement | HTMLAnchorElement | HTMLDivElement | undefined = $state()
22
- let observer = $state<IntersectionObserver>()
22
+ let observer: IntersectionObserver | undefined
23
23
  onMount(() => {
24
24
  observer = new IntersectionObserver((entries) => {
25
25
  entries.forEach((entry) => {
@@ -15,7 +15,7 @@
15
15
  </script>
16
16
 
17
17
  <label {style} class={['np-host', attributes.class]} bind:this={element}>
18
- <div class="np-container" aria-hidden="true">
18
+ <div class="np-container">
19
19
  {#if !attributes.disabled}
20
20
  <Ripple forElement={inputEl} class="np-radio-ripple" />
21
21
  {/if}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noph-ui",
3
- "version": "0.21.6",
3
+ "version": "0.21.8",
4
4
  "license": "MIT",
5
5
  "homepage": "https://noph.dev",
6
6
  "repository": {