aefis-core-ui 2.6.0-rc21 → 2.6.0-rc22
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
|
@@ -28413,6 +28413,8 @@ const WizardPanel = props => {
|
|
|
28413
28413
|
style: {
|
|
28414
28414
|
minWidth: 100
|
|
28415
28415
|
},
|
|
28416
|
+
isLoading: props.hasLoadingOnComplete,
|
|
28417
|
+
loadingText: props.loadingText,
|
|
28416
28418
|
children: props.completeButtonText
|
|
28417
28419
|
})]
|
|
28418
28420
|
})
|
|
@@ -28427,7 +28429,8 @@ WizardPanel.defaultProps = {
|
|
|
28427
28429
|
completeButtonText: "Finish",
|
|
28428
28430
|
disableComplete: false,
|
|
28429
28431
|
completing: false,
|
|
28430
|
-
display: "drawer"
|
|
28432
|
+
display: "drawer",
|
|
28433
|
+
hasLoadingOnComplete: false
|
|
28431
28434
|
};
|
|
28432
28435
|
WizardPanel.propTypes = {
|
|
28433
28436
|
/** Where to display the panel, a dialog or drawer. */
|
|
@@ -28463,7 +28466,11 @@ WizardPanel.propTypes = {
|
|
|
28463
28466
|
/** Is the wizard completed? If true, then all the steps will be checked as completed. */
|
|
28464
28467
|
completed: PropTypes.bool,
|
|
28465
28468
|
/** Text to display on the completion button */
|
|
28466
|
-
completeButtonText: PropTypes.string
|
|
28469
|
+
completeButtonText: PropTypes.string,
|
|
28470
|
+
/** When button is in completed and disabled status show loading indicator.*/
|
|
28471
|
+
hasLoadingOnComplete: PropTypes.bool,
|
|
28472
|
+
/** When button is in completed and disabled status this shows different text.*/
|
|
28473
|
+
loadingText: PropTypes.string
|
|
28467
28474
|
};
|
|
28468
28475
|
|
|
28469
28476
|
const circleStyle = {
|