@vaneui/ui 0.2.2-alpha.20250907183237.5f63365 → 0.2.2-alpha.20250913214402.427a7ea

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 (74) hide show
  1. package/README.md +2 -2
  2. package/dist/index.esm.js +1007 -410
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +1169 -409
  5. package/dist/index.js.map +1 -1
  6. package/dist/src/components/tests/grid5.test.d.ts +1 -0
  7. package/dist/src/components/tests/grid6.test.d.ts +1 -0
  8. package/dist/src/components/tests/input.test.d.ts +1 -0
  9. package/dist/src/components/tests/transparent-key-behavior.test.d.ts +1 -0
  10. package/dist/src/components/themeContext.d.ts +11 -1
  11. package/dist/src/components/ui/card.d.ts +126 -2
  12. package/dist/src/components/ui/checkbox.d.ts +2 -0
  13. package/dist/src/components/ui/classes/appearanceClasses.d.ts +20 -18
  14. package/dist/src/components/ui/classes/typographyClasses.d.ts +3 -3
  15. package/dist/src/components/ui/code.d.ts +2 -0
  16. package/dist/src/components/ui/col.d.ts +93 -2
  17. package/dist/src/components/ui/container.d.ts +93 -2
  18. package/dist/src/components/ui/grid.d.ts +420 -4
  19. package/dist/src/components/ui/img.d.ts +2 -0
  20. package/dist/src/components/ui/input.d.ts +123 -0
  21. package/dist/src/components/ui/layout.d.ts +1 -1
  22. package/dist/src/components/ui/props/appearance.d.ts +22 -0
  23. package/dist/src/components/ui/props/border.d.ts +6 -0
  24. package/dist/src/components/ui/props/breakpoint.d.ts +12 -0
  25. package/dist/src/components/ui/props/display.d.ts +24 -0
  26. package/dist/src/components/ui/props/flexDirection.d.ts +10 -0
  27. package/dist/src/components/ui/props/focusVisible.d.ts +6 -0
  28. package/dist/src/components/ui/props/fontFamily.d.ts +8 -0
  29. package/dist/src/components/ui/props/fontStyle.d.ts +6 -0
  30. package/dist/src/components/ui/props/fontWeight.d.ts +20 -0
  31. package/dist/src/components/ui/props/gap.d.ts +6 -0
  32. package/dist/src/components/ui/props/hide.d.ts +12 -0
  33. package/dist/src/components/ui/props/items.d.ts +12 -0
  34. package/dist/src/components/ui/props/justify.d.ts +18 -0
  35. package/dist/src/components/ui/props/keys.d.ts +143 -16
  36. package/dist/src/components/ui/props/listStyle.d.ts +6 -0
  37. package/dist/src/components/ui/props/mode.d.ts +21 -0
  38. package/dist/src/components/ui/props/overflow.d.ts +32 -0
  39. package/dist/src/components/ui/props/padding.d.ts +6 -0
  40. package/dist/src/components/ui/props/position.d.ts +12 -0
  41. package/dist/src/components/ui/props/props.d.ts +25 -8
  42. package/dist/src/components/ui/props/reverse.d.ts +4 -0
  43. package/dist/src/components/ui/props/ring.d.ts +6 -0
  44. package/dist/src/components/ui/props/shadow.d.ts +6 -0
  45. package/dist/src/components/ui/props/shape.d.ts +8 -0
  46. package/dist/src/components/ui/props/size.d.ts +12 -0
  47. package/dist/src/components/ui/props/textAlign.d.ts +10 -0
  48. package/dist/src/components/ui/props/textDecoration.d.ts +10 -0
  49. package/dist/src/components/ui/props/textTransform.d.ts +10 -0
  50. package/dist/src/components/ui/props/transparent.d.ts +4 -0
  51. package/dist/src/components/ui/props/variant.d.ts +6 -0
  52. package/dist/src/components/ui/props/wrap.d.ts +8 -0
  53. package/dist/src/components/ui/row.d.ts +98 -2
  54. package/dist/src/components/ui/section.d.ts +100 -2
  55. package/dist/src/components/ui/stack.d.ts +100 -2
  56. package/dist/src/components/ui/theme/appearance/appearanceTheme.d.ts +3 -2
  57. package/dist/src/components/ui/theme/appearance/genericVariantTheme.d.ts +5 -0
  58. package/dist/src/components/ui/theme/appearance/shadowAppearanceTheme.d.ts +5 -5
  59. package/dist/src/components/ui/theme/badgeTheme.d.ts +3 -0
  60. package/dist/src/components/ui/theme/buttonTheme.d.ts +3 -0
  61. package/dist/src/components/ui/theme/checkboxTheme.d.ts +11 -2
  62. package/dist/src/components/ui/theme/chipTheme.d.ts +3 -0
  63. package/dist/src/components/ui/theme/codeTheme.d.ts +3 -0
  64. package/dist/src/components/ui/theme/common/ComponentTheme.d.ts +3 -3
  65. package/dist/src/components/ui/theme/gridTheme.d.ts +2 -0
  66. package/dist/src/components/ui/theme/imgTheme.d.ts +4 -0
  67. package/dist/src/components/ui/theme/inputTheme.d.ts +40 -0
  68. package/dist/src/components/ui/theme/layout/borderTheme.d.ts +2 -0
  69. package/dist/src/components/ui/theme/layout/focusVisibleTheme.d.ts +11 -0
  70. package/dist/src/components/ui/theme/layout/ringTheme.d.ts +2 -0
  71. package/dist/src/index.d.ts +2 -1
  72. package/dist/ui.css +690 -566
  73. package/dist/vars.css +134 -134
  74. package/package.json +1 -1
package/README.md CHANGED
@@ -117,8 +117,8 @@ You can customize the VaneUI by overriding the CSS variables:
117
117
 
118
118
  ```css
119
119
  :root {
120
- --text-color-primary: #8b5cf6; /* Primary text color */
121
- --ui-border-radius-md: 1rem; /* Medium UI radius */
120
+ --color-text-primary: #8b5cf6; /* Primary text color */
121
+ --ui-br-md: 1rem; /* Medium UI radius */
122
122
  }
123
123
  ```
124
124