@rokkit/themes 1.0.0-next.58 → 1.0.0-next.60
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/package.json +11 -13
- package/src/base/core.css +5 -1
- package/src/material/list.css +1 -1
- package/src/rokkit/organisms.css +2 -2
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rokkit/themes",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.60",
|
|
4
4
|
"description": "Themes for use with rokkit components.",
|
|
5
5
|
"author": "Jerry Thomas <me@jerrythomas.name>",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"svelte": "src/index.js",
|
|
8
7
|
"module": "src/index.js",
|
|
9
8
|
"types": "dist/index.d.ts",
|
|
10
9
|
"type": "module",
|
|
@@ -12,16 +11,15 @@
|
|
|
12
11
|
"access": "public"
|
|
13
12
|
},
|
|
14
13
|
"devDependencies": {
|
|
15
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
16
|
-
"@vitest/coverage-v8": "^
|
|
17
|
-
"@vitest/ui": "~
|
|
18
|
-
"jsdom": "^
|
|
19
|
-
"svelte": "^4.2.
|
|
20
|
-
"typescript": "^5.
|
|
21
|
-
"vite": "^
|
|
22
|
-
"vitest": "~
|
|
23
|
-
"
|
|
24
|
-
"shared-config": "1.0.0-next.58"
|
|
14
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
15
|
+
"@vitest/coverage-v8": "^1.1.3",
|
|
16
|
+
"@vitest/ui": "~1.1.3",
|
|
17
|
+
"jsdom": "^23.2.0",
|
|
18
|
+
"svelte": "^4.2.8",
|
|
19
|
+
"typescript": "^5.3.3",
|
|
20
|
+
"vite": "^5.0.11",
|
|
21
|
+
"vitest": "~1.1.3",
|
|
22
|
+
"shared-config": "1.0.0-next.60"
|
|
25
23
|
},
|
|
26
24
|
"files": [
|
|
27
25
|
"src"
|
|
@@ -40,7 +38,7 @@
|
|
|
40
38
|
}
|
|
41
39
|
},
|
|
42
40
|
"dependencies": {
|
|
43
|
-
"rokkit": "
|
|
41
|
+
"@rokkit/core": "1.0.0-next.60"
|
|
44
42
|
},
|
|
45
43
|
"scripts": {
|
|
46
44
|
"format": "prettier --write .",
|
package/src/base/core.css
CHANGED
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
/* Body styles */
|
|
10
10
|
body {
|
|
11
11
|
@apply flex flex-col w-screen overflow-hidden;
|
|
12
|
-
height: var(--viewport-height,
|
|
12
|
+
/* height: var(--viewport-height, 100dvh); */
|
|
13
|
+
height: 100vh;
|
|
14
|
+
height: --webkit-fill-available;
|
|
15
|
+
height: 100dvh;
|
|
16
|
+
max-height: 100dvh;
|
|
13
17
|
}
|
|
14
18
|
|
|
15
19
|
/* Link styles */
|
package/src/material/list.css
CHANGED
package/src/rokkit/organisms.css
CHANGED
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
/* Styles for 'button' and 'button-group' classes */
|
|
76
76
|
.rokkit button,
|
|
77
77
|
.rokkit .button {
|
|
78
|
-
@apply flex min-h-9 items-center rounded-full px-6 uppercase bg-neutral-muted text-neutral-700 cursor-pointer;
|
|
78
|
+
@apply flex min-h-9 items-center rounded-full px-6 gap-3 uppercase bg-neutral-muted text-neutral-700 cursor-pointer;
|
|
79
79
|
animation: button-pop var(--animation-btn, 0.25s) ease-out;
|
|
80
80
|
}
|
|
81
81
|
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
|
|
209
209
|
/* Selected and Hover styles for List and Node */
|
|
210
210
|
.rokkit list item[aria-selected='true'] > a {
|
|
211
|
-
@apply text-neutral-200 dark:text-neutral-800
|
|
211
|
+
@apply text-neutral-200 dark:text-neutral-800;
|
|
212
212
|
}
|
|
213
213
|
.rokkit virtual-list-item[aria-current='true'] {
|
|
214
214
|
@apply bg-neutral-inset text-secondary;
|