Skip to content
Merged
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
8 changes: 8 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @baseapp-frontend/components

## 1.2.9

### Patch Changes

- Updating minor version of MUI packages, adjust typing of SelectChangeEvents to stay compatible
- Updated dependencies
- @baseapp-frontend/design-system@1.0.21

## 1.2.8

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const MemberItem: FC<MemberItemProps> = ({
}
}

const handleRoleChange = (event: SelectChangeEvent<ProfileRoles>) => {
const handleRoleChange = (event: SelectChangeEvent<unknown>) => {
if (event.target.value === MEMBER_ROLES.admin) {
setOpenConfirmChangeMember(true)
return
Expand All @@ -101,7 +101,7 @@ const MemberItem: FC<MemberItemProps> = ({
<Box>
<Select
value={memberRole}
onChange={(event: SelectChangeEvent<ProfileRoles>) => {
onChange={(event: SelectChangeEvent<unknown>) => {
const { value } = event.target
if (value === MEMBER_ACTIONS.remove) {
handleRemoveMemberDialog()
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@baseapp-frontend/components",
"description": "BaseApp components modules such as comments, notifications, messages, and more.",
"version": "1.2.8",
"version": "1.2.9",
"sideEffects": false,
"scripts": {
"babel:transpile": "babel modules -d tmp-babel --extensions .ts,.tsx --ignore '**/__tests__/**','**/__storybook__/**'",
Expand Down
6 changes: 6 additions & 0 deletions packages/design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @baseapp-frontend/design-system

## 1.0.22

### Patch Changes

- Updating minor version of MUI packages, adjust typing of SelectChangeEvents to stay compatible

## 1.0.21

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ export const CountrySelect: FC<CountrySelectProps> = ({
countryDialCodeProps,
optionProps,
}) => {
const handleChange = (event: SelectChangeEvent<CountryIso2>) => {
const handleChange = (event: SelectChangeEvent<unknown>) => {
setCountry(event.target.value as CountryIso2)
}

const renderValue = (value: CountryIso2) => <FlagImage iso2={value} />
const renderValue = (value: unknown) => <FlagImage iso2={value as CountryIso2} />

return (
<StyledSelect
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
'use client'

import { FC } from 'react'

import { alpha, styled } from '@mui/material/styles'
import SimpleBar from 'simplebar-react'

import { ScrollbarProps } from './types'

export const StyledRootScrollbar = styled('div')(() => ({
flexGrow: 1,
height: 'fit-content',
overflow: 'hidden',
}))

export const StyledScrollbar = styled(SimpleBar)(({ theme }) => ({
// TODO: type this better
export const StyledScrollbar: FC<ScrollbarProps> = styled(SimpleBar)(({ theme }) => ({
maxHeight: '100%',
'& .simplebar-scrollbar': {
'&:before': {
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@baseapp-frontend/design-system",
"description": "Design System components and configurations.",
"version": "1.0.21",
"version": "1.0.22",
"sideEffects": false,
"scripts": {
"tsup:bundle": "tsup --tsconfig tsconfig.build.json",
Expand Down
7 changes: 7 additions & 0 deletions packages/wagtail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @baseapp-frontend/wagtail

## 1.0.36

### Patch Changes

- Updated dependencies
- @baseapp-frontend/design-system@1.0.22

## 1.0.35

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wagtail/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@baseapp-frontend/wagtail",
"description": "BaseApp Wagtail",
"version": "1.0.35",
"version": "1.0.36",
"main": "./index.ts",
"types": "dist/index.d.ts",
"sideEffects": false,
Expand Down
286 changes: 126 additions & 160 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ catalogs:
tailwindcss: 3.4.4

material-ui:
"@emotion/cache": 11.11.0
"@emotion/react": 11.11.4
"@emotion/styled": 11.11.5
"@mui/icons-material": 5.15.19
"@mui/lab": 5.0.0-alpha.170
"@mui/material": 5.15.19
"@emotion/cache": 11.14.0
"@emotion/react": 11.14.0
"@emotion/styled": 11.14.1
"@mui/icons-material": 5.18.0
"@mui/lab": 5.0.0-alpha.177
"@mui/material": 5.18.0
"@mui/material-nextjs": 6.1.4
"@mui/system": 5.16.12
"@mui/system": 5.18.0
"@mui/x-date-pickers": 7.6.2

test:
Expand Down
Loading