-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(form): integrate Radix UI and React Hook Form for enhanced form #118
Merged
Conversation
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
AmirhoseinBrz
changed the title
feat(form): integrate Radix UI and React Hook Form for enhanced form …
feat(form): integrate Radix UI and React Hook Form for enhanced form
Dec 1, 2024
…date HelmTemplate schema
…HelmTemplate component
…ge api_version type to string in helmTemplate schema
…fy class names in PodEnvironmentFields component
…tyling in FormInput and FormSelect components
…ields component for improved spacing
…HelmTemplate component
… max height for pod expansion feat(helm-template): enforce minimum length for host in ingress schema and update environment field styling feat(env): add example environment configuration file
…e minimum length validation for replicas
@AmirhoseinBrz Thanks!. |
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.
feat(web) - form
This pull request includes several changes to the
web
package, primarily focusing on adding new dependencies and implementing form components usingreact-hook-form
and@radix-ui/react-form
. The most important changes include updating thepackage-lock.json
andpackage.json
files to add new dependencies, as well as creating new form components.Dependency Updates:
@hookform/resolvers
version3.9.1
todependencies
inweb/package-lock.json
andweb/package.json
. [1] [2]@radix-ui/react-form
version0.1.0
todependencies
inweb/package-lock.json
andweb/package.json
. [1] [2]react-hook-form
version7.53.2
todependencies
inweb/package-lock.json
andweb/package.json
. [1] [2]zod
version3.23.8
todependencies
inweb/package-lock.json
andweb/package.json
. [1] [2]Form Components:
FormCheckbox
component inweb/src/components/form/form-checkbox.tsx
using@radix-ui/react-form
andreact-hook-form
.FormInput
component inweb/src/components/form/form-input.tsx
using@radix-ui/react-form
andreact-hook-form
.FormSelect
component inweb/src/components/form/form-select.tsx
using@radix-ui/react-form
andreact-hook-form
.FormWrapper
component inweb/src/components/form/form-wrapper.tsx
to wrap forms usingreact-hook-form
andzod
validation.Utility Functions:
getNestedValue
utility function inweb/src/lib/helper.ts
to retrieve nested values from objects.Type Definitions:
web/src/pages/helm-template/helm-template.types.ts
to includezod
validation schemas for form fields.web/src/types/form.types.ts
.