-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 style: unify code style and enhance components architecture - Replace single quotes with double quotes across codebase - Update class names for consistency - Improve layout structure and readability ✨ feat: add new features and enhance existing components - Add build command for nyxb registry components - Introduce new chart components for data visualization - Add typography examples to registry - Enhance sidebar navigation with collapsible sections - Add terminal component and demo ♻️ refactor: improve codebase structure and maintainability - Enhance project initialization logic - Streamline registry entries - Update build-registry script - Remove unused components - Simplify registry URL generation 🛠️ build: upgrade development tooling and configuration - Switch to Biome as default formatter - Update nixpacks configuration - Configure corepack and pnpm - Add environment variable management - Update Node.js and dependency versions 📚 docs: update documentation and branding - Update title branding from 'Magic UI' to 'Nyxb UI' - Add new documentation sections - Update component source paths - Add discussion template for block requests 🧹 chore: general maintenance and cleanup - Update VSCode settings - Remove ESLint in favor of Biome - Update import paths - Clean up unused configurations
- Loading branch information
Showing
5,971 changed files
with
211,947 additions
and
161,137 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
title: "[blocks]: " | ||
labels: ["Blocks Request"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thanks for taking the time to create a block request! Please search open/closed requests before submitting, as the block or a similar one may have already been requested. | ||
- type: textarea | ||
id: block-description | ||
attributes: | ||
label: Description | ||
description: Tell us about your block request | ||
placeholder: "A dashboard for an e-commerce website showing sales, orders, and customers..." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: block-example-url | ||
attributes: | ||
label: Example | ||
description: Link to an example of the block | ||
placeholder: ex. https://example.com | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
auto-install-peers=true | ||
link-workspace-packages=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,43 @@ | ||
{ | ||
// Biome as default formatter for different file types | ||
"[javascript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
|
||
// Disable the default formatter, use eslint instead | ||
"prettier.enable": false, | ||
"editor.formatOnSave": false, | ||
// Automatic formatting on save | ||
"editor.formatOnSave": true, | ||
|
||
// Auto fix | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit", | ||
"source.organizeImports": "never" | ||
}, | ||
// Automatic fixes on save | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
}, | ||
|
||
// Silent the stylistic rules in you IDE, but still auto fix them | ||
"eslint.rules.customizations": [ | ||
{ "rule": "style/*", "severity": "warn" }, | ||
{ "rule": "format/*", "severity": "warn" }, | ||
{ "rule": "*-indent", "severity": "warn" }, | ||
{ "rule": "*-spacing", "severity": "warn" }, | ||
{ "rule": "*-spaces", "severity": "warn" }, | ||
{ "rule": "*-order", "severity": "warn" }, | ||
{ "rule": "*-dangle", "severity": "warn" }, | ||
{ "rule": "*-newline", "severity": "warn" }, | ||
{ "rule": "*quotes", "severity": "warn" }, | ||
{ "rule": "*semi", "severity": "warn" } | ||
], | ||
// Optional: Experimental feature for renaming | ||
"biome.rename": true, | ||
|
||
// Enable eslint for all supported languages | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
"typescript", | ||
"typescriptreact", | ||
"vue", | ||
"html", | ||
"markdown", | ||
"json", | ||
"jsonc", | ||
"yaml", | ||
"toml", | ||
"xml", | ||
"gql", | ||
"graphql", | ||
"astro" | ||
], | ||
"search.useIgnoreFiles": true, | ||
"cSpell.words": [ | ||
"customizer", | ||
"dracula", | ||
"occured", | ||
"pullup", | ||
"saas", | ||
"shadcn" | ||
] | ||
"search.useIgnoreFiles": true, | ||
"cSpell.words": [ | ||
"customizer", | ||
"dracula", | ||
"occured", | ||
"pullup", | ||
"saas", | ||
"shadcn" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
> Files inside this directory is autogenerated by `./scripts/build-registry.ts`. **Do not edit them manually.** - shadcn | ||
> Files inside this directory is autogenerated by `./scripts/build-registry.ts`. **Do not edit them manually.** - nyxb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.