Rubin Bajracharya
cc5e07b60b
fix: typo in theme template causing blank color values. ( #4315 )
...
Typo fix to get proper value when pressing copy code in theme customizer section.
Link for Issue: https://github.com/shadcn-ui/ui/issues/4314
2024-07-17 08:47:50 +00:00
Andy Hsu
29150e576a
fix(docs): incorrect link on charts page ( #4305 )
2024-07-16 20:24:05 +04:00
xSenny
5b856127ee
fix(www): update height of chart in preview ( #4244 )
...
Co-authored-by: shadcn <m@shadcn.com >
2024-07-16 14:53:32 +04:00
Jenia Brook
93808ab561
Use double-quotes instead template literals ( #4286 )
...
Just for consistency 🙏
2024-07-15 08:50:18 +00:00
Leo Lin
58637a34d1
chore(www): update indentation in build script ( #4293 )
...
Co-authored-by: shadcn <m@shadcn.com >
2024-07-15 12:34:07 +04:00
Ethan Brown
dd9900ba0e
docs(www): update Vite instructions ( #4260 )
2024-07-15 12:33:40 +04:00
shadcn
650b3b9bda
chore(www): switch to contentlayer2 ( #4292 )
...
* chore(www): switch to contentlayer2
* chore: rebuild registry
* fix: build
2024-07-15 12:18:58 +04:00
Sushant Mishra
238e492181
fix(docs): resolve imports for IDE ( #4275 )
...
IDE uses the config mentioned in the `tsconfig.app.json` file whereas shadcn uses the config mentioned in the `tsconfig.json` file for path resolution
Before adding the path to `tsconfig.app.json`

After adding the path to `tsconfig.app.json`

This commit mentions the same in the installation with `vite` docs
2024-07-15 06:57:48 +00:00
Ariel
f170784f78
bug fix: type error in chart.tsx ( #4230 )
...
# Current Issue
when running `next lint`, the typescript compiler fails on the chart component (closes #4229 )
`Type error: Type 'string[]' is not assignable to type 'string | TrustedHTML'.`
# Resolution
We can coerce the `string[]` into a valid type by `join`ing.
2024-07-11 13:14:44 +00:00
Mariano Álvarez
03b1d783c4
feat: add chart colors to theme customizer ( #4237 )
...
# Description
This PR adds support for customizing graphics themes in the `ThemeCustomizer` component. Users can now select and copy chart colors (`chart-1`, `chart-2`, `chart-3`, `chart-4`, `chart-5`) along with other themes.
## Changes Implemented
1. **Themes Update**: Added chart themes (`chart-1`, `chart-2`, `chart-3`, `chart-4`, `chart-5`) to the chart file. themes configuration (`themes.ts`).
2. **Modification of the `ThemeCustomizer` Component**: The new graphics themes were integrated into the component so that they can be selected and copied.
3. **CSS Tweak**: Updated the functions that generate CSS code to include the new graphics themes.
## How to Test
1. Run the project locally.
2. Navigate to the `ThemeCustomizer` component.
3. Verify that the new graphics themes are available for selection.
4. Test the functionality of copying the CSS code and making sure it includes the graphics colors.
## References
- Added support for graphics themes based on defaults provided by Shadcn.
2024-07-10 12:56:38 +00:00
rds_agi
36a9c1bb71
Fixed all issues related Command component ( #4154 )
...
# Fix Command Component issues and update documentation
## Changes
- Resolve Command Component issues by wrapping `<CommandGroup />` inside `<CommandList>`
- Update deprecated docs in `combobox.mdx` to reflect latest `<Command />` component usage
### Code Changes
From:
```tsx
<Command>
...
<CommandGroup>
...
</CommandGroup>
</Command>
```
To:
```tsx
<Command>
...
<CommandList>
<CommandGroup>
...
</CommandGroup>
</CommandList>
</Command>
```
## Visual Comparison
Before & After comparison:
https://github.com/shadcn-ui/ui/assets/77154365/156b7180-54e6-45aa-8934-b4fb99e6160e
## Summary
By wrapping `<CommandGroup />` inside `<CommandList>{children}</CommandList>`, all issues related to the Command Component have been resolved.
2024-07-10 12:40:55 +00:00
liruifengv
949e6f65ef
fix type import in toggle-group.tsx ( #4234 )
...
## description
fix type import in toggle-group.tsx
2024-07-10 12:40:38 +00:00
Howard Chiam
dbbb2a427e
docs: minor typo in the first page's FAQ ( #4174 )
...
Co-authored-by: shadcn <m@shadcn.com >
2024-07-10 16:37:11 +04:00
Christian F
1369d3ca96
Update data-table.mdx ( #4153 )
...
Docs link was broken ...
2024-07-10 12:24:25 +00:00
shadcn
984c4d8912
feat: add colors page ( #4238 )
2024-07-10 16:11:38 +04:00
Batuhan Tomo
248347a389
fix: Update ChartTooltipContent to handle "0" item value ( #4215 )
...
Fix #4214 : Update ChartTooltipContent to handle "0" item value
2024-07-10 12:08:25 +00:00
OGPowell
f6ad10abd5
docs(www): fix typo ( #4232 )
2024-07-09 21:08:37 +04:00
shadcn
f0093d6a41
feat: add chart colors to base colors ( #4228 )
...
* feat: add chart colors to base colors
* fix: format
2024-07-09 15:29:20 +04:00
shadcn
c1b955444d
fix: deps
2024-07-06 02:13:35 +04:00
shadcn
4ac9db98fe
Charts ( #4181 )
2024-07-06 02:06:40 +04:00
shadcn
06cc0cdf3d
fix(www): combobox
2024-06-03 21:22:36 +04:00
kevinmitch14
4aa8b02980
feat: bump cmdk + use data attributes for styling ( #2626 )
...
* feat: bump `cmdk` + use data attributes for styling
* refactor: bump again
* Merge remote-tracking branch 'upstream/main' into cmdk-bump-and-styles
* Revert "Merge remote-tracking branch 'upstream/main' into cmdk-bump-and-styles"
This reverts commit d74be6bb60 .
* chore: sync `pnpm-lock`
2024-06-03 12:12:37 +04:00
Ricardo Raposo
13d9693808
fix: quick fix to data attribute at CommandPrimitive.Item that was applying a disabled state style all the time ( #3680 )
...
Data attributes at <CommandPrimite.List /> component should be written as data-[disabled=true] in order to avoid styles being applied to element, even when it's not disabled.
2024-05-13 05:01:29 +00:00
shadcn
816b654f07
fix(www): update heading font size
2024-04-22 00:19:11 +04:00
Luca Félix
9aaaf429d9
fix: 🐛 lift mode duplicate ids lead to incorrect behavior ( #3433 )
...
## Bug:
When clicking on the "Lift Mode" Text instead of the toggle itself, since there were multiple `lift-mode` ids before (one for each block), the incorrect toggle would be activated.
https://github.com/shadcn-ui/ui/assets/61006057/261ec82f-9274-4e0a-ac21-5e3aa3ceece3
## Fix:
Instead of the id being static I changes the `id`, as well as the `htmlFor` attributes to `lift-mode-${block.name}`. This prevents duplicate ids, as long as there are no two blocks with the same name.
2024-04-18 06:14:13 +00:00
shadcn
afc553d8f8
fix: edit components
2024-04-17 23:05:45 +04:00
shadcn
11c31af94f
feat(www): add description and edit in v0 to examples ( #3518 )
...
* feat(www): add description and edit in v0 to examples
* fix: missing icon
2024-04-17 22:14:40 +04:00
shadcn
bebc2843f0
fix(www): remove unused chunk
2024-04-09 21:10:49 +04:00
Aakash
bf0c8b596b
fix(blocks): replace code with @/components/ui imports while copying from lift-mode ( #3401 )
...
FIXES : https://x.com/jimmeyer/status/1776487418150981661?s=46
The copy button in lift mode was copying code having imports as "@/registry/.../*.tsx"
This PR replaces all the imports by "@/components/ui/*.tsx"
2024-04-08 17:25:46 +00:00
shadcn
7590fb7636
feat: lift mode ( #3380 )
...
* feat(www): wip break everything
* feat(www): wip chunks
* feat(www): wip chunk mode
* feat: lift mode
* feat: update chunks
* fix: resize in lift mode
* fix: hasLiftMode
* fix: types
* fix: toolbar
Thanks @mrnbpt
* chore: format check
* feat: add tracking for enable_lift_mode
* chore: format write
* docs: add changelog
2024-04-05 21:28:05 +04:00
shadcn
f47bb973be
feat: e-commerce dashboard blocks ( #3236 )
...
* feat(blocks): add e-commerce dashboard
* feat(blocks): add products pages
* style(blocks): run prettier
* feat(www): update dashboard-05
* feat(www): update gap for dashboard-05
* feat(www): update dashboards
* fix(www): review a11y for new blocks
* fix(blocks): a11y for dashboard-07
* fix(www): blocks background
* chore: update registry
2024-03-29 00:14:32 +04:00
shadcn
9813c59886
fix(www): update url for request a block
2024-03-26 09:34:05 +04:00
shadcn
9044d890ec
chore: rename blocks_request.yml to blocks-request.yml
2024-03-26 09:20:32 +04:00
shadcn
3bc3d3849c
chore: rename block_request.yml to blocks_request.yml
2024-03-26 09:19:59 +04:00
shadcn
ebc9f710f6
chore: update block_request.yml
2024-03-26 09:17:03 +04:00
shadcn
eda92749e9
chore: convert issue_template to discussion_template ( #3156 )
2024-03-26 09:15:35 +04:00
shadcn
c86f1bd8b8
chore: update bug_report.yml
2024-03-26 08:48:46 +04:00
Zero
1da3e740e4
fix(dashboard-3): align aside and header borders in default style ( #3137 )
2024-03-26 08:46:03 +04:00
Yan Lyra
5c50a32e8f
chore(vaul): upgrade vaul version to a more recent ( #3134 )
...
It also fix #3093
2024-03-25 12:26:39 +00:00
shadcn
7c3da3e348
fix: display of txt code block ( #3149 )
2024-03-25 16:16:40 +04:00
keremcs
d4872067a6
fix: authentication-03 block misalignment ( #3101 )
...
* Update authentication-03.tsx
* new york
2024-03-25 08:22:03 +04:00
Ishaan Dey
37c726e60e
fix: dashboard-02 block (shadcn-ui#3098) ( #3099 )
2024-03-23 15:01:04 +04:00
shadcn
79c054ac7a
feat: blocks ( #3094 )
2024-03-22 21:39:33 +04:00
Dominik Ferber
3a4c3b2f7d
fix nextjs docs ( #3075 )
2024-03-21 13:38:21 +04:00
shadcn
f199dd3bbf
feat: switch input-otp to composition ( #3052 )
...
* feat: switch input-otp to composition
* feat: add disabled
2024-03-19 10:25:06 +04:00
Luca Félix
5ec881d176
fix: 🐛 breadcrumb file paths code preview ( #2946 )
...
Co-authored-by: shadcn <m@shadcn.com >
2024-03-13 08:38:17 +04:00
kevinmitch14
3f76d5fdc2
fix: use ?? instead of || ( #2941 )
...
Co-authored-by: shadcn <m@shadcn.com >
2024-03-11 19:42:27 +04:00
shadcn
1f0a7008d6
docs(www): update chancelog
2024-03-08 06:04:57 +04:00
shadcn
c04f1cac2d
docs: update changelog ( #2937 )
...
* docs(www): changelog
* docs(www): update changelog
2024-03-07 23:56:37 +04:00
shadcn
e8856d1dea
feat: add input-otp ( #2919 )
...
* feat: add input-otp
* feat: update input-otp and add examples
* feat(input-otp): add controlled and form examples
* chore(input-otp): update to latest
* docs(www): fix example code for input-otp
* fix(www): disable menu
2024-03-07 22:57:33 +04:00