aefis-core-ui 2.3.0-rc32 → 2.3.0-rc34
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 +5 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -4385,6 +4385,7 @@ const RenderCard = props => {
|
|
|
4385
4385
|
cardStyle: props.cardStyle || undefined,
|
|
4386
4386
|
containerStyle: props.containerStyle || undefined,
|
|
4387
4387
|
sx: props.sx || undefined,
|
|
4388
|
+
data: props.data || undefined,
|
|
4388
4389
|
children: /*#__PURE__*/jsxs(Fragment, {
|
|
4389
4390
|
children: [props.description && /*#__PURE__*/jsx(CardSection, {
|
|
4390
4391
|
sx: descriptionContainerStyle,
|
|
@@ -5590,7 +5591,7 @@ const ModalDialog = props => {
|
|
|
5590
5591
|
onClose: props.handleClose,
|
|
5591
5592
|
open: props.open,
|
|
5592
5593
|
TransitionComponent: props.transitionComponent
|
|
5593
|
-
}, a11yprops, sizeProps, {
|
|
5594
|
+
}, a11yprops, sizeProps, props.DialogProps, {
|
|
5594
5595
|
children: [props.size === "fullscreen" && /*#__PURE__*/jsx(FullScreenAppBar, _extends({
|
|
5595
5596
|
id: `modal-title-${id}`,
|
|
5596
5597
|
handleConfirm: handleConfirm
|
|
@@ -5658,7 +5659,9 @@ ModalDialog.propTypes = {
|
|
|
5658
5659
|
/** Props to apply to the dialog content area. */
|
|
5659
5660
|
dialogContentProps: PropTypes.any,
|
|
5660
5661
|
/** Component to apply to the dialog title. */
|
|
5661
|
-
titleComponent: PropTypes.oneOf(["h1", "h2", "h3", "div", "span"])
|
|
5662
|
+
titleComponent: PropTypes.oneOf(["h1", "h2", "h3", "div", "span"]),
|
|
5663
|
+
/** Override Dialog Props */
|
|
5664
|
+
DialogProps: PropTypes.any
|
|
5662
5665
|
};
|
|
5663
5666
|
|
|
5664
5667
|
const DisplayInFrame = props => {
|