aefis-core-ui 2.3.0-rc38 → 2.3.0-rc39
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/dist/index.modern.js +9 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -14978,7 +14978,7 @@ const WizardPanel = props => {
|
|
|
14978
14978
|
const titleStyle = {
|
|
14979
14979
|
fontSize: "1.1rem",
|
|
14980
14980
|
fontWeight: 500,
|
|
14981
|
-
mb:
|
|
14981
|
+
mb: 2
|
|
14982
14982
|
};
|
|
14983
14983
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
14984
14984
|
children: [/*#__PURE__*/jsx(AppBar$1, {
|
|
@@ -15008,11 +15008,17 @@ const WizardPanel = props => {
|
|
|
15008
15008
|
visibility: activeStep === index ? "visible" : "hidden"
|
|
15009
15009
|
},
|
|
15010
15010
|
children: [step.panelTitle && /*#__PURE__*/jsxs(Typography, {
|
|
15011
|
-
gutterButtom: true,
|
|
15012
15011
|
sx: titleStyle,
|
|
15013
15012
|
variant: "h2",
|
|
15014
15013
|
component: step.panelTitleComponent || "h3",
|
|
15015
15014
|
children: ["Step ", index + 1, " : ", step.panelTitle]
|
|
15015
|
+
}), step.panelDescription && /*#__PURE__*/jsx(Typography, {
|
|
15016
|
+
sx: {
|
|
15017
|
+
mb: 2
|
|
15018
|
+
},
|
|
15019
|
+
variant: "body1",
|
|
15020
|
+
component: "p",
|
|
15021
|
+
children: step.panelDescription
|
|
15016
15022
|
}), step.content]
|
|
15017
15023
|
}, `wizardPanelKey-${step.id}`))
|
|
15018
15024
|
})
|
|
@@ -15089,6 +15095,7 @@ WizardPanel.propTypes = {
|
|
|
15089
15095
|
id: PropTypes.any.isRequired,
|
|
15090
15096
|
title: PropTypes.string.isRequired,
|
|
15091
15097
|
panelTitle: PropTypes.string,
|
|
15098
|
+
panelDescription: PropTypes.string,
|
|
15092
15099
|
panelTitleComponent: PropTypes.oneOf(["h1", "h2", "h3", "h4", "div"]),
|
|
15093
15100
|
panelTitleShowStep: PropTypes.bool,
|
|
15094
15101
|
content: PropTypes.any.isRequired
|