@vaneui/ui 0.3.1-alpha.20251201135827.a31cb1e → 0.3.1-alpha.20251213103636.79707b4
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 +36 -2
- package/dist/components/ui/badge.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +39 -3
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/components/ui/card.d.ts +43 -2
- package/dist/components/ui/card.d.ts.map +1 -1
- package/dist/components/ui/checkbox.d.ts +39 -2
- package/dist/components/ui/checkbox.d.ts.map +1 -1
- package/dist/components/ui/chip.d.ts +36 -2
- package/dist/components/ui/chip.d.ts.map +1 -1
- package/dist/components/ui/code.d.ts +36 -2
- package/dist/components/ui/code.d.ts.map +1 -1
- package/dist/components/ui/col.d.ts +41 -2
- package/dist/components/ui/col.d.ts.map +1 -1
- package/dist/components/ui/container.d.ts +38 -2
- package/dist/components/ui/container.d.ts.map +1 -1
- package/dist/components/ui/divider.d.ts +32 -2
- package/dist/components/ui/divider.d.ts.map +1 -1
- package/dist/components/ui/docs/propDocs.d.ts +2 -2
- package/dist/components/ui/docs/propDocs.d.ts.map +1 -1
- package/dist/components/ui/grid.d.ts +117 -10
- package/dist/components/ui/grid.d.ts.map +1 -1
- package/dist/components/ui/img.d.ts +36 -2
- package/dist/components/ui/img.d.ts.map +1 -1
- package/dist/components/ui/input.d.ts +36 -2
- package/dist/components/ui/input.d.ts.map +1 -1
- package/dist/components/ui/label.d.ts +42 -2
- package/dist/components/ui/label.d.ts.map +1 -1
- package/dist/components/ui/row.d.ts +40 -2
- package/dist/components/ui/row.d.ts.map +1 -1
- package/dist/components/ui/section.d.ts +39 -2
- package/dist/components/ui/section.d.ts.map +1 -1
- package/dist/components/ui/stack.d.ts +40 -2
- package/dist/components/ui/stack.d.ts.map +1 -1
- package/dist/components/ui/typography.d.ts +223 -14
- package/dist/components/ui/typography.d.ts.map +1 -1
- package/dist/index.esm.js +839 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +839 -0
- package/dist/index.js.map +1 -1
- package/dist/ui.css +15 -0
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -480,6 +480,9 @@
|
|
|
480
480
|
.mx-auto {
|
|
481
481
|
margin-inline: auto;
|
|
482
482
|
}
|
|
483
|
+
.mb-2 {
|
|
484
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
485
|
+
}
|
|
483
486
|
.block {
|
|
484
487
|
display: block;
|
|
485
488
|
}
|
|
@@ -523,12 +526,18 @@
|
|
|
523
526
|
.h-\[calc\(var\(--lh\)\*var\(--fs\)\)\] {
|
|
524
527
|
height: calc(var(--lh) * var(--fs));
|
|
525
528
|
}
|
|
529
|
+
.h-auto {
|
|
530
|
+
height: auto;
|
|
531
|
+
}
|
|
526
532
|
.h-fit {
|
|
527
533
|
height: fit-content;
|
|
528
534
|
}
|
|
529
535
|
.h-px {
|
|
530
536
|
height: 1px;
|
|
531
537
|
}
|
|
538
|
+
.h-screen {
|
|
539
|
+
height: 100vh;
|
|
540
|
+
}
|
|
532
541
|
.w-fit {
|
|
533
542
|
width: fit-content;
|
|
534
543
|
}
|
|
@@ -556,6 +565,9 @@
|
|
|
556
565
|
.max-w-lg {
|
|
557
566
|
max-width: var(--container-lg);
|
|
558
567
|
}
|
|
568
|
+
.max-w-none {
|
|
569
|
+
max-width: none;
|
|
570
|
+
}
|
|
559
571
|
.max-w-sm {
|
|
560
572
|
max-width: var(--container-sm);
|
|
561
573
|
}
|
|
@@ -589,6 +601,9 @@
|
|
|
589
601
|
.appearance-none {
|
|
590
602
|
appearance: none;
|
|
591
603
|
}
|
|
604
|
+
.auto-rows-fr {
|
|
605
|
+
grid-auto-rows: minmax(0, 1fr);
|
|
606
|
+
}
|
|
592
607
|
.grid-cols-1 {
|
|
593
608
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
594
609
|
}
|
package/package.json
CHANGED