@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
|
@@ -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.
|
|
69
|
+
{ link: '/account/dashboard', title: props.t('common:breadcrumbs.DashboardNew') },
|
|
70
|
+
{ link: '', title: props.t('common:breadcrumbs.Profile') }
|
|
70
71
|
]
|
|
71
72
|
}),
|
|
72
73
|
|