@bytebrand/fe-ui-core 4.1.18 → 4.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/common.ts CHANGED
@@ -118,6 +118,7 @@ import { makeStyles, createStyles, withStyles, ThemeProvider } from '@mui/styles
118
118
  import {
119
119
  Skeleton,
120
120
  Divider,
121
+ Switch,
121
122
  TextField as MITextField,
122
123
  IconButton,
123
124
  MenuItem,
@@ -136,6 +137,7 @@ export {
136
137
  makeStyles, createStyles, withStyles, ThemeProvider, createTheme,
137
138
  Skeleton,
138
139
  Divider,
140
+ Switch,
139
141
  MITextField,
140
142
  IconButton,
141
143
  MenuItem,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.18",
3
+ "version": "4.1.20",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -37,7 +37,7 @@
37
37
  font-size: 12px
38
38
  color: $grey-3
39
39
  text-decoration: none
40
- vertical-align: middle
40
+ // vertical-align: middle
41
41
 
42
42
  &::after
43
43
  position: absolute
@@ -66,7 +66,8 @@ const BreadcrumbsFactory: IBreadcrumbsFactoryConfig = {
66
66
 
67
67
  PROFILE_SETTINGS: (props: any) => ({
68
68
  list: [
69
- { link: '', title: props.t('common:breadcrumbs.MySettings') }
69
+ { link: '/account/dashboard', title: props.t('common:breadcrumbs.DashboardNew') },
70
+ { link: '', title: props.t('common:breadcrumbs.Profile') }
70
71
  ]
71
72
  }),
72
73