Skip to content

Commit

Permalink
chore(merge): merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
oyo committed Mar 11, 2024
2 parents 1cf1290 + 2217436 commit b005ff8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog

## 2.1.38
## 2.1.39

- Fix warning about misspelled css property

## 2.1.38

- UI updates in stepper and dialog

## 2.1.37

- Fix multiselect search and selected items display issues
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@catena-x/portal-shared-components",
"version": "2.1.38",
"version": "2.1.39",
"description": "Catena-X Portal Shared Components",
"author": "Catena-X Contributors",
"license": "Apache-2.0",
Expand Down
5 changes: 3 additions & 2 deletions src/components/basic/Dialog/DialogActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ import MuiDialogActions, {
} from '@mui/material/DialogActions'
import { CONTENT_SPACING_RIGHT_LEFT } from './index'
import './Dialog.scss'

export interface DialogActionProps extends MuiDialogActionsProps {
helperText?: string
helperText?: string | JSX.Element
}

export const DialogActions = ({
Expand All @@ -42,10 +41,12 @@ export const DialogActions = ({
padding: spacing(4, CONTENT_SPACING_RIGHT_LEFT),
backgroundColor: 'background.background09',
}}
className="actions-main"
>
{helperText && (
<Box
sx={{ paddingBottom: 4, typography: 'body3', textAlign: 'center' }}
className="helper-text"
>
{helperText}
</Box>
Expand Down
1 change: 1 addition & 0 deletions src/components/basic/Dialog/DialogHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export const DialogHeader = ({
padding: spacing(7, CONTENT_SPACING_RIGHT_LEFT),
textAlign: 'center',
}}
className="dialog-header-main"
>
{title && (
<MuiDialogTitle
Expand Down
3 changes: 1 addition & 2 deletions src/components/basic/Stepper/Stepper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
-webkit-flex: 1 0 0%;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
width: 100%;
width: 160px;
max-width: 100%;

.stepHead {
Expand All @@ -38,7 +38,6 @@
}

.stepHeadline {
width: 95px;
margin: 0px auto 24px auto;
min-height: 56px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/basic/Stepper/Stepper.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const stepperElements = [
},
{
step: 3,
headline: 'Technical Integration',
headline: 'Responsibilities & admin account',
},
{
step: 4,
Expand Down

0 comments on commit b005ff8

Please sign in to comment.