@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.
@@ -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
- } & FullPageModalFooterProps;
7
+ };
9
8
  export declare const FullPageModal: React.FC<FullPageModalProps>;
@@ -1551,10 +1551,6 @@ video {
1551
1551
  min-width: 1.5rem;
1552
1552
  }
1553
1553
 
1554
- .object-bottom {
1555
- object-position: bottom;
1556
- }
1557
-
1558
1554
  .opacity-0 {
1559
1555
  opacity: 0;
1560
1556
  }
@@ -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), /*#__PURE__*/React__default.createElement(FullPageModalFooter, {
7672
- footerTrailingComponents: props.footerTrailingComponents
7673
- })));
7659
+ }, props.children)));
7674
7660
  };
7675
7661
 
7676
7662
  exports.AccordionList = AccordionList;