Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mateothegreat committed Oct 29, 2024
1 parent e5e806b commit e6a3084
Show file tree
Hide file tree
Showing 8 changed files with 932 additions and 112 deletions.
133 changes: 66 additions & 67 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"build": "npm run check && rimraf dist && cpx 'src/lib/**/*' dist && cpx package.json dist"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.0.0-next.264",
"svelte": "^5.1.4",
"svelte-check": "^4.0.5",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"rimraf": "^5.0.0",
"rimraf": "^6.0.1",
"cpx": "^1.5.0"
}
}
2 changes: 1 addition & 1 deletion src/lib/default-overlay.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</script>

<div bind:this={ref} class="modal-overlay absolute bottom-0 left-0 right-0 top-0 flex h-full w-full items-center justify-center bg-black/50 backdrop-blur-sm transition-all duration-500 {instance.config.classes}">
<div bind:this={modalContentRef} role="button" tabindex="0" onkeydown={handleKeyDown} onclick={handleClick} class="modal-content">
<div bind:this={modalContentRef} role="modal" tabindex="0" onkeydown={handleKeyDown} onclick={handleClick} class="modal-content">
<instance.config.component {instance} {...rest} />
</div>
</div>
Loading

0 comments on commit e6a3084

Please sign in to comment.