Skip to content

Commit

Permalink
PrimeReact 10.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Jul 3, 2024
1 parent 957b9dd commit 2908c94
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 57 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.melloware</groupId>
<artifactId>quarkus-monorepo</artifactId>
<version>10.6.6</version>
<version>10.7.0</version>
<name>Quarkus Monorepo</name>
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
<url>https://github.com/melloware/quarkus-monorepo</url>
Expand Down
88 changes: 44 additions & 44 deletions src/main/webui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/main/webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quarkus-monorepo",
"version": "10.6.6",
"version": "10.7.0",
"description": "Quarkus monorepo demonstrating Quarkus REST server with PrimeReact UI client.",
"homepage": ".",
"private": false,
Expand All @@ -16,11 +16,11 @@
"dompurify": "3.1.5",
"primeflex": "3.3.1",
"primeicons": "7.0.0",
"primereact": "10.6.6",
"primereact": "10.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.52.0",
"react-router-dom": "6.23.1",
"react-hook-form": "7.52.1",
"react-router-dom": "6.24.0",
"react-transition-group": "4.4.5",
"trusted-types": "2.0.0"
},
Expand Down
10 changes: 2 additions & 8 deletions src/main/webui/src/CrudPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -416,13 +416,7 @@ const CrudPage = () => {
<label htmlFor={field.name} className={classNames({ 'p-error': errors.vin })}>
VIN*
</label>
<InputText
id={field.name}
{...field}
autoFocus
className={classNames({ 'p-invalid': fieldState.error })}
autoComplete="off"
/>
<InputText id={field.name} {...field} className={classNames({ 'p-invalid': fieldState.error })} autoComplete="off" />
{getFormErrorMessage(fieldState, field.name, 17)}
</>
)}
Expand Down Expand Up @@ -549,7 +543,7 @@ const CrudPage = () => {

<div className="p-dialog-footer pb-0">
<Button label="Cancel" type="reset" icon="pi pi-times" className="p-button-text p-button-info" onClick={hideEditDialog} />
<Button label="Save" type="submit" icon="pi pi-check" className="p-button-text p-button-success" />
<Button label="Save" type="submit" icon="pi pi-check" className="p-button-text p-button-success" autoFocus />
</div>
</form>
</Dialog>
Expand Down

0 comments on commit 2908c94

Please sign in to comment.