@awell-health/ui-library 0.1.106 → 0.1.107
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 +2 -5
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -6696,7 +6696,8 @@ html {
|
|
|
6696
6696
|
width: 100%;
|
|
6697
6697
|
z-index: 1;
|
|
6698
6698
|
background: #fff;
|
|
6699
|
-
transition:
|
|
6699
|
+
transition: opacity 0.3s ease-in-out;
|
|
6700
|
+
opacity: 1;
|
|
6700
6701
|
}
|
|
6701
6702
|
@media (min-width: 640px) {
|
|
6702
6703
|
.awell__hostedPageFooter_footer .awell__hostedPageFooter_scrollHint {
|
|
@@ -6705,14 +6706,10 @@ html {
|
|
|
6705
6706
|
}
|
|
6706
6707
|
}
|
|
6707
6708
|
.awell__hostedPageFooter_footer .awell__hostedPageFooter_scrollHint.awell__hostedPageFooter_visible {
|
|
6708
|
-
visibility: visible;
|
|
6709
6709
|
opacity: 1;
|
|
6710
|
-
transition-delay: 0s;
|
|
6711
6710
|
}
|
|
6712
6711
|
.awell__hostedPageFooter_footer .awell__hostedPageFooter_scrollHint.awell__hostedPageFooter_hidden {
|
|
6713
|
-
visibility: hidden;
|
|
6714
6712
|
opacity: 0;
|
|
6715
|
-
transition: visibility 0s linear 0.2s, opacity 0.2s linear;
|
|
6716
6713
|
}
|
|
6717
6714
|
@import 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap';
|
|
6718
6715
|
:root {
|
package/dist/index.js
CHANGED
|
@@ -48551,7 +48551,7 @@ var Kr=[{
|
|
|
48551
48551
|
if (scrollIndicatorRef.current) {
|
|
48552
48552
|
var _a = document.documentElement,scrollTop = _a.scrollTop,scrollHeight = _a.scrollHeight,clientHeight = _a.clientHeight;
|
|
48553
48553
|
var isAtBottom = scrollTop + clientHeight >= scrollHeight - 1;
|
|
48554
|
-
scrollIndicatorRef.current.
|
|
48554
|
+
scrollIndicatorRef.current.classList.toggle(classes$7.hidden, isAtBottom);
|
|
48555
48555
|
}
|
|
48556
48556
|
};
|
|
48557
48557
|
window.addEventListener('scroll', handleScroll);
|
|
@@ -48560,7 +48560,7 @@ var Kr=[{
|
|
|
48560
48560
|
var footerClass = fixPosition ?
|
|
48561
48561
|
"".concat(classes$7.footer, " ").concat(classes$7.fixed) :
|
|
48562
48562
|
classes$7.footer;
|
|
48563
|
-
return jsxRuntime.exports.jsxs("footer", __assign({ className: footerClass }, { children: [jsxRuntime.exports.jsx("div", __assign({ ref: scrollIndicatorRef, className: "".concat(classes$7.scrollHint, " ").concat(
|
|
48563
|
+
return jsxRuntime.exports.jsxs("footer", __assign({ className: footerClass }, { children: [showScrollHint && jsxRuntime.exports.jsx("div", __assign({ ref: scrollIndicatorRef, className: "".concat(classes$7.scrollHint, " ").concat(classes$7.visible), id: "awell__scroll_hint" }, { children: jsxRuntime.exports.jsx(ScrollIndicator, {}) })), children] }));
|
|
48564
48564
|
};
|
|
48565
48565
|
|
|
48566
48566
|
var classes$6 = {"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"};
|