diff --git a/package.json b/package.json index 7ff3342..d083061 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "@fullcalendar/interaction": "5.10.0", "@fullcalendar/react": "5.10.0", "@fullcalendar/timegrid": "5.10.0", - "@kingsrook/qqq-frontend-core": "1.0.25", + "@kingsrook/qqq-frontend-core": "1.0.27", "@mui/icons-material": "5.4.1", "@mui/material": "5.4.1", "@mui/styled-engine": "5.4.1", diff --git a/public/integration-logos/deposco.png b/public/integration-logos/deposco.png new file mode 100644 index 0000000..dfacdc6 Binary files /dev/null and b/public/integration-logos/deposco.png differ diff --git a/public/integration-logos/easypost.png b/public/integration-logos/easypost.png new file mode 100644 index 0000000..577a0c3 Binary files /dev/null and b/public/integration-logos/easypost.png differ diff --git a/public/integration-logos/infoplus.png b/public/integration-logos/infoplus.png new file mode 100644 index 0000000..72380d0 Binary files /dev/null and b/public/integration-logos/infoplus.png differ diff --git a/public/integration-logos/shipstation.png b/public/integration-logos/shipstation.png new file mode 100644 index 0000000..7eebd59 Binary files /dev/null and b/public/integration-logos/shipstation.png differ diff --git a/src/qqq/pages/app-home/index.tsx b/src/qqq/pages/app-home/index.tsx index e14d8b4..b6b760b 100644 --- a/src/qqq/pages/app-home/index.tsx +++ b/src/qqq/pages/app-home/index.tsx @@ -25,7 +25,7 @@ import {QProcessMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/ import {QReportMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QReportMetaData"; import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData"; import {QWidgetMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QWidgetMetaData"; -import {Icon} from "@mui/material"; +import {Box, Icon, Typography} from "@mui/material"; import Card from "@mui/material/Card"; import Divider from "@mui/material/Divider"; import Grid from "@mui/material/Grid"; @@ -127,7 +127,7 @@ function AppHome({app}: Props): JSX.Element tableCounts.set(table.name, {isLoading: false, value: count}); setTableCounts(tableCounts); - if(count !== null && count !== undefined) + if (count !== null && count !== undefined) { tableCountNumbers.set(table.name, count.toLocaleString()); tableCountTexts.set(table.name, count === 1 ? "total record" : "total records"); @@ -187,9 +187,17 @@ function AppHome({app}: Props): JSX.Element {app.sections.map((section) => ( - - {section.label} - + + { + section.icon && + ( + section.icon.path && {section.label} + ) + } + + {section.label} + + { section.processes ? ( diff --git a/src/qqq/pages/entity-list/index.tsx b/src/qqq/pages/entity-list/index.tsx index aacc5ca..665ddd6 100644 --- a/src/qqq/pages/entity-list/index.tsx +++ b/src/qqq/pages/entity-list/index.tsx @@ -1113,7 +1113,7 @@ function EntityList({table, launchProcess}: Props): JSX.Element selectFullFilterState === "filter" && (
All - {` ${totalRecords ? totalRecords.toLocaleString() : "All"} `} + {` ${totalRecords ? totalRecords.toLocaleString() : ""} `} records matching this query are selected.