Skip to content

chore(frontend): bump mantine #9694

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

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,36 +59,36 @@
"@fullcalendar/react": "^6.1.15",
"@lingui/core": "^5.3.0",
"@lingui/react": "^5.3.0",
"@mantine/carousel": "^7.16.0",
"@mantine/charts": "^7.16.0",
"@mantine/core": "^7.16.0",
"@mantine/dates": "^7.16.0",
"@mantine/dropzone": "^7.16.0",
"@mantine/form": "^7.16.0",
"@mantine/hooks": "^7.16.0",
"@mantine/modals": "^7.16.0",
"@mantine/notifications": "^7.16.0",
"@mantine/spotlight": "^7.16.0",
"@mantine/vanilla-extract": "^7.16.0",
"@mantine/carousel": "^8.0.1",
"@mantine/charts": "^8.0.1",
"@mantine/core": "^8.0.1",
"@mantine/dates": "^8.0.1",
"@mantine/dropzone": "^8.0.1",
"@mantine/form": "^8.0.1",
"@mantine/hooks": "^8.0.1",
"@mantine/modals": "^8.0.1",
"@mantine/notifications": "^8.0.1",
"@mantine/spotlight": "^8.0.1",
"@mantine/vanilla-extract": "^8.0.1",
"@messageformat/date-skeleton": "^1.1.0",
"@sentry/react": "^8.43.0",
"@tabler/icons-react": "^3.17.0",
"@tanstack/react-query": "^5.56.2",
"@uiw/codemirror-theme-vscode": "4.23.7",
"@uiw/react-codemirror": "4.23.7",
"@uiw/react-split": "^5.9.3",
"@vanilla-extract/css": "^1.17.1",
"@vanilla-extract/css": "^1.17.2",
"axios": "^1.8.4",
"clsx": "^2.1.1",
"codemirror": "6.0.1",
"dayjs": "^1.11.13",
"dompurify": "^3.2.4",
"easymde": "^2.18.0",
"embla-carousel-react": "^8.5.2",
"embla-carousel-react": "^8.6.0",
"fuse.js": "^7.0.0",
"html5-qrcode": "^2.3.8",
"mantine-contextmenu": "^7.15.3",
"mantine-datatable": "^7.15.1",
"mantine-contextmenu": "^7.17.1",
"mantine-datatable": "^7.17.1",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand All @@ -99,8 +99,8 @@
"react-select": "^5.9.0",
"react-simplemde-editor": "^5.2.0",
"react-window": "1.8.10",
"recharts": "^2.15.0",
"styled-components": "^6.1.14",
"recharts": "^2.15.3",
"styled-components": "^6.1.18",
"zustand": "^5.0.3"
},
"devDependencies": {
Expand All @@ -120,7 +120,7 @@
"@types/react-grid-layout": "^1.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^1.8.8",
"@vanilla-extract/vite-plugin": "^5.0.1",
"@vanilla-extract/vite-plugin": "^5.0.2",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-macros": "^3.1.0",
"nyc": "^17.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ export function GettingStartedCarousel({
<Carousel
slideSize={{ base: '100%', sm: '50%', md: '33.333333%' }}
slideGap={{ base: 0, sm: 'md' }}
slidesToScroll={3}
align='start'
loop
emblaOptions={{
slidesToScroll: 3,
align: 'start',
loop: true
}}
>
{slides}
</Carousel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ export function UserTheme({ height }: Readonly<{ height: number }>) {
<Table.Td>
<Group justify='left'>
<Select
searchable
aria-label='Loader Type Selector'
data={[
{ value: 'bars', label: t`Bars` },
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/tables/FilterSelectDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function FilterElement({
return (
<Select
data={valueOptions}
searchable={filterProps.type == 'choice'}
searchable={true}
label={t`Value`}
placeholder={t`Select filter value`}
onChange={(value: string | null) => onValueChange(value)}
Expand Down
Loading
Loading