@uxland/primary-shell 6.0.2 → 6.0.4
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.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/features/clinical-monitoring/component/styles.css +4 -3
- package/src/internal-plugins/activity-history/activity-history-item/list/UI/timeline/activity-history-timeline.ts +5 -1
package/dist/index.js
CHANGED
|
@@ -15451,7 +15451,11 @@ let ActivityHistoryTimeline = class extends h$m {
|
|
|
15451
15451
|
if (!oe) return;
|
|
15452
15452
|
const de = new Date(oe).getTime(), ce = Math.abs(de - te);
|
|
15453
15453
|
ce < X && (X = ce, J = ne);
|
|
15454
|
-
}), J !== -1 && this._virtualizer && this._virtualizer[virtualizerRef].element(J).scrollIntoView(
|
|
15454
|
+
}), J !== -1 && this._virtualizer && this._virtualizer[virtualizerRef].element(J).scrollIntoView({
|
|
15455
|
+
block: "nearest",
|
|
15456
|
+
inline: "nearest",
|
|
15457
|
+
behavior: "smooth"
|
|
15458
|
+
});
|
|
15455
15459
|
}
|
|
15456
15460
|
};
|
|
15457
15461
|
ActivityHistoryTimeline.styles = i$w`
|
|
@@ -16567,7 +16571,7 @@ const useGetUserInfo = (te) => {
|
|
|
16567
16571
|
disposeGetUserInfo(), request$2 = registerRequest(te, container$1)(GetUserInfo, GetUserInfoHandler), registerDep(GetUserInfoBackendAdapter);
|
|
16568
16572
|
}, disposeGetUserInfo = () => {
|
|
16569
16573
|
request$2 == null || request$2.dispose(), unregisterDep(GetUserInfoBackendAdapter);
|
|
16570
|
-
}, clinicalMonitoringId = "clinical-monitoring", styles$8 = ":host{min-height:1px;height:100%;width:100%}.wrapper{position:relative;min-height:1px;height:100%;display:flex;flex-direction:row}.wrapper #widgets-sidebar-region{width:25%;border-left:1px solid rgb(189,189,189)}.wrapper .content{flex:1;display:flex;flex-direction:column}.wrapper .content #header-widgets-region{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding:24px
|
|
16574
|
+
}, clinicalMonitoringId = "clinical-monitoring", styles$8 = ":host{min-height:1px;height:100%;width:100%}.wrapper{position:relative;min-height:1px;height:100%;display:flex;flex-direction:row}.wrapper #widgets-sidebar-region{width:25%;border-left:1px solid rgb(189,189,189);overflow:auto}.wrapper .content{flex:1;display:flex;flex-direction:column}.wrapper .content #header-widgets-region{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding:24px 24px 0}.wrapper .content #content-widgets-region{flex:1;min-height:1px;height:100%;padding:24px}@media (max-width: 1024px){:host{min-height:100vh}.wrapper{flex-direction:column}.wrapper #widgets-sidebar-region{max-width:100%;width:auto;border-left:none;padding-inline:40px;padding-bottom:24px;overflow:auto}.wrapper .content #header-widgets-region{grid-template-columns:1fr;gap:16px}.wrapper .content #content-widgets-region{height:70vh;flex:none}}", template$a = (te) => ke$1`
|
|
16571
16575
|
<div class="wrapper">
|
|
16572
16576
|
<div class="content">
|
|
16573
16577
|
<div id="header-widgets-region"></div>
|