@geomak/ui 7.9.0 → 7.11.0
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.cjs +545 -431
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +47 -5
- package/dist/index.d.ts +47 -5
- package/dist/index.js +188 -74
- package/dist/index.js.map +1 -1
- package/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2164,6 +2164,9 @@ input:autofill,
|
|
|
2164
2164
|
.border-t-0 {
|
|
2165
2165
|
border-top-width: 0px;
|
|
2166
2166
|
}
|
|
2167
|
+
.border-t-2 {
|
|
2168
|
+
border-top-width: 2px;
|
|
2169
|
+
}
|
|
2167
2170
|
.border-dashed {
|
|
2168
2171
|
border-style: dashed;
|
|
2169
2172
|
}
|
|
@@ -2224,9 +2227,15 @@ input:autofill,
|
|
|
2224
2227
|
.border-r-current {
|
|
2225
2228
|
border-right-color: currentColor;
|
|
2226
2229
|
}
|
|
2230
|
+
.border-t-accent {
|
|
2231
|
+
border-top-color: var(--color-accent);
|
|
2232
|
+
}
|
|
2227
2233
|
.border-t-current {
|
|
2228
2234
|
border-top-color: currentColor;
|
|
2229
2235
|
}
|
|
2236
|
+
.border-t-transparent {
|
|
2237
|
+
border-top-color: rgba(255, 255, 255, .0);
|
|
2238
|
+
}
|
|
2230
2239
|
.bg-\[color-mix\(in_srgb\2c var\(--color-accent\)_15\%\2c transparent\)\] {
|
|
2231
2240
|
background-color: color-mix(in srgb,var(--color-accent) 15%,transparent);
|
|
2232
2241
|
}
|
package/package.json
CHANGED