@vaneui/ui 0.9.0-alpha.20260107161941.dfd1c72 → 0.9.0-alpha.20260108153335.d1109b4
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/components/ui/props/propDescriptions.d.ts +1 -1
- package/dist/components/ui/theme/checkboxTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/defaults.d.ts.map +1 -1
- package/dist/components/ui/theme/gridTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/typographyTheme.d.ts.map +1 -1
- package/dist/index.esm.js +17 -27
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17 -27
- package/dist/index.js.map +1 -1
- package/dist/ui.css +3 -3
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -887,6 +887,9 @@
|
|
|
887
887
|
.bg-\(--bg-color\) {
|
|
888
888
|
background-color: var(--bg-color);
|
|
889
889
|
}
|
|
890
|
+
.bg-\(--border-color\) {
|
|
891
|
+
background-color: var(--border-color);
|
|
892
|
+
}
|
|
890
893
|
.bg-\(--color-bg-filled-primary\) {
|
|
891
894
|
background-color: var(--color-bg-filled-primary);
|
|
892
895
|
}
|
|
@@ -1378,9 +1381,6 @@
|
|
|
1378
1381
|
.\[--size-unit\:4\] {
|
|
1379
1382
|
--size-unit: 4;
|
|
1380
1383
|
}
|
|
1381
|
-
.\[background\:var\(--border-color\)\] {
|
|
1382
|
-
background: var(--border-color);
|
|
1383
|
-
}
|
|
1384
1384
|
.ring-inset {
|
|
1385
1385
|
--tw-ring-inset: inset;
|
|
1386
1386
|
}
|
package/package.json
CHANGED