@intechstudio/grid-uikit 1.20260807.1203 → 1.20260901.1149
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/MeltCheckbox.svelte +3 -0
- package/dist/MeltRadio.svelte +3 -0
- package/dist/theme.css +6 -57
- package/package.json +1 -1
- package/src/lib/theme.css +6 -57
package/dist/MeltCheckbox.svelte
CHANGED
package/dist/MeltRadio.svelte
CHANGED
|
@@ -166,10 +166,13 @@
|
|
|
166
166
|
}
|
|
167
167
|
div.style-radio-inside {
|
|
168
168
|
position: absolute;
|
|
169
|
+
top: 50%;
|
|
170
|
+
left: 50%;
|
|
169
171
|
border-radius: 9999px;
|
|
170
172
|
background-color: var(--foreground);
|
|
171
173
|
width: 0.75em;
|
|
172
174
|
height: 0.75em;
|
|
175
|
+
transform: translate(-50%, -50%);
|
|
173
176
|
}
|
|
174
177
|
button {
|
|
175
178
|
font-family: inherit; /* 1 */
|
package/dist/theme.css
CHANGED
|
@@ -46,18 +46,13 @@
|
|
|
46
46
|
--border-thickness: 1px;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
html[color-scheme="
|
|
50
|
-
--foreground: #
|
|
51
|
-
--background: #
|
|
52
|
-
--shadow: #
|
|
49
|
+
html[color-scheme="light"] {
|
|
50
|
+
--foreground: #1f1f1f;
|
|
51
|
+
--background: #e0e0e0;
|
|
52
|
+
--shadow: #787878;
|
|
53
53
|
|
|
54
|
-
--border: #
|
|
55
|
-
--
|
|
56
|
-
--focus: #16735f80;
|
|
57
|
-
--error: #af4355;
|
|
58
|
-
|
|
59
|
-
--foreground-disabled: #5c715f;
|
|
60
|
-
--background-soft: #b7c9b5;
|
|
54
|
+
--border: #a0a0a0;
|
|
55
|
+
--focus: #0000006a;
|
|
61
56
|
|
|
62
57
|
--popover-background: color-mix(
|
|
63
58
|
in srgb,
|
|
@@ -68,49 +63,3 @@ html[color-scheme="moss"] {
|
|
|
68
63
|
--popover-selection: var(--background-soft);
|
|
69
64
|
--popover-reference: var(--background-muted);
|
|
70
65
|
}
|
|
71
|
-
|
|
72
|
-
html[color-scheme="sunset"] {
|
|
73
|
-
--foreground: #30194d;
|
|
74
|
-
--background: #fffaf2;
|
|
75
|
-
--shadow: #76519a;
|
|
76
|
-
|
|
77
|
-
--border: #69458b;
|
|
78
|
-
--accent: #e76f2d;
|
|
79
|
-
--focus: #69458b80;
|
|
80
|
-
--error: #bd3b4c;
|
|
81
|
-
|
|
82
|
-
--foreground-disabled: #c7bcd2;
|
|
83
|
-
--background-soft: #d2cac0;
|
|
84
|
-
|
|
85
|
-
--popover-background: color-mix(
|
|
86
|
-
in srgb,
|
|
87
|
-
var(--background),
|
|
88
|
-
rgba(255, 255, 255, 1) 78%
|
|
89
|
-
);
|
|
90
|
-
|
|
91
|
-
--popover-selection: var(--background-soft);
|
|
92
|
-
--popover-reference: var(--background-muted);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
html[color-scheme="icy"] {
|
|
96
|
-
--foreground: #000000;
|
|
97
|
-
--background: #ffffff;
|
|
98
|
-
--shadow: #3d5899;
|
|
99
|
-
|
|
100
|
-
--border: #5d8d9b;
|
|
101
|
-
--accent: #087ea4;
|
|
102
|
-
--focus: #087ea480;
|
|
103
|
-
--error: #b74c61;
|
|
104
|
-
|
|
105
|
-
--foreground-disabled: #818282;
|
|
106
|
-
--background-soft: #d1f6fe;
|
|
107
|
-
|
|
108
|
-
--popover-background: color-mix(
|
|
109
|
-
in srgb,
|
|
110
|
-
var(--background),
|
|
111
|
-
rgba(255, 255, 255, 1) 82%
|
|
112
|
-
);
|
|
113
|
-
|
|
114
|
-
--popover-selection: var(--background-soft);
|
|
115
|
-
--popover-reference: var(--background-muted);
|
|
116
|
-
}
|
package/package.json
CHANGED
package/src/lib/theme.css
CHANGED
|
@@ -46,18 +46,13 @@
|
|
|
46
46
|
--border-thickness: 1px;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
html[color-scheme="
|
|
50
|
-
--foreground: #
|
|
51
|
-
--background: #
|
|
52
|
-
--shadow: #
|
|
49
|
+
html[color-scheme="light"] {
|
|
50
|
+
--foreground: #1f1f1f;
|
|
51
|
+
--background: #e0e0e0;
|
|
52
|
+
--shadow: #787878;
|
|
53
53
|
|
|
54
|
-
--border: #
|
|
55
|
-
--
|
|
56
|
-
--focus: #16735f80;
|
|
57
|
-
--error: #af4355;
|
|
58
|
-
|
|
59
|
-
--foreground-disabled: #5c715f;
|
|
60
|
-
--background-soft: #b7c9b5;
|
|
54
|
+
--border: #a0a0a0;
|
|
55
|
+
--focus: #0000006a;
|
|
61
56
|
|
|
62
57
|
--popover-background: color-mix(
|
|
63
58
|
in srgb,
|
|
@@ -68,49 +63,3 @@ html[color-scheme="moss"] {
|
|
|
68
63
|
--popover-selection: var(--background-soft);
|
|
69
64
|
--popover-reference: var(--background-muted);
|
|
70
65
|
}
|
|
71
|
-
|
|
72
|
-
html[color-scheme="sunset"] {
|
|
73
|
-
--foreground: #30194d;
|
|
74
|
-
--background: #fffaf2;
|
|
75
|
-
--shadow: #76519a;
|
|
76
|
-
|
|
77
|
-
--border: #69458b;
|
|
78
|
-
--accent: #e76f2d;
|
|
79
|
-
--focus: #69458b80;
|
|
80
|
-
--error: #bd3b4c;
|
|
81
|
-
|
|
82
|
-
--foreground-disabled: #c7bcd2;
|
|
83
|
-
--background-soft: #d2cac0;
|
|
84
|
-
|
|
85
|
-
--popover-background: color-mix(
|
|
86
|
-
in srgb,
|
|
87
|
-
var(--background),
|
|
88
|
-
rgba(255, 255, 255, 1) 78%
|
|
89
|
-
);
|
|
90
|
-
|
|
91
|
-
--popover-selection: var(--background-soft);
|
|
92
|
-
--popover-reference: var(--background-muted);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
html[color-scheme="icy"] {
|
|
96
|
-
--foreground: #000000;
|
|
97
|
-
--background: #ffffff;
|
|
98
|
-
--shadow: #3d5899;
|
|
99
|
-
|
|
100
|
-
--border: #5d8d9b;
|
|
101
|
-
--accent: #087ea4;
|
|
102
|
-
--focus: #087ea480;
|
|
103
|
-
--error: #b74c61;
|
|
104
|
-
|
|
105
|
-
--foreground-disabled: #818282;
|
|
106
|
-
--background-soft: #d1f6fe;
|
|
107
|
-
|
|
108
|
-
--popover-background: color-mix(
|
|
109
|
-
in srgb,
|
|
110
|
-
var(--background),
|
|
111
|
-
rgba(255, 255, 255, 1) 82%
|
|
112
|
-
);
|
|
113
|
-
|
|
114
|
-
--popover-selection: var(--background-soft);
|
|
115
|
-
--popover-reference: var(--background-muted);
|
|
116
|
-
}
|