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.
- package/.changeset/README.md +8 -0
- package/.changeset/config.json +11 -0
- package/.cta.json +12 -0
- package/.github/workflows/release.yml +44 -0
- package/.oxfmtrc.json +21 -0
- package/.oxlintrc.json +40 -0
- package/.vscode/settings.json +11 -0
- package/CHANGELOG.md +22 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/content/components/accordion.mdx +41 -0
- package/content/components/alert-dialog.mdx +25 -0
- package/content/components/alert.mdx +53 -0
- package/content/components/badge.mdx +27 -0
- package/content/components/button.mdx +55 -0
- package/content-collections.ts +67 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +15255 -0
- package/dist/client/.assetsignore +2 -0
- package/dist/server/.vite/manifest.json +2435 -0
- package/examples/__index.tsx +201 -0
- package/examples/accordion-demo.tsx +30 -0
- package/examples/accordion-icon.tsx +40 -0
- package/examples/accordion-multiple.tsx +27 -0
- package/examples/accordion-small.tsx +30 -0
- package/examples/accordion-surface.tsx +30 -0
- package/examples/alert-action.tsx +18 -0
- package/examples/alert-demo.tsx +10 -0
- package/examples/alert-description.tsx +16 -0
- package/examples/alert-destructive.tsx +13 -0
- package/examples/alert-dialog-demo.tsx +33 -0
- package/examples/alert-dialog-destructive.tsx +33 -0
- package/examples/alert-dialog-icon.tsx +38 -0
- package/examples/alert-info.tsx +13 -0
- package/examples/alert-link.tsx +21 -0
- package/examples/alert-success.tsx +13 -0
- package/examples/alert-title.tsx +12 -0
- package/examples/alert-warning.tsx +13 -0
- package/examples/badge-demo.tsx +5 -0
- package/examples/badge-status-icon.tsx +26 -0
- package/examples/badge-status.tsx +12 -0
- package/examples/badge-variants.tsx +12 -0
- package/examples/button-default.tsx +15 -0
- package/examples/button-demo.tsx +14 -0
- package/examples/button-destructive.tsx +15 -0
- package/examples/button-ghost.tsx +15 -0
- package/examples/button-info.tsx +15 -0
- package/examples/button-link.tsx +15 -0
- package/examples/button-loading.tsx +14 -0
- package/examples/button-outline.tsx +15 -0
- package/examples/button-sizes.tsx +34 -0
- package/examples/button-success.tsx +15 -0
- package/examples/button-warning.tsx +15 -0
- package/package.json +81 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/circuit-board.svg +1 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/favicon.svg +3 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/r/accordion.json +16 -0
- package/public/r/alert-dialog.json +17 -0
- package/public/r/alert.json +15 -0
- package/public/r/badge.json +15 -0
- package/public/r/button.json +16 -0
- package/public/r/index.json +7 -0
- package/public/robots.txt +3 -0
- package/public/shps_black.png +0 -0
- package/public/shps_black.svg +3 -0
- package/public/shps_white.png +0 -0
- package/public/shps_white.svg +3 -0
- package/scripts/generate-examples.mts +118 -0
- package/scripts/generate-registry.mts +129 -0
- package/src/commands/add.ts +125 -0
- package/src/commands/cli.ts +27 -0
- package/src/commands/init.ts +128 -0
- package/src/components/docs/docs-button.tsx +60 -0
- package/src/components/docs/layout/circuit-board.tsx +22 -0
- package/src/components/docs/layout/footer.tsx +11 -0
- package/src/components/docs/layout/header.tsx +49 -0
- package/src/components/docs/layout/mobile-menu.tsx +86 -0
- package/src/components/docs/layout/nav-list.tsx +43 -0
- package/src/components/docs/layout/page-header.tsx +33 -0
- package/src/components/docs/layout/split-layout.tsx +21 -0
- package/src/components/docs/layout/suspense-fallback.tsx +12 -0
- package/src/components/docs/markdown/components.tsx +324 -0
- package/src/components/docs/markdown/installation-block.tsx +146 -0
- package/src/components/docs/markdown/render-preview.tsx +152 -0
- package/src/components/docs/theme-provider.tsx +48 -0
- package/src/components/ui/accordion.tsx +83 -0
- package/src/components/ui/alert-dialog.tsx +162 -0
- package/src/components/ui/alert.tsx +72 -0
- package/src/components/ui/badge.tsx +34 -0
- package/src/components/ui/button.tsx +64 -0
- package/src/lib/utils.ts +6 -0
- package/src/routeTree.gen.ts +131 -0
- package/src/router.tsx +17 -0
- package/src/routes/__root.tsx +72 -0
- package/src/routes/components.$slug.tsx +62 -0
- package/src/routes/components.index.tsx +55 -0
- package/src/routes/components.tsx +15 -0
- package/src/routes/index.tsx +16 -0
- package/src/styles/globals.css +66 -0
- package/src/styles/styles.css +113 -0
- package/src/types/registry-item.ts +13 -0
- package/src/utils/cli-utils.ts +46 -0
- package/src/utils/package-manager.ts +27 -0
- package/src/utils/schema.ts +25 -0
- package/tests/generate-registry.test.ts +60 -0
- package/tsconfig.json +29 -0
- package/tsup.config.ts +11 -0
- package/vite.config.ts +31 -0
- package/vitest.config.ts +8 -0
- 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.