Daryl
Daryl
KPCKevin Powell - Community
Created by Nibelung Valesti on 6/5/2024 in #front-end
Is it good practice to combine MUI and Tailwind css?
I suggest Shadcn: https://ui.shadcn.com/ Ready to use components that you can customize to your needs. About the icons, I think these are great options: * https://lucide.dev/icons/ * https://heroicons.com/
16 replies
KPCKevin Powell - Community
Created by Lloyd Peterson on 5/20/2024 in #front-end
Vertical Carousel Animation
9 replies
KPCKevin Powell - Community
Created by Israr on 5/3/2024 in #front-end
Read more content to popup
Are you looking for this? https://vaul.emilkowal.ski/
66 replies
KPCKevin Powell - Community
Created by 🜲 ɢʀᴀɴᴛ on 3/23/2024 in #front-end
Swing Animation
30 replies
KPCKevin Powell - Community
Created by Fourth_quarter on 3/19/2024 in #front-end
Anyone know how to use yarn generate for react components? My Google search is burning time. Thanks
I'm not sure what is the requirement: Do you only want to create a component? Do you have to use a generator? To create a component you can simply create a .jsx or .tsx file, create a function and return JSX:
// your-file.jsx

const YourComponent = () => {
...extra stuff

return <p>It works.</p>
}
// your-file.jsx

const YourComponent = () => {
...extra stuff

return <p>It works.</p>
}
2 replies
TTCTheo's Typesafe Cult
Created by Noor on 3/2/2024 in #questions
Best Chart/Graphs React Library
More alternatives: * easy to start with: https://www.tremor.so/components * cool but not that easy: https://airbnb.io/visx/gallery
7 replies
KPCKevin Powell - Community
Created by ellemaker on 2/29/2024 in #front-end
Slider/Carousel
6 replies
KPCKevin Powell - Community
Created by Matt on 2/3/2024 in #front-end
Carousel w/ JS
Hi @Matt! I want to encourage you to continue building your carousel, specially if it helps you to learn new stuff. But I also hope I can help you by recommending this great library: https://www.embla-carousel.com/get-started/
21 replies
TTCTheo's Typesafe Cult
Created by Circus on 10/3/2023 in #questions
Shadcn components don't work out of the box?
I'm not sure what the issue might be, but the same code for the Calendar and the Date Picker works properly for the website (shadcn): * https://github.com/shadcn-ui/ui/blob/main/apps/www/registry/default/example/date-picker-with-range.tsx * https://github.com/shadcn-ui/ui/blob/main/apps/www/registry/default/ui/calendar.tsx Can you verify if the Tailwind classes are being applied correctly? Is your config setup properly? If everything should be fine, can you share a reproduction we can test on our end?
8 replies
TTCTheo's Typesafe Cult
Created by Circus on 10/3/2023 in #questions
Shadcn components don't work out of the box?
Hi @Circus! Can you also share your code for the Calendar component?
8 replies
KPCKevin Powell - Community
Created by Jimster on 10/2/2023 in #front-end
React Too Many Errors
If you want more information about this @Jimster, you can take a look to this article: https://overreacted.io/npm-audit-broken-by-design/#why-is-npm-audit-broken
122 replies
KPCKevin Powell - Community
Created by Jimster on 10/2/2023 in #front-end
React Too Many Errors
By the way, I don't see errors with the generation of the project. Are those warnings stopping you somehow?
122 replies
KPCKevin Powell - Community
Created by Jimster on 10/2/2023 in #front-end
React Too Many Errors
If you're starting out with React, I'd recommend using Vite instead Create React App: https://vitejs.dev/guide/#scaffolding-your-first-vite-project
122 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
No problem.
22 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
That's the case in runtime, but Tailwind generates the styles at build time.
22 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
Most likely because you are using those class names somewhere else in your code and Tailwind has generated them.
22 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
Do you have any problems understanding the docs: https://tailwindcss.com/docs/content-configuration#dynamic-class-names ?
22 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
If you read the docs, you'll see that string interpolation is something you should avoid. Tailwind does not recognize a class name with the shape: bg-${logic} , because logic is unknown at the time that Tailwind generates the styles for that class.
22 replies
KPCKevin Powell - Community
Created by ABUL KALAM on 8/30/2023 in #front-end
Dynamically setting the color in TailwindCSS.
Okay...
22 replies