shapes-ui 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 (117) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.cta.json +12 -0
  4. package/.github/workflows/release.yml +44 -0
  5. package/.oxfmtrc.json +21 -0
  6. package/.oxlintrc.json +40 -0
  7. package/.vscode/settings.json +11 -0
  8. package/CHANGELOG.md +22 -0
  9. package/LICENSE +21 -0
  10. package/README.md +1 -0
  11. package/content/components/accordion.mdx +41 -0
  12. package/content/components/alert-dialog.mdx +25 -0
  13. package/content/components/alert.mdx +53 -0
  14. package/content/components/badge.mdx +27 -0
  15. package/content/components/button.mdx +55 -0
  16. package/content-collections.ts +67 -0
  17. package/dist/cli.d.ts +1 -0
  18. package/dist/cli.js +15255 -0
  19. package/dist/client/.assetsignore +2 -0
  20. package/dist/server/.vite/manifest.json +2435 -0
  21. package/examples/__index.tsx +201 -0
  22. package/examples/accordion-demo.tsx +30 -0
  23. package/examples/accordion-icon.tsx +40 -0
  24. package/examples/accordion-multiple.tsx +27 -0
  25. package/examples/accordion-small.tsx +30 -0
  26. package/examples/accordion-surface.tsx +30 -0
  27. package/examples/alert-action.tsx +18 -0
  28. package/examples/alert-demo.tsx +10 -0
  29. package/examples/alert-description.tsx +16 -0
  30. package/examples/alert-destructive.tsx +13 -0
  31. package/examples/alert-dialog-demo.tsx +33 -0
  32. package/examples/alert-dialog-destructive.tsx +33 -0
  33. package/examples/alert-dialog-icon.tsx +38 -0
  34. package/examples/alert-info.tsx +13 -0
  35. package/examples/alert-link.tsx +21 -0
  36. package/examples/alert-success.tsx +13 -0
  37. package/examples/alert-title.tsx +12 -0
  38. package/examples/alert-warning.tsx +13 -0
  39. package/examples/badge-demo.tsx +5 -0
  40. package/examples/badge-status-icon.tsx +26 -0
  41. package/examples/badge-status.tsx +12 -0
  42. package/examples/badge-variants.tsx +12 -0
  43. package/examples/button-default.tsx +15 -0
  44. package/examples/button-demo.tsx +14 -0
  45. package/examples/button-destructive.tsx +15 -0
  46. package/examples/button-ghost.tsx +15 -0
  47. package/examples/button-info.tsx +15 -0
  48. package/examples/button-link.tsx +15 -0
  49. package/examples/button-loading.tsx +14 -0
  50. package/examples/button-outline.tsx +15 -0
  51. package/examples/button-sizes.tsx +34 -0
  52. package/examples/button-success.tsx +15 -0
  53. package/examples/button-warning.tsx +15 -0
  54. package/package.json +81 -0
  55. package/public/apple-touch-icon.png +0 -0
  56. package/public/circuit-board.svg +1 -0
  57. package/public/favicon-16x16.png +0 -0
  58. package/public/favicon-32x32.png +0 -0
  59. package/public/favicon.ico +0 -0
  60. package/public/favicon.svg +3 -0
  61. package/public/logo192.png +0 -0
  62. package/public/logo512.png +0 -0
  63. package/public/manifest.json +25 -0
  64. package/public/r/accordion.json +16 -0
  65. package/public/r/alert-dialog.json +17 -0
  66. package/public/r/alert.json +15 -0
  67. package/public/r/badge.json +15 -0
  68. package/public/r/button.json +16 -0
  69. package/public/r/index.json +7 -0
  70. package/public/robots.txt +3 -0
  71. package/public/shps_black.png +0 -0
  72. package/public/shps_black.svg +3 -0
  73. package/public/shps_white.png +0 -0
  74. package/public/shps_white.svg +3 -0
  75. package/scripts/generate-examples.mts +118 -0
  76. package/scripts/generate-registry.mts +129 -0
  77. package/src/commands/add.ts +125 -0
  78. package/src/commands/cli.ts +27 -0
  79. package/src/commands/init.ts +128 -0
  80. package/src/components/docs/docs-button.tsx +60 -0
  81. package/src/components/docs/layout/circuit-board.tsx +22 -0
  82. package/src/components/docs/layout/footer.tsx +11 -0
  83. package/src/components/docs/layout/header.tsx +49 -0
  84. package/src/components/docs/layout/mobile-menu.tsx +86 -0
  85. package/src/components/docs/layout/nav-list.tsx +43 -0
  86. package/src/components/docs/layout/page-header.tsx +33 -0
  87. package/src/components/docs/layout/split-layout.tsx +21 -0
  88. package/src/components/docs/layout/suspense-fallback.tsx +12 -0
  89. package/src/components/docs/markdown/components.tsx +324 -0
  90. package/src/components/docs/markdown/installation-block.tsx +146 -0
  91. package/src/components/docs/markdown/render-preview.tsx +152 -0
  92. package/src/components/docs/theme-provider.tsx +48 -0
  93. package/src/components/ui/accordion.tsx +83 -0
  94. package/src/components/ui/alert-dialog.tsx +162 -0
  95. package/src/components/ui/alert.tsx +72 -0
  96. package/src/components/ui/badge.tsx +34 -0
  97. package/src/components/ui/button.tsx +64 -0
  98. package/src/lib/utils.ts +6 -0
  99. package/src/routeTree.gen.ts +131 -0
  100. package/src/router.tsx +17 -0
  101. package/src/routes/__root.tsx +72 -0
  102. package/src/routes/components.$slug.tsx +62 -0
  103. package/src/routes/components.index.tsx +55 -0
  104. package/src/routes/components.tsx +15 -0
  105. package/src/routes/index.tsx +16 -0
  106. package/src/styles/globals.css +66 -0
  107. package/src/styles/styles.css +113 -0
  108. package/src/types/registry-item.ts +13 -0
  109. package/src/utils/cli-utils.ts +46 -0
  110. package/src/utils/package-manager.ts +27 -0
  111. package/src/utils/schema.ts +25 -0
  112. package/tests/generate-registry.test.ts +60 -0
  113. package/tsconfig.json +29 -0
  114. package/tsup.config.ts +11 -0
  115. package/vite.config.ts +31 -0
  116. package/vitest.config.ts +8 -0
  117. package/wrangler.jsonc +7 -0

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.