@geomak/ui 7.10.0 → 7.12.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 +128 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -3
- package/dist/index.d.ts +13 -3
- package/dist/index.js +128 -55
- package/dist/index.js.map +1 -1
- package/dist/styles.css +12 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1610,6 +1610,9 @@ input:autofill,
|
|
|
1610
1610
|
.max-w-\[12rem\] {
|
|
1611
1611
|
max-width: 12rem;
|
|
1612
1612
|
}
|
|
1613
|
+
.max-w-\[160px\] {
|
|
1614
|
+
max-width: 160px;
|
|
1615
|
+
}
|
|
1613
1616
|
.max-w-\[16rem\] {
|
|
1614
1617
|
max-width: 16rem;
|
|
1615
1618
|
}
|
|
@@ -2164,6 +2167,9 @@ input:autofill,
|
|
|
2164
2167
|
.border-t-0 {
|
|
2165
2168
|
border-top-width: 0px;
|
|
2166
2169
|
}
|
|
2170
|
+
.border-t-2 {
|
|
2171
|
+
border-top-width: 2px;
|
|
2172
|
+
}
|
|
2167
2173
|
.border-dashed {
|
|
2168
2174
|
border-style: dashed;
|
|
2169
2175
|
}
|
|
@@ -2224,9 +2230,15 @@ input:autofill,
|
|
|
2224
2230
|
.border-r-current {
|
|
2225
2231
|
border-right-color: currentColor;
|
|
2226
2232
|
}
|
|
2233
|
+
.border-t-accent {
|
|
2234
|
+
border-top-color: var(--color-accent);
|
|
2235
|
+
}
|
|
2227
2236
|
.border-t-current {
|
|
2228
2237
|
border-top-color: currentColor;
|
|
2229
2238
|
}
|
|
2239
|
+
.border-t-transparent {
|
|
2240
|
+
border-top-color: rgba(255, 255, 255, .0);
|
|
2241
|
+
}
|
|
2230
2242
|
.bg-\[color-mix\(in_srgb\2c var\(--color-accent\)_15\%\2c transparent\)\] {
|
|
2231
2243
|
background-color: color-mix(in srgb,var(--color-accent) 15%,transparent);
|
|
2232
2244
|
}
|
package/package.json
CHANGED