@luscii-healthtech/web-ui 2.25.0 → 2.26.0
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/components/Modal/FullPageModal.d.ts +1 -2
- package/dist/web-ui-tailwind.css +0 -4
- package/dist/web-ui.cjs.development.js +1 -15
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +1 -15
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Modal/FullPageModalFooter.d.ts +0 -10
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { FullPageModalFooterProps } from "./FullPageModalFooter";
|
|
3
2
|
export declare type FullPageModalProps = {
|
|
4
3
|
children: React.ReactNode;
|
|
5
4
|
isOpen?: boolean;
|
|
6
5
|
title: string;
|
|
7
6
|
onCloseClick: (event: React.MouseEvent<Element, MouseEvent> | React.KeyboardEvent<Element>) => void;
|
|
8
|
-
}
|
|
7
|
+
};
|
|
9
8
|
export declare const FullPageModal: React.FC<FullPageModalProps>;
|
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -7642,18 +7642,6 @@ var FullPageModalHeader = function FullPageModalHeader(props) {
|
|
|
7642
7642
|
}));
|
|
7643
7643
|
};
|
|
7644
7644
|
|
|
7645
|
-
var FullPageModalFooter = function FullPageModalFooter(props) {
|
|
7646
|
-
return /*#__PURE__*/React__default.createElement("div", {
|
|
7647
|
-
className: "flex flex-row px-6 py-4 space-x-2 items-center bg-slate-50 border-t border-slate-300 rounded-b-lg justify-end object-bottom"
|
|
7648
|
-
}, /*#__PURE__*/React__default.createElement("div", {
|
|
7649
|
-
className: "flex flex-row space-x-2"
|
|
7650
|
-
}, /*#__PURE__*/React__default.createElement(SecondaryButton, _extends({
|
|
7651
|
-
"data-test-id": "modal-footer-trailing-secondary-button"
|
|
7652
|
-
}, props.footerTrailingComponents.secondaryButtonProps)), /*#__PURE__*/React__default.createElement(PrimaryButton, _extends({
|
|
7653
|
-
"data-test-id": "modal-footer-trailing-primary-button"
|
|
7654
|
-
}, props.footerTrailingComponents.primaryButtonProps))));
|
|
7655
|
-
};
|
|
7656
|
-
|
|
7657
7645
|
var FullPageModal = function FullPageModal(props) {
|
|
7658
7646
|
return /*#__PURE__*/React__default.createElement(ReactModal, {
|
|
7659
7647
|
isOpen: props.isOpen,
|
|
@@ -7668,9 +7656,7 @@ var FullPageModal = function FullPageModal(props) {
|
|
|
7668
7656
|
title: props.title
|
|
7669
7657
|
}), /*#__PURE__*/React__default.createElement("div", {
|
|
7670
7658
|
className: "h-full bg-slate-100 flex flex-row overflow-hidden"
|
|
7671
|
-
}, props.children)
|
|
7672
|
-
footerTrailingComponents: props.footerTrailingComponents
|
|
7673
|
-
})));
|
|
7659
|
+
}, props.children)));
|
|
7674
7660
|
};
|
|
7675
7661
|
|
|
7676
7662
|
exports.AccordionList = AccordionList;
|