@vaneui/ui 0.2.1-alpha.20250820203636.5bf2e74 → 0.2.1-alpha.20250830120134.26927ee
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/badge.d.ts +1 -1
- package/dist/components/ui/card.d.ts +1 -1
- package/dist/components/ui/chip.d.ts +1 -1
- package/dist/components/ui/col.d.ts +1 -1
- package/dist/components/ui/container.d.ts +1 -1
- package/dist/components/ui/grid.d.ts +1 -1
- package/dist/components/ui/row.d.ts +1 -1
- package/dist/components/ui/section.d.ts +1 -1
- package/dist/components/ui/stack.d.ts +1 -1
- package/dist/components/ui/theme/appearance/appearanceTheme.d.ts +2 -6
- package/dist/components/ui/theme/badgeTheme.d.ts +1 -1
- package/dist/components/ui/theme/cardTheme.d.ts +1 -1
- package/dist/components/ui/theme/checkboxTheme.d.ts +3 -0
- package/dist/components/ui/theme/chipTheme.d.ts +1 -1
- package/dist/components/ui/theme/codeTheme.d.ts +1 -1
- package/dist/components/ui/theme/colTheme.d.ts +1 -1
- package/dist/components/ui/theme/containerTheme.d.ts +1 -1
- package/dist/components/ui/theme/dividerTheme.d.ts +1 -1
- package/dist/components/ui/theme/gridTheme.d.ts +1 -1
- package/dist/components/ui/theme/rowTheme.d.ts +1 -1
- package/dist/components/ui/theme/stackTheme.d.ts +1 -1
- package/dist/components/ui/typography.d.ts +1 -1
- package/dist/index.esm.js +13 -17
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +13 -17
- package/dist/index.js.map +1 -1
- package/dist/ui.css +0 -16
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -79,7 +79,6 @@
|
|
|
79
79
|
--color-gray-950: oklch(13% 0.028 261.692);
|
|
80
80
|
--color-white: #fff;
|
|
81
81
|
--spacing: 0.25rem;
|
|
82
|
-
--container-xs: 20rem;
|
|
83
82
|
--container-3xl: 48rem;
|
|
84
83
|
--container-4xl: 56rem;
|
|
85
84
|
--container-5xl: 64rem;
|
|
@@ -437,9 +436,6 @@
|
|
|
437
436
|
.mx-auto {
|
|
438
437
|
margin-inline: auto;
|
|
439
438
|
}
|
|
440
|
-
.mb-4 {
|
|
441
|
-
margin-bottom: calc(var(--spacing) * 4);
|
|
442
|
-
}
|
|
443
439
|
.block {
|
|
444
440
|
display: block;
|
|
445
441
|
}
|
|
@@ -536,9 +532,6 @@
|
|
|
536
532
|
.max-w-7xl {
|
|
537
533
|
max-width: var(--container-7xl);
|
|
538
534
|
}
|
|
539
|
-
.max-w-xs {
|
|
540
|
-
max-width: var(--container-xs);
|
|
541
|
-
}
|
|
542
535
|
.transform {
|
|
543
536
|
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
544
537
|
}
|
|
@@ -850,9 +843,6 @@
|
|
|
850
843
|
.border-danger {
|
|
851
844
|
border-color: var(--border-color-danger);
|
|
852
845
|
}
|
|
853
|
-
.border-gray-300 {
|
|
854
|
-
border-color: var(--color-gray-300);
|
|
855
|
-
}
|
|
856
846
|
.border-green-200 {
|
|
857
847
|
border-color: var(--color-green-200);
|
|
858
848
|
}
|
|
@@ -1048,12 +1038,6 @@
|
|
|
1048
1038
|
.p-0 {
|
|
1049
1039
|
padding: calc(var(--spacing) * 0);
|
|
1050
1040
|
}
|
|
1051
|
-
.p-2 {
|
|
1052
|
-
padding: calc(var(--spacing) * 2);
|
|
1053
|
-
}
|
|
1054
|
-
.p-4 {
|
|
1055
|
-
padding: calc(var(--spacing) * 4);
|
|
1056
|
-
}
|
|
1057
1041
|
.px-1 {
|
|
1058
1042
|
padding-inline: calc(var(--spacing) * 1);
|
|
1059
1043
|
}
|
package/package.json
CHANGED