cherry-styled-components 0.1.1 → 0.1.2

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 (40) hide show
  1. package/.claude/settings.local.json +1 -3
  2. package/.prettierignore +5 -0
  3. package/.prettierrc +2 -2
  4. package/.supermaven/config.json +6 -1
  5. package/dist/cherry.js +697 -613
  6. package/dist/cherry.umd.cjs +80 -80
  7. package/dist/lib/input.d.ts +1 -0
  8. package/dist/lib/range.d.ts +1 -0
  9. package/dist/lib/select.d.ts +1 -0
  10. package/dist/lib/textarea.d.ts +1 -0
  11. package/dist/lib/toggle.d.ts +1 -0
  12. package/package.json +2 -2
  13. package/src/App.tsx +101 -80
  14. package/src/lib/box.tsx +26 -26
  15. package/src/lib/button.tsx +162 -162
  16. package/src/lib/col.tsx +48 -45
  17. package/src/lib/container.tsx +69 -59
  18. package/src/lib/flex.tsx +99 -92
  19. package/src/lib/grid.tsx +76 -64
  20. package/src/lib/index.ts +15 -15
  21. package/src/lib/input.tsx +418 -384
  22. package/src/lib/max-width.tsx +53 -50
  23. package/src/lib/range.tsx +234 -208
  24. package/src/lib/select.tsx +136 -121
  25. package/src/lib/space.tsx +55 -52
  26. package/src/lib/styled-components/index.ts +2 -2
  27. package/src/lib/styled-components/registry.tsx +29 -26
  28. package/src/lib/styled-components/theme-provider.tsx +50 -49
  29. package/src/lib/textarea.tsx +115 -94
  30. package/src/lib/toggle.tsx +158 -147
  31. package/src/lib/utils/global.tsx +95 -95
  32. package/src/lib/utils/icons.tsx +84 -84
  33. package/src/lib/utils/index.ts +5 -5
  34. package/src/lib/utils/mixins.tsx +108 -95
  35. package/src/lib/utils/theme.ts +289 -289
  36. package/src/lib/utils/typography.tsx +204 -204
  37. package/src/main.tsx +19 -14
  38. package/src/toggle-theme.tsx +25 -25
  39. package/src/vite-env.d.ts +8 -8
  40. package/vite.config.js +18 -18
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "permissions": {
3
- "allow": [
4
- "Bash(npm run build:*)"
5
- ]
3
+ "allow": ["Bash(npm run build:*)"]
6
4
  }
7
5
  }
@@ -0,0 +1,5 @@
1
+ node_modules
2
+ convex/_generated
3
+ package.json
4
+ package-lock.json
5
+ dist
package/.prettierrc CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
- "printWidth": 100,
2
+ "printWidth": 80,
3
3
  "useTabs": false,
4
4
  "tabWidth": 2,
5
- "endOfLine": "crlf",
5
+ "endOfLine": "lf",
6
6
  "semi": true,
7
7
  "singleQuote": false,
8
8
  "trailingComma": "all",
@@ -1 +1,6 @@
1
- {"api_key":"4e94fd92d9d3e56803d0d5340beb64a8","api_key_obtained_at":"2024-07-19T22:18:47+02:00","link_id":"bw4cwq4Og3aqUNwrefbPo9D016ptryeK","machine_id":"EgXOpDipQw6LbkqDKtbnec2TTIVC7Vg3"}
1
+ {
2
+ "api_key": "4e94fd92d9d3e56803d0d5340beb64a8",
3
+ "api_key_obtained_at": "2024-07-19T22:18:47+02:00",
4
+ "link_id": "bw4cwq4Og3aqUNwrefbPo9D016ptryeK",
5
+ "machine_id": "EgXOpDipQw6LbkqDKtbnec2TTIVC7Vg3"
6
+ }