@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.
Files changed (42) hide show
  1. package/dist/components/ui/badge.d.ts +36 -2
  2. package/dist/components/ui/badge.d.ts.map +1 -1
  3. package/dist/components/ui/button.d.ts +39 -3
  4. package/dist/components/ui/button.d.ts.map +1 -1
  5. package/dist/components/ui/card.d.ts +43 -2
  6. package/dist/components/ui/card.d.ts.map +1 -1
  7. package/dist/components/ui/checkbox.d.ts +39 -2
  8. package/dist/components/ui/checkbox.d.ts.map +1 -1
  9. package/dist/components/ui/chip.d.ts +36 -2
  10. package/dist/components/ui/chip.d.ts.map +1 -1
  11. package/dist/components/ui/code.d.ts +36 -2
  12. package/dist/components/ui/code.d.ts.map +1 -1
  13. package/dist/components/ui/col.d.ts +41 -2
  14. package/dist/components/ui/col.d.ts.map +1 -1
  15. package/dist/components/ui/container.d.ts +38 -2
  16. package/dist/components/ui/container.d.ts.map +1 -1
  17. package/dist/components/ui/divider.d.ts +32 -2
  18. package/dist/components/ui/divider.d.ts.map +1 -1
  19. package/dist/components/ui/docs/propDocs.d.ts +2 -2
  20. package/dist/components/ui/docs/propDocs.d.ts.map +1 -1
  21. package/dist/components/ui/grid.d.ts +117 -10
  22. package/dist/components/ui/grid.d.ts.map +1 -1
  23. package/dist/components/ui/img.d.ts +36 -2
  24. package/dist/components/ui/img.d.ts.map +1 -1
  25. package/dist/components/ui/input.d.ts +36 -2
  26. package/dist/components/ui/input.d.ts.map +1 -1
  27. package/dist/components/ui/label.d.ts +42 -2
  28. package/dist/components/ui/label.d.ts.map +1 -1
  29. package/dist/components/ui/row.d.ts +40 -2
  30. package/dist/components/ui/row.d.ts.map +1 -1
  31. package/dist/components/ui/section.d.ts +39 -2
  32. package/dist/components/ui/section.d.ts.map +1 -1
  33. package/dist/components/ui/stack.d.ts +40 -2
  34. package/dist/components/ui/stack.d.ts.map +1 -1
  35. package/dist/components/ui/typography.d.ts +223 -14
  36. package/dist/components/ui/typography.d.ts.map +1 -1
  37. package/dist/index.esm.js +839 -0
  38. package/dist/index.esm.js.map +1 -1
  39. package/dist/index.js +839 -0
  40. package/dist/index.js.map +1 -1
  41. package/dist/ui.css +15 -0
  42. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaneui/ui",
3
- "version": "0.3.1-alpha.20251201135827.a31cb1e",
3
+ "version": "0.3.1-alpha.20251213103636.79707b4",
4
4
  "description": "A simple and lightweight UI component library for React, built with Tailwind CSS.",
5
5
  "author": "",
6
6
  "license": "ISC",