@vaneui/ui 0.9.0-alpha.20260109124513.4547e77 → 0.9.0-alpha.20260115084056.5beaa60
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/card.d.ts +6 -2
- package/dist/components/ui/card.d.ts.map +1 -1
- package/dist/components/ui/col.d.ts +3 -3
- package/dist/components/ui/col.d.ts.map +1 -1
- package/dist/components/ui/props/keys.d.ts +7 -3
- package/dist/components/ui/props/keys.d.ts.map +1 -1
- package/dist/components/ui/props/propDescriptions.d.ts +1 -1
- package/dist/components/ui/row.d.ts +3 -3
- package/dist/components/ui/row.d.ts.map +1 -1
- package/dist/components/ui/stack.d.ts +3 -3
- package/dist/components/ui/stack.d.ts.map +1 -1
- package/dist/components/ui/theme/colTheme.d.ts +4 -0
- package/dist/components/ui/theme/colTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/rowTheme.d.ts +4 -0
- package/dist/components/ui/theme/rowTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/stackTheme.d.ts +4 -0
- package/dist/components/ui/theme/stackTheme.d.ts.map +1 -1
- package/dist/components/ui/typography.d.ts +5 -5
- package/dist/components/ui/typography.d.ts.map +1 -1
- package/dist/index.esm.js +25 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +26 -11
- package/dist/index.js.map +1 -1
- package/dist/ui.css +6 -0
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -579,6 +579,12 @@
|
|
|
579
579
|
.max-w-xl {
|
|
580
580
|
max-width: var(--container-xl);
|
|
581
581
|
}
|
|
582
|
+
.min-w-64 {
|
|
583
|
+
min-width: calc(var(--spacing) * 64);
|
|
584
|
+
}
|
|
585
|
+
.flex-1 {
|
|
586
|
+
flex: 1;
|
|
587
|
+
}
|
|
582
588
|
.transform {
|
|
583
589
|
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
584
590
|
}
|
package/package.json
CHANGED