@lundal/zed-css 0.0.6 → 0.0.8
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/index.js +0 -22
- package/dist/style.css +4 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
1
|
import './style.css';
|
|
2
2
|
import "@fontsource/inter/400.css";
|
|
3
3
|
import "@fontsource/inter/500.css";
|
|
4
|
-
const Reset = "";
|
|
5
|
-
const Button = "";
|
|
6
|
-
const Card = "";
|
|
7
|
-
const CheckBox = "";
|
|
8
|
-
const Column = "";
|
|
9
|
-
const Dialog = "";
|
|
10
|
-
const Error = "";
|
|
11
|
-
const Field = "";
|
|
12
|
-
const Fieldset = "";
|
|
13
|
-
const Focus = "";
|
|
14
|
-
const Header = "";
|
|
15
|
-
const Headings = "";
|
|
16
|
-
const Link = "";
|
|
17
|
-
const Nav = "";
|
|
18
|
-
const Page = "";
|
|
19
|
-
const RadioButton = "";
|
|
20
|
-
const Row = "";
|
|
21
|
-
const Scrollbar = "";
|
|
22
|
-
const Select = "";
|
|
23
|
-
const Spinner = "";
|
|
24
|
-
const TextBox = "";
|
|
25
|
-
const Theme = "";
|
package/dist/style.css
CHANGED
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
border-radius: 12px;
|
|
81
81
|
padding: 24px;
|
|
82
82
|
background: var(--z-foreground);
|
|
83
|
-
|
|
83
|
+
border: 1px solid var(--z-border);
|
|
84
84
|
}
|
|
85
85
|
.z-checkbox {
|
|
86
86
|
display: flex;
|
|
@@ -164,6 +164,8 @@
|
|
|
164
164
|
.z-dialog::backdrop {
|
|
165
165
|
transition: opacity 0.1s;
|
|
166
166
|
opacity: 0;
|
|
167
|
+
background: none;
|
|
168
|
+
backdrop-filter: blur(2px);
|
|
167
169
|
}
|
|
168
170
|
|
|
169
171
|
.z-dialog--open {
|
|
@@ -593,8 +595,7 @@ dialog:focus-visible {
|
|
|
593
595
|
--z-button-tertiary-fill: transparent;
|
|
594
596
|
--z-button-tertiary-text: #e6e6e6;
|
|
595
597
|
--z-button-icon-fill: #2c2c35;
|
|
596
|
-
|
|
597
|
-
--z-input-border: #8f8f8f; /* Lc 40 */
|
|
598
|
+
--z-input-border: #79798a; /* Lc 30 */
|
|
598
599
|
--z-input-active-border: #6068ff; /* Lc 30 */
|
|
599
600
|
--z-input-active-fill: #7882ff; /* Lc 40 */
|
|
600
601
|
--z-input-error-border: #db3a32; /* Lc 30 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lundal/zed-css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"prettier": "3",
|
|
18
18
|
"typescript": "5",
|
|
19
|
-
"vite": "
|
|
19
|
+
"vite": "5",
|
|
20
20
|
"vite-plugin-libcss": "1"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|