Enhance UI and password generation features with new components#33
Merged
Conversation
…ion for password types
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a suite of password and PIN generators to the utilities section of the app, along with reusable UI components to support them. It adds a tabbed interface for switching between a standard password generator, a memorable password generator, and a PIN generator. Additionally, it introduces a cryptographically secure random integer generator utility, and new UI components for sliders and switches. The workflow for tests is also updated for improved dependency management.
New Password/PIN Generators and UI Integration:
password-generator.tsx(standard password),memorable-password.tsx(memorable passphrases), andpin-generator.tsx(numeric PINs), each with user controls for customization and clipboard copy support. [1] [2] [3]password-generator-tab.tsxto allow users to switch between password/PIN generation tools in the UI./password-generatorroute in the app routes.UI Component Additions:
Slidercomponent for numeric input and aSwitchcomponent for toggles, used in the new generators. [1] [2]Utility Functionality:
secureRandomIntinutils.tsfor cryptographically secure random number generation, used by the generators to ensure security.Workflow Improvements:
actions/checkoutandactions/setup-node, and simplified dependency installation by removing unnecessary native dependencies and lockfile enforcement.