@hashrytech/quick-components-kit 0.16.4 → 0.16.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.
package/CHANGELOG.md
CHANGED
|
@@ -103,11 +103,10 @@ The `<Overlay>` component is used to darken the background and optionally block
|
|
|
103
103
|
</script>
|
|
104
104
|
|
|
105
105
|
{#if open}
|
|
106
|
-
<div class="
|
|
107
|
-
|
|
106
|
+
<div class="">
|
|
108
107
|
<Overlay {transitionDuration} {disableBodyScroll} class={overlayClasses} onclick={() => open = false} />
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
<div role="dialog" aria-modal="true" aria-label={ariaLabel} tabindex="{open ? 0 : -1}" aria-hidden="{!open}"
|
|
109
|
+
class={twMerge("fixed flex flex-col items-center gap-2 bg-white outline-0 focus:outline-0 active:outline-focus-primary focus:outline-focus-primary overflow-y-auto z-50", postionClasses[position], props.class)}
|
|
111
110
|
in:fly={transitionProperties}
|
|
112
111
|
out:fly={transitionProperties}
|
|
113
112
|
use:onKeydown={{key: "Escape", callback: handleKeydown}}>
|