ba-js-common-header 0.0.7 → 0.0.10
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.
|
@@ -24605,7 +24605,9 @@ function Extranet() {
|
|
|
24605
24605
|
return transitions((styles, item) => item && /* @__PURE__ */ jsx(animated.div, {
|
|
24606
24606
|
className: "col-12 pt-lg-2 order-lg-1",
|
|
24607
24607
|
id: "hd-extranet",
|
|
24608
|
-
style: isMobileOrTablet ? styles
|
|
24608
|
+
style: isMobileOrTablet ? __spreadProps(__spreadValues({}, styles), {
|
|
24609
|
+
display: "block"
|
|
24610
|
+
}) : {},
|
|
24609
24611
|
children: /* @__PURE__ */ jsxs("a", {
|
|
24610
24612
|
ref,
|
|
24611
24613
|
className: "d-block ",
|
|
@@ -26073,7 +26075,9 @@ function PropertySelector(props) {
|
|
|
26073
26075
|
return transitions((styles, item) => item && /* @__PURE__ */ jsx(animated.div, {
|
|
26074
26076
|
className: "col-12 col-lg me-lg-auto px-0 order-lg-3",
|
|
26075
26077
|
id: "hd-property",
|
|
26076
|
-
style: isMobileOrTablet ? styles
|
|
26078
|
+
style: isMobileOrTablet ? __spreadProps(__spreadValues({}, styles), {
|
|
26079
|
+
display: "block"
|
|
26080
|
+
}) : {},
|
|
26077
26081
|
children: /* @__PURE__ */ jsx("ul", {
|
|
26078
26082
|
ref,
|
|
26079
26083
|
className: "row list-unstyled mx-0 mb-0 hd-nav-first-level",
|
|
@@ -26163,6 +26167,9 @@ function UserManager() {
|
|
|
26163
26167
|
const {
|
|
26164
26168
|
user
|
|
26165
26169
|
} = useSelector((state) => state.titleBar);
|
|
26170
|
+
const {
|
|
26171
|
+
username
|
|
26172
|
+
} = useSelector((state) => state.userInfo);
|
|
26166
26173
|
const dispatch = useDispatch();
|
|
26167
26174
|
if (!user)
|
|
26168
26175
|
return null;
|
|
@@ -26192,7 +26199,7 @@ function UserManager() {
|
|
|
26192
26199
|
})
|
|
26193
26200
|
}), /* @__PURE__ */ jsx("span", {
|
|
26194
26201
|
className: "ps-lg-2",
|
|
26195
|
-
children:
|
|
26202
|
+
children: username
|
|
26196
26203
|
}), /* @__PURE__ */ jsx("span", {
|
|
26197
26204
|
className: "d-none d-lg-inline ms-2",
|
|
26198
26205
|
children: /* @__PURE__ */ jsx(commonThin.ArrowAngleDown, {
|
|
@@ -26435,7 +26442,9 @@ function TitleBar(props) {
|
|
|
26435
26442
|
}), transitions((styles, item) => item && /* @__PURE__ */ jsx(animated.div, {
|
|
26436
26443
|
className: "col-12 col-lg-auto ps-lg-0 align-middle order-lg-5",
|
|
26437
26444
|
id: "hd-nav-container-top",
|
|
26438
|
-
style: isMobileOrTablet ? styles
|
|
26445
|
+
style: isMobileOrTablet ? __spreadProps(__spreadValues({}, styles), {
|
|
26446
|
+
display: "block"
|
|
26447
|
+
}) : {},
|
|
26439
26448
|
children: /* @__PURE__ */ jsx("nav", {
|
|
26440
26449
|
ref,
|
|
26441
26450
|
id: "hd-top-nav",
|
|
@@ -26732,7 +26741,9 @@ function MenuBar() {
|
|
|
26732
26741
|
return transitions((styles, item) => item && /* @__PURE__ */ jsx(animated.div, {
|
|
26733
26742
|
className: "container-xxl",
|
|
26734
26743
|
id: "hd-nav-container",
|
|
26735
|
-
style: isMobileOrTablet ? styles
|
|
26744
|
+
style: isMobileOrTablet ? __spreadProps(__spreadValues({}, styles), {
|
|
26745
|
+
display: "block"
|
|
26746
|
+
}) : {},
|
|
26736
26747
|
children: /* @__PURE__ */ jsx("nav", {
|
|
26737
26748
|
className: "hd-nav",
|
|
26738
26749
|
ref,
|