@altinn/altinn-components 0.67.7 → 0.67.8
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/LayoutBase-BQ69GQ-K.js +19 -0
- package/dist/assets/GlobalHeader.css +1 -1
- package/dist/assets/LayoutBase.css +1 -1
- package/dist/components/GlobalHeader/GlobalHeader.js +36 -36
- package/dist/components/Layout/Layout.js +1 -1
- package/dist/components/Layout/LayoutBase.js +1 -1
- package/dist/components/Layout/index.js +1 -1
- package/dist/components/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/LayoutBase-CrlzKACr.js +0 -19
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import './assets/LayoutBase.css';const o = "_base_t27ic_1", i = "_bannerWrapperPinned_t27ic_12", c = {
|
|
3
|
+
base: o,
|
|
4
|
+
bannerWrapperPinned: i
|
|
5
|
+
}, p = ({ currentId: e, color: n, theme: s, bannerHeight: a, children: t }) => /* @__PURE__ */ r(
|
|
6
|
+
"div",
|
|
7
|
+
{
|
|
8
|
+
className: c.base,
|
|
9
|
+
"data-color": n,
|
|
10
|
+
"data-theme": s,
|
|
11
|
+
"data-current-id": e,
|
|
12
|
+
style: a ? { "--altinn-banner-height": `${a}px` } : void 0,
|
|
13
|
+
children: t
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
export {
|
|
17
|
+
p as L,
|
|
18
|
+
c as s
|
|
19
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._header_tji8q_1{z-index:1;background-color:#fff;width:100%}@media(max-width:1023px){._header_tji8q_1[data-current-id=account],._header_tji8q_1[data-current-id=menu],._header_tji8q_1[data-current-id=locale]{position:fixed;top:var(--altinn-banner-height, 0px);left:0;right:0}}._container_tji8q_18{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;padding:.625rem;width:100%;max-width:1512px;margin:0 auto}._backdrop_tji8q_30{display:none}._header_tji8q_1[data-current-id=menu],._header_tji8q_1[data-current-id=locale]{background-color:#fff}@media(min-width:1024px){._header_tji8q_1[data-current-id=menu] ._backdrop_tji8q_30,._header_tji8q_1[data-current-id=locale] ._backdrop_tji8q_30{display:block}}@media(max-width:1023px){._header_tji8q_1{gap:0}}._header_tji8q_1{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}._nav_tji8q_64{position:relative;display:flex;align-items:center;justify-content:end;column-gap:1rem;width:100%}._logo_tji8q_73{margin-right:auto}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._base_t27ic_1{position:relative;display:flex;flex-direction:column;min-height:100vh;background-color:var(--altinn-layout-background);--altinn-banner-height: 0px}@media(max-width:1023px){._bannerWrapperPinned_t27ic_12{position:fixed;top:0;left:0;right:0;z-index:2}}._base_t27ic_1[data-theme=default]{--altinn-layout-background: var(--ds-color-background-default)}._base_t27ic_1[data-theme=subtle]{--altinn-layout-background: var(--ds-color-background-tinted)}._base_t27ic_1[data-theme=neutral]{--altinn-layout-background: var(--ds-color-neutral-background-tinted)}._base_t27ic_1[data-theme=inbox]{--altinn-layout-background: var(--ds-color-background-tinted)}._base_t27ic_1[data-theme=inbox][data-color=person],._base_t27ic_1[data-theme=settings]{--altinn-layout-background: var(--ds-color-neutral-background-tinted)}
|
|
@@ -1,77 +1,77 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as n, jsxs as
|
|
2
|
+
import { jsx as n, jsxs as s, Fragment as O } from "react/jsx-runtime";
|
|
3
3
|
import { useState as b } from "react";
|
|
4
4
|
import { useIsDesktop as F } from "../../hooks/useIsDesktop.js";
|
|
5
5
|
import { AccountSelector as v } from "../AccountSelector/AccountSelector.js";
|
|
6
|
-
import { GlobalMenu as
|
|
6
|
+
import { GlobalMenu as j } from "../GlobalMenu/GlobalMenu.js";
|
|
7
7
|
import "../../index-p1eeF8LQ.js";
|
|
8
8
|
import "../../tooltip-Ct39-719.js";
|
|
9
9
|
import "../Typography/Link.js";
|
|
10
10
|
import "../Button/Button.js";
|
|
11
11
|
import "react-dom";
|
|
12
|
-
import { w as
|
|
13
|
-
import { GlobalMenuButton as
|
|
14
|
-
import { GlobalAccountButton as
|
|
12
|
+
import { w as C } from "../../ToolbarSearch-DyVcALSw.js";
|
|
13
|
+
import { GlobalMenuButton as D } from "./GlobalMenuButton.js";
|
|
14
|
+
import { GlobalAccountButton as M } from "./GlobalAccountButton.js";
|
|
15
15
|
import "../Snackbar/useSnackbar.js";
|
|
16
|
-
import { HeaderDrawer as
|
|
17
|
-
import { HeaderDropdown as
|
|
18
|
-
import { HeaderLogo as
|
|
19
|
-
import '../../assets/GlobalHeader.css';const
|
|
20
|
-
header:
|
|
21
|
-
container:
|
|
22
|
-
nav:
|
|
23
|
-
logo:
|
|
24
|
-
},
|
|
16
|
+
import { HeaderDrawer as N } from "./HeaderDrawer.js";
|
|
17
|
+
import { HeaderDropdown as E } from "./HeaderDropdown.js";
|
|
18
|
+
import { HeaderLogo as I } from "./HeaderLogo.js";
|
|
19
|
+
import '../../assets/GlobalHeader.css';const k = "_header_tji8q_1", q = "_container_tji8q_18", w = "_nav_tji8q_64", y = "_logo_tji8q_73", t = {
|
|
20
|
+
header: k,
|
|
21
|
+
container: q,
|
|
22
|
+
nav: w,
|
|
23
|
+
logo: y
|
|
24
|
+
}, B = 5, $ = ({
|
|
25
25
|
globalMenu: r,
|
|
26
26
|
desktopMenu: d,
|
|
27
|
-
mobileMenu:
|
|
28
|
-
locale:
|
|
27
|
+
mobileMenu: m,
|
|
28
|
+
locale: p,
|
|
29
29
|
accountSelector: e,
|
|
30
30
|
logo: u = {},
|
|
31
31
|
badge: f,
|
|
32
32
|
onLoginClick: g
|
|
33
33
|
}) => {
|
|
34
|
-
const { currentId: o, toggleId: l, closeAll:
|
|
34
|
+
const { currentId: o, toggleId: l, closeAll: a } = C(), h = () => {
|
|
35
35
|
l("account");
|
|
36
36
|
}, _ = () => {
|
|
37
37
|
l("menu");
|
|
38
|
-
},
|
|
39
|
-
return /* @__PURE__ */ n("header", { className:
|
|
40
|
-
/* @__PURE__ */ n(
|
|
41
|
-
e && /* @__PURE__ */
|
|
38
|
+
}, i = o === "account" || e?.forceOpenFullScreen || !1, [c, x] = b(!1), A = F();
|
|
39
|
+
return /* @__PURE__ */ n("header", { className: t.header, "data-current-id": o, children: /* @__PURE__ */ n("div", { className: t.container, children: /* @__PURE__ */ s("nav", { className: t.nav, "aria-label": "hovednavigasjon", children: [
|
|
40
|
+
/* @__PURE__ */ n(I, { ...u, badge: f, className: t.logo }),
|
|
41
|
+
e && /* @__PURE__ */ s(O, { children: [
|
|
42
42
|
/* @__PURE__ */ n(
|
|
43
|
-
|
|
43
|
+
M,
|
|
44
44
|
{
|
|
45
45
|
currentAccount: e.accountMenu?.currentAccount,
|
|
46
46
|
onClick: e.accountMenu?.currentAccount ? h : g,
|
|
47
|
-
expanded:
|
|
47
|
+
expanded: i,
|
|
48
48
|
loading: e.loading,
|
|
49
49
|
disabled: e.forceOpenFullScreen
|
|
50
50
|
}
|
|
51
51
|
),
|
|
52
52
|
/* @__PURE__ */ n(
|
|
53
|
-
|
|
53
|
+
N,
|
|
54
54
|
{
|
|
55
55
|
id: "header-account",
|
|
56
|
-
open:
|
|
57
|
-
onClose:
|
|
56
|
+
open: i,
|
|
57
|
+
onClose: a,
|
|
58
58
|
closedBy: e?.forceOpenFullScreen ? "none" : "any",
|
|
59
59
|
ariaLabelledby: "account-selector-heading",
|
|
60
|
-
expanded: e?.forceOpenFullScreen ||
|
|
61
|
-
onToggle: () => x(!
|
|
62
|
-
expandable: (e.accountCount ?? e.accountMenu.items.length) >
|
|
60
|
+
expanded: e?.forceOpenFullScreen || c,
|
|
61
|
+
onToggle: () => x(!c),
|
|
62
|
+
expandable: (e.accountCount ?? e.accountMenu.items.length) > B,
|
|
63
63
|
children: /* @__PURE__ */ n(v, { ...e, forceOpenFullScreen: e.forceOpenFullScreen })
|
|
64
64
|
}
|
|
65
65
|
)
|
|
66
66
|
] }),
|
|
67
67
|
/* @__PURE__ */ n(
|
|
68
|
-
|
|
68
|
+
E,
|
|
69
69
|
{
|
|
70
70
|
id: "header-menu",
|
|
71
71
|
open: o === "menu",
|
|
72
|
-
onClose:
|
|
72
|
+
onClose: a,
|
|
73
73
|
trigger: /* @__PURE__ */ n(
|
|
74
|
-
|
|
74
|
+
D,
|
|
75
75
|
{
|
|
76
76
|
onClick: _,
|
|
77
77
|
expanded: o === "menu",
|
|
@@ -80,12 +80,12 @@ import '../../assets/GlobalHeader.css';const w = "_header_1apfp_1", y = "_contai
|
|
|
80
80
|
}
|
|
81
81
|
),
|
|
82
82
|
children: /* @__PURE__ */ n(
|
|
83
|
-
|
|
83
|
+
j,
|
|
84
84
|
{
|
|
85
85
|
...r,
|
|
86
|
-
menu: A ? d || r?.menu :
|
|
87
|
-
onClose:
|
|
88
|
-
localeSwitcher:
|
|
86
|
+
menu: A ? d || r?.menu : m || r?.menu,
|
|
87
|
+
onClose: a,
|
|
88
|
+
localeSwitcher: p,
|
|
89
89
|
isOpen: o === "menu"
|
|
90
90
|
}
|
|
91
91
|
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as i, jsx as t, Fragment as v } from "react/jsx-runtime";
|
|
3
3
|
import { useRef as L, useState as B, useEffect as x } from "react";
|
|
4
|
-
import { L as R, s as S } from "../../LayoutBase-
|
|
4
|
+
import { L as R, s as S } from "../../LayoutBase-BQ69GQ-K.js";
|
|
5
5
|
import { LayoutGrid as H } from "./LayoutGrid.js";
|
|
6
6
|
import { LayoutBody as z } from "./LayoutBody.js";
|
|
7
7
|
import { LayoutContent as j } from "./LayoutContent.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { L as t } from "../../LayoutBase-
|
|
1
|
+
import { L as t } from "../../LayoutBase-BQ69GQ-K.js";
|
|
2
2
|
import { LayoutGrid as e } from "./LayoutGrid.js";
|
|
3
3
|
import { LayoutBody as L } from "./LayoutBody.js";
|
|
4
4
|
import { LayoutContent as m } from "./LayoutContent.js";
|
package/dist/components/index.js
CHANGED
|
@@ -69,7 +69,7 @@ import { ItemControls as pe } from "./Item/ItemControls.js";
|
|
|
69
69
|
import { ItemSelect as xe } from "./Item/ItemSelect.js";
|
|
70
70
|
import { ItemBase as se } from "./Item/ItemBase.js";
|
|
71
71
|
import { ItemLink as le } from "./Item/ItemLink.js";
|
|
72
|
-
import { L as ue } from "../LayoutBase-
|
|
72
|
+
import { L as ue } from "../LayoutBase-BQ69GQ-K.js";
|
|
73
73
|
import { LayoutGrid as ge } from "./Layout/LayoutGrid.js";
|
|
74
74
|
import { LayoutBody as Le } from "./Layout/LayoutBody.js";
|
|
75
75
|
import { LayoutContent as Ie } from "./Layout/LayoutContent.js";
|
package/dist/index.js
CHANGED
|
@@ -69,7 +69,7 @@ import { ItemControls as pe } from "./components/Item/ItemControls.js";
|
|
|
69
69
|
import { ItemSelect as ie } from "./components/Item/ItemSelect.js";
|
|
70
70
|
import { ItemBase as se } from "./components/Item/ItemBase.js";
|
|
71
71
|
import { ItemLink as ce } from "./components/Item/ItemLink.js";
|
|
72
|
-
import { L as ue } from "./LayoutBase-
|
|
72
|
+
import { L as ue } from "./LayoutBase-BQ69GQ-K.js";
|
|
73
73
|
import { LayoutGrid as ge } from "./components/Layout/LayoutGrid.js";
|
|
74
74
|
import { LayoutBody as Le } from "./components/Layout/LayoutBody.js";
|
|
75
75
|
import { LayoutContent as Ie } from "./components/Layout/LayoutContent.js";
|
package/package.json
CHANGED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import './assets/LayoutBase.css';const o = "_base_1084c_1", c = "_bannerWrapperPinned_1084c_14", d = {
|
|
3
|
-
base: o,
|
|
4
|
-
bannerWrapperPinned: c
|
|
5
|
-
}, i = ({ currentId: e, color: n, theme: s, bannerHeight: a, children: r }) => /* @__PURE__ */ t(
|
|
6
|
-
"div",
|
|
7
|
-
{
|
|
8
|
-
className: d.base,
|
|
9
|
-
"data-color": n,
|
|
10
|
-
"data-theme": s,
|
|
11
|
-
"data-current-id": e,
|
|
12
|
-
style: a ? { "--altinn-banner-height": `${a}px` } : void 0,
|
|
13
|
-
children: r
|
|
14
|
-
}
|
|
15
|
-
);
|
|
16
|
-
export {
|
|
17
|
-
i as L,
|
|
18
|
-
d as s
|
|
19
|
-
};
|