@lundal/zed-solid 0.0.1 → 0.0.3
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/dist/style.css +12 -4
- package/package.json +8 -4
package/dist/style.css
CHANGED
|
@@ -131,7 +131,9 @@
|
|
|
131
131
|
outline: 2px solid transparent;
|
|
132
132
|
outline-offset: 3px;
|
|
133
133
|
cursor: pointer;
|
|
134
|
-
transition:
|
|
134
|
+
transition:
|
|
135
|
+
border-color 0.1s,
|
|
136
|
+
outline-color 0.1s;
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
.z-checkbox input::after {
|
|
@@ -392,7 +394,9 @@ dialog:focus-visible {
|
|
|
392
394
|
outline: 2px solid transparent;
|
|
393
395
|
outline-offset: 3px;
|
|
394
396
|
cursor: pointer;
|
|
395
|
-
transition:
|
|
397
|
+
transition:
|
|
398
|
+
border-color 0.1s,
|
|
399
|
+
outline-color 0.1s;
|
|
396
400
|
}
|
|
397
401
|
|
|
398
402
|
.z-radiobutton input::after {
|
|
@@ -468,7 +472,9 @@ dialog:focus-visible {
|
|
|
468
472
|
outline: 2px solid transparent;
|
|
469
473
|
outline-offset: 3px;
|
|
470
474
|
cursor: pointer;
|
|
471
|
-
transition:
|
|
475
|
+
transition:
|
|
476
|
+
border-color 0.1s,
|
|
477
|
+
outline-color 0.1s;
|
|
472
478
|
}
|
|
473
479
|
|
|
474
480
|
.z-select option {
|
|
@@ -525,7 +531,9 @@ dialog:focus-visible {
|
|
|
525
531
|
border-radius: 6px;
|
|
526
532
|
outline: 2px solid transparent;
|
|
527
533
|
outline-offset: 3px;
|
|
528
|
-
transition:
|
|
534
|
+
transition:
|
|
535
|
+
border-color 0.1s,
|
|
536
|
+
outline-color 0.1s;
|
|
529
537
|
}
|
|
530
538
|
|
|
531
539
|
.z-textbox:focus-visible {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lundal/zed-solid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,16 +18,20 @@
|
|
|
18
18
|
"@fortawesome/free-regular-svg-icons": "6",
|
|
19
19
|
"@fortawesome/free-solid-svg-icons": "6",
|
|
20
20
|
"@lundal/zed-css": "file:../css",
|
|
21
|
-
"
|
|
21
|
+
"@solidjs/router": "0.8",
|
|
22
|
+
"solid-js": "1",
|
|
23
|
+
"prettier": "3",
|
|
22
24
|
"typescript": "5",
|
|
23
25
|
"vite": "4",
|
|
24
26
|
"vite-plugin-dts": "2",
|
|
25
27
|
"vite-plugin-libcss": "1",
|
|
26
28
|
"vite-plugin-solid": "2"
|
|
27
29
|
},
|
|
28
|
-
"
|
|
29
|
-
"@fontsource/inter": "5",
|
|
30
|
+
"peerDependencies": {
|
|
30
31
|
"@solidjs/router": "0.8",
|
|
31
32
|
"solid-js": "1"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@fontsource/inter": "5"
|
|
32
36
|
}
|
|
33
37
|
}
|