@awell-health/ui-library 0.1.48 → 0.1.50

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.css CHANGED
@@ -7015,6 +7015,14 @@ html {
7015
7015
  display: flex;
7016
7016
  flex-direction: column;
7017
7017
  }
7018
+ .awell__hostedPageLayout_layout_container.awell__hostedPageLayout_withoutLogo {
7019
+ padding-top: var(--awell-spacing-4);
7020
+ }
7021
+ @media (min-width: 640px) {
7022
+ .awell__hostedPageLayout_layout_container.awell__hostedPageLayout_withoutLogo {
7023
+ padding-top: var(--awell-spacing-8);
7024
+ }
7025
+ }
7018
7026
  .awell__hostedPageLayout_layout_container.awell__hostedPageLayout_fullViewportHeight {
7019
7027
  height: 100%;
7020
7028
  overflow: hidden;
package/dist/index.js CHANGED
@@ -16209,7 +16209,14 @@ Check the top-level render call using <` + t + ">.");
16209
16209
  });
16210
16210
  var purifiedMessage = purify.exports.sanitize(isSlate ? serializeHtml(content) : content, {
16211
16211
  ADD_TAGS: ['iframe'],
16212
- ADD_ATTR: ['target', 'allow', 'allowfullscreen', 'frameborder', 'scrolling'] });
16212
+ ADD_ATTR: [
16213
+ 'target',
16214
+ 'allow',
16215
+ 'allowfullscreen',
16216
+ 'frameborder',
16217
+ 'scrolling'],
16218
+
16219
+ ALLOW_UNKNOWN_PROTOCOLS: true });
16213
16220
 
16214
16221
  return purifiedMessage;
16215
16222
  };
@@ -37115,7 +37122,7 @@ Check the top-level render call using <` + t + ">.");
37115
37122
 
37116
37123
  var classes$5 = {"container":"awell__checklist_container","awell_checklist":"awell__checklist_awell_checklist","title":"awell__checklist_title","checklist":"awell__checklist_checklist","checkboxListFormControl":"awell__checklist_checkboxListFormControl","button_wrapper":"awell__checklist_button_wrapper"};
37117
37124
 
37118
- var classes$4 = {"layout_container":"awell__hostedPageLayout_layout_container","fullViewportHeight":"awell__hostedPageLayout_fullViewportHeight","flexible":"awell__hostedPageLayout_flexible","main_content":"awell__hostedPageLayout_main_content"};
37125
+ var classes$4 = {"layout_container":"awell__hostedPageLayout_layout_container","withoutLogo":"awell__hostedPageLayout_withoutLogo","fullViewportHeight":"awell__hostedPageLayout_fullViewportHeight","flexible":"awell__hostedPageLayout_flexible","main_content":"awell__hostedPageLayout_main_content"};
37119
37126
 
37120
37127
  var Checklist = function (_a) {
37121
37128
  var title = _a.title,items = _a.items,onSubmit = _a.onSubmit,_b = _a.readOnly,readOnly = _b === void 0 ? false : _b,_c = _a.disabled,disabled = _c === void 0 ? false : _c,submitLabel = _a.submitLabel;
@@ -51392,7 +51399,7 @@ Check the top-level render call using <` + t + ">.");
51392
51399
  var HostedPageLayout = function (_a) {
51393
51400
  var children = _a.children,onCloseHostedPage = _a.onCloseHostedPage,logo = _a.logo,_b = _a.hideCloseButton,hideCloseButton = _b === void 0 ? false : _b;
51394
51401
  var layoutMode = useTheme().layoutMode;
51395
- return jsxRuntime.exports.jsxs("div", __assign({ className: "".concat(classes$4.layout_container, " ").concat(classes$4[layoutMode]) }, { children: [!hideCloseButton && jsxRuntime.exports.jsx(CloseButton, { onClose: onCloseHostedPage }), logo && jsxRuntime.exports.jsx("header", { children: jsxRuntime.exports.jsx(Navbar, { logo: logo }) }), children] }));
51402
+ return jsxRuntime.exports.jsxs("div", __assign({ className: "".concat(classes$4.layout_container, " ").concat(classes$4[layoutMode], " ").concat(logo ? '' : classes$4.withoutLogo) }, { children: [!hideCloseButton && jsxRuntime.exports.jsx(CloseButton, { onClose: onCloseHostedPage }), logo && jsxRuntime.exports.jsx("header", { children: jsxRuntime.exports.jsx(Navbar, { logo: logo }) }), children] }));
51396
51403
  };
51397
51404
 
51398
51405
  exports.AttachmentList = AttachmentList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awell-health/ui-library",
3
- "version": "0.1.48",
3
+ "version": "0.1.50",
4
4
  "private": false,
5
5
  "description": "UI components to integrate with Awell Health",
6
6
  "repository": {