Skip to content

Commit

Permalink
PrimeReact 10.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Jan 2, 2025
1 parent a82fa65 commit 128d804
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 42 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-primereact</artifactId>
<version>10.8.5</version>
<version>10.9.1</version>
<name>Quarkus PrimeReact</name>
<description>Quarkus monorepo demonstrating Panache REST server with PrimeReact UI client</description>
<url>https://github.com/melloware/quarkus-monorepo</url>
Expand Down
26 changes: 13 additions & 13 deletions src/main/webui/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,44 +207,44 @@
"title" : "LoggerInfo",
"type" : "object",
"properties" : {
"effectiveLevel" : {
"configuredLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
},
"name" : {
"type" : "string"
},
"configuredLevel" : {
"effectiveLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
}
}
},
"HealthResponse" : {
"type" : "object",
"properties" : {
"status" : {
"type" : "string",
"enum" : [ "UP", "DOWN" ]
},
"checks" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/HealthCheck"
}
},
"status" : {
"type" : "string",
"enum" : [ "UP", "DOWN" ]
}
}
},
"HealthCheck" : {
"type" : "object",
"properties" : {
"name" : {
"type" : "string"
"status" : {
"type" : "string",
"enum" : [ "UP", "DOWN" ]
},
"data" : {
"type" : [ "object", "null" ]
},
"status" : {
"type" : "string",
"enum" : [ "UP", "DOWN" ]
"name" : {
"type" : "string"
}
}
}
Expand Down Expand Up @@ -448,10 +448,10 @@
"schema" : {
"type" : "object",
"properties" : {
"loggerName" : { },
"loggerLevel" : {
"$ref" : "#/components/schemas/LoggerLevel"
}
},
"loggerName" : { }
}
}
}
Expand Down
24 changes: 12 additions & 12 deletions src/main/webui/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,38 +204,38 @@ components:
title: LoggerInfo
type: object
properties:
effectiveLevel:
configuredLevel:
$ref: "#/components/schemas/LoggerLevel"
name:
type: string
configuredLevel:
effectiveLevel:
$ref: "#/components/schemas/LoggerLevel"
HealthResponse:
type: object
properties:
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
status:
type: string
enum:
- UP
- DOWN
checks:
type: array
items:
$ref: "#/components/schemas/HealthCheck"
HealthCheck:
type: object
properties:
name:
status:
type: string
enum:
- UP
- DOWN
data:
type:
- object
- "null"
status:
name:
type: string
enum:
- UP
- DOWN
tags:
- name: Car Resource
description: CRUD operations for the Car entity.
Expand Down Expand Up @@ -381,9 +381,9 @@ paths:
schema:
type: object
properties:
loggerName: {}
loggerLevel:
$ref: "#/components/schemas/LoggerLevel"
loggerName: {}
responses:
"201":
description: Created
Expand Down
22 changes: 12 additions & 10 deletions src/main/webui/package-lock.json

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

6 changes: 3 additions & 3 deletions src/main/webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quarkus-primereact",
"version": "10.8.5",
"version": "10.9.1",
"description": "Quarkus monorepo demonstrating Quarkus REST server with PrimeReact UI client.",
"homepage": ".",
"private": false,
Expand All @@ -15,8 +15,8 @@
"axios": "1.7.9",
"primeflex": "3.3.1",
"primeicons": "7.0.0",
"primelocale": "1.2.2",
"primereact": "10.8.5",
"primelocale": "1.2.3",
"primereact": "10.9.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
Expand Down
6 changes: 3 additions & 3 deletions src/main/webui/src/service/CarService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -652,12 +652,12 @@ export const useLoggingManagerUpdateHook = () => {
return useCallback(
(loggingManagerUpdateBody: LoggingManagerUpdateBody, signal?: AbortSignal) => {
const formUrlEncoded = new URLSearchParams();
if (loggingManagerUpdateBody.loggerName !== undefined) {
formUrlEncoded.append('loggerName', loggingManagerUpdateBody.loggerName);
}
if (loggingManagerUpdateBody.loggerLevel !== undefined) {
formUrlEncoded.append('loggerLevel', loggingManagerUpdateBody.loggerLevel);
}
if (loggingManagerUpdateBody.loggerName !== undefined) {
formUrlEncoded.append('loggerName', loggingManagerUpdateBody.loggerName);
}

return loggingManagerUpdate({
url: `/q/logging-manager`,
Expand Down

0 comments on commit 128d804

Please sign in to comment.