cherry-styled-components 0.1.0 → 0.1.1

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 (84) hide show
  1. package/.claude/settings.local.json +7 -0
  2. package/.eslintrc.cjs +18 -0
  3. package/.prettierrc +11 -0
  4. package/.supermaven/config.json +1 -0
  5. package/README.md +33 -11
  6. package/dist/App.d.ts +2 -0
  7. package/dist/cherry.js +5174 -0
  8. package/dist/cherry.umd.cjs +1217 -0
  9. package/dist/lib/box.d.ts +4 -0
  10. package/dist/lib/button.d.ts +15 -0
  11. package/dist/lib/col.d.ts +16 -0
  12. package/dist/lib/container.d.ts +19 -0
  13. package/dist/lib/flex.d.ts +29 -0
  14. package/dist/lib/grid.d.ts +24 -0
  15. package/dist/lib/index.d.ts +15 -0
  16. package/dist/lib/input.d.ts +26 -0
  17. package/dist/lib/max-width.d.ts +14 -0
  18. package/dist/lib/range.d.ts +13 -0
  19. package/dist/lib/select.d.ts +15 -0
  20. package/dist/lib/space.d.ts +14 -0
  21. package/dist/lib/styled-components/index.d.ts +2 -0
  22. package/dist/lib/styled-components/registry.d.ts +5 -0
  23. package/dist/lib/styled-components/theme-provider.d.ts +12 -0
  24. package/dist/lib/textarea.d.ts +14 -0
  25. package/dist/lib/toggle.d.ts +14 -0
  26. package/dist/lib/utils/global.d.ts +3 -0
  27. package/dist/lib/utils/icons.d.ts +9 -0
  28. package/dist/lib/utils/index.d.ts +5 -0
  29. package/dist/lib/utils/mixins.d.ts +11 -0
  30. package/dist/lib/utils/theme.d.ts +231 -0
  31. package/dist/lib/utils/typography.d.ts +20 -0
  32. package/dist/main.d.ts +1 -0
  33. package/dist/toggle-theme.d.ts +3 -0
  34. package/index.html +13 -0
  35. package/package.json +37 -24
  36. package/pnpm-workspace.yaml +3 -0
  37. package/src/App.tsx +80 -0
  38. package/src/lib/box.tsx +26 -0
  39. package/src/lib/button.tsx +162 -0
  40. package/src/lib/col.tsx +45 -0
  41. package/src/lib/container.tsx +59 -0
  42. package/src/lib/flex.tsx +92 -0
  43. package/src/lib/grid.tsx +64 -0
  44. package/src/{app/components/cherry → lib}/index.ts +15 -15
  45. package/src/lib/input.tsx +384 -0
  46. package/src/lib/max-width.tsx +50 -0
  47. package/src/lib/range.tsx +208 -0
  48. package/src/lib/select.tsx +121 -0
  49. package/src/lib/space.tsx +52 -0
  50. package/src/{app/components/cherry → lib}/styled-components/index.ts +2 -2
  51. package/src/lib/styled-components/registry.tsx +26 -0
  52. package/src/lib/styled-components/theme-provider.tsx +49 -0
  53. package/src/lib/textarea.tsx +94 -0
  54. package/src/lib/toggle.tsx +147 -0
  55. package/src/{app/components/cherry → lib}/utils/global.tsx +95 -78
  56. package/src/lib/utils/icons.tsx +84 -0
  57. package/src/{app/components/cherry → lib}/utils/index.ts +5 -5
  58. package/src/lib/utils/mixins.tsx +95 -0
  59. package/src/lib/utils/theme.ts +289 -0
  60. package/src/lib/utils/typography.tsx +204 -0
  61. package/src/main.tsx +14 -0
  62. package/src/toggle-theme.tsx +25 -0
  63. package/src/vite-env.d.ts +8 -0
  64. package/tsconfig.json +24 -0
  65. package/vite.config.js +24 -0
  66. package/src/app/components/cherry/box.tsx +0 -16
  67. package/src/app/components/cherry/button.tsx +0 -177
  68. package/src/app/components/cherry/col.tsx +0 -39
  69. package/src/app/components/cherry/container.tsx +0 -55
  70. package/src/app/components/cherry/flex.tsx +0 -90
  71. package/src/app/components/cherry/grid.tsx +0 -60
  72. package/src/app/components/cherry/input.tsx +0 -254
  73. package/src/app/components/cherry/max-width.tsx +0 -43
  74. package/src/app/components/cherry/range.tsx +0 -223
  75. package/src/app/components/cherry/select.tsx +0 -122
  76. package/src/app/components/cherry/space.tsx +0 -54
  77. package/src/app/components/cherry/styled-components/registry.tsx +0 -26
  78. package/src/app/components/cherry/styled-components/theme-provider.tsx +0 -21
  79. package/src/app/components/cherry/textarea.tsx +0 -98
  80. package/src/app/components/cherry/toggle.tsx +0 -148
  81. package/src/app/components/cherry/utils/icons.tsx +0 -168
  82. package/src/app/components/cherry/utils/mixins.tsx +0 -107
  83. package/src/app/components/cherry/utils/theme.ts +0 -241
  84. package/src/app/components/cherry/utils/typography.tsx +0 -204

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.