Skip to content

Commit fec7066

Browse files
authored
modalService.openSimpleModal shall return a promise (#212)
1 parent 7a5c164 commit fec7066

File tree

25 files changed

+317
-200
lines changed

25 files changed

+317
-200
lines changed

package-lock.json

Lines changed: 73 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smallstack/svelte-ui",
3-
"version": "0.4.1",
3+
"version": "0.5.0-beta.1",
44
"description": "Tiny library for Svelte 5 and DaisyUI, published as multi entry ESM module and as web components.",
55
"author": {
66
"name": "smallstack GmbH",
@@ -24,7 +24,7 @@
2424
"license": "MIT",
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/smallstack/svelte-ui"
27+
"url": "git+https://github.com/smallstack/svelte-ui.git"
2828
},
2929
"scripts": {
3030
"dev": "vite dev --port 5174",
@@ -78,7 +78,8 @@
7878
"./utils": {
7979
"types": "./dist/modules/utils/index.d.ts",
8080
"svelte": "./dist/modules/utils/index.js"
81-
}
81+
},
82+
"./styles": "./dist/modules/styles/index.js"
8283
},
8384
"files": [
8485
"dist",
@@ -96,7 +97,7 @@
9697
"@testing-library/svelte": "^5.2.6",
9798
"@types/eslint": "^9.6.0",
9899
"@types/node": "^22.9.1",
99-
"daisyui": "^5.0.0-beta.2",
100+
"daisyui": "^5.0.0-beta.5",
100101
"@vitest/browser": "3.0.4",
101102
"@vitest/coverage-v8": "3.0.4",
102103
"autoprefixer": "^10.4.19",
@@ -109,7 +110,7 @@
109110
"prettier-plugin-svelte": "^3.3.2",
110111
"publint": "^0.3.0",
111112
"svelte-check": "^4.1.1",
112-
"tailwindcss": "^4.0.0",
113+
"tailwindcss": "^4.0.1",
113114
"tslib": "^2.4.1",
114115
"typescript": "^5.7.2",
115116
"typescript-eslint": "^8.19.1",
@@ -122,14 +123,14 @@
122123
"@floating-ui/dom": "^1.6.12",
123124
"@smallstack/utils": "^3.0.10",
124125
"@sveltejs/kit": "^2.15.1",
125-
"@tailwindcss/vite": "^4.0.0",
126+
"@tailwindcss/vite": "^4.0.1",
126127
"date-fns": "^4.1.0",
127128
"i18next": "^24.2.0",
128129
"i18next-browser-languagedetector": "^8.0.0",
129130
"jsdom": "^26.0.0",
130131
"perfect-freehand": "^1.2.2",
131132
"pulltorefreshjs": "^0.1.22",
132-
"svelte": "^5.16.2",
133+
"svelte": "^5.19.5",
133134
"svelte-i18next": "^2.2.2"
134135
},
135136
"volta": {

src/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@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");
22
@import "tailwindcss";
3+
@plugin "./lib/modules/styles/index";
34
@plugin "daisyui";
45
@plugin "daisyui/theme" {
56
name: "svelte";

0 commit comments

Comments
 (0)