Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 73 additions & 84 deletions package-lock.json

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

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smallstack/svelte-ui",
"version": "0.4.1",
"version": "0.5.0-beta.1",
"description": "Tiny library for Svelte 5 and DaisyUI, published as multi entry ESM module and as web components.",
"author": {
"name": "smallstack GmbH",
Expand All @@ -24,7 +24,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smallstack/svelte-ui"
"url": "git+https://github.com/smallstack/svelte-ui.git"
},
"scripts": {
"dev": "vite dev --port 5174",
Expand Down Expand Up @@ -78,7 +78,8 @@
"./utils": {
"types": "./dist/modules/utils/index.d.ts",
"svelte": "./dist/modules/utils/index.js"
}
},
"./styles": "./dist/modules/styles/index.js"
},
"files": [
"dist",
Expand All @@ -96,7 +97,7 @@
"@testing-library/svelte": "^5.2.6",
"@types/eslint": "^9.6.0",
"@types/node": "^22.9.1",
"daisyui": "^5.0.0-beta.2",
"daisyui": "^5.0.0-beta.5",
"@vitest/browser": "3.0.4",
"@vitest/coverage-v8": "3.0.4",
"autoprefixer": "^10.4.19",
Expand All @@ -109,7 +110,7 @@
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.3.0",
"svelte-check": "^4.1.1",
"tailwindcss": "^4.0.0",
"tailwindcss": "^4.0.1",
"tslib": "^2.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
Expand All @@ -122,14 +123,14 @@
"@floating-ui/dom": "^1.6.12",
"@smallstack/utils": "^3.0.10",
"@sveltejs/kit": "^2.15.1",
"@tailwindcss/vite": "^4.0.0",
"@tailwindcss/vite": "^4.0.1",
"date-fns": "^4.1.0",
"i18next": "^24.2.0",
"i18next-browser-languagedetector": "^8.0.0",
"jsdom": "^26.0.0",
"perfect-freehand": "^1.2.2",
"pulltorefreshjs": "^0.1.22",
"svelte": "^5.16.2",
"svelte": "^5.19.5",
"svelte-i18next": "^2.2.2"
},
"volta": {
Expand Down
1 change: 1 addition & 0 deletions src/app.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import "tailwindcss";
@plugin "./lib/modules/styles/index";
@plugin "daisyui";
@plugin "daisyui/theme" {
name: "svelte";
Expand Down
Loading