Contact Forms
Can we have lead generation contact forms, similar to https://tailwindcss.com/plus/ui-blocks/marketing/sections/contact-sections but made for HeroUI?
User 22 days ago
π‘ Feature Request
Contact Forms
Can we have lead generation contact forms, similar to https://tailwindcss.com/plus/ui-blocks/marketing/sections/contact-sections but made for HeroUI?
User 22 days ago
π‘ Feature Request
Request for cancel and refund my purchase billing
Hi HeroUI team, I just purchase my solo plan, but your startup plan has a huge discount, so i hope to cancel and refund my billing, will re-order startup plan. Please contact to me by email: shaoxiao.xu@tec-do.com Thanks, Shaoxiao.
User About 2 months ago
π₯ Feedback
Request for cancel and refund my purchase billing
Hi HeroUI team, I just purchase my solo plan, but your startup plan has a huge discount, so i hope to cancel and refund my billing, will re-order startup plan. Please contact to me by email: shaoxiao.xu@tec-do.com Thanks, Shaoxiao.
User About 2 months ago
π₯ Feedback
Coachmarks
Would love to have coachmarks in HeroUI. It would enable to build educational experiences for new users. Hereβs an example library: https://github.com/knowingharsh/react-coach-mark
An Unknown User About 2 months ago
π‘ Feature Request
Coachmarks
Would love to have coachmarks in HeroUI. It would enable to build educational experiences for new users. Hereβs an example library: https://github.com/knowingharsh/react-coach-mark
An Unknown User About 2 months ago
π‘ Feature Request
Remove `useCallback` usage from the HeroProUI components
useCallback is very dangerous to use, you just need to miss adding a dependency in the array and you broke your app, debugging is a nightmare. useCallback is not needed if you never put a function inside a dependency of useEffect, useCallback, useMemo. React compiler is coming soon and will remove the need for it anyway.
User 2 months ago
π₯ Feedback
Remove `useCallback` usage from the HeroProUI components
useCallback is very dangerous to use, you just need to miss adding a dependency in the array and you broke your app, debugging is a nightmare. useCallback is not needed if you never put a function inside a dependency of useEffect, useCallback, useMemo. React compiler is coming soon and will remove the need for it anyway.
User 2 months ago
π₯ Feedback
Improvements to HeroUI Pro downloaded zip folders
Should include a dependency on vite Should include a .gitignore file to exclude node_modules Should have a βdevβ package.json script that calls vite Should have a dependency on β@heroui/themeβ to make tailwind find the content to scan when using pnpm Should put source files in a src folder
MORSE 2 months ago
π₯ Feedback
Improvements to HeroUI Pro downloaded zip folders
Should include a dependency on vite Should include a .gitignore file to exclude node_modules Should have a βdevβ package.json script that calls vite Should have a dependency on β@heroui/themeβ to make tailwind find the content to scan when using pnpm Should put source files in a src folder
MORSE 2 months ago
π₯ Feedback
Heroui Monorepo Boilerplate
This monorepo template for the Heroui project is designed for modular feature development, streamlined testing, and scalability. It includes pre-configured Git hooks (using Husky), workspaces, and a well-organized project structure that separates component overrides, global utilities, and hooks at the root level. Note: This is a general example. You may choose to implement more optimal or customized solutions depending on your project's needs. Recommended Tools and Workspaces Workspaces: Use Yarn Workspaces (or npm Workspaces) to manage dependencies efficiently across packages. Lerna: Integrate Lerna to orchestrate versioning and execute scripts (like build and test) across all subprojects. Project Structure php heroui-monorepo/ βββ library/ # Overrides for components when needed βββ utils/ # Global utilities shared across packages βββ hooks/ # Global programmatic hooks (e.g., custom React hooks or automation scripts) βββ packages/ # Project-specific packages β βββ heroui-core/ # Core functionality of Heroui β βββ heroui-feature-new/ # Example of a new feature package βββ .husky/ # Pre-configured Git hooks (e.g., pre-commit) βββ package.json # Root package configuration (workspaces, scripts, dependencies) βββ README.md # Project title and detailed description Detailed Component Description library/: Contains overrides for components. This centralized folder allows you to modify or enhance standard Heroui components across multiple packages. utils/: Stores global utilities and helper functions (like logging, data formatting, and common computations) that can be reused in any package within the monorepo. hooks/: Houses custom hooks and automation scripts that are used throughout the project. This folder can include both React hooks and other specialized scripts. (Note: Git hooks remain configured in the.husky/ folder.) packages/: Contains individual modules or features of the project. Each package, such as heroui-core (the core functionality) and heroui-feature-new (an example feature), has its own package.json for managing package-specific dependencies and scripts. .husky/: Pre-configured with Git hooks to enforce code quality through tasks such as linting, testing, and formatting checks before commits. Root package.json: Defines the workspace settings, global scripts (like build, test, and prepare for Husky), and dependencies (such as Lerna and Husky), ensuring that the entire project benefits from a unified configuration. README.md: Provides the project title and a detailed description, outlining the purpose, structure, and key features of the monorepo. Benefits and Considerations Modularity and Overrides: The library/ folder allows centralized management and overrides of components, ensuring consistency across various modules. Code Reusability: The utils/ folder promotes reuse of common logic and utilities, reducing duplication and maintaining consistency. Custom Automation: The hooks/ folder enables the implementation of custom automation and programmatic hooks, complementing the Git hooks set up in.husky/. Scalability: The monorepo structure supports seamless addition of new features or packages, keeping the project organized as it grows. Automated Quality Assurance: Pre-configured Git hooks and Lerna integration help automate testing and linting, ensuring high code quality and reducing the likelihood of production issues.
ΠΠ°ΠΊΡΠΈΠΌ ΠΡΠΌΠ΅Π½ΡΠΊ 3 months ago
π‘ Feature Request
Heroui Monorepo Boilerplate
This monorepo template for the Heroui project is designed for modular feature development, streamlined testing, and scalability. It includes pre-configured Git hooks (using Husky), workspaces, and a well-organized project structure that separates component overrides, global utilities, and hooks at the root level. Note: This is a general example. You may choose to implement more optimal or customized solutions depending on your project's needs. Recommended Tools and Workspaces Workspaces: Use Yarn Workspaces (or npm Workspaces) to manage dependencies efficiently across packages. Lerna: Integrate Lerna to orchestrate versioning and execute scripts (like build and test) across all subprojects. Project Structure php heroui-monorepo/ βββ library/ # Overrides for components when needed βββ utils/ # Global utilities shared across packages βββ hooks/ # Global programmatic hooks (e.g., custom React hooks or automation scripts) βββ packages/ # Project-specific packages β βββ heroui-core/ # Core functionality of Heroui β βββ heroui-feature-new/ # Example of a new feature package βββ .husky/ # Pre-configured Git hooks (e.g., pre-commit) βββ package.json # Root package configuration (workspaces, scripts, dependencies) βββ README.md # Project title and detailed description Detailed Component Description library/: Contains overrides for components. This centralized folder allows you to modify or enhance standard Heroui components across multiple packages. utils/: Stores global utilities and helper functions (like logging, data formatting, and common computations) that can be reused in any package within the monorepo. hooks/: Houses custom hooks and automation scripts that are used throughout the project. This folder can include both React hooks and other specialized scripts. (Note: Git hooks remain configured in the.husky/ folder.) packages/: Contains individual modules or features of the project. Each package, such as heroui-core (the core functionality) and heroui-feature-new (an example feature), has its own package.json for managing package-specific dependencies and scripts. .husky/: Pre-configured with Git hooks to enforce code quality through tasks such as linting, testing, and formatting checks before commits. Root package.json: Defines the workspace settings, global scripts (like build, test, and prepare for Husky), and dependencies (such as Lerna and Husky), ensuring that the entire project benefits from a unified configuration. README.md: Provides the project title and a detailed description, outlining the purpose, structure, and key features of the monorepo. Benefits and Considerations Modularity and Overrides: The library/ folder allows centralized management and overrides of components, ensuring consistency across various modules. Code Reusability: The utils/ folder promotes reuse of common logic and utilities, reducing duplication and maintaining consistency. Custom Automation: The hooks/ folder enables the implementation of custom automation and programmatic hooks, complementing the Git hooks set up in.husky/. Scalability: The monorepo structure supports seamless addition of new features or packages, keeping the project organized as it grows. Automated Quality Assurance: Pre-configured Git hooks and Lerna integration help automate testing and linting, ensuring high code quality and reducing the likelihood of production issues.
ΠΠ°ΠΊΡΠΈΠΌ ΠΡΠΌΠ΅Π½ΡΠΊ 3 months ago
π‘ Feature Request
Swap list items
Please add a component that allows to swap positions in items list by dragging items up and down
Roman Purishy 4 months ago
π Components Request
Swap list items
Please add a component that allows to swap positions in items list by dragging items up and down
Roman Purishy 4 months ago
π Components Request
Expand Data Visualization Components
Iβd love to see more variety in the data chart components. My customers care a lot about data visuals, and while Hero UI looks great, itβs too limited for presentations at its current state regarding data charts. Something more like shadcnβs wide range of charts would be super helpfulβmakes it easier to sell and keeps things looking modern without needing extra libraries. reference link: shadecn
Kazi 4 months ago
π Components Request
Expand Data Visualization Components
Iβd love to see more variety in the data chart components. My customers care a lot about data visuals, and while Hero UI looks great, itβs too limited for presentations at its current state regarding data charts. Something more like shadcnβs wide range of charts would be super helpfulβmakes it easier to sell and keeps things looking modern without needing extra libraries. reference link: shadecn
Kazi 4 months ago
π Components Request
A Changelog or history chain component
If we could get something similar to this: Stellar HTML Demo - Changelog
Eric Leija 4 months ago
π‘ Feature Request
A Changelog or history chain component
If we could get something similar to this: Stellar HTML Demo - Changelog
Eric Leija 4 months ago
π‘ Feature Request
I need something
I see thereβs rarely lib/component that provide me a weekday picker component and time picker for 24 hour format because in thai they hate AM/PM thatβs why for time picker i chose RSUIT but itβs rare to find some component that make it in 24 hour format
User 4 months ago
π‘ Feature Request
I need something
I see thereβs rarely lib/component that provide me a weekday picker component and time picker for 24 hour format because in thai they hate AM/PM thatβs why for time picker i chose RSUIT but itβs rare to find some component that make it in 24 hour format
User 4 months ago
π‘ Feature Request
Grainy and Gradient Background component
Getting nice and beautiful background with light and dark theme is very difficult to achieve without good UI expertise. It will be a great addition to HeroUI to provide some gradient and grainy background components.
User 4 months ago
π‘ Feature Request
Grainy and Gradient Background component
Getting nice and beautiful background with light and dark theme is very difficult to achieve without good UI expertise. It will be a great addition to HeroUI to provide some gradient and grainy background components.
User 4 months ago
π‘ Feature Request
Custom Scrollbar
Though it seems building custom scrollbar seems not very difficult, but making it compatible with multiple browsers and performant seems difficult, please build a component with nice scrollbar. It will be nice addition.
User 4 months ago
π‘ Feature Request
Custom Scrollbar
Though it seems building custom scrollbar seems not very difficult, but making it compatible with multiple browsers and performant seems difficult, please build a component with nice scrollbar. It will be nice addition.
User 4 months ago
π‘ Feature Request
Toast z-index
Hello HeroUI team, I found a problem in HeroUI version 2.7.2 with toast component. If Modal is open and I try to show an error with toast, it shows behind blur backdrop. Please change z-index of toast component or add a custom props for it
User 5 months ago
π Bug Reports
Toast z-index
Hello HeroUI team, I found a problem in HeroUI version 2.7.2 with toast component. If Modal is open and I try to show an error with toast, it shows behind blur backdrop. Please change z-index of toast component or add a custom props for it
User 5 months ago
π Bug Reports
Prompt Input With Bottom Actions always has scrollbars on
https://www.heroui.pro/components/ai/prompt-inputs#component-prompt-input-with-bottom-actions This is a regression! Very similar to the previous regressions in Basic stepper as mentioned in https://feedback.heroui.pro/p/basic-stepper-has-an-always-on-horizontal-scroll-2. I would really appreciate if you can catch these regressions through some automations.
An Unknown User 5 months ago
π Bug Reports
Prompt Input With Bottom Actions always has scrollbars on
https://www.heroui.pro/components/ai/prompt-inputs#component-prompt-input-with-bottom-actions This is a regression! Very similar to the previous regressions in Basic stepper as mentioned in https://feedback.heroui.pro/p/basic-stepper-has-an-always-on-horizontal-scroll-2. I would really appreciate if you can catch these regressions through some automations.
An Unknown User 5 months ago
π Bug Reports
Paid development and Reseller
Hi, I love your vision around tailwind variants, react-aria-components. Iβm wondering if its possible to a) pay directly for certain features that would go into the open source base b) explore being a reseller through my SaaS product. Thanks, -JP
User 6 months ago
π₯ Feedback
Paid development and Reseller
Hi, I love your vision around tailwind variants, react-aria-components. Iβm wondering if its possible to a) pay directly for certain features that would go into the open source base b) explore being a reseller through my SaaS product. Thanks, -JP
User 6 months ago
π₯ Feedback
Update Figma Design File
Have a few issues with the figma design files. Here is a list of things that would make designers life easier so that they can work any project and correctly handoff what is needed to the dev team: Auto layout - currently nothing is created with this so when you change a position of a component everything breaks States- i know that the states are in the react code, but when the design team needs to relay when and where to show this, we donβt have the different states to represent this to the dev team System colors and fonts - There is no way to easliy change the color of any component or Block or element within this figma file so that it can match a brand or design direction. Again, I understand this all can be done at the code level, but it all starts in designs. Overall what you guys have done is great, but I know everyone would appreciate a little bit more focus on the figma design file to make the designers life and subsequently the devs lives easier Best
alisalek 6 months ago
π₯ Feedback
Update Figma Design File
Have a few issues with the figma design files. Here is a list of things that would make designers life easier so that they can work any project and correctly handoff what is needed to the dev team: Auto layout - currently nothing is created with this so when you change a position of a component everything breaks States- i know that the states are in the react code, but when the design team needs to relay when and where to show this, we donβt have the different states to represent this to the dev team System colors and fonts - There is no way to easliy change the color of any component or Block or element within this figma file so that it can match a brand or design direction. Again, I understand this all can be done at the code level, but it all starts in designs. Overall what you guys have done is great, but I know everyone would appreciate a little bit more focus on the figma design file to make the designers life and subsequently the devs lives easier Best
alisalek 6 months ago
π₯ Feedback