Skip to content

Commit

Permalink
Added dialog and drawer components
Browse files Browse the repository at this point in the history
  • Loading branch information
jeannemas committed May 12, 2024
1 parent 3433e1d commit 9acb1e8
Show file tree
Hide file tree
Showing 165 changed files with 2,868 additions and 776 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-chairs-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@jeanne-mas/svelte-ui': patch
---

Added dialog and drawer components
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tailwindCSS.experimental.classRegex": [
// https://www.tailwind-variants.org/docs/getting-started#intellisense-setup-optional
["tv\\((([^()]*|\\([^()]*\\))*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
]
}
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"dependencies": {
"@internationalized/date": "^3.5.2",
"@melt-ui/svelte": "^0.76.2",
"bits-ui": "^0.21.3",
"bits-ui": "^0.21.7",
"clsx": "^2.1.0",
"formsnap": "^1.0.0",
"lucide-svelte": "^0.368.0",
"mode-watcher": "^0.3.0",
"svelte-legos": "^0.2.2",
"svelte-sonner": "^0.3.22",
"sveltekit-superforms": "^2.12.5",
"tailwind-merge": "^2.2.2",
"tailwind-variants": "^0.2.1",
"vaul-svelte": "^0.3.0",
"zod": "^3.22.5"
},
"description": "A collection of Svelte components and related utilities that I use in my projects.",
Expand Down Expand Up @@ -83,6 +83,14 @@
"types": "./dist/components/container/index.d.ts",
"svelte": "./dist/components/container/index.js"
},
"./components/dialog": {
"types": "./dist/components/dialog/index.d.ts",
"svelte": "./dist/components/dialog/index.js"
},
"./components/drawer": {
"types": "./dist/components/drawer/index.d.ts",
"svelte": "./dist/components/drawer/index.js"
},
"./components/dropdown-menu": {
"types": "./dist/components/dropdown-menu/index.d.ts",
"svelte": "./dist/components/dropdown-menu/index.js"
Expand Down
Loading

0 comments on commit 9acb1e8

Please sign in to comment.