@visma-swno/vsn-navigation 1.4.0-beta.12 → 1.4.0-beta.14
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.
|
@@ -1514,6 +1514,7 @@ var kt = "en", At = [
|
|
|
1514
1514
|
s352719d86112de9a: "Hjælp",
|
|
1515
1515
|
s387a4a41718122cb: _`${0} resultater`,
|
|
1516
1516
|
s3fb7db4771812f0c: "Hvis problemet fortsætter, genindlæs siden eller kontakt support.",
|
|
1517
|
+
s442010a1a0adb81d: "Vis skjulte brødkrummer",
|
|
1517
1518
|
s457d59d649765619: "Gå til hovedindhold",
|
|
1518
1519
|
s4b0c6b66b4efd7d8: "Vælg en tjeneste",
|
|
1519
1520
|
s58a1dace5a9acc5b: _`Tjenestemenu, ${0}`,
|
|
@@ -1551,6 +1552,7 @@ var kt = "en", At = [
|
|
|
1551
1552
|
s352719d86112de9a: "Ohje",
|
|
1552
1553
|
s387a4a41718122cb: _`${0} tulosta`,
|
|
1553
1554
|
s3fb7db4771812f0c: "Jos ongelma jatkuu, lataa sivu uudelleen tai ota yhteyttä tukeen.",
|
|
1555
|
+
s442010a1a0adb81d: "Näytä piilotetut murupolun kohteet",
|
|
1554
1556
|
s457d59d649765619: "Siirry pääsisältöön",
|
|
1555
1557
|
s4b0c6b66b4efd7d8: "Valitse palvelu",
|
|
1556
1558
|
s58a1dace5a9acc5b: _`Palveluvalikko, ${0}`,
|
|
@@ -1588,6 +1590,7 @@ var kt = "en", At = [
|
|
|
1588
1590
|
s352719d86112de9a: "Hulp",
|
|
1589
1591
|
s387a4a41718122cb: _`${0} resultaten`,
|
|
1590
1592
|
s3fb7db4771812f0c: "Als het probleem aanhoudt, laad de pagina opnieuw of neem contact op met ondersteuning.",
|
|
1593
|
+
s442010a1a0adb81d: "Toon verborgen broodkruimels",
|
|
1591
1594
|
s457d59d649765619: "Ga naar hoofdinhoud",
|
|
1592
1595
|
s4b0c6b66b4efd7d8: "Kies een service",
|
|
1593
1596
|
s58a1dace5a9acc5b: _`Servicemenu, ${0}`,
|
|
@@ -1625,6 +1628,7 @@ var kt = "en", At = [
|
|
|
1625
1628
|
s352719d86112de9a: "Hjelp",
|
|
1626
1629
|
s387a4a41718122cb: _`${0} resultater`,
|
|
1627
1630
|
s3fb7db4771812f0c: "Hvis problemet vedvarer, last inn siden på nytt eller kontakt støtte.",
|
|
1631
|
+
s442010a1a0adb81d: "Vis skjulte brødsmuleelementer",
|
|
1628
1632
|
s457d59d649765619: "Hopp til hovedinnhold",
|
|
1629
1633
|
s4b0c6b66b4efd7d8: "Velg en tjeneste",
|
|
1630
1634
|
s58a1dace5a9acc5b: _`Tjenestemeny, ${0}`,
|
|
@@ -1662,6 +1666,7 @@ var kt = "en", At = [
|
|
|
1662
1666
|
s352719d86112de9a: "Hjälp",
|
|
1663
1667
|
s387a4a41718122cb: _`${0} resultat`,
|
|
1664
1668
|
s3fb7db4771812f0c: "Om problemet kvarstår, ladda om sidan eller kontakta support.",
|
|
1669
|
+
s442010a1a0adb81d: "Visa dolda brödsmulor",
|
|
1665
1670
|
s457d59d649765619: "Hoppa till huvudinnehåll",
|
|
1666
1671
|
s4b0c6b66b4efd7d8: "Välj en tjänst",
|
|
1667
1672
|
s58a1dace5a9acc5b: _`Tjänstemeny, ${0}`,
|
|
@@ -2566,7 +2571,7 @@ var J = class extends e {
|
|
|
2566
2571
|
if (this._displayMode !== "overflow") return;
|
|
2567
2572
|
let e = this.shadowRoot?.querySelector(".ga-breadcrumb");
|
|
2568
2573
|
if (!e) return;
|
|
2569
|
-
let t = Math.max(0, this._breadcrumbPath.length - 1);
|
|
2574
|
+
let t = this.tree?.pageTitle ? this._breadcrumbPath.length : Math.max(0, this._breadcrumbPath.length - 1);
|
|
2570
2575
|
for (; e.scrollWidth > e.clientWidth + 1 && this._overflowCount < t;) this._overflowCount++, await this.updateComplete;
|
|
2571
2576
|
}
|
|
2572
2577
|
async _tryExpandOverflow() {
|
|
@@ -2791,44 +2796,46 @@ var J = class extends e {
|
|
|
2791
2796
|
let e = this._breadcrumbPath, t = this.tree?.pageTitle;
|
|
2792
2797
|
return n`${this._renderModules()}${e.map((n, r) => r === e.length - 1 ? this._renderLastItem(n, r, t) : this._renderBreadcrumbItem(n, r))}`;
|
|
2793
2798
|
}
|
|
2799
|
+
_renderOverflowDropdown(e) {
|
|
2800
|
+
return n`
|
|
2801
|
+
<div class="ga-breadcrumb-item ga-breadcrumb-item--overflow">
|
|
2802
|
+
<button
|
|
2803
|
+
id="vsn-bc-overflow-trigger"
|
|
2804
|
+
class="ga-breadcrumb-item__trigger"
|
|
2805
|
+
type="button"
|
|
2806
|
+
aria-label=${v("Show hidden breadcrumb items")}
|
|
2807
|
+
aria-expanded=${this._openPopoverId === "vsn-bc-overflow-popover"}
|
|
2808
|
+
aria-haspopup="menu"
|
|
2809
|
+
popovertarget="vsn-bc-overflow-popover"
|
|
2810
|
+
>
|
|
2811
|
+
<span class="ga-breadcrumb-item__label" aria-hidden="true">...</span>
|
|
2812
|
+
</button>
|
|
2813
|
+
<div
|
|
2814
|
+
id="vsn-bc-overflow-popover"
|
|
2815
|
+
class="ga-breadcrumb-item__menu"
|
|
2816
|
+
popover="auto"
|
|
2817
|
+
@beforetoggle=${(e) => this._handlePopoverBeforeToggle("vsn-bc-overflow-trigger", e)}
|
|
2818
|
+
@toggle=${(e) => this._handlePopoverToggle("vsn-bc-overflow-popover", e)}
|
|
2819
|
+
@vsn-breadcrumb-menu-close=${() => this._handleMenuClose("vsn-bc-overflow-trigger", "vsn-bc-overflow-popover")}
|
|
2820
|
+
>
|
|
2821
|
+
<vsn-breadcrumb-menu
|
|
2822
|
+
.treeList=${e}
|
|
2823
|
+
@vsn-breadcrumb-menu-leaf-select=${(e) => this._handleLeafSelect(e, "vsn-bc-overflow-popover")}
|
|
2824
|
+
></vsn-breadcrumb-menu>
|
|
2825
|
+
</div>
|
|
2826
|
+
<span class="ga-breadcrumb-item__separator" aria-hidden="true">/</span>
|
|
2827
|
+
</div>`;
|
|
2828
|
+
}
|
|
2794
2829
|
_renderOverflowBreadcrumbs() {
|
|
2795
2830
|
let e = this._breadcrumbPath, t = this.tree?.pageTitle;
|
|
2796
2831
|
if (e.length === 0) return n`${this._renderModules()}`;
|
|
2797
2832
|
let r = e[e.length - 1];
|
|
2798
|
-
if (e.length === 1) return n`${this._renderModules()}${this._renderLastItem(r, 0, t)}`;
|
|
2799
|
-
let i = [e[0]], a = e.slice(this._overflowCount, e.length - 1);
|
|
2833
|
+
if (e.length === 1) return t && this._overflowCount >= e.length ? n`${this._renderOverflowDropdown([r])}${this._renderPageTitle(t)}` : n`${this._renderModules()}${this._renderLastItem(r, 0, t)}`;
|
|
2834
|
+
let i = [e[0]], a = e.slice(this._overflowCount, e.length - 1), o = !!t && this._overflowCount >= e.length;
|
|
2800
2835
|
return n`
|
|
2801
|
-
${this._overflowCount === 0 ? this._renderModules() :
|
|
2802
|
-
${this._overflowCount > 0 ? n`
|
|
2803
|
-
<div class="ga-breadcrumb-item ga-breadcrumb-item--overflow">
|
|
2804
|
-
<button
|
|
2805
|
-
id="vsn-bc-overflow-trigger"
|
|
2806
|
-
class="ga-breadcrumb-item__trigger"
|
|
2807
|
-
type="button"
|
|
2808
|
-
aria-expanded=${this._openPopoverId === "vsn-bc-overflow-popover"}
|
|
2809
|
-
aria-haspopup="menu"
|
|
2810
|
-
popovertarget="vsn-bc-overflow-popover"
|
|
2811
|
-
>
|
|
2812
|
-
<span class="ga-breadcrumb-item__label">...</span>
|
|
2813
|
-
</button>
|
|
2814
|
-
<div
|
|
2815
|
-
id="vsn-bc-overflow-popover"
|
|
2816
|
-
class="ga-breadcrumb-item__menu"
|
|
2817
|
-
popover="auto"
|
|
2818
|
-
@beforetoggle=${(e) => this._handlePopoverBeforeToggle("vsn-bc-overflow-trigger", e)}
|
|
2819
|
-
@toggle=${(e) => this._handlePopoverToggle("vsn-bc-overflow-popover", e)}
|
|
2820
|
-
@vsn-breadcrumb-menu-close=${() => this._handleMenuClose("vsn-bc-overflow-trigger", "vsn-bc-overflow-popover")}
|
|
2821
|
-
>
|
|
2822
|
-
<vsn-breadcrumb-menu
|
|
2823
|
-
.treeList=${i}
|
|
2824
|
-
@vsn-breadcrumb-menu-leaf-select=${(e) => this._handleLeafSelect(e, "vsn-bc-overflow-popover")}
|
|
2825
|
-
></vsn-breadcrumb-menu>
|
|
2826
|
-
</div>
|
|
2827
|
-
<span class="ga-breadcrumb-item__separator" aria-hidden="true">/</span>
|
|
2828
|
-
</div>
|
|
2829
|
-
` : ""}
|
|
2836
|
+
${this._overflowCount === 0 ? this._renderModules() : this._renderOverflowDropdown(i)}
|
|
2830
2837
|
${a.map((e, t) => this._renderBreadcrumbItem(e, this._overflowCount + t))}
|
|
2831
|
-
${this._renderLastItem(r, e.length - 1, t)}`;
|
|
2838
|
+
${o ? this._renderPageTitle(t) : this._renderLastItem(r, e.length - 1, t)}`;
|
|
2832
2839
|
}
|
|
2833
2840
|
_renderMobileBreadcrumbs() {
|
|
2834
2841
|
let e = this._breadcrumbPath;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"components/controllers/focus-trapping-controller.js","declarations":[{"kind":"class","description":"","name":"FocusTrappingController","members":[{"kind":"field","name":"_host","type":{"text":"LitElement"},"privacy":"private","default":"host"},{"kind":"field","name":"_rootElement","type":{"text":"HTMLElement | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_appliesCallback","type":{"text":"() => boolean"},"privacy":"private","default":"appliesCallback"},{"kind":"field","name":"_rootSelector","type":{"text":"string | undefined"},"privacy":"private","default":"rootSelector"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostDisconnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostUpdated","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onKeyDown","privacy":"private"}]}],"exports":[{"kind":"js","name":"FocusTrappingController","declaration":{"name":"FocusTrappingController","module":"components/controllers/focus-trapping-controller.js"}}]},{"kind":"javascript-module","path":"components/controllers/outside-pointer-controller.js","declarations":[{"kind":"class","description":"Fires `callback` when a document-level `pointerdown` lands OUTSIDE all of\n`insideSelectors`. Use for popovers/dropdowns where clicks anywhere on the\npage should dismiss the popover.\n\nContrast with OutsideClickController which listens on the host element\nitself; suited only when the host fills the dismissable area (e.g. an\noverlay with `position: absolute; inset: 0`).","name":"OutsidePointerController","members":[{"kind":"field","name":"_host","type":{"text":"LitElement"},"privacy":"private","default":"host"},{"kind":"field","name":"_insideSelectors","type":{"text":"readonly string[]"},"privacy":"private","default":"insideSelectors"},{"kind":"field","name":"_callback","type":{"text":"() => void"},"privacy":"private","default":"callback"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostDisconnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onPointerDown","privacy":"private"}]}],"exports":[{"kind":"js","name":"OutsidePointerController","declaration":{"name":"OutsidePointerController","module":"components/controllers/outside-pointer-controller.js"}}]},{"kind":"javascript-module","path":"components/vsn-card.js","declarations":[{"kind":"class","description":"","name":"VSNCard","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-card","customElement":true}],"exports":[{"kind":"js","name":"VSNCard","declaration":{"name":"VSNCard","module":"components/vsn-card.js"}},{"kind":"custom-element-definition","name":"vsn-card","declaration":{"name":"VSNCard","module":"components/vsn-card.js"}}]},{"kind":"javascript-module","path":"components/vsn-navigation.js","declarations":[{"kind":"class","description":"","name":"VSNNavigation","members":[{"kind":"field","name":"lang","type":{"text":"LanguageCode"},"default":"'en'","description":"Language to use for the component's labels (Search, Log out, etc)","attribute":"lang"},{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"},"description":"Configuration for the navigation menu (pages in current module)"},{"kind":"field","name":"modules","type":{"text":"AppModules | undefined"},"description":"Configuration for the module switcher"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"},"description":"Configuration related to authenticated user"},{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"description":"Link to landing page","attribute":"landing-page-url"},{"kind":"field","name":"showHelp","type":{"text":"boolean"},"default":"false","description":"Show help icon in the top bar","attribute":"show-help"},{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","attribute":"help-url"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null","description":"Configuration for the feedback component"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","description":"Keep the module switcher permanently open (non-closable). Default false.","attribute":"module-switcher-always-open"},{"kind":"field","name":"showNotification","type":{"text":"boolean"},"default":"false","description":"Show notification icon in the top bar","attribute":"show-notification"},{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","description":"Notification icon shows active state","attribute":"notification-active"},{"kind":"field","name":"open","type":{"text":"boolean"},"default":"false","description":"When true, the side bar is opened","attribute":"open","reflects":true},{"kind":"field","name":"_resolvedModules","type":{"text":"ModuleItem[]"},"privacy":"private","default":"[]"},{"kind":"field","name":"_modulesLoading","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_modulesLoadToken","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_restoreFocusToToggle","type":{"text":"boolean"},"privacy":"private","default":"false","description":"Set at close time: whether focus was inside the side-bar. Gates the focus\nrestore so we don't steal focus when the user closed the side-bar by\nclicking a focusable element outside (e.g. a top-bar button)."},{"kind":"method","name":"_resolveModules","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_sidebarTree","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"field","name":"_topBarTree","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"field","name":"_onTopBarMenuItemChanged","privacy":"private"},{"kind":"field","name":"_onSideBarMenuItemChanged","privacy":"private"},{"kind":"field","name":"_resolvedLang","type":{"text":"string"},"privacy":"private","readonly":true},{"kind":"method","name":"_onToggleSideBar","privacy":"private"},{"kind":"method","name":"_openAndFocusSearch","privacy":"private","return":{"type":{"text":"void"}},"description":"Open the side-bar and, once rendered, focus the search field (if enabled).\nShared by the hamburger toggle and the keyboard shortcut."},{"kind":"method","name":"_closeSideBar","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onShortcut","privacy":"private","description":"Toggles the side-bar: opens and focuses search when closed, closes when open.\nShortcut: Cmd+O on Mac (Ctrl+O also accepted as a Safari fallback); Ctrl+O on all other platforms."},{"kind":"field","name":"_onEscape","privacy":"private"},{"kind":"method","name":"_onTopBarClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]},{"kind":"method","name":"_onSlotContentClick","privacy":"private","return":{"type":{"text":"void"}}}],"attributes":[{"name":"lang","type":{"text":"LanguageCode"},"default":"'en'","description":"Language to use for the component's labels (Search, Log out, etc)","fieldName":"lang"},{"name":"landing-page-url","type":{"text":"string | undefined"},"description":"Link to landing page","fieldName":"landingPageUrl"},{"name":"show-help","type":{"text":"boolean"},"default":"false","description":"Show help icon in the top bar","fieldName":"showHelp"},{"name":"help-url","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","fieldName":"helpUrl"},{"name":"module-switcher-always-open","type":{"text":"boolean"},"default":"false","description":"Keep the module switcher permanently open (non-closable). Default false.","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"show-notification","type":{"text":"boolean"},"default":"false","description":"Show notification icon in the top bar","fieldName":"showNotification"},{"name":"notification-active","type":{"text":"boolean"},"default":"false","description":"Notification icon shows active state","fieldName":"notificationActive"},{"name":"open","type":{"text":"boolean"},"default":"false","description":"When true, the side bar is opened","fieldName":"open"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-navigation","customElement":true}],"exports":[{"kind":"js","name":"VSNSkipToMain","declaration":{"name":"VSNSkipToMain","module":"./vsn-skip-to-main.js"}},{"kind":"js","name":"TreeItem","declaration":{"name":"TreeItem","module":"../shared/types/index.js"}},{"kind":"js","name":"TreeLeaf","declaration":{"name":"TreeLeaf","module":"../shared/types/index.js"}},{"kind":"js","name":"ItemChangedEventDetail","declaration":{"name":"ItemChangedEventDetail","module":"../shared/types/index.js"}},{"kind":"js","name":"TreeParent","declaration":{"name":"TreeParent","module":"../shared/types/index.js"}},{"kind":"js","name":"ModuleItem","declaration":{"name":"ModuleItem","module":"../shared/types/index.js"}},{"kind":"js","name":"AppModules","declaration":{"name":"AppModules","module":"../shared/types/index.js"}},{"kind":"js","name":"VsnAuth","declaration":{"name":"VsnAuth","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchConfig","declaration":{"name":"SearchConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchDataSetConfig","declaration":{"name":"SearchDataSetConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchQuery","declaration":{"name":"SearchQuery","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchResult","declaration":{"name":"SearchResult","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchResultItem","declaration":{"name":"SearchResultItem","module":"../shared/types/index.js"}},{"kind":"js","name":"NavigationMenu","declaration":{"name":"NavigationMenu","module":"../shared/types/index.js"}},{"kind":"js","name":"FeedbackConfig","declaration":{"name":"FeedbackConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"LanguageCode","declaration":{"name":"LanguageCode","module":"../shared/types/index.js"}},{"kind":"js","name":"VsnNavigation","declaration":{"name":"VsnNavigation","module":"../shared/types/index.js"}},{"kind":"js","name":"ButtonClickedEvent","declaration":{"name":"ButtonClickedEvent","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchError","declaration":{"name":"SearchError","module":"../shared/types/index.js"}},{"kind":"js","name":"isTreeLeaf","declaration":{"name":"isTreeLeaf","module":"../shared/types/index.js"}},{"kind":"js","name":"isTreeParent","declaration":{"name":"isTreeParent","module":"../shared/types/index.js"}},{"kind":"js","name":"VSNNavigation","declaration":{"name":"VSNNavigation","module":"components/vsn-navigation.js"}},{"kind":"custom-element-definition","name":"vsn-navigation","declaration":{"name":"VSNNavigation","module":"components/vsn-navigation.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/nav-footer.keyboard.js","declarations":[{"kind":"class","description":"","name":"NavFooterKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"NavFooterHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"NavFooterKeyboardController","declaration":{"name":"NavFooterKeyboardController","module":"components/vsn-side-bar/nav-footer.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-error-state/vsn-error-state.css.js","declarations":[{"kind":"variable","name":"errorStateStyles","default":"css` .vsn-error-state { display: flex; flex-direction: column; align-items: flex-start; padding: calc(1.5rem * var(--ga-base-scaling-factor, 1)) calc(1rem * var(--ga-base-scaling-factor, 1)); gap: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__icon { display: inline-flex; color: var(--ga-color-icon-error); margin-bottom: calc(0.5rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__title { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 600; margin-bottom: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__message, .vsn-error-state__hint { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; } .vsn-error-state__support { margin-top: calc(1.5rem * var(--ga-base-scaling-factor, 1)); font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-on-disabled); } `"}],"exports":[{"kind":"js","name":"errorStateStyles","declaration":{"name":"errorStateStyles","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js","declarations":[{"kind":"class","description":"","name":"VsnErrorState","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-error-state","customElement":true}],"exports":[{"kind":"js","name":"VsnErrorState","declaration":{"name":"VsnErrorState","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js"}},{"kind":"custom-element-definition","name":"vsn-error-state","declaration":{"name":"VsnErrorState","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.avatar.js","declarations":[{"kind":"function","name":"buildAvatarUrl","return":{"type":{"text":"string | undefined"}},"parameters":[{"name":"baseUrl","type":{"text":"string"}},{"name":"userId","type":{"text":"string"}},{"name":"clientId","type":{"text":"string | undefined"}},{"name":"size","type":{"text":"AvatarSize"}}]}],"exports":[{"kind":"js","name":"buildAvatarUrl","declaration":{"name":"buildAvatarUrl","module":"components/vsn-side-bar/vsn-footer/vsn-footer.avatar.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.css.js","declarations":[{"kind":"variable","name":"footerStyles","default":"css` @layer components { vsn-footer { display: block; flex-shrink: 0; } :where(.ga-side-navigation__user), :where(.ga-side-navigation__footer-dropdown-item) { width: 100%; cursor: pointer; } .ga-side-navigation__footer-dropdown-item:focus-visible { outline: 2px solid var(--ga-color-border-focus); outline-offset: 4px; } .vsn-side-navigation__user-info { display: flex; flex-direction: column; flex: 1; min-width: 0; } .vsn-side-navigation__user-info > .ga-side-navigation__user-name { flex: initial; } .vsn-side-navigation__user-email { font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; } .vsn-side-navigation__user-avatar--icon { display: inline-flex; align-items: center; justify-content: center; } } `"}],"exports":[{"kind":"js","name":"footerStyles","declaration":{"name":"footerStyles","module":"components/vsn-side-bar/vsn-footer/vsn-footer.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.keyboard.js","declarations":[{"kind":"class","description":"","name":"FooterKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"FooterHost"},"privacy":"private","default":"host"},{"kind":"field","name":"_prevExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"method","name":"hostUpdated","return":{"type":{"text":"void"}}},{"kind":"field","name":"onUserKeydown","readonly":true},{"kind":"field","name":"onDropdownKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"FooterKeyboardController","declaration":{"name":"FooterKeyboardController","module":"components/vsn-side-bar/vsn-footer/vsn-footer.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.js","declarations":[{"kind":"class","description":"","name":"VsnFooter","members":[{"kind":"field","name":"user","type":{"text":"User"}},{"kind":"field","name":"profilePictureBaseUrl","type":{"text":"string"},"attribute":"profilePictureBaseUrl"},{"kind":"field","name":"myProfileUrl","type":{"text":"string"},"attribute":"myProfileUrl"},{"kind":"field","name":"_items","type":{"text":"FooterItem[]"},"privacy":"private","readonly":true},{"kind":"field","name":"expanded","type":{"text":"boolean"},"default":"false","attribute":"expanded","reflects":true},{"kind":"field","name":"_avatarFailed","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_keyboard","privacy":"private","default":"new FooterKeyboardController(this)"},{"kind":"method","name":"reset","return":{"type":{"text":"void"}},"description":"Clear per-session state — called by the host when the side-bar closes."},{"kind":"method","name":"renderDropdown","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_toggle","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_handleClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"item","type":{"text":"FooterItem"}}]},{"kind":"method","name":"_handleProfileClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"item","type":{"text":"FooterItem"}}]},{"kind":"method","name":"renderAvatar","privacy":"private","return":{"type":{"text":"TemplateResult"}}}],"events":[{"name":"vsn-logout-click","type":{"text":"CustomEvent"}},{"name":"vsn-footer-item-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"profilePictureBaseUrl","type":{"text":"string"},"fieldName":"profilePictureBaseUrl"},{"name":"myProfileUrl","type":{"text":"string"},"fieldName":"myProfileUrl"},{"name":"expanded","type":{"text":"boolean"},"default":"false","fieldName":"expanded"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-footer","customElement":true}],"exports":[{"kind":"js","name":"VsnFooter","declaration":{"name":"VsnFooter","module":"components/vsn-side-bar/vsn-footer/vsn-footer.js"}},{"kind":"custom-element-definition","name":"vsn-footer","declaration":{"name":"VsnFooter","module":"components/vsn-side-bar/vsn-footer/vsn-footer.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.css.js","declarations":[{"kind":"variable","name":"headerStyles","default":"css` @layer components { .vsn-switcher-anchor { position: relative; } .ga-side-navigation__switcher-dropdown { position: absolute; top: 100%; left: 0; right: 0; z-index: 10; } } `"}],"exports":[{"kind":"js","name":"headerStyles","declaration":{"name":"headerStyles","module":"components/vsn-side-bar/vsn-header/vsn-header.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.keyboard.js","declarations":[{"kind":"class","description":"","name":"SwitcherKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"SwitcherHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onSwitcherKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"SwitcherKeyboardController","declaration":{"name":"SwitcherKeyboardController","module":"components/vsn-side-bar/vsn-header/vsn-header.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.js","declarations":[{"kind":"class","description":"","name":"VsnNavHeader","members":[{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"activeModuleLabel","type":{"text":"string | undefined"},"attribute":"activeModuleLabel"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","attribute":"moduleSwitcherAlwaysOpen"},{"kind":"field","name":"moduleSwitcherMaxHeight","type":{"text":"number"},"default":"0"},{"kind":"field","name":"search","type":{"text":"SearchConfig | undefined"}},{"kind":"field","name":"searchValue","type":{"text":"string"},"default":"''","attribute":"searchValue"},{"kind":"field","name":"searchLoading","type":{"text":"boolean"},"default":"false","attribute":"searchLoading"},{"kind":"field","name":"expanded","type":{"text":"boolean"},"default":"false","attribute":"expanded","reflects":true},{"kind":"field","name":"_keyboard","privacy":"private","default":"new SwitcherKeyboardController(this)"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"field","name":"_state","type":{"text":"SwitcherState"},"privacy":"private","readonly":true},{"kind":"field","name":"canClose","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"hasAvailableItems","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"_isOpen","type":{"text":"boolean"},"privacy":"private","description":"The dropdown is visible when the host forces it open, or the user expanded it.\n`expanded` stays purely user-driven, so clearing moduleSwitcherAlwaysOpen never leaves a\nstale-open dropdown, and forced-open survives a reset() (which only clears expanded).","readonly":true},{"kind":"field","name":"canToggle","type":{"text":"boolean"},"description":"Render an interactive toggle only when there's something to open or it's already open.","readonly":true},{"kind":"method","name":"reset","return":{"type":{"text":"void"}},"description":"Clear per-session state — called by the host when the side-bar closes."},{"kind":"method","name":"_toggle","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_pickModule","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"id","type":{"text":"string"}}]},{"kind":"method","name":"_onItemSelect","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ id: string }>"}}]},{"kind":"method","name":"requestClose","privacy":"public","return":{"type":{"text":"boolean"}}}],"events":[{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"activeModuleLabel","type":{"text":"string | undefined"},"fieldName":"activeModuleLabel"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"searchValue","type":{"text":"string"},"default":"''","fieldName":"searchValue"},{"name":"searchLoading","type":{"text":"boolean"},"default":"false","fieldName":"searchLoading"},{"name":"expanded","type":{"text":"boolean"},"default":"false","fieldName":"expanded"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-header","customElement":true}],"exports":[{"kind":"js","name":"VsnNavHeader","declaration":{"name":"VsnNavHeader","module":"components/vsn-side-bar/vsn-header/vsn-header.js"}},{"kind":"custom-element-definition","name":"vsn-header","declaration":{"name":"VsnNavHeader","module":"components/vsn-side-bar/vsn-header/vsn-header.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js","declarations":[{"kind":"class","description":"","name":"VsnSwitcherMenu","members":[{"kind":"field","name":"items","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"loading","type":{"text":"boolean"},"default":"false","attribute":"loading"},{"kind":"field","name":"maxHeight","type":{"text":"number"},"default":"0"},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_headerId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-switcher-dropdown-header-${VsnSwitcherMenu._idCounter++}`"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"method","name":"_handleItemClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"id","type":{"text":"string"}}]},{"kind":"field","name":"_handleKeydown","privacy":"private","readonly":true}],"events":[{"name":"item-select","type":{"text":"CustomEvent"}}],"attributes":[{"name":"loading","type":{"text":"boolean"},"default":"false","fieldName":"loading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-switcher-menu","customElement":true}],"exports":[{"kind":"js","name":"VsnSwitcherMenu","declaration":{"name":"VsnSwitcherMenu","module":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js"}},{"kind":"custom-element-definition","name":"vsn-switcher-menu","declaration":{"name":"VsnSwitcherMenu","module":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js","declarations":[{"kind":"class","description":"","name":"VSNMenuButton","members":[{"kind":"field","name":"label","type":{"text":"string"},"default":"''","attribute":"label"},{"kind":"field","name":"closeOnClick","type":{"text":"boolean"},"default":"false","description":"Close navigation on click","attribute":"close-on-click"},{"kind":"field","name":"_onKeydown","privacy":"private"},{"kind":"field","name":"_onClick","privacy":"private"}],"attributes":[{"name":"label","type":{"text":"string"},"default":"''","fieldName":"label"},{"name":"close-on-click","type":{"text":"boolean"},"default":"false","description":"Close navigation on click","fieldName":"closeOnClick"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-button","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuButton","declaration":{"name":"VSNMenuButton","module":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js"}},{"kind":"custom-element-definition","name":"vsn-menu-button","declaration":{"name":"VSNMenuButton","module":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-item.css.js","declarations":[{"kind":"variable","name":"menuItemStyles","default":"css` @layer components { .vsn-menu__list { list-style: none; margin: 0; padding: 0; } .vsn-menu__item { margin: 0; padding: 0; } .ga-side-navigation__item:focus-visible::after { position: absolute; inset: 3px; border-radius: calc(var(--ga-radius) * var(--ga-base-scaling-factor, 1)); border-style: var(--tw-border-style); border-width: 2px; border-color: var(--ga-color-border-focus); --tw-content: ''; content: var(--tw-content); } } `"}],"exports":[{"kind":"js","name":"menuItemStyles","declaration":{"name":"menuItemStyles","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js","declarations":[{"kind":"class","description":"","name":"VSNMenuItem","members":[{"kind":"field","name":"tree","type":{"text":"TreeItem | undefined"}},{"kind":"field","name":"level","type":{"text":"number"},"default":"1","attribute":"level"},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-side-menu-item-tooltip-${n}`"},{"kind":"field","name":"_childListId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-side-menu-item-list-${n}`"},{"kind":"field","name":"menuShortcuts","type":{"text":"string[]"},"privacy":"private","static":true,"readonly":true,"default":"['ArrowRight', 'ArrowLeft', 'ArrowUp', 'ArrowDown', 'Enter', ' ']"},{"kind":"field","name":"_currentActiveId","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"_isActive","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_isExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"field","name":"_focusManager","type":{"text":"FocusManager | undefined"},"privacy":"private"},{"kind":"field","name":"hasPageTitle","type":{"text":"boolean"},"default":"false","attribute":"hasPageTitle"},{"kind":"method","name":"focusSelf","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"menuItemMarkup","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"field","name":"_onKeyDown","privacy":"private"},{"kind":"method","name":"handleKeyForLeaf","privacy":"private","parameters":[{"name":"key","type":{"text":"string"}}]},{"kind":"method","name":"handleKeyForParent","privacy":"private","parameters":[{"name":"key","type":{"text":"string"}}]},{"kind":"method","name":"menuItem","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}},{"name":"level","type":{"text":"number"}}]},{"kind":"method","name":"isActiveNode","privacy":"private","return":{"type":{"text":"TreeItem | null"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_handleItemClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"level","type":{"text":"number"},"default":"1","fieldName":"level"},{"name":"hasPageTitle","type":{"text":"boolean"},"default":"false","fieldName":"hasPageTitle"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-item","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuItem","declaration":{"name":"VSNMenuItem","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js"}},{"kind":"custom-element-definition","name":"vsn-menu-item","declaration":{"name":"VSNMenuItem","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js","declarations":[{"kind":"class","description":"We need a separator component because of\nhttps://codepen.io/castastrophe/pen/yLXpagw Issues with :first-child/:last-child with slotted content","name":"VSNMenuSeparator","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-separator","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuSeparator","declaration":{"name":"VSNMenuSeparator","module":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js"}},{"kind":"custom-element-definition","name":"vsn-menu-separator","declaration":{"name":"VSNMenuSeparator","module":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu.js","declarations":[{"kind":"class","description":"","name":"VSNMenu","members":[{"kind":"field","name":"items","type":{"text":"readonly TreeItem[]"},"default":"[]"},{"kind":"field","name":"_currentActiveId","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"currentItem","type":{"text":"string"},"default":"''","attribute":"currentItem"},{"kind":"field","name":"hasPageTitle","type":{"text":"boolean"},"default":"false","attribute":"hasPageTitle"},{"kind":"field","name":"_focusManager","type":{"text":"FocusManager"},"privacy":"private","default":"{ focusPrev: (from) => { const items = Array.from(this.querySelectorAll<VSNMenuItem>('vsn-menu-item')); const i = items.indexOf(from as VSNMenuItem); items[i - 1]?.focusSelf(); }, focusNext: (from) => { const items = Array.from(this.querySelectorAll<VSNMenuItem>('vsn-menu-item')); const i = items.indexOf(from as VSNMenuItem); items[i + 1]?.focusSelf(); }, }"},{"kind":"method","name":"menuItem","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}}]}],"attributes":[{"name":"currentItem","type":{"text":"string"},"default":"''","fieldName":"currentItem"},{"name":"hasPageTitle","type":{"text":"boolean"},"default":"false","fieldName":"hasPageTitle"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu","customElement":true}],"exports":[{"kind":"js","name":"VSNMenu","declaration":{"name":"VSNMenu","module":"components/vsn-side-bar/vsn-menu/vsn-menu.js"}},{"kind":"custom-element-definition","name":"vsn-menu","declaration":{"name":"VSNMenu","module":"components/vsn-side-bar/vsn-menu/vsn-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js","declarations":[{"kind":"class","description":"","name":"VsnSearchResultItem","members":[{"kind":"field","name":"item","type":{"text":"SearchResultItem"}},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-search-result-item-tooltip-${VsnSearchResultItem._idCounter++}`"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"_onActivate","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-result-item","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchResultItem","declaration":{"name":"VsnSearchResultItem","module":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js"}},{"kind":"custom-element-definition","name":"vsn-search-result-item","declaration":{"name":"VsnSearchResultItem","module":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.css.js","declarations":[{"kind":"variable","name":"searchResultsStyles","default":"css` .vsn-search-results__empty { display: flex; flex-direction: column; align-items: center; padding: calc(2rem * var(--ga-base-scaling-factor, 1)) calc(1.5rem * var(--ga-base-scaling-factor, 1)); text-align: center; gap: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-search-results__empty-title { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 600; margin-bottom: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-search-results__empty-message, .vsn-search-results__empty-hint { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-disable-selected); } .vsn-search-results__empty-support { margin-top: calc(1.5rem * var(--ga-base-scaling-factor, 1)); font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-on-disabled); } .vsn-search-results__error { display: flex; flex-direction: column; align-items: center; padding: calc(2rem * var(--ga-base-scaling-factor, 1)) calc(1.5rem * var(--ga-base-scaling-factor, 1)); text-align: center; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-body); } .vsn-search-results__load-more { width: 100%; padding: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)) calc(0.25rem * 4 * var(--ga-base-scaling-factor, 1)); background: none; border: none; cursor: pointer; color: var(--ga-color-text-action); text-align: center; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); font-style: normal; font-weight: 500; line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); letter-spacing: var(--ga-text-md-letter-spacing); } .vsn-search-results__load-more:disabled { cursor: not-allowed; opacity: 0.5; } `"}],"exports":[{"kind":"js","name":"searchResultsStyles","declaration":{"name":"searchResultsStyles","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.keyboard.js","declarations":[{"kind":"class","description":"","name":"SearchResultsKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"SearchResultsHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onResultsKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"SearchResultsKeyboardController","declaration":{"name":"SearchResultsKeyboardController","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js","declarations":[{"kind":"class","description":"","name":"VsnSearchResults","members":[{"kind":"field","name":"results","type":{"text":"SearchResultItem[] | undefined"}},{"kind":"field","name":"errorMessage","type":{"text":"string | undefined"},"attribute":"errorMessage"},{"kind":"field","name":"nextCursor","type":{"text":"string | undefined"},"attribute":"nextCursor"},{"kind":"field","name":"loadingMore","type":{"text":"boolean"},"default":"false","attribute":"loadingMore"},{"kind":"field","name":"_keyboard","privacy":"private","default":"new SearchResultsKeyboardController(this)"},{"kind":"method","name":"_emptyState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_errorState","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"message","type":{"text":"string"}}]},{"kind":"method","name":"_resultsList","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"results","type":{"text":"SearchResultItem[]"}}]},{"kind":"method","name":"_onLoadMore","privacy":"private","return":{"type":{"text":"void"}}}],"events":[{"name":"vsn-search-load-more","type":{"text":"CustomEvent"}}],"attributes":[{"name":"errorMessage","type":{"text":"string | undefined"},"fieldName":"errorMessage"},{"name":"nextCursor","type":{"text":"string | undefined"},"fieldName":"nextCursor"},{"name":"loadingMore","type":{"text":"boolean"},"default":"false","fieldName":"loadingMore"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-results","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchResults","declaration":{"name":"VsnSearchResults","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js"}},{"kind":"custom-element-definition","name":"vsn-search-results","declaration":{"name":"VsnSearchResults","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.css.js","declarations":[{"kind":"variable","name":"scopesStyles","default":"css` @layer components { vsn-search-scopes { display: block; flex-shrink: 0; padding: calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)) calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)); } vsn-search-scopes .ga-radio-group { gap: calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)); } vsn-search-scopes .ga-radio-button__label { line-height: calc(0.25rem * 6 * var(--ga-base-scaling-factor, 1)); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis; } } `"}],"exports":[{"kind":"js","name":"scopesStyles","declaration":{"name":"scopesStyles","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js","declarations":[{"kind":"class","description":"","name":"VsnSearchScopes","members":[{"kind":"field","name":"scopes","type":{"text":"SearchScope[]"},"default":"[]"},{"kind":"field","name":"selectedScopeId","type":{"text":"string"},"default":"''","attribute":"selectedScopeId"},{"kind":"field","name":"_counter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_name","privacy":"private","default":"`vsn-search-scope-${++VsnSearchScopes._counter}`"},{"kind":"method","name":"_renderScope","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"scope","type":{"text":"SearchScope"}}]},{"kind":"method","name":"_onChange","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"UIEvent"}}]}],"events":[{"name":"vsn-search-scope-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"selectedScopeId","type":{"text":"string"},"default":"''","fieldName":"selectedScopeId"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-scopes","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchScopes","declaration":{"name":"VsnSearchScopes","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js"}},{"kind":"custom-element-definition","name":"vsn-search-scopes","declaration":{"name":"VsnSearchScopes","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search/vsn-search.css.js","declarations":[{"kind":"variable","name":"searchStyles","default":"css` .vsn-search__trigger, .vsn-search__clear { display: inline-flex; align-items: center; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; } .vsn-search__trigger { color: var(--ga-color-icon-primary); } .vsn-search__clear { color: var(--ga-color-icon-action); } .vsn-search__trigger:disabled { cursor: default; opacity: 0.5; } .vsn-search__helper { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; flex: 1 0 0; max-width: 550px; margin-inline: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)); padding: 0 calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)); overflow: hidden; text-overflow: ellipsis; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-body); } .ga-side-navigation__search input { color: var(--ga-color-text-body); } .ga-side-navigation__search input::placeholder { color: var(--ga-color-text-disable-selected); } `"}],"exports":[{"kind":"js","name":"searchStyles","declaration":{"name":"searchStyles","module":"components/vsn-side-bar/vsn-search/vsn-search.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search/vsn-search.js","declarations":[{"kind":"class","description":"","name":"VsnSearch","members":[{"kind":"field","name":"shortcut","type":{"text":"string"},"default":"''","attribute":"shortcut"},{"kind":"field","name":"value","type":{"text":"string"},"default":"''","attribute":"value"},{"kind":"field","name":"loading","type":{"text":"boolean"},"default":"false","attribute":"loading"},{"kind":"field","name":"_debounceTimer","type":{"text":"number | undefined"},"privacy":"private"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"field","name":"_canSearch","type":{"text":"boolean"},"privacy":"private","readonly":true},{"kind":"method","name":"_handleInput","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"Event"}}]},{"kind":"field","name":"_scheduleAutoSearch","privacy":"private"},{"kind":"field","name":"_cancelDebounce","privacy":"private"},{"kind":"field","name":"_emitSearch","privacy":"private"},{"kind":"field","name":"_emitSearchCleared","privacy":"private"},{"kind":"method","name":"_handleEnter","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent"}}]},{"kind":"field","name":"_handleEscape","privacy":"private"},{"kind":"method","name":"_trailingSlot","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_spinner","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_clearButton","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_shortcutBadge","privacy":"private","return":{"type":{"text":"TemplateResult"}}}],"events":[{"name":"vsn-search-input","type":{"text":"CustomEvent"}}],"attributes":[{"name":"shortcut","type":{"text":"string"},"default":"''","fieldName":"shortcut"},{"name":"value","type":{"text":"string"},"default":"''","fieldName":"value"},{"name":"loading","type":{"text":"boolean"},"default":"false","fieldName":"loading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search","customElement":true}],"exports":[{"kind":"js","name":"VsnSearch","declaration":{"name":"VsnSearch","module":"components/vsn-side-bar/vsn-search/vsn-search.js"}},{"kind":"custom-element-definition","name":"vsn-search","declaration":{"name":"VsnSearch","module":"components/vsn-side-bar/vsn-search/vsn-search.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-side-bar.js","declarations":[{"kind":"class","description":"","name":"VSNSideBar","members":[{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"activeModuleLabel","type":{"text":"string | undefined"},"attribute":"activeModuleLabel"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","attribute":"moduleSwitcherAlwaysOpen"},{"kind":"field","name":"lang","type":{"text":"string"},"default":"'en'","attribute":"lang"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"}},{"kind":"field","name":"error","type":{"text":"boolean"},"default":"false","attribute":"error"},{"kind":"field","name":"open","type":{"text":"boolean"},"default":"false","attribute":"open","reflects":true},{"kind":"field","name":"menu","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"_searchQuery","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"_searchResults","type":{"text":"SearchResultItem[] | undefined"},"privacy":"private"},{"kind":"field","name":"_searchLoading","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_activeScopeId","privacy":"private","default":"MENU_SCOPE_ID"},{"kind":"field","name":"_searchError","type":{"text":"string | undefined"},"privacy":"private"},{"kind":"field","name":"_searchNextCursor","type":{"text":"string | undefined"},"privacy":"private"},{"kind":"field","name":"_searchLoadingMore","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_moduleSwitcherMaxHeight","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_hasPageTitle","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_searchAbort","type":{"text":"AbortController | undefined"},"privacy":"private"},{"kind":"field","name":"_navFooterKeyboard","privacy":"private","default":"new NavFooterKeyboardController(this)"},{"kind":"field","name":"_resizeObserver","privacy":"private","default":"new ResizeObserver((entries: ResizeObserverEntry[]) => { this._observeMenuSize(entries); })"},{"kind":"field","name":"_customWidthPerLanguage","type":{"text":"{ [key: string]: string }"},"privacy":"private","default":"{ \"fi\": \"30em\" }"},{"kind":"field","name":"_menu","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"method","name":"downLevelTree","privacy":"private","return":{"type":{"text":"TreeParent | undefined"}},"parameters":[{"name":"tree","type":{"text":"TreeItem[] | undefined"}}]},{"kind":"method","name":"_observeMenuSize","privacy":"private","parameters":[{"name":"entries","type":{"text":"ResizeObserverEntry[]"}}]},{"kind":"method","name":"resetSidebarToInitialState","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_scrollActiveItemIntoView","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"focusSearch","return":{"type":{"text":"Promise<void>"}},"description":"Focus the search input, if search is enabled. Called by the host (vsn-navigation)\nwhenever it opens the side-bar — via the hamburger toggle or the keyboard shortcut\n(both route through VSNNavigation._openAndFocusSearch). Awaits the render so the\nfield exists and is visible (the side-bar is display:none while closed)."},{"kind":"method","name":"_onSearchInput","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ value: string }>"}}]},{"kind":"method","name":"_onSearchSubmit","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ query: string }>"}}]},{"kind":"field","name":"_onNavigate","privacy":"private"},{"kind":"field","name":"_onMenuItemChanged","privacy":"private"},{"kind":"field","name":"_onFooterAction","privacy":"private"},{"kind":"method","name":"_onSearchCleared","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onScopeChanged","privacy":"private"},{"kind":"method","name":"_clearSearchState","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_runSearch","privacy":"private","return":{"type":{"text":"Promise<void>"}},"parameters":[{"name":"query","type":{"text":"string"}},{"name":"scopeId","type":{"text":"string"}}]},{"kind":"method","name":"_loadMore","privacy":"private","return":{"type":{"text":"Promise<void>"}}},{"kind":"method","name":"_filterTree","privacy":"private","return":{"type":{"text":"SearchResultItem[]"}},"parameters":[{"name":"query","type":{"text":"string"}}],"description":"Recursively walks the menu tree and returns all leaf nodes whose label or\nkeywords contain the given query string (case-insensitive).\n\n`walk` is a closure so it can accumulate results and read `lowerCaseQuery`\nwithout them being passed as arguments on every recursive call."},{"kind":"method","name":"matchInKeywords","privacy":"private","return":{"type":{"text":"boolean"}},"parameters":[{"name":"keywords","type":{"text":"string | undefined"}},{"name":"query","type":{"text":"string"}}],"description":"Returns true if any keyword in the whitespace-separated `keywords` string\ncontains the query (case-insensitive). Returns false if keywords is absent\nor empty."},{"kind":"method","name":"_viewMode","privacy":"private","return":{"type":{"text":"'error' | 'loading' | 'results' | 'menu'"}}},{"kind":"method","name":"searchResults","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"loadingState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"errorState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"header","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"scopesGroup","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"renderMenu","privacy":"private","parameters":[{"name":"menu","optional":true,"type":{"text":"NavigationMenu"}}]},{"kind":"method","name":"footer","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"auth","type":{"text":"VsnAuth"}}]}],"attributes":[{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"activeModuleLabel","type":{"text":"string | undefined"},"fieldName":"activeModuleLabel"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"lang","type":{"text":"string"},"default":"'en'","fieldName":"lang"},{"name":"error","type":{"text":"boolean"},"default":"false","fieldName":"error"},{"name":"open","type":{"text":"boolean"},"default":"false","fieldName":"open"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-side-bar","customElement":true}],"exports":[{"kind":"js","name":"VSNSideBar","declaration":{"name":"VSNSideBar","module":"components/vsn-side-bar/vsn-side-bar.js"}},{"kind":"custom-element-definition","name":"vsn-side-bar","declaration":{"name":"VSNSideBar","module":"components/vsn-side-bar/vsn-side-bar.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-template/vsn-template.css.js","declarations":[{"kind":"variable","name":"templateStyles","default":"css` .vsn-template__row { display: flex; flex-direction: column; align-items: flex-start; align-self: stretch; padding: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)) 0; } .vsn-template__bar { height: calc(1rem * var(--ga-base-scaling-factor, 1)); border-radius: var(--ga-radius); background: var(--ga-color-miscellaneous-skeleton-element, #F2F3F5); flex-shrink: 0; } `"}],"exports":[{"kind":"js","name":"templateStyles","declaration":{"name":"templateStyles","module":"components/vsn-side-bar/vsn-template/vsn-template.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-template/vsn-template.js","declarations":[{"kind":"class","description":"","name":"VsnTemplate","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-template","customElement":true}],"exports":[{"kind":"js","name":"VsnTemplate","declaration":{"name":"VsnTemplate","module":"components/vsn-side-bar/vsn-template/vsn-template.js"}},{"kind":"custom-element-definition","name":"vsn-template","declaration":{"name":"VsnTemplate","module":"components/vsn-side-bar/vsn-template/vsn-template.js"}}]},{"kind":"javascript-module","path":"components/vsn-skip-to-main.js","declarations":[{"kind":"class","description":"","name":"VSNSkipToMain","members":[{"kind":"field","name":"href","type":{"text":"string"},"default":"'main-content'","description":"The id of the main content element to skip to (without the `#`).","attribute":"href"},{"kind":"method","name":"_handleClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"attributes":[{"name":"href","type":{"text":"string"},"default":"'main-content'","description":"The id of the main content element to skip to (without the `#`).","fieldName":"href"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-skip-to-main","customElement":true}],"exports":[{"kind":"js","name":"VSNSkipToMain","declaration":{"name":"VSNSkipToMain","module":"components/vsn-skip-to-main.js"}},{"kind":"custom-element-definition","name":"vsn-skip-to-main","declaration":{"name":"VSNSkipToMain","module":"components/vsn-skip-to-main.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-ai-assistant.js","declarations":[{"kind":"class","description":"","name":"VSNAIAssistant","members":[{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-ai-assistant-click","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-ai-assistant","customElement":true}],"exports":[{"kind":"js","name":"VSNAIAssistant","declaration":{"name":"VSNAIAssistant","module":"components/vsn-top-bar/vsn-ai-assistant.js"}},{"kind":"custom-element-definition","name":"vsn-ai-assistant","declaration":{"name":"VSNAIAssistant","module":"components/vsn-top-bar/vsn-ai-assistant.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumbMenuItem","members":[{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-menu-item-tooltip-${VSNBreadcrumbMenuItem._idCounter++}`"},{"kind":"field","name":"tree","type":{"text":"TreeItem | undefined"}},{"kind":"field","name":"level","type":{"text":"number"},"default":"1","attribute":"level"},{"kind":"field","name":"ancestorPath","type":{"text":"TreeItem[]"},"default":"[]","attribute":"ancestorPath"},{"kind":"field","name":"_isExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"method","name":"_getExpandedMenu","privacy":"private"},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"_menuItemMarkup","privacy":"private"},{"kind":"method","name":"_menuItem","privacy":"private","parameters":[{"name":"tree","type":{"text":"TreeItem | undefined"}},{"name":"level","type":{"text":"number"}}]},{"kind":"field","name":"_onKeyDown","privacy":"private"},{"kind":"field","name":"_onClick","privacy":"private"},{"kind":"method","name":"_getTreeItems","privacy":"private","return":{"type":{"text":"TreeItem[] | undefined"}},"parameters":[{"name":"tree","optional":true,"type":{"text":"TreeItem"}}]},{"kind":"method","name":"_isParent","privacy":"private"}],"attributes":[{"name":"level","type":{"text":"number"},"default":"1","fieldName":"level"},{"name":"ancestorPath","type":{"text":"TreeItem[]"},"default":"[]","fieldName":"ancestorPath"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumb-menu-item","customElement":true}],"exports":[{"kind":"js","name":"VSNBreadcrumbMenuItem","declaration":{"name":"VSNBreadcrumbMenuItem","module":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumb-menu-item","declaration":{"name":"VSNBreadcrumbMenuItem","module":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumb-menu.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumbMenu","members":[{"kind":"field","name":"treeList","type":{"text":"TreeItem[] | undefined"}},{"kind":"field","name":"_handleKeyDown","privacy":"private"},{"kind":"method","name":"menuItem","privacy":"private","parameters":[{"name":"treeItem","type":{"text":"TreeItem"}}]}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumb-menu","customElement":true}],"exports":[{"kind":"js","name":"VSNBreadcrumbMenu","declaration":{"name":"VSNBreadcrumbMenu","module":"components/vsn-top-bar/vsn-breadcrumb-menu.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumb-menu","declaration":{"name":"VSNBreadcrumbMenu","module":"components/vsn-top-bar/vsn-breadcrumb-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumbs.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumb","members":[{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","attribute":"modules"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"_openPopoverId","type":{"text":"string | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_displayMode","type":{"text":"DisplayMode"},"privacy":"private","default":"'full'"},{"kind":"field","name":"_overflowCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_tooltip","type":{"text":"{ label: string; x: number; y: number } | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_mqDesktop","privacy":"private"},{"kind":"field","name":"_mqTablet","privacy":"private"},{"kind":"field","name":"_ro","type":{"text":"ResizeObserver | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_lastContainerWidth","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_mounted","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_handleMediaChange","privacy":"private"},{"kind":"method","name":"_recalculateOverflow","privacy":"private"},{"kind":"method","name":"_tryExpandOverflow","privacy":"private"},{"kind":"field","name":"_breadcrumbPath","type":{"text":"TreeItem[]"},"privacy":"private","readonly":true},{"kind":"method","name":"_findPath","privacy":"private","return":{"type":{"text":"TreeItem[] | null"}},"parameters":[{"name":"node","type":{"text":"TreeItem"}},{"name":"targetId","type":{"text":"string"}},{"name":"path","default":"[]","type":{"text":"TreeItem[]"}}]},{"kind":"method","name":"_popoverItemId","privacy":"private","parameters":[{"name":"index","type":{"text":"number"}}]},{"kind":"method","name":"_popoverItemTriggerId","privacy":"private","parameters":[{"name":"index","type":{"text":"number"}}]},{"kind":"field","name":"_onBreadcrumbMouseEnter","privacy":"private"},{"kind":"field","name":"_onBreadcrumbMouseLeave","privacy":"private"},{"kind":"method","name":"_onLeafAsAncestorClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"leaf","type":{"text":"TreeLeaf"}}]},{"kind":"method","name":"_handlePopoverBeforeToggle","privacy":"private","parameters":[{"name":"triggerId","type":{"text":"string"}},{"name":"e","type":{"text":"Event"}}]},{"kind":"method","name":"_handlePopoverToggle","privacy":"private","parameters":[{"name":"popoverId","type":{"text":"string"}},{"name":"e","type":{"text":"Event"}}]},{"kind":"method","name":"_handleMenuClose","privacy":"private","parameters":[{"name":"triggerId","type":{"text":"string"}},{"name":"popoverId","type":{"text":"string"}}]},{"kind":"method","name":"_handleModuleSelect","privacy":"private","parameters":[{"name":"module","type":{"text":"ModuleItem"}}]},{"kind":"method","name":"_renderModules","privacy":"private"},{"kind":"method","name":"_handleLeafSelect","privacy":"private","parameters":[{"name":"e","type":{"text":"Event"}},{"name":"popoverId","type":{"text":"string"}}]},{"kind":"method","name":"_renderLeafAsAncestor","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_renderLastItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}},{"name":"index","type":{"text":"number"}},{"name":"pageTitle","type":{"text":"string | undefined"}}]},{"kind":"method","name":"_renderPageTitle","privacy":"private","parameters":[{"name":"title","type":{"text":"string"}}]},{"kind":"method","name":"_renderCurrentItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_renderBreadcrumbItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}},{"name":"index","type":{"text":"number"}}]},{"kind":"method","name":"_renderFullBreadcrumbs","privacy":"private"},{"kind":"method","name":"_renderOverflowBreadcrumbs","privacy":"private"},{"kind":"method","name":"_renderMobileBreadcrumbs","privacy":"private"}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}},{"name":"vsn-breadcrumb-dropdown-open","type":{"text":"CustomEvent"}},{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","fieldName":"modules"},{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumbs","customElement":true}],"exports":[{"kind":"js","name":"NavigationMenu","declaration":{"name":"NavigationMenu","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"js","name":"ModuleItem","declaration":{"name":"ModuleItem","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"js","name":"VSNBreadcrumb","declaration":{"name":"VSNBreadcrumb","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumbs","declaration":{"name":"VSNBreadcrumb","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-feedback.js","declarations":[{"kind":"class","description":"","name":"VSNFeedback","members":[{"kind":"field","name":"_compact","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"}},{"kind":"field","name":"lang","type":{"text":"LanguageCode"},"default":"'en'","attribute":"lang"},{"kind":"field","name":"_mqMobile","privacy":"private"},{"kind":"field","name":"_handleMediaChange","privacy":"private"},{"kind":"field","name":"_traitSet","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_survicateListenerId","type":{"text":"number | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_survicateClosedListenerId","type":{"text":"number | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_surveyFocusTimer","type":{"text":"ReturnType<typeof setTimeout> | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_surveyFocusCleanupTimer","type":{"text":"ReturnType<typeof setTimeout> | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_observer","type":{"text":"MutationObserver | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_handleDocKeydown","privacy":"private","readonly":true},{"kind":"field","name":"_handleOutsideClick","privacy":"private","readonly":true},{"kind":"method","name":"_applyVisitorTraits","privacy":"private"},{"kind":"method","name":"_stopOutsideClickListener","privacy":"private"},{"kind":"method","name":"_startOutsideClickListener","privacy":"private"},{"kind":"method","name":"_clearFocusListener","privacy":"private"},{"kind":"method","name":"_focusSurveyDialog","privacy":"private"},{"kind":"method","name":"_handleClick","privacy":"private"}],"events":[{"name":"vsn-feedback","type":{"text":"CustomEvent"}}],"attributes":[{"name":"lang","type":{"text":"LanguageCode"},"default":"'en'","fieldName":"lang"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-feedback","customElement":true}],"exports":[{"kind":"js","name":"VSNFeedback","declaration":{"name":"VSNFeedback","module":"components/vsn-top-bar/vsn-feedback.js"}},{"kind":"custom-element-definition","name":"vsn-feedback","declaration":{"name":"VSNFeedback","module":"components/vsn-top-bar/vsn-feedback.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-help.js","declarations":[{"kind":"class","description":"","name":"VSNHelp","members":[{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"attribute":"help-url"},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-help-click","type":{"text":"CustomEvent"}}],"attributes":[{"name":"help-url","type":{"text":"string | undefined"},"fieldName":"helpUrl"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-help","customElement":true}],"exports":[{"kind":"js","name":"VSNHelp","declaration":{"name":"VSNHelp","module":"components/vsn-top-bar/vsn-help.js"}},{"kind":"custom-element-definition","name":"vsn-help","declaration":{"name":"VSNHelp","module":"components/vsn-top-bar/vsn-help.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-home.js","declarations":[{"kind":"class","description":"","name":"VSNHome","members":[{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"attribute":"landing-page-url"},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"landing-page-url","type":{"text":"string | undefined"},"fieldName":"landingPageUrl"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-home","customElement":true}],"exports":[{"kind":"js","name":"VSNHome","declaration":{"name":"VSNHome","module":"components/vsn-top-bar/vsn-home.js"}},{"kind":"custom-element-definition","name":"vsn-home","declaration":{"name":"VSNHome","module":"components/vsn-top-bar/vsn-home.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-menu-toggle.js","declarations":[{"kind":"class","description":"","name":"VSNMenuToggle","members":[{"kind":"field","name":"_tooltipElement","type":{"text":"HTMLDivElement & { showPopover?(): void; hidePopover?(): void }"},"privacy":"private","readonly":true},{"kind":"method","name":"focus","return":{"type":{"text":"void"}},"parameters":[{"name":"options","optional":true,"type":{"text":"FocusOptions"}}],"description":"Delegate focus to the inner button (light DOM, so query `this`)."},{"kind":"method","name":"_handleClick","privacy":"private"},{"kind":"method","name":"_onActivate","privacy":"private","parameters":[{"name":"e","type":{"text":"UIEvent"}}]},{"kind":"method","name":"_onDeactivate","privacy":"private"}],"events":[{"name":"toggle-side-bar","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-toggle","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuToggle","declaration":{"name":"VSNMenuToggle","module":"components/vsn-top-bar/vsn-menu-toggle.js"}},{"kind":"custom-element-definition","name":"vsn-menu-toggle","declaration":{"name":"VSNMenuToggle","module":"components/vsn-top-bar/vsn-menu-toggle.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-notifications.js","declarations":[{"kind":"class","description":"","name":"VSNNotifications","members":[{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","attribute":"notification-active","reflects":true},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-notification-click","type":{"text":"CustomEvent"}}],"attributes":[{"name":"notification-active","type":{"text":"boolean"},"default":"false","fieldName":"notificationActive"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-notifications","customElement":true}],"exports":[{"kind":"js","name":"VSNNotifications","declaration":{"name":"VSNNotifications","module":"components/vsn-top-bar/vsn-notifications.js"}},{"kind":"custom-element-definition","name":"vsn-notifications","declaration":{"name":"VSNNotifications","module":"components/vsn-top-bar/vsn-notifications.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-top-bar.js","declarations":[{"kind":"class","description":"","name":"VSNTopBar","members":[{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","attribute":"modules"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"description":"Link to landing page","attribute":"landing-page-url"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null","description":"Configuration for the feedback component"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"},"description":"Configuration related to authenticated user"},{"kind":"field","name":"showHelp","type":{"text":"boolean"},"default":"false","description":"show help icon","attribute":"show-help"},{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","attribute":"help-url"},{"kind":"field","name":"showNotification","type":{"text":"boolean"},"default":"false","description":"show notification icon","attribute":"show-notification"},{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","description":"notification icon shows active state","attribute":"notification-active"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"lang","type":{"text":"string"},"default":"'en'","attribute":"lang"},{"kind":"method","name":"focusMenuToggle","return":{"type":{"text":"void"}},"description":"Focus the hamburger toggle — called by the host when the side-bar closes."}],"attributes":[{"name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","fieldName":"modules"},{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"landing-page-url","type":{"text":"string | undefined"},"description":"Link to landing page","fieldName":"landingPageUrl"},{"name":"show-help","type":{"text":"boolean"},"default":"false","description":"show help icon","fieldName":"showHelp"},{"name":"help-url","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","fieldName":"helpUrl"},{"name":"show-notification","type":{"text":"boolean"},"default":"false","description":"show notification icon","fieldName":"showNotification"},{"name":"notification-active","type":{"text":"boolean"},"default":"false","description":"notification icon shows active state","fieldName":"notificationActive"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"lang","type":{"text":"string"},"default":"'en'","fieldName":"lang"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-top-bar","customElement":true}],"exports":[{"kind":"js","name":"VSNTopBar","declaration":{"name":"VSNTopBar","module":"components/vsn-top-bar/vsn-top-bar.js"}},{"kind":"custom-element-definition","name":"vsn-top-bar","declaration":{"name":"VSNTopBar","module":"components/vsn-top-bar/vsn-top-bar.js"}}]},{"kind":"javascript-module","path":"shared/button-reset.css.js","declarations":[{"kind":"variable","name":"buttonResetStyles","default":"css` @layer base { button:where(.ga-side-navigation__item), button:where(.ga-side-navigation__switcher), button:where(.ga-side-navigation__user), button:where(.ga-side-navigation__footer-dropdown-item) { appearance: none; background: none; border: 0; padding: 0; font: inherit; text-align: left; width: 100%; cursor: pointer; color: inherit; } } `","description":"Strips UA button styles from side-navigation elements whose Gaia classes\nwere originally designed for <div>. Imported once in vsn-side-bar so all\nchild components pick it up through the adopted stylesheet cascade."}],"exports":[{"kind":"js","name":"buttonResetStyles","declaration":{"name":"buttonResetStyles","module":"shared/button-reset.css.js"}}]},{"kind":"javascript-module","path":"shared/global-styles.js","declarations":[{"kind":"variable","name":"globalStyles","default":"twCss"}],"exports":[{"kind":"js","name":"globalStyles","declaration":{"name":"globalStyles","module":"shared/global-styles.js"}}]},{"kind":"javascript-module","path":"shared/icons.js","declarations":[{"kind":"function","name":"icon","parameters":[{"name":"fragment","type":{"text":"SVGTemplateResult"}},{"name":"size","default":"24"},{"name":"cls","optional":true,"type":{"text":"string"}}]},{"kind":"function","name":"iconFilled","parameters":[{"name":"fragment","type":{"text":"SVGTemplateResult"}},{"name":"intrinsic","default":"24"},{"name":"size","default":"intrinsic"}]},{"kind":"variable","name":"emptyIcon","type":{"text":"SVGTemplateResult"},"default":"svg``"},{"kind":"variable","name":"menu","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M4 5h16\"/> <path d=\"M4 12h16\"/> <path d=\"M4 19h16\"/> `","description":"https://lucide.dev/icons/menu"},{"kind":"variable","name":"sparkles","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z\"/> <path d=\"M20 2v4\"/> <path d=\"M22 4h-4\"/> <circle cx=\"4\" cy=\"20\" r=\"2\"/> `","description":"https://lucide.dev/icons/sparkles"},{"kind":"variable","name":"bell","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10.268 21a2 2 0 0 0 3.464 0\"/> <path d=\"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326\"/> `","description":"https://lucide.dev/icons/bell"},{"kind":"variable","name":"bellDot","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10.268 21a2 2 0 0 0 3.464 0\"/> <path d=\"M11.68 2.009A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673c-.824-.85-1.678-1.731-2.21-3.348\"/> <circle cx=\"18\" cy=\"5\" r=\"3\"/> `","description":"https://lucide.dev/icons/bell-dot"},{"kind":"variable","name":"thumbsUp","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z\"/> <path d=\"M7 10v12\"/> `","description":"https://lucide.dev/icons/thumbs-up"},{"kind":"variable","name":"building2","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10 12h4\"/> <path d=\"M10 8h4\"/> <path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"/> <path d=\"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2\"/> <path d=\"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16\"/> `","description":"https://lucide.dev/icons/building-2"},{"kind":"variable","name":"house","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8\"/> <path d=\"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"/> `","description":"https://lucide.dev/icons/house"},{"kind":"variable","name":"circleQuestionMark","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"/> <path d=\"M12 17h.01\"/> `","description":"https://lucide.dev/icons/circle-question-mark"},{"kind":"variable","name":"userRound","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"8\" r=\"5\"/> <path d=\"M20 21a8 8 0 0 0-16 0\"/> `","description":"https://lucide.dev/icons/user-round"},{"kind":"variable","name":"settings","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915\"/> <circle cx=\"12\" cy=\"12\" r=\"3\"/> `","description":"https://lucide.dev/icons/settings"},{"kind":"variable","name":"pin","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M12 17v5\"/> <path d=\"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z\"/> `","description":"https://lucide.dev/icons/pin"},{"kind":"variable","name":"logOut","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m16 17 5-5-5-5\"/> <path d=\"M21 12H9\"/> <path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4\"/> `","description":"https://lucide.dev/icons/log-out"},{"kind":"variable","name":"squareArrowOutUpRight","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6\"/> <path d=\"m21 3-9 9\"/> <path d=\"M15 3h6v6\"/> `","description":"https://lucide.dev/icons/square-arrow-out-up-right"},{"kind":"variable","name":"circleDot","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <circle cx=\"12\" cy=\"12\" r=\"1\"/> `","description":"https://lucide.dev/icons/circle-dot"},{"kind":"variable","name":"chevronsUpDown","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m7 15 5 5 5-5\"/> <path d=\"m7 9 5-5 5 5\"/> `","description":"https://lucide.dev/icons/chevrons-up-down"},{"kind":"variable","name":"chevronUp","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m18 15-6-6-6 6\"/> `","description":"https://lucide.dev/icons/chevron-up"},{"kind":"variable","name":"chevronDown","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m6 9 6 6 6-6\"/> `","description":"https://lucide.dev/icons/chevron-down"},{"kind":"variable","name":"search","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"11\" cy=\"11\" r=\"8\"/> <path d=\"m21 21-4.3-4.3\"/> `","description":"https://lucide.dev/icons/search (stroked, use with icon)"},{"kind":"variable","name":"circleX","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <path d=\"m15 9-6 6\"/> <path d=\"m9 9 6 6\"/> `","description":"https://lucide.dev/icons/circle-x (stroked, use with icon)"},{"kind":"variable","name":"circleAlert","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"12\"/> <line x1=\"12\" x2=\"12.01\" y1=\"16\" y2=\"16\"/> `","description":"https://lucide.dev/icons/circle-alert (stroked, use with icon)"},{"kind":"variable","name":"octagonAlert","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M12 16h.01\"/> <path d=\"M12 8v4\"/> <path d=\"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z\"/> `","description":"https://lucide.dev/icons/octagon-alert (stroked, use with icon)"},{"kind":"variable","name":"searchFilled","type":{"text":"SVGTemplateResult"},"default":"svg` <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C14.866 18 18 14.866 18 11C18 7.13401 14.866 4 11 4ZM2 11C2 6.02944 6.02944 2 11 2C15.9706 2 20 6.02944 20 11C20 15.9706 15.9706 20 11 20C6.02944 20 2 15.9706 2 11Z\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9929 15.9929C16.3834 15.6024 17.0166 15.6024 17.4071 15.9929L21.7071 20.2929C22.0976 20.6834 22.0976 21.3166 21.7071 21.7071C21.3166 22.0976 20.6834 22.0976 20.2929 21.7071L15.9929 17.4071C15.6024 17.0166 15.6024 16.3834 15.9929 15.9929Z\"/> `","description":"Gaia filled search icon (use with iconFilled, 24×24)"},{"kind":"variable","name":"commandFilled","type":{"text":"SVGTemplateResult"},"default":"svg` <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.60982 1.03843C2.99778 0.96126 3.39992 1.00087 3.76537 1.15224C4.13082 1.30362 4.44318 1.55996 4.66294 1.88886C4.8827 2.21776 5 2.60444 5 3V4H7V3C7 2.60444 7.1173 2.21776 7.33706 1.88886C7.55682 1.55996 7.86918 1.30362 8.23463 1.15224C8.60009 1.00087 9.00222 0.96126 9.39018 1.03843C9.77814 1.1156 10.1345 1.30608 10.4142 1.58579C10.6939 1.86549 10.8844 2.22186 10.9616 2.60982C11.0387 2.99778 10.9991 3.39992 10.8478 3.76537C10.6964 4.13082 10.44 4.44318 10.1111 4.66294C9.78224 4.8827 9.39556 5 9 5H8V7H9C9.39556 7 9.78224 7.1173 10.1111 7.33706C10.44 7.55682 10.6964 7.86918 10.8478 8.23463C10.9991 8.60009 11.0387 9.00222 10.9616 9.39018C10.8844 9.77814 10.6939 10.1345 10.4142 10.4142C10.1345 10.6939 9.77814 10.8844 9.39018 10.9616C9.00222 11.0387 8.60009 10.9991 8.23463 10.8478C7.86918 10.6964 7.55682 10.44 7.33706 10.1111C7.1173 9.78224 7 9.39556 7 9V8H5V9C5 9.39556 4.8827 9.78224 4.66294 10.1111C4.44318 10.44 4.13082 10.6964 3.76537 10.8478C3.39992 10.9991 2.99778 11.0387 2.60982 10.9616C2.22186 10.8844 1.86549 10.6939 1.58579 10.4142C1.30608 10.1345 1.1156 9.77814 1.03843 9.39018C0.96126 9.00222 1.00087 8.60009 1.15224 8.23463C1.30362 7.86918 1.55996 7.55682 1.88886 7.33706C2.21776 7.1173 2.60444 7 3 7H4V5H3C2.60444 5 2.21776 4.8827 1.88886 4.66294C1.55996 4.44318 1.30362 4.13082 1.15224 3.76537C1.00087 3.39992 0.96126 2.99778 1.03843 2.60982C1.1156 2.22186 1.30608 1.86549 1.58579 1.58579C1.86549 1.30608 2.22186 1.1156 2.60982 1.03843ZM4 4V3C4 2.80222 3.94135 2.60888 3.83147 2.44443C3.72159 2.27998 3.56541 2.15181 3.38268 2.07612C3.19996 2.00043 2.99889 1.98063 2.80491 2.01922C2.61093 2.0578 2.43275 2.15304 2.29289 2.29289C2.15304 2.43275 2.0578 2.61093 2.01922 2.80491C1.98063 2.99889 2.00043 3.19996 2.07612 3.38268C2.15181 3.56541 2.27998 3.72159 2.44443 3.83147C2.60888 3.94135 2.80222 4 3 4H4ZM5 5V7H7V5H5ZM4 8H3C2.80222 8 2.60888 8.05865 2.44443 8.16853C2.27998 8.27841 2.15181 8.43459 2.07612 8.61732C2.00043 8.80004 1.98063 9.00111 2.01922 9.19509C2.0578 9.38907 2.15304 9.56726 2.29289 9.70711C2.43275 9.84696 2.61093 9.9422 2.80491 9.98079C2.99889 10.0194 3.19996 9.99957 3.38268 9.92388C3.56541 9.84819 3.72159 9.72002 3.83147 9.55557C3.94135 9.39112 4 9.19778 4 9V8ZM8 8V9C8 9.19778 8.05865 9.39112 8.16853 9.55557C8.27841 9.72002 8.43459 9.84819 8.61732 9.92388C8.80004 9.99957 9.00111 10.0194 9.19509 9.98079C9.38907 9.9422 9.56726 9.84696 9.70711 9.70711C9.84696 9.56726 9.9422 9.38907 9.98079 9.19509C10.0194 9.00111 9.99957 8.80004 9.92388 8.61732C9.84819 8.43459 9.72002 8.27841 9.55557 8.16853C9.39112 8.05865 9.19778 8 9 8H8ZM8 4H9C9.19778 4 9.39112 3.94135 9.55557 3.83147C9.72002 3.72159 9.84819 3.56541 9.92388 3.38268C9.99957 3.19996 10.0194 2.99889 9.98079 2.80491C9.9422 2.61093 9.84696 2.43275 9.70711 2.29289C9.56726 2.15304 9.38907 2.0578 9.19509 2.01922C9.00111 1.98063 8.80004 2.00043 8.61732 2.07612C8.43459 2.15181 8.27841 2.27998 8.16853 2.44443C8.05865 2.60888 8 2.80222 8 3V4Z\"/> `","description":"Gaia filled command (⌘) icon (use with iconFilled, 12×12 — note viewBox is 0 0 12 12)"},{"kind":"variable","name":"chevronRight","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m9 18 6-6-6-6\"/> `","description":"https://lucide.dev/icons/chevron-right"}],"exports":[{"kind":"js","name":"icon","declaration":{"name":"icon","module":"shared/icons.js"}},{"kind":"js","name":"iconFilled","declaration":{"name":"iconFilled","module":"shared/icons.js"}},{"kind":"js","name":"emptyIcon","declaration":{"name":"emptyIcon","module":"shared/icons.js"}},{"kind":"js","name":"menu","declaration":{"name":"menu","module":"shared/icons.js"}},{"kind":"js","name":"sparkles","declaration":{"name":"sparkles","module":"shared/icons.js"}},{"kind":"js","name":"bell","declaration":{"name":"bell","module":"shared/icons.js"}},{"kind":"js","name":"bellDot","declaration":{"name":"bellDot","module":"shared/icons.js"}},{"kind":"js","name":"thumbsUp","declaration":{"name":"thumbsUp","module":"shared/icons.js"}},{"kind":"js","name":"building2","declaration":{"name":"building2","module":"shared/icons.js"}},{"kind":"js","name":"house","declaration":{"name":"house","module":"shared/icons.js"}},{"kind":"js","name":"circleQuestionMark","declaration":{"name":"circleQuestionMark","module":"shared/icons.js"}},{"kind":"js","name":"userRound","declaration":{"name":"userRound","module":"shared/icons.js"}},{"kind":"js","name":"settings","declaration":{"name":"settings","module":"shared/icons.js"}},{"kind":"js","name":"pin","declaration":{"name":"pin","module":"shared/icons.js"}},{"kind":"js","name":"logOut","declaration":{"name":"logOut","module":"shared/icons.js"}},{"kind":"js","name":"squareArrowOutUpRight","declaration":{"name":"squareArrowOutUpRight","module":"shared/icons.js"}},{"kind":"js","name":"circleDot","declaration":{"name":"circleDot","module":"shared/icons.js"}},{"kind":"js","name":"chevronsUpDown","declaration":{"name":"chevronsUpDown","module":"shared/icons.js"}},{"kind":"js","name":"chevronUp","declaration":{"name":"chevronUp","module":"shared/icons.js"}},{"kind":"js","name":"chevronDown","declaration":{"name":"chevronDown","module":"shared/icons.js"}},{"kind":"js","name":"search","declaration":{"name":"search","module":"shared/icons.js"}},{"kind":"js","name":"circleX","declaration":{"name":"circleX","module":"shared/icons.js"}},{"kind":"js","name":"circleAlert","declaration":{"name":"circleAlert","module":"shared/icons.js"}},{"kind":"js","name":"octagonAlert","declaration":{"name":"octagonAlert","module":"shared/icons.js"}},{"kind":"js","name":"searchFilled","declaration":{"name":"searchFilled","module":"shared/icons.js"}},{"kind":"js","name":"commandFilled","declaration":{"name":"commandFilled","module":"shared/icons.js"}},{"kind":"js","name":"chevronRight","declaration":{"name":"chevronRight","module":"shared/icons.js"}}]},{"kind":"javascript-module","path":"shared/lang/locale-codes.js","declarations":[{"kind":"variable","name":"sourceLocale","default":"`en`","description":"The locale code that templates in this source code are written in."},{"kind":"variable","name":"targetLocales","type":{"text":"[\n `da`,\n `fi`,\n `nl`,\n `no`,\n `sv`,\n]"},"default":"[ `da`, `fi`, `nl`, `no`, `sv`, ]","description":"The other locale codes that this application is localized into. Sorted\nlexicographically."},{"kind":"variable","name":"allLocales","type":{"text":"[\n `da`,\n `en`,\n `fi`,\n `nl`,\n `no`,\n `sv`,\n]"},"default":"[ `da`, `en`, `fi`, `nl`, `no`, `sv`, ]","description":"All valid project locale codes. Sorted lexicographically."}],"exports":[{"kind":"js","name":"sourceLocale","declaration":{"name":"sourceLocale","module":"shared/lang/locale-codes.js"}},{"kind":"js","name":"targetLocales","declaration":{"name":"targetLocales","module":"shared/lang/locale-codes.js"}},{"kind":"js","name":"allLocales","declaration":{"name":"allLocales","module":"shared/lang/locale-codes.js"}}]},{"kind":"javascript-module","path":"shared/lang/locale-setup.js","declarations":[{"kind":"variable","name":"{ getLocale, setLocale }"}],"exports":[{"kind":"js","name":"{ getLocale, setLocale }","declaration":{"name":"{ getLocale, setLocale }","module":"shared/lang/locale-setup.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/da.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Har du brug for hjælp? Kontakt support.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Indtast mindst ${0} tegn for at søge`, 's2be8f715fbd00dcb': `Vi fandt ingen matchende resultater.`, 's3112f1ca236c8a61': `Indlæsningsfejl`, 's352719d86112de9a': `Hjælp`, 's387a4a41718122cb': str`${0} resultater`, 's3fb7db4771812f0c': `Hvis problemet fortsætter, genindlæs siden eller kontakt support.`, 's457d59d649765619': `Gå til hovedindhold`, 's4b0c6b66b4efd7d8': `Vælg en tjeneste`, 's58a1dace5a9acc5b': str`Tjenestemenu, ${0}`, 's5be3c6d61cd9182f': `Notifikationer`, 's5d369be551a4dd7a': `Menupunkter`, 's5d929ff1619ac0c9': `Søg`, 's5f4586bc1e2740e6': `Ryd søgning`, 's60fb9db2c6c14775': `Tjek din internetforbindelse og prøv igen.`, 's6abb1cd87fe0114e': `Hjem`, 's7584ded3d749c75e': `Indlæs mere`, 's82b383a30bc685e9': `Brugermenu`, 's842e9f4f6fdb5901': `Søgeomfang`, 's8a1cc2725e462c2a': `Send feedback`, 's8d91340b5caa2d5c': `Åbn menu`, 's9094c0cde8fb5058': `Ingen resultater fundet`, 's970de9ba0cf07677': `Søger`, 's97b95ad19ebb75a9': str`Brugermenu, ${0}`, 'sacde528ad7d2d031': `Vi kan ikke indlæse menuen.`, 'sb560e5cd092ef2e5': `Indlæser resultater`, 'sb64127e4e4f0b575': `Log ud`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Sidenavigation`, 'sd9582ea5f8f8ac5d': `Åbn AI-assistent`, 'sdb2bf46270cfda6c': `Brødkrumme`, 'sf55d634dcc743595': `Tjenester`, 'sfbf31f663cef6cc2': `Prøv andre søgeord eller tjek stavningen.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/da.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/fi.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Oma profiili`, 's119f9875b7d4cdfc': `Tarvitsetko apua? Ota yhteyttä tukeen.`, 's1228605ee65ddefa': str`${0} tulos`, 's2bb33291ef8ae3d4': str`Kirjoita vähintään ${0} merkkiä hakua varten`, 's2be8f715fbd00dcb': `Emme löytäneet osumia.`, 's3112f1ca236c8a61': `Latausvirhe`, 's352719d86112de9a': `Ohje`, 's387a4a41718122cb': str`${0} tulosta`, 's3fb7db4771812f0c': `Jos ongelma jatkuu, lataa sivu uudelleen tai ota yhteyttä tukeen.`, 's457d59d649765619': `Siirry pääsisältöön`, 's4b0c6b66b4efd7d8': `Valitse palvelu`, 's58a1dace5a9acc5b': str`Palveluvalikko, ${0}`, 's5be3c6d61cd9182f': `Ilmoitukset`, 's5d369be551a4dd7a': `Valikkokohteet`, 's5d929ff1619ac0c9': `Hae`, 's5f4586bc1e2740e6': `Tyhjennä haku`, 's60fb9db2c6c14775': `Tarkista internetyhteytesi ja yritä uudelleen.`, 's6abb1cd87fe0114e': `Etusivu`, 's7584ded3d749c75e': `Lataa lisää`, 's82b383a30bc685e9': `Käyttäjävalikko`, 's842e9f4f6fdb5901': `Hakuala`, 's8a1cc2725e462c2a': `Lähetä palautetta`, 's8d91340b5caa2d5c': `Avaa valikko`, 's9094c0cde8fb5058': `Tuloksia ei löytynyt`, 's970de9ba0cf07677': `Haetaan`, 's97b95ad19ebb75a9': str`Käyttäjävalikko, ${0}`, 'sacde528ad7d2d031': `Valikko ei lataudu.`, 'sb560e5cd092ef2e5': `Ladataan tuloksia`, 'sb64127e4e4f0b575': `Kirjaudu ulos`, 'sbb588bb505779122': `Palaute`, 'sd1b2ae9109b29cf0': `Sivunavigaatio`, 'sd9582ea5f8f8ac5d': `Avaa AI-avustaja`, 'sdb2bf46270cfda6c': `Murupolku`, 'sf55d634dcc743595': `Palvelut`, 'sfbf31f663cef6cc2': `Kokeile eri hakusanoja tai tarkista kirjoitusasu.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/fi.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/nl.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Mijn profiel`, 's119f9875b7d4cdfc': `Hulp nodig? Neem contact op met ondersteuning.`, 's1228605ee65ddefa': str`${0} resultaat`, 's2bb33291ef8ae3d4': str`Typ minimaal ${0} tekens om te zoeken`, 's2be8f715fbd00dcb': `We konden geen overeenkomsten vinden.`, 's3112f1ca236c8a61': `Laadingsfout`, 's352719d86112de9a': `Hulp`, 's387a4a41718122cb': str`${0} resultaten`, 's3fb7db4771812f0c': `Als het probleem aanhoudt, laad de pagina opnieuw of neem contact op met ondersteuning.`, 's457d59d649765619': `Ga naar hoofdinhoud`, 's4b0c6b66b4efd7d8': `Kies een service`, 's58a1dace5a9acc5b': str`Servicemenu, ${0}`, 's5be3c6d61cd9182f': `Meldingen`, 's5d369be551a4dd7a': `Menu-items`, 's5d929ff1619ac0c9': `Zoeken`, 's5f4586bc1e2740e6': `Zoekopdracht wissen`, 's60fb9db2c6c14775': `Controleer uw internetverbinding en probeer het opnieuw.`, 's6abb1cd87fe0114e': `Home`, 's7584ded3d749c75e': `Meer laden`, 's82b383a30bc685e9': `Gebruikersmenu`, 's842e9f4f6fdb5901': `Zoekbereik`, 's8a1cc2725e462c2a': `Feedback sturen`, 's8d91340b5caa2d5c': `Menu openen`, 's9094c0cde8fb5058': `Geen resultaten gevonden`, 's970de9ba0cf07677': `Zoeken`, 's97b95ad19ebb75a9': str`Gebruikersmenu, ${0}`, 'sacde528ad7d2d031': `We kunnen het menu niet laden.`, 'sb560e5cd092ef2e5': `Resultaten laden`, 'sb64127e4e4f0b575': `Uitloggen`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Zijnavigatie`, 'sd9582ea5f8f8ac5d': `AI-assistent openen`, 'sdb2bf46270cfda6c': `Broodkruimel`, 'sf55d634dcc743595': `Services`, 'sfbf31f663cef6cc2': `Probeer andere zoekwoorden of controleer de spelling.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/nl.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/no.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Trenger du hjelp? Kontakt støtte.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Skriv inn minst ${0} tegn for å søke`, 's2be8f715fbd00dcb': `Vi fant ingen treff.`, 's3112f1ca236c8a61': `Lastingsfeil`, 's352719d86112de9a': `Hjelp`, 's387a4a41718122cb': str`${0} resultater`, 's3fb7db4771812f0c': `Hvis problemet vedvarer, last inn siden på nytt eller kontakt støtte.`, 's457d59d649765619': `Hopp til hovedinnhold`, 's4b0c6b66b4efd7d8': `Velg en tjeneste`, 's58a1dace5a9acc5b': str`Tjenestemeny, ${0}`, 's5be3c6d61cd9182f': `Varsler`, 's5d369be551a4dd7a': `Menyelementer`, 's5d929ff1619ac0c9': `Søk`, 's5f4586bc1e2740e6': `Tøm søk`, 's60fb9db2c6c14775': `Sjekk internettforbindelsen din og prøv igjen.`, 's6abb1cd87fe0114e': `Hjem`, 's7584ded3d749c75e': `Last inn mer`, 's82b383a30bc685e9': `Brukermeny`, 's842e9f4f6fdb5901': `Søkeomfang`, 's8a1cc2725e462c2a': `Send tilbakemelding`, 's8d91340b5caa2d5c': `Åpne meny`, 's9094c0cde8fb5058': `Ingen resultater funnet`, 's970de9ba0cf07677': `Søker`, 's97b95ad19ebb75a9': str`Brukermeny, ${0}`, 'sacde528ad7d2d031': `Vi kan ikke laste menyen.`, 'sb560e5cd092ef2e5': `Laster resultater`, 'sb64127e4e4f0b575': `Logg ut`, 'sbb588bb505779122': `Tilbakemelding`, 'sd1b2ae9109b29cf0': `Sidenavigasjon`, 'sd9582ea5f8f8ac5d': `Åpne AI-assistent`, 'sdb2bf46270cfda6c': `Brødsmule`, 'sf55d634dcc743595': `Tjenester`, 'sfbf31f663cef6cc2': `Prøv andre søkeord eller sjekk stavemåten.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/no.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/sv.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Behöver du hjälp? Kontakta support.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Skriv minst ${0} tecken för att söka`, 's2be8f715fbd00dcb': `Vi hittade inga matchningar.`, 's3112f1ca236c8a61': `Laddningsfel`, 's352719d86112de9a': `Hjälp`, 's387a4a41718122cb': str`${0} resultat`, 's3fb7db4771812f0c': `Om problemet kvarstår, ladda om sidan eller kontakta support.`, 's457d59d649765619': `Hoppa till huvudinnehåll`, 's4b0c6b66b4efd7d8': `Välj en tjänst`, 's58a1dace5a9acc5b': str`Tjänstemeny, ${0}`, 's5be3c6d61cd9182f': `Aviseringar`, 's5d369be551a4dd7a': `Menyalternativ`, 's5d929ff1619ac0c9': `Sök`, 's5f4586bc1e2740e6': `Rensa sökning`, 's60fb9db2c6c14775': `Kontrollera din internetanslutning och försök igen.`, 's6abb1cd87fe0114e': `Hem`, 's7584ded3d749c75e': `Läs in mer`, 's82b383a30bc685e9': `Användarmeny`, 's842e9f4f6fdb5901': `Sökområde`, 's8a1cc2725e462c2a': `Skicka feedback`, 's8d91340b5caa2d5c': `Öppna meny`, 's9094c0cde8fb5058': `Inga resultat hittades`, 's970de9ba0cf07677': `Söker`, 's97b95ad19ebb75a9': str`Användarmeny, ${0}`, 'sacde528ad7d2d031': `Vi kan inte ladda menyn.`, 'sb560e5cd092ef2e5': `Laddar resultat`, 'sb64127e4e4f0b575': `Logga ut`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Sidnavigering`, 'sd9582ea5f8f8ac5d': `Öppna AI-assistent`, 'sdb2bf46270cfda6c': `Brödsmula`, 'sf55d634dcc743595': `Tjänster`, 'sfbf31f663cef6cc2': `Prova andra sökord eller kontrollera stavningen.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/sv.js"}}]},{"kind":"javascript-module","path":"shared/scrollbar-styles.js","declarations":[{"kind":"variable","name":"scrollbarStyles","default":"css` .ga-scroll { scrollbar-color: var(--ga-color-text-disabled) var(--ga-color-surface-page); scrollbar-width: thin; } `"}],"exports":[{"kind":"js","name":"scrollbarStyles","declaration":{"name":"scrollbarStyles","module":"shared/scrollbar-styles.js"}}]},{"kind":"javascript-module","path":"shared/spinner.css.js","declarations":[{"kind":"variable","name":"spinnerStyles","default":"css` .vsn-spinner { display: inline-block; flex-shrink: 0; width: calc(1rem * var(--ga-base-scaling-factor, 1)); height: calc(1rem * var(--ga-base-scaling-factor, 1)); border-radius: 50%; border: calc(0.125rem * var(--ga-base-scaling-factor, 1)) solid var(--ga-color-surface-action-hover-2); border-top-color: var(--ga-color-surface-progress); animation: vsn-spin 0.7s linear infinite; } .vsn-switcher-dropdown--loading { align-items: center; justify-content: center; } @keyframes vsn-spin { to { transform: rotate(360deg); } } `"}],"exports":[{"kind":"js","name":"spinnerStyles","declaration":{"name":"spinnerStyles","module":"shared/spinner.css.js"}}]},{"kind":"javascript-module","path":"shared/types/index.js","declarations":[{"kind":"function","name":"isTreeLeaf","return":{"type":{"text":"item is TreeLeaf"}},"parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"function","name":"isTreeParent","return":{"type":{"text":"item is TreeParent"}},"parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"class","description":"","name":"SearchError","members":[{"kind":"field","name":"name","type":{"text":"string"},"default":"'SearchError'"}],"superclass":{"name":"Error","module":"src/shared/types/index.ts"}},{"kind":"variable","name":"activeIdContext"},{"kind":"variable","name":"focusManagerContext"}],"exports":[{"kind":"js","name":"isTreeLeaf","declaration":{"name":"isTreeLeaf","module":"shared/types/index.js"}},{"kind":"js","name":"isTreeParent","declaration":{"name":"isTreeParent","module":"shared/types/index.js"}},{"kind":"js","name":"SearchError","declaration":{"name":"SearchError","module":"shared/types/index.js"}},{"kind":"js","name":"activeIdContext","declaration":{"name":"activeIdContext","module":"shared/types/index.js"}},{"kind":"js","name":"focusManagerContext","declaration":{"name":"focusManagerContext","module":"shared/types/index.js"}}]},{"kind":"javascript-module","path":"shared/types/survicate.types.js","declarations":[],"exports":[]},{"kind":"javascript-module","path":"shared/utils.js","declarations":[{"kind":"function","name":"isMac","return":{"type":{"text":"boolean"}},"description":"True on macOS. Prefers the modern userAgentData, falls back to navigator.platform.\nGuarded for non-browser contexts (SSR, node tooling, tests without jsdom):\nwhen navigator is unavailable it defaults to non-Mac rather than throwing."},{"kind":"function","name":"isShortcutWithCommandModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}],"description":"True when a command shortcut modifier is held.\nOn Mac: Ctrl or Cmd (both accepted; Ctrl is a Safari fallback).\nOn other platforms: Ctrl only (Meta/Super is captured by the OS)."},{"kind":"function","name":"isShortcutWithModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}]},{"kind":"function","name":"isShortcutWithoutModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}]},{"kind":"function","name":"SWITCHER_DROPDOWN_HEADER","return":{"type":{"text":"string"}}},{"kind":"function","name":"SEARCH_PLACEHOLDER","return":{"type":{"text":"string"}}},{"kind":"function","name":"SEARCH_SHORTCUT","return":{"type":{"text":"string"}},"description":"Platform-specific display label for the search shortcut."},{"kind":"variable","name":"SEARCH_MIN_LENGTH","type":{"text":"number"},"default":"3"},{"kind":"variable","name":"SEARCH_DEBOUNCE_MS","type":{"text":"number"},"default":"200"},{"kind":"function","name":"SEARCH_HINT","return":{"type":{"text":"string"}},"parameters":[{"name":"minLength","type":{"text":"number"}}]},{"kind":"function","name":"MENU_SCOPE_LABEL","return":{"type":{"text":"string"}}},{"kind":"function","name":"LOAD_MORE_LABEL","return":{"type":{"text":"string"}}},{"kind":"function","name":"DROPDOWN_DEFAULT_TITLE","return":{"type":{"text":"string"}}},{"kind":"function","name":"PLATFORM_LABEL","return":{"type":{"text":"string"}}},{"kind":"variable","name":"MENU_SCOPE_ID","type":{"text":"string"},"default":"'menu'"},{"kind":"variable","name":"SURVICATE_SDK_ID","type":{"text":"string"},"default":"'survicate-sdk'"},{"kind":"variable","name":"SURVICATE_FEEDBACK_EVENT","type":{"text":"string"},"default":"'ui-components-feedback'"},{"kind":"function","name":"getSurvicateSdkUrl","parameters":[{"name":"workspaceId","type":{"text":"string"}}]}],"exports":[{"kind":"js","name":"isMac","declaration":{"name":"isMac","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithCommandModifier","declaration":{"name":"isShortcutWithCommandModifier","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithModifier","declaration":{"name":"isShortcutWithModifier","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithoutModifier","declaration":{"name":"isShortcutWithoutModifier","module":"shared/utils.js"}},{"kind":"js","name":"SWITCHER_DROPDOWN_HEADER","declaration":{"name":"SWITCHER_DROPDOWN_HEADER","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_PLACEHOLDER","declaration":{"name":"SEARCH_PLACEHOLDER","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_SHORTCUT","declaration":{"name":"SEARCH_SHORTCUT","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_MIN_LENGTH","declaration":{"name":"SEARCH_MIN_LENGTH","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_DEBOUNCE_MS","declaration":{"name":"SEARCH_DEBOUNCE_MS","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_HINT","declaration":{"name":"SEARCH_HINT","module":"shared/utils.js"}},{"kind":"js","name":"MENU_SCOPE_LABEL","declaration":{"name":"MENU_SCOPE_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"LOAD_MORE_LABEL","declaration":{"name":"LOAD_MORE_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"DROPDOWN_DEFAULT_TITLE","declaration":{"name":"DROPDOWN_DEFAULT_TITLE","module":"shared/utils.js"}},{"kind":"js","name":"PLATFORM_LABEL","declaration":{"name":"PLATFORM_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"MENU_SCOPE_ID","declaration":{"name":"MENU_SCOPE_ID","module":"shared/utils.js"}},{"kind":"js","name":"SURVICATE_SDK_ID","declaration":{"name":"SURVICATE_SDK_ID","module":"shared/utils.js"}},{"kind":"js","name":"SURVICATE_FEEDBACK_EVENT","declaration":{"name":"SURVICATE_FEEDBACK_EVENT","module":"shared/utils.js"}},{"kind":"js","name":"getSurvicateSdkUrl","declaration":{"name":"getSurvicateSdkUrl","module":"shared/utils.js"}}]}],"package":{"name":"@visma-swno/vsn-navigation","version":"0.0.0-semantically-released"}}
|
|
1
|
+
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"components/controllers/focus-trapping-controller.js","declarations":[{"kind":"class","description":"","name":"FocusTrappingController","members":[{"kind":"field","name":"_host","type":{"text":"LitElement"},"privacy":"private","default":"host"},{"kind":"field","name":"_rootElement","type":{"text":"HTMLElement | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_appliesCallback","type":{"text":"() => boolean"},"privacy":"private","default":"appliesCallback"},{"kind":"field","name":"_rootSelector","type":{"text":"string | undefined"},"privacy":"private","default":"rootSelector"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostDisconnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostUpdated","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onKeyDown","privacy":"private"}]}],"exports":[{"kind":"js","name":"FocusTrappingController","declaration":{"name":"FocusTrappingController","module":"components/controllers/focus-trapping-controller.js"}}]},{"kind":"javascript-module","path":"components/controllers/outside-pointer-controller.js","declarations":[{"kind":"class","description":"Fires `callback` when a document-level `pointerdown` lands OUTSIDE all of\n`insideSelectors`. Use for popovers/dropdowns where clicks anywhere on the\npage should dismiss the popover.\n\nContrast with OutsideClickController which listens on the host element\nitself; suited only when the host fills the dismissable area (e.g. an\noverlay with `position: absolute; inset: 0`).","name":"OutsidePointerController","members":[{"kind":"field","name":"_host","type":{"text":"LitElement"},"privacy":"private","default":"host"},{"kind":"field","name":"_insideSelectors","type":{"text":"readonly string[]"},"privacy":"private","default":"insideSelectors"},{"kind":"field","name":"_callback","type":{"text":"() => void"},"privacy":"private","default":"callback"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"method","name":"hostDisconnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onPointerDown","privacy":"private"}]}],"exports":[{"kind":"js","name":"OutsidePointerController","declaration":{"name":"OutsidePointerController","module":"components/controllers/outside-pointer-controller.js"}}]},{"kind":"javascript-module","path":"components/vsn-card.js","declarations":[{"kind":"class","description":"","name":"VSNCard","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-card","customElement":true}],"exports":[{"kind":"js","name":"VSNCard","declaration":{"name":"VSNCard","module":"components/vsn-card.js"}},{"kind":"custom-element-definition","name":"vsn-card","declaration":{"name":"VSNCard","module":"components/vsn-card.js"}}]},{"kind":"javascript-module","path":"components/vsn-navigation.js","declarations":[{"kind":"class","description":"","name":"VSNNavigation","members":[{"kind":"field","name":"lang","type":{"text":"LanguageCode"},"default":"'en'","description":"Language to use for the component's labels (Search, Log out, etc)","attribute":"lang"},{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"},"description":"Configuration for the navigation menu (pages in current module)"},{"kind":"field","name":"modules","type":{"text":"AppModules | undefined"},"description":"Configuration for the module switcher"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"},"description":"Configuration related to authenticated user"},{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"description":"Link to landing page","attribute":"landing-page-url"},{"kind":"field","name":"showHelp","type":{"text":"boolean"},"default":"false","description":"Show help icon in the top bar","attribute":"show-help"},{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","attribute":"help-url"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null","description":"Configuration for the feedback component"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","description":"Keep the module switcher permanently open (non-closable). Default false.","attribute":"module-switcher-always-open"},{"kind":"field","name":"showNotification","type":{"text":"boolean"},"default":"false","description":"Show notification icon in the top bar","attribute":"show-notification"},{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","description":"Notification icon shows active state","attribute":"notification-active"},{"kind":"field","name":"open","type":{"text":"boolean"},"default":"false","description":"When true, the side bar is opened","attribute":"open","reflects":true},{"kind":"field","name":"_resolvedModules","type":{"text":"ModuleItem[]"},"privacy":"private","default":"[]"},{"kind":"field","name":"_modulesLoading","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_modulesLoadToken","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_restoreFocusToToggle","type":{"text":"boolean"},"privacy":"private","default":"false","description":"Set at close time: whether focus was inside the side-bar. Gates the focus\nrestore so we don't steal focus when the user closed the side-bar by\nclicking a focusable element outside (e.g. a top-bar button)."},{"kind":"method","name":"_resolveModules","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_sidebarTree","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"field","name":"_topBarTree","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"field","name":"_onTopBarMenuItemChanged","privacy":"private"},{"kind":"field","name":"_onSideBarMenuItemChanged","privacy":"private"},{"kind":"field","name":"_resolvedLang","type":{"text":"string"},"privacy":"private","readonly":true},{"kind":"method","name":"_onToggleSideBar","privacy":"private"},{"kind":"method","name":"_openAndFocusSearch","privacy":"private","return":{"type":{"text":"void"}},"description":"Open the side-bar and, once rendered, focus the search field (if enabled).\nShared by the hamburger toggle and the keyboard shortcut."},{"kind":"method","name":"_closeSideBar","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onShortcut","privacy":"private","description":"Toggles the side-bar: opens and focuses search when closed, closes when open.\nShortcut: Cmd+O on Mac (Ctrl+O also accepted as a Safari fallback); Ctrl+O on all other platforms."},{"kind":"field","name":"_onEscape","privacy":"private"},{"kind":"method","name":"_onTopBarClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]},{"kind":"method","name":"_onSlotContentClick","privacy":"private","return":{"type":{"text":"void"}}}],"attributes":[{"name":"lang","type":{"text":"LanguageCode"},"default":"'en'","description":"Language to use for the component's labels (Search, Log out, etc)","fieldName":"lang"},{"name":"landing-page-url","type":{"text":"string | undefined"},"description":"Link to landing page","fieldName":"landingPageUrl"},{"name":"show-help","type":{"text":"boolean"},"default":"false","description":"Show help icon in the top bar","fieldName":"showHelp"},{"name":"help-url","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","fieldName":"helpUrl"},{"name":"module-switcher-always-open","type":{"text":"boolean"},"default":"false","description":"Keep the module switcher permanently open (non-closable). Default false.","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"show-notification","type":{"text":"boolean"},"default":"false","description":"Show notification icon in the top bar","fieldName":"showNotification"},{"name":"notification-active","type":{"text":"boolean"},"default":"false","description":"Notification icon shows active state","fieldName":"notificationActive"},{"name":"open","type":{"text":"boolean"},"default":"false","description":"When true, the side bar is opened","fieldName":"open"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-navigation","customElement":true}],"exports":[{"kind":"js","name":"VSNSkipToMain","declaration":{"name":"VSNSkipToMain","module":"./vsn-skip-to-main.js"}},{"kind":"js","name":"TreeItem","declaration":{"name":"TreeItem","module":"../shared/types/index.js"}},{"kind":"js","name":"TreeLeaf","declaration":{"name":"TreeLeaf","module":"../shared/types/index.js"}},{"kind":"js","name":"ItemChangedEventDetail","declaration":{"name":"ItemChangedEventDetail","module":"../shared/types/index.js"}},{"kind":"js","name":"TreeParent","declaration":{"name":"TreeParent","module":"../shared/types/index.js"}},{"kind":"js","name":"ModuleItem","declaration":{"name":"ModuleItem","module":"../shared/types/index.js"}},{"kind":"js","name":"AppModules","declaration":{"name":"AppModules","module":"../shared/types/index.js"}},{"kind":"js","name":"VsnAuth","declaration":{"name":"VsnAuth","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchConfig","declaration":{"name":"SearchConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchDataSetConfig","declaration":{"name":"SearchDataSetConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchQuery","declaration":{"name":"SearchQuery","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchResult","declaration":{"name":"SearchResult","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchResultItem","declaration":{"name":"SearchResultItem","module":"../shared/types/index.js"}},{"kind":"js","name":"NavigationMenu","declaration":{"name":"NavigationMenu","module":"../shared/types/index.js"}},{"kind":"js","name":"FeedbackConfig","declaration":{"name":"FeedbackConfig","module":"../shared/types/index.js"}},{"kind":"js","name":"LanguageCode","declaration":{"name":"LanguageCode","module":"../shared/types/index.js"}},{"kind":"js","name":"VsnNavigation","declaration":{"name":"VsnNavigation","module":"../shared/types/index.js"}},{"kind":"js","name":"ButtonClickedEvent","declaration":{"name":"ButtonClickedEvent","module":"../shared/types/index.js"}},{"kind":"js","name":"SearchError","declaration":{"name":"SearchError","module":"../shared/types/index.js"}},{"kind":"js","name":"isTreeLeaf","declaration":{"name":"isTreeLeaf","module":"../shared/types/index.js"}},{"kind":"js","name":"isTreeParent","declaration":{"name":"isTreeParent","module":"../shared/types/index.js"}},{"kind":"js","name":"VSNNavigation","declaration":{"name":"VSNNavigation","module":"components/vsn-navigation.js"}},{"kind":"custom-element-definition","name":"vsn-navigation","declaration":{"name":"VSNNavigation","module":"components/vsn-navigation.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/nav-footer.keyboard.js","declarations":[{"kind":"class","description":"","name":"NavFooterKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"NavFooterHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"NavFooterKeyboardController","declaration":{"name":"NavFooterKeyboardController","module":"components/vsn-side-bar/nav-footer.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-error-state/vsn-error-state.css.js","declarations":[{"kind":"variable","name":"errorStateStyles","default":"css` .vsn-error-state { display: flex; flex-direction: column; align-items: flex-start; padding: calc(1.5rem * var(--ga-base-scaling-factor, 1)) calc(1rem * var(--ga-base-scaling-factor, 1)); gap: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__icon { display: inline-flex; color: var(--ga-color-icon-error); margin-bottom: calc(0.5rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__title { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 600; margin-bottom: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-error-state__message, .vsn-error-state__hint { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; } .vsn-error-state__support { margin-top: calc(1.5rem * var(--ga-base-scaling-factor, 1)); font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-on-disabled); } `"}],"exports":[{"kind":"js","name":"errorStateStyles","declaration":{"name":"errorStateStyles","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js","declarations":[{"kind":"class","description":"","name":"VsnErrorState","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-error-state","customElement":true}],"exports":[{"kind":"js","name":"VsnErrorState","declaration":{"name":"VsnErrorState","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js"}},{"kind":"custom-element-definition","name":"vsn-error-state","declaration":{"name":"VsnErrorState","module":"components/vsn-side-bar/vsn-error-state/vsn-error-state.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.avatar.js","declarations":[{"kind":"function","name":"buildAvatarUrl","return":{"type":{"text":"string | undefined"}},"parameters":[{"name":"baseUrl","type":{"text":"string"}},{"name":"userId","type":{"text":"string"}},{"name":"clientId","type":{"text":"string | undefined"}},{"name":"size","type":{"text":"AvatarSize"}}]}],"exports":[{"kind":"js","name":"buildAvatarUrl","declaration":{"name":"buildAvatarUrl","module":"components/vsn-side-bar/vsn-footer/vsn-footer.avatar.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.css.js","declarations":[{"kind":"variable","name":"footerStyles","default":"css` @layer components { vsn-footer { display: block; flex-shrink: 0; } :where(.ga-side-navigation__user), :where(.ga-side-navigation__footer-dropdown-item) { width: 100%; cursor: pointer; } .ga-side-navigation__footer-dropdown-item:focus-visible { outline: 2px solid var(--ga-color-border-focus); outline-offset: 4px; } .vsn-side-navigation__user-info { display: flex; flex-direction: column; flex: 1; min-width: 0; } .vsn-side-navigation__user-info > .ga-side-navigation__user-name { flex: initial; } .vsn-side-navigation__user-email { font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; } .vsn-side-navigation__user-avatar--icon { display: inline-flex; align-items: center; justify-content: center; } } `"}],"exports":[{"kind":"js","name":"footerStyles","declaration":{"name":"footerStyles","module":"components/vsn-side-bar/vsn-footer/vsn-footer.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.keyboard.js","declarations":[{"kind":"class","description":"","name":"FooterKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"FooterHost"},"privacy":"private","default":"host"},{"kind":"field","name":"_prevExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"method","name":"hostUpdated","return":{"type":{"text":"void"}}},{"kind":"field","name":"onUserKeydown","readonly":true},{"kind":"field","name":"onDropdownKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"FooterKeyboardController","declaration":{"name":"FooterKeyboardController","module":"components/vsn-side-bar/vsn-footer/vsn-footer.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-footer/vsn-footer.js","declarations":[{"kind":"class","description":"","name":"VsnFooter","members":[{"kind":"field","name":"user","type":{"text":"User"}},{"kind":"field","name":"profilePictureBaseUrl","type":{"text":"string"},"attribute":"profilePictureBaseUrl"},{"kind":"field","name":"myProfileUrl","type":{"text":"string"},"attribute":"myProfileUrl"},{"kind":"field","name":"_items","type":{"text":"FooterItem[]"},"privacy":"private","readonly":true},{"kind":"field","name":"expanded","type":{"text":"boolean"},"default":"false","attribute":"expanded","reflects":true},{"kind":"field","name":"_avatarFailed","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_keyboard","privacy":"private","default":"new FooterKeyboardController(this)"},{"kind":"method","name":"reset","return":{"type":{"text":"void"}},"description":"Clear per-session state — called by the host when the side-bar closes."},{"kind":"method","name":"renderDropdown","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_toggle","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_handleClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"item","type":{"text":"FooterItem"}}]},{"kind":"method","name":"_handleProfileClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"item","type":{"text":"FooterItem"}}]},{"kind":"method","name":"renderAvatar","privacy":"private","return":{"type":{"text":"TemplateResult"}}}],"events":[{"name":"vsn-logout-click","type":{"text":"CustomEvent"}},{"name":"vsn-footer-item-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"profilePictureBaseUrl","type":{"text":"string"},"fieldName":"profilePictureBaseUrl"},{"name":"myProfileUrl","type":{"text":"string"},"fieldName":"myProfileUrl"},{"name":"expanded","type":{"text":"boolean"},"default":"false","fieldName":"expanded"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-footer","customElement":true}],"exports":[{"kind":"js","name":"VsnFooter","declaration":{"name":"VsnFooter","module":"components/vsn-side-bar/vsn-footer/vsn-footer.js"}},{"kind":"custom-element-definition","name":"vsn-footer","declaration":{"name":"VsnFooter","module":"components/vsn-side-bar/vsn-footer/vsn-footer.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.css.js","declarations":[{"kind":"variable","name":"headerStyles","default":"css` @layer components { .vsn-switcher-anchor { position: relative; } .ga-side-navigation__switcher-dropdown { position: absolute; top: 100%; left: 0; right: 0; z-index: 10; } } `"}],"exports":[{"kind":"js","name":"headerStyles","declaration":{"name":"headerStyles","module":"components/vsn-side-bar/vsn-header/vsn-header.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.keyboard.js","declarations":[{"kind":"class","description":"","name":"SwitcherKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"SwitcherHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onSwitcherKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"SwitcherKeyboardController","declaration":{"name":"SwitcherKeyboardController","module":"components/vsn-side-bar/vsn-header/vsn-header.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-header.js","declarations":[{"kind":"class","description":"","name":"VsnNavHeader","members":[{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"activeModuleLabel","type":{"text":"string | undefined"},"attribute":"activeModuleLabel"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","attribute":"moduleSwitcherAlwaysOpen"},{"kind":"field","name":"moduleSwitcherMaxHeight","type":{"text":"number"},"default":"0"},{"kind":"field","name":"search","type":{"text":"SearchConfig | undefined"}},{"kind":"field","name":"searchValue","type":{"text":"string"},"default":"''","attribute":"searchValue"},{"kind":"field","name":"searchLoading","type":{"text":"boolean"},"default":"false","attribute":"searchLoading"},{"kind":"field","name":"expanded","type":{"text":"boolean"},"default":"false","attribute":"expanded","reflects":true},{"kind":"field","name":"_keyboard","privacy":"private","default":"new SwitcherKeyboardController(this)"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"field","name":"_state","type":{"text":"SwitcherState"},"privacy":"private","readonly":true},{"kind":"field","name":"canClose","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"hasAvailableItems","type":{"text":"boolean"},"readonly":true},{"kind":"field","name":"_isOpen","type":{"text":"boolean"},"privacy":"private","description":"The dropdown is visible when the host forces it open, or the user expanded it.\n`expanded` stays purely user-driven, so clearing moduleSwitcherAlwaysOpen never leaves a\nstale-open dropdown, and forced-open survives a reset() (which only clears expanded).","readonly":true},{"kind":"field","name":"canToggle","type":{"text":"boolean"},"description":"Render an interactive toggle only when there's something to open or it's already open.","readonly":true},{"kind":"method","name":"reset","return":{"type":{"text":"void"}},"description":"Clear per-session state — called by the host when the side-bar closes."},{"kind":"method","name":"_toggle","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_pickModule","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"id","type":{"text":"string"}}]},{"kind":"method","name":"_onItemSelect","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ id: string }>"}}]},{"kind":"method","name":"requestClose","privacy":"public","return":{"type":{"text":"boolean"}}}],"events":[{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"activeModuleLabel","type":{"text":"string | undefined"},"fieldName":"activeModuleLabel"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"searchValue","type":{"text":"string"},"default":"''","fieldName":"searchValue"},{"name":"searchLoading","type":{"text":"boolean"},"default":"false","fieldName":"searchLoading"},{"name":"expanded","type":{"text":"boolean"},"default":"false","fieldName":"expanded"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-header","customElement":true}],"exports":[{"kind":"js","name":"VsnNavHeader","declaration":{"name":"VsnNavHeader","module":"components/vsn-side-bar/vsn-header/vsn-header.js"}},{"kind":"custom-element-definition","name":"vsn-header","declaration":{"name":"VsnNavHeader","module":"components/vsn-side-bar/vsn-header/vsn-header.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js","declarations":[{"kind":"class","description":"","name":"VsnSwitcherMenu","members":[{"kind":"field","name":"items","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"loading","type":{"text":"boolean"},"default":"false","attribute":"loading"},{"kind":"field","name":"maxHeight","type":{"text":"number"},"default":"0"},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_headerId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-switcher-dropdown-header-${VsnSwitcherMenu._idCounter++}`"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"method","name":"_handleItemClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"id","type":{"text":"string"}}]},{"kind":"field","name":"_handleKeydown","privacy":"private","readonly":true}],"events":[{"name":"item-select","type":{"text":"CustomEvent"}}],"attributes":[{"name":"loading","type":{"text":"boolean"},"default":"false","fieldName":"loading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-switcher-menu","customElement":true}],"exports":[{"kind":"js","name":"VsnSwitcherMenu","declaration":{"name":"VsnSwitcherMenu","module":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js"}},{"kind":"custom-element-definition","name":"vsn-switcher-menu","declaration":{"name":"VsnSwitcherMenu","module":"components/vsn-side-bar/vsn-header/vsn-switcher-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js","declarations":[{"kind":"class","description":"","name":"VSNMenuButton","members":[{"kind":"field","name":"label","type":{"text":"string"},"default":"''","attribute":"label"},{"kind":"field","name":"closeOnClick","type":{"text":"boolean"},"default":"false","description":"Close navigation on click","attribute":"close-on-click"},{"kind":"field","name":"_onKeydown","privacy":"private"},{"kind":"field","name":"_onClick","privacy":"private"}],"attributes":[{"name":"label","type":{"text":"string"},"default":"''","fieldName":"label"},{"name":"close-on-click","type":{"text":"boolean"},"default":"false","description":"Close navigation on click","fieldName":"closeOnClick"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-button","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuButton","declaration":{"name":"VSNMenuButton","module":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js"}},{"kind":"custom-element-definition","name":"vsn-menu-button","declaration":{"name":"VSNMenuButton","module":"components/vsn-side-bar/vsn-menu/vsn-menu-button.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-item.css.js","declarations":[{"kind":"variable","name":"menuItemStyles","default":"css` @layer components { .vsn-menu__list { list-style: none; margin: 0; padding: 0; } .vsn-menu__item { margin: 0; padding: 0; } .ga-side-navigation__item:focus-visible::after { position: absolute; inset: 3px; border-radius: calc(var(--ga-radius) * var(--ga-base-scaling-factor, 1)); border-style: var(--tw-border-style); border-width: 2px; border-color: var(--ga-color-border-focus); --tw-content: ''; content: var(--tw-content); } } `"}],"exports":[{"kind":"js","name":"menuItemStyles","declaration":{"name":"menuItemStyles","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js","declarations":[{"kind":"class","description":"","name":"VSNMenuItem","members":[{"kind":"field","name":"tree","type":{"text":"TreeItem | undefined"}},{"kind":"field","name":"level","type":{"text":"number"},"default":"1","attribute":"level"},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-side-menu-item-tooltip-${n}`"},{"kind":"field","name":"_childListId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-side-menu-item-list-${n}`"},{"kind":"field","name":"menuShortcuts","type":{"text":"string[]"},"privacy":"private","static":true,"readonly":true,"default":"['ArrowRight', 'ArrowLeft', 'ArrowUp', 'ArrowDown', 'Enter', ' ']"},{"kind":"field","name":"_currentActiveId","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"_isActive","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_isExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"field","name":"_focusManager","type":{"text":"FocusManager | undefined"},"privacy":"private"},{"kind":"field","name":"hasPageTitle","type":{"text":"boolean"},"default":"false","attribute":"hasPageTitle"},{"kind":"method","name":"focusSelf","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"menuItemMarkup","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"field","name":"_onKeyDown","privacy":"private"},{"kind":"method","name":"handleKeyForLeaf","privacy":"private","parameters":[{"name":"key","type":{"text":"string"}}]},{"kind":"method","name":"handleKeyForParent","privacy":"private","parameters":[{"name":"key","type":{"text":"string"}}]},{"kind":"method","name":"menuItem","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}},{"name":"level","type":{"text":"number"}}]},{"kind":"method","name":"isActiveNode","privacy":"private","return":{"type":{"text":"TreeItem | null"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_handleItemClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"level","type":{"text":"number"},"default":"1","fieldName":"level"},{"name":"hasPageTitle","type":{"text":"boolean"},"default":"false","fieldName":"hasPageTitle"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-item","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuItem","declaration":{"name":"VSNMenuItem","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js"}},{"kind":"custom-element-definition","name":"vsn-menu-item","declaration":{"name":"VSNMenuItem","module":"components/vsn-side-bar/vsn-menu/vsn-menu-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js","declarations":[{"kind":"class","description":"We need a separator component because of\nhttps://codepen.io/castastrophe/pen/yLXpagw Issues with :first-child/:last-child with slotted content","name":"VSNMenuSeparator","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-separator","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuSeparator","declaration":{"name":"VSNMenuSeparator","module":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js"}},{"kind":"custom-element-definition","name":"vsn-menu-separator","declaration":{"name":"VSNMenuSeparator","module":"components/vsn-side-bar/vsn-menu/vsn-menu-separator.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-menu/vsn-menu.js","declarations":[{"kind":"class","description":"","name":"VSNMenu","members":[{"kind":"field","name":"items","type":{"text":"readonly TreeItem[]"},"default":"[]"},{"kind":"field","name":"_currentActiveId","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"currentItem","type":{"text":"string"},"default":"''","attribute":"currentItem"},{"kind":"field","name":"hasPageTitle","type":{"text":"boolean"},"default":"false","attribute":"hasPageTitle"},{"kind":"field","name":"_focusManager","type":{"text":"FocusManager"},"privacy":"private","default":"{ focusPrev: (from) => { const items = Array.from(this.querySelectorAll<VSNMenuItem>('vsn-menu-item')); const i = items.indexOf(from as VSNMenuItem); items[i - 1]?.focusSelf(); }, focusNext: (from) => { const items = Array.from(this.querySelectorAll<VSNMenuItem>('vsn-menu-item')); const i = items.indexOf(from as VSNMenuItem); items[i + 1]?.focusSelf(); }, }"},{"kind":"method","name":"menuItem","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"tree","type":{"text":"TreeItem"}}]}],"attributes":[{"name":"currentItem","type":{"text":"string"},"default":"''","fieldName":"currentItem"},{"name":"hasPageTitle","type":{"text":"boolean"},"default":"false","fieldName":"hasPageTitle"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu","customElement":true}],"exports":[{"kind":"js","name":"VSNMenu","declaration":{"name":"VSNMenu","module":"components/vsn-side-bar/vsn-menu/vsn-menu.js"}},{"kind":"custom-element-definition","name":"vsn-menu","declaration":{"name":"VSNMenu","module":"components/vsn-side-bar/vsn-menu/vsn-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js","declarations":[{"kind":"class","description":"","name":"VsnSearchResultItem","members":[{"kind":"field","name":"item","type":{"text":"SearchResultItem"}},{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-search-result-item-tooltip-${VsnSearchResultItem._idCounter++}`"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"_onActivate","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-result-item","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchResultItem","declaration":{"name":"VsnSearchResultItem","module":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js"}},{"kind":"custom-element-definition","name":"vsn-search-result-item","declaration":{"name":"VsnSearchResultItem","module":"components/vsn-side-bar/vsn-search-results/vsn-search-result-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.css.js","declarations":[{"kind":"variable","name":"searchResultsStyles","default":"css` .vsn-search-results__empty { display: flex; flex-direction: column; align-items: center; padding: calc(2rem * var(--ga-base-scaling-factor, 1)) calc(1.5rem * var(--ga-base-scaling-factor, 1)); text-align: center; gap: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-search-results__empty-title { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 600; margin-bottom: calc(0.25rem * var(--ga-base-scaling-factor, 1)); } .vsn-search-results__empty-message, .vsn-search-results__empty-hint { font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-disable-selected); } .vsn-search-results__empty-support { margin-top: calc(1.5rem * var(--ga-base-scaling-factor, 1)); font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-on-disabled); } .vsn-search-results__error { display: flex; flex-direction: column; align-items: center; padding: calc(2rem * var(--ga-base-scaling-factor, 1)) calc(1.5rem * var(--ga-base-scaling-factor, 1)); text-align: center; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-body); } .vsn-search-results__load-more { width: 100%; padding: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)) calc(0.25rem * 4 * var(--ga-base-scaling-factor, 1)); background: none; border: none; cursor: pointer; color: var(--ga-color-text-action); text-align: center; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)); font-style: normal; font-weight: 500; line-height: calc(var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)); letter-spacing: var(--ga-text-md-letter-spacing); } .vsn-search-results__load-more:disabled { cursor: not-allowed; opacity: 0.5; } `"}],"exports":[{"kind":"js","name":"searchResultsStyles","declaration":{"name":"searchResultsStyles","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.keyboard.js","declarations":[{"kind":"class","description":"","name":"SearchResultsKeyboardController","members":[{"kind":"field","name":"host","type":{"text":"SearchResultsHost"},"privacy":"private","default":"host"},{"kind":"method","name":"hostConnected","return":{"type":{"text":"void"}}},{"kind":"field","name":"onResultsKeydown","readonly":true}]}],"exports":[{"kind":"js","name":"SearchResultsKeyboardController","declaration":{"name":"SearchResultsKeyboardController","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.keyboard.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js","declarations":[{"kind":"class","description":"","name":"VsnSearchResults","members":[{"kind":"field","name":"results","type":{"text":"SearchResultItem[] | undefined"}},{"kind":"field","name":"errorMessage","type":{"text":"string | undefined"},"attribute":"errorMessage"},{"kind":"field","name":"nextCursor","type":{"text":"string | undefined"},"attribute":"nextCursor"},{"kind":"field","name":"loadingMore","type":{"text":"boolean"},"default":"false","attribute":"loadingMore"},{"kind":"field","name":"_keyboard","privacy":"private","default":"new SearchResultsKeyboardController(this)"},{"kind":"method","name":"_emptyState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_errorState","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"message","type":{"text":"string"}}]},{"kind":"method","name":"_resultsList","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"results","type":{"text":"SearchResultItem[]"}}]},{"kind":"method","name":"_onLoadMore","privacy":"private","return":{"type":{"text":"void"}}}],"events":[{"name":"vsn-search-load-more","type":{"text":"CustomEvent"}}],"attributes":[{"name":"errorMessage","type":{"text":"string | undefined"},"fieldName":"errorMessage"},{"name":"nextCursor","type":{"text":"string | undefined"},"fieldName":"nextCursor"},{"name":"loadingMore","type":{"text":"boolean"},"default":"false","fieldName":"loadingMore"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-results","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchResults","declaration":{"name":"VsnSearchResults","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js"}},{"kind":"custom-element-definition","name":"vsn-search-results","declaration":{"name":"VsnSearchResults","module":"components/vsn-side-bar/vsn-search-results/vsn-search-results.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.css.js","declarations":[{"kind":"variable","name":"scopesStyles","default":"css` @layer components { vsn-search-scopes { display: block; flex-shrink: 0; padding: calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)) calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)); } vsn-search-scopes .ga-radio-group { gap: calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)); } vsn-search-scopes .ga-radio-button__label { line-height: calc(0.25rem * 6 * var(--ga-base-scaling-factor, 1)); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis; } } `"}],"exports":[{"kind":"js","name":"scopesStyles","declaration":{"name":"scopesStyles","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js","declarations":[{"kind":"class","description":"","name":"VsnSearchScopes","members":[{"kind":"field","name":"scopes","type":{"text":"SearchScope[]"},"default":"[]"},{"kind":"field","name":"selectedScopeId","type":{"text":"string"},"default":"''","attribute":"selectedScopeId"},{"kind":"field","name":"_counter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_name","privacy":"private","default":"`vsn-search-scope-${++VsnSearchScopes._counter}`"},{"kind":"method","name":"_renderScope","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"scope","type":{"text":"SearchScope"}}]},{"kind":"method","name":"_onChange","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"UIEvent"}}]}],"events":[{"name":"vsn-search-scope-changed","type":{"text":"CustomEvent"}}],"attributes":[{"name":"selectedScopeId","type":{"text":"string"},"default":"''","fieldName":"selectedScopeId"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search-scopes","customElement":true}],"exports":[{"kind":"js","name":"VsnSearchScopes","declaration":{"name":"VsnSearchScopes","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js"}},{"kind":"custom-element-definition","name":"vsn-search-scopes","declaration":{"name":"VsnSearchScopes","module":"components/vsn-side-bar/vsn-search-scopes/vsn-search-scopes.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search/vsn-search.css.js","declarations":[{"kind":"variable","name":"searchStyles","default":"css` .vsn-search__trigger, .vsn-search__clear { display: inline-flex; align-items: center; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; } .vsn-search__trigger { color: var(--ga-color-icon-primary); } .vsn-search__clear { color: var(--ga-color-icon-action); } .vsn-search__trigger:disabled { cursor: default; opacity: 0.5; } .vsn-search__helper { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; flex: 1 0 0; max-width: 550px; margin-inline: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)); padding: 0 calc(0.25rem * 2 * var(--ga-base-scaling-factor, 1)); overflow: hidden; text-overflow: ellipsis; font-family: var(--ga-font-family-primary); font-size: calc(var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)); line-height: calc(var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)); font-weight: 400; color: var(--ga-color-text-body); } .ga-side-navigation__search input { color: var(--ga-color-text-body); } .ga-side-navigation__search input::placeholder { color: var(--ga-color-text-disable-selected); } `"}],"exports":[{"kind":"js","name":"searchStyles","declaration":{"name":"searchStyles","module":"components/vsn-side-bar/vsn-search/vsn-search.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-search/vsn-search.js","declarations":[{"kind":"class","description":"","name":"VsnSearch","members":[{"kind":"field","name":"shortcut","type":{"text":"string"},"default":"''","attribute":"shortcut"},{"kind":"field","name":"value","type":{"text":"string"},"default":"''","attribute":"value"},{"kind":"field","name":"loading","type":{"text":"boolean"},"default":"false","attribute":"loading"},{"kind":"field","name":"_debounceTimer","type":{"text":"number | undefined"},"privacy":"private"},{"kind":"method","name":"focus","return":{"type":{"text":"void"}}},{"kind":"field","name":"_canSearch","type":{"text":"boolean"},"privacy":"private","readonly":true},{"kind":"method","name":"_handleInput","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"Event"}}]},{"kind":"field","name":"_scheduleAutoSearch","privacy":"private"},{"kind":"field","name":"_cancelDebounce","privacy":"private"},{"kind":"field","name":"_emitSearch","privacy":"private"},{"kind":"field","name":"_emitSearchCleared","privacy":"private"},{"kind":"method","name":"_handleEnter","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent"}}]},{"kind":"field","name":"_handleEscape","privacy":"private"},{"kind":"method","name":"_trailingSlot","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_spinner","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_clearButton","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"_shortcutBadge","privacy":"private","return":{"type":{"text":"TemplateResult"}}}],"events":[{"name":"vsn-search-input","type":{"text":"CustomEvent"}}],"attributes":[{"name":"shortcut","type":{"text":"string"},"default":"''","fieldName":"shortcut"},{"name":"value","type":{"text":"string"},"default":"''","fieldName":"value"},{"name":"loading","type":{"text":"boolean"},"default":"false","fieldName":"loading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-search","customElement":true}],"exports":[{"kind":"js","name":"VsnSearch","declaration":{"name":"VsnSearch","module":"components/vsn-side-bar/vsn-search/vsn-search.js"}},{"kind":"custom-element-definition","name":"vsn-search","declaration":{"name":"VsnSearch","module":"components/vsn-side-bar/vsn-search/vsn-search.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-side-bar.js","declarations":[{"kind":"class","description":"","name":"VSNSideBar","members":[{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"activeModuleLabel","type":{"text":"string | undefined"},"attribute":"activeModuleLabel"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","attribute":"moduleSwitcherAlwaysOpen"},{"kind":"field","name":"lang","type":{"text":"string"},"default":"'en'","attribute":"lang"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"}},{"kind":"field","name":"error","type":{"text":"boolean"},"default":"false","attribute":"error"},{"kind":"field","name":"open","type":{"text":"boolean"},"default":"false","attribute":"open","reflects":true},{"kind":"field","name":"menu","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"_searchQuery","type":{"text":"string"},"privacy":"private","default":"''"},{"kind":"field","name":"_searchResults","type":{"text":"SearchResultItem[] | undefined"},"privacy":"private"},{"kind":"field","name":"_searchLoading","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_activeScopeId","privacy":"private","default":"MENU_SCOPE_ID"},{"kind":"field","name":"_searchError","type":{"text":"string | undefined"},"privacy":"private"},{"kind":"field","name":"_searchNextCursor","type":{"text":"string | undefined"},"privacy":"private"},{"kind":"field","name":"_searchLoadingMore","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_moduleSwitcherMaxHeight","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_hasPageTitle","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_searchAbort","type":{"text":"AbortController | undefined"},"privacy":"private"},{"kind":"field","name":"_navFooterKeyboard","privacy":"private","default":"new NavFooterKeyboardController(this)"},{"kind":"field","name":"_resizeObserver","privacy":"private","default":"new ResizeObserver((entries: ResizeObserverEntry[]) => { this._observeMenuSize(entries); })"},{"kind":"field","name":"_customWidthPerLanguage","type":{"text":"{ [key: string]: string }"},"privacy":"private","default":"{ \"fi\": \"30em\" }"},{"kind":"field","name":"_menu","type":{"text":"NavigationMenu | undefined"},"privacy":"private","readonly":true},{"kind":"method","name":"downLevelTree","privacy":"private","return":{"type":{"text":"TreeParent | undefined"}},"parameters":[{"name":"tree","type":{"text":"TreeItem[] | undefined"}}]},{"kind":"method","name":"_observeMenuSize","privacy":"private","parameters":[{"name":"entries","type":{"text":"ResizeObserverEntry[]"}}]},{"kind":"method","name":"resetSidebarToInitialState","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_scrollActiveItemIntoView","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"focusSearch","return":{"type":{"text":"Promise<void>"}},"description":"Focus the search input, if search is enabled. Called by the host (vsn-navigation)\nwhenever it opens the side-bar — via the hamburger toggle or the keyboard shortcut\n(both route through VSNNavigation._openAndFocusSearch). Awaits the render so the\nfield exists and is visible (the side-bar is display:none while closed)."},{"kind":"method","name":"_onSearchInput","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ value: string }>"}}]},{"kind":"method","name":"_onSearchSubmit","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"CustomEvent<{ query: string }>"}}]},{"kind":"field","name":"_onNavigate","privacy":"private"},{"kind":"field","name":"_onMenuItemChanged","privacy":"private"},{"kind":"field","name":"_onFooterAction","privacy":"private"},{"kind":"method","name":"_onSearchCleared","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"field","name":"_onScopeChanged","privacy":"private"},{"kind":"method","name":"_clearSearchState","privacy":"private","return":{"type":{"text":"void"}}},{"kind":"method","name":"_runSearch","privacy":"private","return":{"type":{"text":"Promise<void>"}},"parameters":[{"name":"query","type":{"text":"string"}},{"name":"scopeId","type":{"text":"string"}}]},{"kind":"method","name":"_loadMore","privacy":"private","return":{"type":{"text":"Promise<void>"}}},{"kind":"method","name":"_filterTree","privacy":"private","return":{"type":{"text":"SearchResultItem[]"}},"parameters":[{"name":"query","type":{"text":"string"}}],"description":"Recursively walks the menu tree and returns all leaf nodes whose label or\nkeywords contain the given query string (case-insensitive).\n\n`walk` is a closure so it can accumulate results and read `lowerCaseQuery`\nwithout them being passed as arguments on every recursive call."},{"kind":"method","name":"matchInKeywords","privacy":"private","return":{"type":{"text":"boolean"}},"parameters":[{"name":"keywords","type":{"text":"string | undefined"}},{"name":"query","type":{"text":"string"}}],"description":"Returns true if any keyword in the whitespace-separated `keywords` string\ncontains the query (case-insensitive). Returns false if keywords is absent\nor empty."},{"kind":"method","name":"_viewMode","privacy":"private","return":{"type":{"text":"'error' | 'loading' | 'results' | 'menu'"}}},{"kind":"method","name":"searchResults","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"loadingState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"errorState","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"header","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"scopesGroup","privacy":"private","return":{"type":{"text":"TemplateResult"}}},{"kind":"method","name":"renderMenu","privacy":"private","parameters":[{"name":"menu","optional":true,"type":{"text":"NavigationMenu"}}]},{"kind":"method","name":"footer","privacy":"private","return":{"type":{"text":"TemplateResult"}},"parameters":[{"name":"auth","type":{"text":"VsnAuth"}}]}],"attributes":[{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"activeModuleLabel","type":{"text":"string | undefined"},"fieldName":"activeModuleLabel"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"moduleSwitcherAlwaysOpen","type":{"text":"boolean"},"default":"false","fieldName":"moduleSwitcherAlwaysOpen"},{"name":"lang","type":{"text":"string"},"default":"'en'","fieldName":"lang"},{"name":"error","type":{"text":"boolean"},"default":"false","fieldName":"error"},{"name":"open","type":{"text":"boolean"},"default":"false","fieldName":"open"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-side-bar","customElement":true}],"exports":[{"kind":"js","name":"VSNSideBar","declaration":{"name":"VSNSideBar","module":"components/vsn-side-bar/vsn-side-bar.js"}},{"kind":"custom-element-definition","name":"vsn-side-bar","declaration":{"name":"VSNSideBar","module":"components/vsn-side-bar/vsn-side-bar.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-template/vsn-template.css.js","declarations":[{"kind":"variable","name":"templateStyles","default":"css` .vsn-template__row { display: flex; flex-direction: column; align-items: flex-start; align-self: stretch; padding: calc(0.25rem * 3 * var(--ga-base-scaling-factor, 1)) 0; } .vsn-template__bar { height: calc(1rem * var(--ga-base-scaling-factor, 1)); border-radius: var(--ga-radius); background: var(--ga-color-miscellaneous-skeleton-element, #F2F3F5); flex-shrink: 0; } `"}],"exports":[{"kind":"js","name":"templateStyles","declaration":{"name":"templateStyles","module":"components/vsn-side-bar/vsn-template/vsn-template.css.js"}}]},{"kind":"javascript-module","path":"components/vsn-side-bar/vsn-template/vsn-template.js","declarations":[{"kind":"class","description":"","name":"VsnTemplate","members":[],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-template","customElement":true}],"exports":[{"kind":"js","name":"VsnTemplate","declaration":{"name":"VsnTemplate","module":"components/vsn-side-bar/vsn-template/vsn-template.js"}},{"kind":"custom-element-definition","name":"vsn-template","declaration":{"name":"VsnTemplate","module":"components/vsn-side-bar/vsn-template/vsn-template.js"}}]},{"kind":"javascript-module","path":"components/vsn-skip-to-main.js","declarations":[{"kind":"class","description":"","name":"VSNSkipToMain","members":[{"kind":"field","name":"href","type":{"text":"string"},"default":"'main-content'","description":"The id of the main content element to skip to (without the `#`).","attribute":"href"},{"kind":"method","name":"_handleClick","privacy":"private","return":{"type":{"text":"void"}},"parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"attributes":[{"name":"href","type":{"text":"string"},"default":"'main-content'","description":"The id of the main content element to skip to (without the `#`).","fieldName":"href"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-skip-to-main","customElement":true}],"exports":[{"kind":"js","name":"VSNSkipToMain","declaration":{"name":"VSNSkipToMain","module":"components/vsn-skip-to-main.js"}},{"kind":"custom-element-definition","name":"vsn-skip-to-main","declaration":{"name":"VSNSkipToMain","module":"components/vsn-skip-to-main.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-ai-assistant.js","declarations":[{"kind":"class","description":"","name":"VSNAIAssistant","members":[{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-ai-assistant-click","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-ai-assistant","customElement":true}],"exports":[{"kind":"js","name":"VSNAIAssistant","declaration":{"name":"VSNAIAssistant","module":"components/vsn-top-bar/vsn-ai-assistant.js"}},{"kind":"custom-element-definition","name":"vsn-ai-assistant","declaration":{"name":"VSNAIAssistant","module":"components/vsn-top-bar/vsn-ai-assistant.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumbMenuItem","members":[{"kind":"field","name":"_idCounter","type":{"text":"number"},"privacy":"private","static":true,"default":"0"},{"kind":"field","name":"_tooltipId","type":{"text":"string"},"privacy":"private","readonly":true,"default":"`vsn-menu-item-tooltip-${VSNBreadcrumbMenuItem._idCounter++}`"},{"kind":"field","name":"tree","type":{"text":"TreeItem | undefined"}},{"kind":"field","name":"level","type":{"text":"number"},"default":"1","attribute":"level"},{"kind":"field","name":"ancestorPath","type":{"text":"TreeItem[]"},"default":"[]","attribute":"ancestorPath"},{"kind":"field","name":"_isExpanded","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_showTooltip","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_tooltipPos","type":{"text":"object"},"privacy":"private","default":"{ x: 0, y: 0 }"},{"kind":"field","name":"_labelEl","type":{"text":"HTMLElement"},"privacy":"private"},{"kind":"method","name":"_getExpandedMenu","privacy":"private"},{"kind":"field","name":"_onItemMouseEnter","privacy":"private"},{"kind":"field","name":"_onItemMouseLeave","privacy":"private"},{"kind":"method","name":"_menuItemMarkup","privacy":"private"},{"kind":"method","name":"_menuItem","privacy":"private","parameters":[{"name":"tree","type":{"text":"TreeItem | undefined"}},{"name":"level","type":{"text":"number"}}]},{"kind":"field","name":"_onKeyDown","privacy":"private"},{"kind":"field","name":"_onClick","privacy":"private"},{"kind":"method","name":"_getTreeItems","privacy":"private","return":{"type":{"text":"TreeItem[] | undefined"}},"parameters":[{"name":"tree","optional":true,"type":{"text":"TreeItem"}}]},{"kind":"method","name":"_isParent","privacy":"private"}],"attributes":[{"name":"level","type":{"text":"number"},"default":"1","fieldName":"level"},{"name":"ancestorPath","type":{"text":"TreeItem[]"},"default":"[]","fieldName":"ancestorPath"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumb-menu-item","customElement":true}],"exports":[{"kind":"js","name":"VSNBreadcrumbMenuItem","declaration":{"name":"VSNBreadcrumbMenuItem","module":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumb-menu-item","declaration":{"name":"VSNBreadcrumbMenuItem","module":"components/vsn-top-bar/vsn-breadcrumb-menu-item.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumb-menu.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumbMenu","members":[{"kind":"field","name":"treeList","type":{"text":"TreeItem[] | undefined"}},{"kind":"field","name":"_handleKeyDown","privacy":"private"},{"kind":"method","name":"menuItem","privacy":"private","parameters":[{"name":"treeItem","type":{"text":"TreeItem"}}]}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumb-menu","customElement":true}],"exports":[{"kind":"js","name":"VSNBreadcrumbMenu","declaration":{"name":"VSNBreadcrumbMenu","module":"components/vsn-top-bar/vsn-breadcrumb-menu.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumb-menu","declaration":{"name":"VSNBreadcrumbMenu","module":"components/vsn-top-bar/vsn-breadcrumb-menu.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-breadcrumbs.js","declarations":[{"kind":"class","description":"","name":"VSNBreadcrumb","members":[{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","attribute":"modules"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"_openPopoverId","type":{"text":"string | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_displayMode","type":{"text":"DisplayMode"},"privacy":"private","default":"'full'"},{"kind":"field","name":"_overflowCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_tooltip","type":{"text":"{ label: string; x: number; y: number } | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_mqDesktop","privacy":"private"},{"kind":"field","name":"_mqTablet","privacy":"private"},{"kind":"field","name":"_ro","type":{"text":"ResizeObserver | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_lastContainerWidth","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_mounted","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_handleMediaChange","privacy":"private"},{"kind":"method","name":"_recalculateOverflow","privacy":"private"},{"kind":"method","name":"_tryExpandOverflow","privacy":"private"},{"kind":"field","name":"_breadcrumbPath","type":{"text":"TreeItem[]"},"privacy":"private","readonly":true},{"kind":"method","name":"_findPath","privacy":"private","return":{"type":{"text":"TreeItem[] | null"}},"parameters":[{"name":"node","type":{"text":"TreeItem"}},{"name":"targetId","type":{"text":"string"}},{"name":"path","default":"[]","type":{"text":"TreeItem[]"}}]},{"kind":"method","name":"_popoverItemId","privacy":"private","parameters":[{"name":"index","type":{"text":"number"}}]},{"kind":"method","name":"_popoverItemTriggerId","privacy":"private","parameters":[{"name":"index","type":{"text":"number"}}]},{"kind":"field","name":"_onBreadcrumbMouseEnter","privacy":"private"},{"kind":"field","name":"_onBreadcrumbMouseLeave","privacy":"private"},{"kind":"method","name":"_onLeafAsAncestorClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}},{"name":"leaf","type":{"text":"TreeLeaf"}}]},{"kind":"method","name":"_handlePopoverBeforeToggle","privacy":"private","parameters":[{"name":"triggerId","type":{"text":"string"}},{"name":"e","type":{"text":"Event"}}]},{"kind":"method","name":"_handlePopoverToggle","privacy":"private","parameters":[{"name":"popoverId","type":{"text":"string"}},{"name":"e","type":{"text":"Event"}}]},{"kind":"method","name":"_handleMenuClose","privacy":"private","parameters":[{"name":"triggerId","type":{"text":"string"}},{"name":"popoverId","type":{"text":"string"}}]},{"kind":"method","name":"_handleModuleSelect","privacy":"private","parameters":[{"name":"module","type":{"text":"ModuleItem"}}]},{"kind":"method","name":"_renderModules","privacy":"private"},{"kind":"method","name":"_handleLeafSelect","privacy":"private","parameters":[{"name":"e","type":{"text":"Event"}},{"name":"popoverId","type":{"text":"string"}}]},{"kind":"method","name":"_renderLeafAsAncestor","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_renderLastItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}},{"name":"index","type":{"text":"number"}},{"name":"pageTitle","type":{"text":"string | undefined"}}]},{"kind":"method","name":"_renderPageTitle","privacy":"private","parameters":[{"name":"title","type":{"text":"string"}}]},{"kind":"method","name":"_renderCurrentItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"method","name":"_renderBreadcrumbItem","privacy":"private","parameters":[{"name":"item","type":{"text":"TreeItem"}},{"name":"index","type":{"text":"number"}}]},{"kind":"method","name":"_renderFullBreadcrumbs","privacy":"private"},{"kind":"method","name":"_renderOverflowDropdown","privacy":"private","parameters":[{"name":"hiddenItems","type":{"text":"TreeItem[]"}}]},{"kind":"method","name":"_renderOverflowBreadcrumbs","privacy":"private"},{"kind":"method","name":"_renderMobileBreadcrumbs","privacy":"private"}],"events":[{"name":"vsn-menu-item-changed","type":{"text":"CustomEvent"}},{"name":"vsn-breadcrumb-dropdown-open","type":{"text":"CustomEvent"}},{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","fieldName":"modules"},{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-breadcrumbs","customElement":true}],"exports":[{"kind":"js","name":"NavigationMenu","declaration":{"name":"NavigationMenu","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"js","name":"ModuleItem","declaration":{"name":"ModuleItem","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"js","name":"VSNBreadcrumb","declaration":{"name":"VSNBreadcrumb","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}},{"kind":"custom-element-definition","name":"vsn-breadcrumbs","declaration":{"name":"VSNBreadcrumb","module":"components/vsn-top-bar/vsn-breadcrumbs.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-feedback.js","declarations":[{"kind":"class","description":"","name":"VSNFeedback","members":[{"kind":"field","name":"_compact","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"}},{"kind":"field","name":"lang","type":{"text":"LanguageCode"},"default":"'en'","attribute":"lang"},{"kind":"field","name":"_mqMobile","privacy":"private"},{"kind":"field","name":"_handleMediaChange","privacy":"private"},{"kind":"field","name":"_traitSet","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_survicateListenerId","type":{"text":"number | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_survicateClosedListenerId","type":{"text":"number | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_surveyFocusTimer","type":{"text":"ReturnType<typeof setTimeout> | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_surveyFocusCleanupTimer","type":{"text":"ReturnType<typeof setTimeout> | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_observer","type":{"text":"MutationObserver | null"},"privacy":"private","default":"null"},{"kind":"field","name":"_handleDocKeydown","privacy":"private","readonly":true},{"kind":"field","name":"_handleOutsideClick","privacy":"private","readonly":true},{"kind":"method","name":"_applyVisitorTraits","privacy":"private"},{"kind":"method","name":"_stopOutsideClickListener","privacy":"private"},{"kind":"method","name":"_startOutsideClickListener","privacy":"private"},{"kind":"method","name":"_clearFocusListener","privacy":"private"},{"kind":"method","name":"_focusSurveyDialog","privacy":"private"},{"kind":"method","name":"_handleClick","privacy":"private"}],"events":[{"name":"vsn-feedback","type":{"text":"CustomEvent"}}],"attributes":[{"name":"lang","type":{"text":"LanguageCode"},"default":"'en'","fieldName":"lang"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-feedback","customElement":true}],"exports":[{"kind":"js","name":"VSNFeedback","declaration":{"name":"VSNFeedback","module":"components/vsn-top-bar/vsn-feedback.js"}},{"kind":"custom-element-definition","name":"vsn-feedback","declaration":{"name":"VSNFeedback","module":"components/vsn-top-bar/vsn-feedback.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-help.js","declarations":[{"kind":"class","description":"","name":"VSNHelp","members":[{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"attribute":"help-url"},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-help-click","type":{"text":"CustomEvent"}}],"attributes":[{"name":"help-url","type":{"text":"string | undefined"},"fieldName":"helpUrl"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-help","customElement":true}],"exports":[{"kind":"js","name":"VSNHelp","declaration":{"name":"VSNHelp","module":"components/vsn-top-bar/vsn-help.js"}},{"kind":"custom-element-definition","name":"vsn-help","declaration":{"name":"VSNHelp","module":"components/vsn-top-bar/vsn-help.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-home.js","declarations":[{"kind":"class","description":"","name":"VSNHome","members":[{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"attribute":"landing-page-url"},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-navigate","type":{"text":"CustomEvent"}}],"attributes":[{"name":"landing-page-url","type":{"text":"string | undefined"},"fieldName":"landingPageUrl"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-home","customElement":true}],"exports":[{"kind":"js","name":"VSNHome","declaration":{"name":"VSNHome","module":"components/vsn-top-bar/vsn-home.js"}},{"kind":"custom-element-definition","name":"vsn-home","declaration":{"name":"VSNHome","module":"components/vsn-top-bar/vsn-home.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-menu-toggle.js","declarations":[{"kind":"class","description":"","name":"VSNMenuToggle","members":[{"kind":"field","name":"_tooltipElement","type":{"text":"HTMLDivElement & { showPopover?(): void; hidePopover?(): void }"},"privacy":"private","readonly":true},{"kind":"method","name":"focus","return":{"type":{"text":"void"}},"parameters":[{"name":"options","optional":true,"type":{"text":"FocusOptions"}}],"description":"Delegate focus to the inner button (light DOM, so query `this`)."},{"kind":"method","name":"_handleClick","privacy":"private"},{"kind":"method","name":"_onActivate","privacy":"private","parameters":[{"name":"e","type":{"text":"UIEvent"}}]},{"kind":"method","name":"_onDeactivate","privacy":"private"}],"events":[{"name":"toggle-side-bar","type":{"text":"CustomEvent"}}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-menu-toggle","customElement":true}],"exports":[{"kind":"js","name":"VSNMenuToggle","declaration":{"name":"VSNMenuToggle","module":"components/vsn-top-bar/vsn-menu-toggle.js"}},{"kind":"custom-element-definition","name":"vsn-menu-toggle","declaration":{"name":"VSNMenuToggle","module":"components/vsn-top-bar/vsn-menu-toggle.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-notifications.js","declarations":[{"kind":"class","description":"","name":"VSNNotifications","members":[{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","attribute":"notification-active","reflects":true},{"kind":"method","name":"_handleClick","privacy":"private","parameters":[{"name":"e","type":{"text":"MouseEvent"}}]}],"events":[{"name":"vsn-notification-click","type":{"text":"CustomEvent"}}],"attributes":[{"name":"notification-active","type":{"text":"boolean"},"default":"false","fieldName":"notificationActive"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-notifications","customElement":true}],"exports":[{"kind":"js","name":"VSNNotifications","declaration":{"name":"VSNNotifications","module":"components/vsn-top-bar/vsn-notifications.js"}},{"kind":"custom-element-definition","name":"vsn-notifications","declaration":{"name":"VSNNotifications","module":"components/vsn-top-bar/vsn-notifications.js"}}]},{"kind":"javascript-module","path":"components/vsn-top-bar/vsn-top-bar.js","declarations":[{"kind":"class","description":"","name":"VSNTopBar","members":[{"kind":"field","name":"tree","type":{"text":"NavigationMenu | undefined"}},{"kind":"field","name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","attribute":"modules"},{"kind":"field","name":"activeModuleId","type":{"text":"string | undefined"},"attribute":"activeModuleId"},{"kind":"field","name":"landingPageUrl","type":{"text":"string | undefined"},"description":"Link to landing page","attribute":"landing-page-url"},{"kind":"field","name":"feedback","type":{"text":"FeedbackConfig | null"},"default":"null","description":"Configuration for the feedback component"},{"kind":"field","name":"auth","type":{"text":"VsnAuth | undefined"},"description":"Configuration related to authenticated user"},{"kind":"field","name":"showHelp","type":{"text":"boolean"},"default":"false","description":"show help icon","attribute":"show-help"},{"kind":"field","name":"helpUrl","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","attribute":"help-url"},{"kind":"field","name":"showNotification","type":{"text":"boolean"},"default":"false","description":"show notification icon","attribute":"show-notification"},{"kind":"field","name":"notificationActive","type":{"text":"boolean"},"default":"false","description":"notification icon shows active state","attribute":"notification-active"},{"kind":"field","name":"modulesLoading","type":{"text":"boolean"},"default":"false","attribute":"modulesLoading"},{"kind":"field","name":"lang","type":{"text":"string"},"default":"'en'","attribute":"lang"},{"kind":"method","name":"focusMenuToggle","return":{"type":{"text":"void"}},"description":"Focus the hamburger toggle — called by the host when the side-bar closes."}],"attributes":[{"name":"modules","type":{"text":"ModuleItem[]"},"default":"[]","fieldName":"modules"},{"name":"activeModuleId","type":{"text":"string | undefined"},"fieldName":"activeModuleId"},{"name":"landing-page-url","type":{"text":"string | undefined"},"description":"Link to landing page","fieldName":"landingPageUrl"},{"name":"show-help","type":{"text":"boolean"},"default":"false","description":"show help icon","fieldName":"showHelp"},{"name":"help-url","type":{"text":"string | undefined"},"description":"Use a fixed url for link to help","fieldName":"helpUrl"},{"name":"show-notification","type":{"text":"boolean"},"default":"false","description":"show notification icon","fieldName":"showNotification"},{"name":"notification-active","type":{"text":"boolean"},"default":"false","description":"notification icon shows active state","fieldName":"notificationActive"},{"name":"modulesLoading","type":{"text":"boolean"},"default":"false","fieldName":"modulesLoading"},{"name":"lang","type":{"text":"string"},"default":"'en'","fieldName":"lang"}],"superclass":{"name":"LitElement","package":"lit"},"tagName":"vsn-top-bar","customElement":true}],"exports":[{"kind":"js","name":"VSNTopBar","declaration":{"name":"VSNTopBar","module":"components/vsn-top-bar/vsn-top-bar.js"}},{"kind":"custom-element-definition","name":"vsn-top-bar","declaration":{"name":"VSNTopBar","module":"components/vsn-top-bar/vsn-top-bar.js"}}]},{"kind":"javascript-module","path":"shared/button-reset.css.js","declarations":[{"kind":"variable","name":"buttonResetStyles","default":"css` @layer base { button:where(.ga-side-navigation__item), button:where(.ga-side-navigation__switcher), button:where(.ga-side-navigation__user), button:where(.ga-side-navigation__footer-dropdown-item) { appearance: none; background: none; border: 0; padding: 0; font: inherit; text-align: left; width: 100%; cursor: pointer; color: inherit; } } `","description":"Strips UA button styles from side-navigation elements whose Gaia classes\nwere originally designed for <div>. Imported once in vsn-side-bar so all\nchild components pick it up through the adopted stylesheet cascade."}],"exports":[{"kind":"js","name":"buttonResetStyles","declaration":{"name":"buttonResetStyles","module":"shared/button-reset.css.js"}}]},{"kind":"javascript-module","path":"shared/global-styles.js","declarations":[{"kind":"variable","name":"globalStyles","default":"twCss"}],"exports":[{"kind":"js","name":"globalStyles","declaration":{"name":"globalStyles","module":"shared/global-styles.js"}}]},{"kind":"javascript-module","path":"shared/icons.js","declarations":[{"kind":"function","name":"icon","parameters":[{"name":"fragment","type":{"text":"SVGTemplateResult"}},{"name":"size","default":"24"},{"name":"cls","optional":true,"type":{"text":"string"}}]},{"kind":"function","name":"iconFilled","parameters":[{"name":"fragment","type":{"text":"SVGTemplateResult"}},{"name":"intrinsic","default":"24"},{"name":"size","default":"intrinsic"}]},{"kind":"variable","name":"emptyIcon","type":{"text":"SVGTemplateResult"},"default":"svg``"},{"kind":"variable","name":"menu","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M4 5h16\"/> <path d=\"M4 12h16\"/> <path d=\"M4 19h16\"/> `","description":"https://lucide.dev/icons/menu"},{"kind":"variable","name":"sparkles","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z\"/> <path d=\"M20 2v4\"/> <path d=\"M22 4h-4\"/> <circle cx=\"4\" cy=\"20\" r=\"2\"/> `","description":"https://lucide.dev/icons/sparkles"},{"kind":"variable","name":"bell","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10.268 21a2 2 0 0 0 3.464 0\"/> <path d=\"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326\"/> `","description":"https://lucide.dev/icons/bell"},{"kind":"variable","name":"bellDot","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10.268 21a2 2 0 0 0 3.464 0\"/> <path d=\"M11.68 2.009A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673c-.824-.85-1.678-1.731-2.21-3.348\"/> <circle cx=\"18\" cy=\"5\" r=\"3\"/> `","description":"https://lucide.dev/icons/bell-dot"},{"kind":"variable","name":"thumbsUp","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z\"/> <path d=\"M7 10v12\"/> `","description":"https://lucide.dev/icons/thumbs-up"},{"kind":"variable","name":"building2","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M10 12h4\"/> <path d=\"M10 8h4\"/> <path d=\"M14 21v-3a2 2 0 0 0-4 0v3\"/> <path d=\"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2\"/> <path d=\"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16\"/> `","description":"https://lucide.dev/icons/building-2"},{"kind":"variable","name":"house","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8\"/> <path d=\"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"/> `","description":"https://lucide.dev/icons/house"},{"kind":"variable","name":"circleQuestionMark","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\"/> <path d=\"M12 17h.01\"/> `","description":"https://lucide.dev/icons/circle-question-mark"},{"kind":"variable","name":"userRound","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"8\" r=\"5\"/> <path d=\"M20 21a8 8 0 0 0-16 0\"/> `","description":"https://lucide.dev/icons/user-round"},{"kind":"variable","name":"settings","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915\"/> <circle cx=\"12\" cy=\"12\" r=\"3\"/> `","description":"https://lucide.dev/icons/settings"},{"kind":"variable","name":"pin","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M12 17v5\"/> <path d=\"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z\"/> `","description":"https://lucide.dev/icons/pin"},{"kind":"variable","name":"logOut","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m16 17 5-5-5-5\"/> <path d=\"M21 12H9\"/> <path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4\"/> `","description":"https://lucide.dev/icons/log-out"},{"kind":"variable","name":"squareArrowOutUpRight","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6\"/> <path d=\"m21 3-9 9\"/> <path d=\"M15 3h6v6\"/> `","description":"https://lucide.dev/icons/square-arrow-out-up-right"},{"kind":"variable","name":"circleDot","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <circle cx=\"12\" cy=\"12\" r=\"1\"/> `","description":"https://lucide.dev/icons/circle-dot"},{"kind":"variable","name":"chevronsUpDown","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m7 15 5 5 5-5\"/> <path d=\"m7 9 5-5 5 5\"/> `","description":"https://lucide.dev/icons/chevrons-up-down"},{"kind":"variable","name":"chevronUp","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m18 15-6-6-6 6\"/> `","description":"https://lucide.dev/icons/chevron-up"},{"kind":"variable","name":"chevronDown","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m6 9 6 6 6-6\"/> `","description":"https://lucide.dev/icons/chevron-down"},{"kind":"variable","name":"search","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"11\" cy=\"11\" r=\"8\"/> <path d=\"m21 21-4.3-4.3\"/> `","description":"https://lucide.dev/icons/search (stroked, use with icon)"},{"kind":"variable","name":"circleX","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <path d=\"m15 9-6 6\"/> <path d=\"m9 9 6 6\"/> `","description":"https://lucide.dev/icons/circle-x (stroked, use with icon)"},{"kind":"variable","name":"circleAlert","type":{"text":"SVGTemplateResult"},"default":"svg` <circle cx=\"12\" cy=\"12\" r=\"10\"/> <line x1=\"12\" x2=\"12\" y1=\"8\" y2=\"12\"/> <line x1=\"12\" x2=\"12.01\" y1=\"16\" y2=\"16\"/> `","description":"https://lucide.dev/icons/circle-alert (stroked, use with icon)"},{"kind":"variable","name":"octagonAlert","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"M12 16h.01\"/> <path d=\"M12 8v4\"/> <path d=\"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z\"/> `","description":"https://lucide.dev/icons/octagon-alert (stroked, use with icon)"},{"kind":"variable","name":"searchFilled","type":{"text":"SVGTemplateResult"},"default":"svg` <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C14.866 18 18 14.866 18 11C18 7.13401 14.866 4 11 4ZM2 11C2 6.02944 6.02944 2 11 2C15.9706 2 20 6.02944 20 11C20 15.9706 15.9706 20 11 20C6.02944 20 2 15.9706 2 11Z\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9929 15.9929C16.3834 15.6024 17.0166 15.6024 17.4071 15.9929L21.7071 20.2929C22.0976 20.6834 22.0976 21.3166 21.7071 21.7071C21.3166 22.0976 20.6834 22.0976 20.2929 21.7071L15.9929 17.4071C15.6024 17.0166 15.6024 16.3834 15.9929 15.9929Z\"/> `","description":"Gaia filled search icon (use with iconFilled, 24×24)"},{"kind":"variable","name":"commandFilled","type":{"text":"SVGTemplateResult"},"default":"svg` <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.60982 1.03843C2.99778 0.96126 3.39992 1.00087 3.76537 1.15224C4.13082 1.30362 4.44318 1.55996 4.66294 1.88886C4.8827 2.21776 5 2.60444 5 3V4H7V3C7 2.60444 7.1173 2.21776 7.33706 1.88886C7.55682 1.55996 7.86918 1.30362 8.23463 1.15224C8.60009 1.00087 9.00222 0.96126 9.39018 1.03843C9.77814 1.1156 10.1345 1.30608 10.4142 1.58579C10.6939 1.86549 10.8844 2.22186 10.9616 2.60982C11.0387 2.99778 10.9991 3.39992 10.8478 3.76537C10.6964 4.13082 10.44 4.44318 10.1111 4.66294C9.78224 4.8827 9.39556 5 9 5H8V7H9C9.39556 7 9.78224 7.1173 10.1111 7.33706C10.44 7.55682 10.6964 7.86918 10.8478 8.23463C10.9991 8.60009 11.0387 9.00222 10.9616 9.39018C10.8844 9.77814 10.6939 10.1345 10.4142 10.4142C10.1345 10.6939 9.77814 10.8844 9.39018 10.9616C9.00222 11.0387 8.60009 10.9991 8.23463 10.8478C7.86918 10.6964 7.55682 10.44 7.33706 10.1111C7.1173 9.78224 7 9.39556 7 9V8H5V9C5 9.39556 4.8827 9.78224 4.66294 10.1111C4.44318 10.44 4.13082 10.6964 3.76537 10.8478C3.39992 10.9991 2.99778 11.0387 2.60982 10.9616C2.22186 10.8844 1.86549 10.6939 1.58579 10.4142C1.30608 10.1345 1.1156 9.77814 1.03843 9.39018C0.96126 9.00222 1.00087 8.60009 1.15224 8.23463C1.30362 7.86918 1.55996 7.55682 1.88886 7.33706C2.21776 7.1173 2.60444 7 3 7H4V5H3C2.60444 5 2.21776 4.8827 1.88886 4.66294C1.55996 4.44318 1.30362 4.13082 1.15224 3.76537C1.00087 3.39992 0.96126 2.99778 1.03843 2.60982C1.1156 2.22186 1.30608 1.86549 1.58579 1.58579C1.86549 1.30608 2.22186 1.1156 2.60982 1.03843ZM4 4V3C4 2.80222 3.94135 2.60888 3.83147 2.44443C3.72159 2.27998 3.56541 2.15181 3.38268 2.07612C3.19996 2.00043 2.99889 1.98063 2.80491 2.01922C2.61093 2.0578 2.43275 2.15304 2.29289 2.29289C2.15304 2.43275 2.0578 2.61093 2.01922 2.80491C1.98063 2.99889 2.00043 3.19996 2.07612 3.38268C2.15181 3.56541 2.27998 3.72159 2.44443 3.83147C2.60888 3.94135 2.80222 4 3 4H4ZM5 5V7H7V5H5ZM4 8H3C2.80222 8 2.60888 8.05865 2.44443 8.16853C2.27998 8.27841 2.15181 8.43459 2.07612 8.61732C2.00043 8.80004 1.98063 9.00111 2.01922 9.19509C2.0578 9.38907 2.15304 9.56726 2.29289 9.70711C2.43275 9.84696 2.61093 9.9422 2.80491 9.98079C2.99889 10.0194 3.19996 9.99957 3.38268 9.92388C3.56541 9.84819 3.72159 9.72002 3.83147 9.55557C3.94135 9.39112 4 9.19778 4 9V8ZM8 8V9C8 9.19778 8.05865 9.39112 8.16853 9.55557C8.27841 9.72002 8.43459 9.84819 8.61732 9.92388C8.80004 9.99957 9.00111 10.0194 9.19509 9.98079C9.38907 9.9422 9.56726 9.84696 9.70711 9.70711C9.84696 9.56726 9.9422 9.38907 9.98079 9.19509C10.0194 9.00111 9.99957 8.80004 9.92388 8.61732C9.84819 8.43459 9.72002 8.27841 9.55557 8.16853C9.39112 8.05865 9.19778 8 9 8H8ZM8 4H9C9.19778 4 9.39112 3.94135 9.55557 3.83147C9.72002 3.72159 9.84819 3.56541 9.92388 3.38268C9.99957 3.19996 10.0194 2.99889 9.98079 2.80491C9.9422 2.61093 9.84696 2.43275 9.70711 2.29289C9.56726 2.15304 9.38907 2.0578 9.19509 2.01922C9.00111 1.98063 8.80004 2.00043 8.61732 2.07612C8.43459 2.15181 8.27841 2.27998 8.16853 2.44443C8.05865 2.60888 8 2.80222 8 3V4Z\"/> `","description":"Gaia filled command (⌘) icon (use with iconFilled, 12×12 — note viewBox is 0 0 12 12)"},{"kind":"variable","name":"chevronRight","type":{"text":"SVGTemplateResult"},"default":"svg` <path d=\"m9 18 6-6-6-6\"/> `","description":"https://lucide.dev/icons/chevron-right"}],"exports":[{"kind":"js","name":"icon","declaration":{"name":"icon","module":"shared/icons.js"}},{"kind":"js","name":"iconFilled","declaration":{"name":"iconFilled","module":"shared/icons.js"}},{"kind":"js","name":"emptyIcon","declaration":{"name":"emptyIcon","module":"shared/icons.js"}},{"kind":"js","name":"menu","declaration":{"name":"menu","module":"shared/icons.js"}},{"kind":"js","name":"sparkles","declaration":{"name":"sparkles","module":"shared/icons.js"}},{"kind":"js","name":"bell","declaration":{"name":"bell","module":"shared/icons.js"}},{"kind":"js","name":"bellDot","declaration":{"name":"bellDot","module":"shared/icons.js"}},{"kind":"js","name":"thumbsUp","declaration":{"name":"thumbsUp","module":"shared/icons.js"}},{"kind":"js","name":"building2","declaration":{"name":"building2","module":"shared/icons.js"}},{"kind":"js","name":"house","declaration":{"name":"house","module":"shared/icons.js"}},{"kind":"js","name":"circleQuestionMark","declaration":{"name":"circleQuestionMark","module":"shared/icons.js"}},{"kind":"js","name":"userRound","declaration":{"name":"userRound","module":"shared/icons.js"}},{"kind":"js","name":"settings","declaration":{"name":"settings","module":"shared/icons.js"}},{"kind":"js","name":"pin","declaration":{"name":"pin","module":"shared/icons.js"}},{"kind":"js","name":"logOut","declaration":{"name":"logOut","module":"shared/icons.js"}},{"kind":"js","name":"squareArrowOutUpRight","declaration":{"name":"squareArrowOutUpRight","module":"shared/icons.js"}},{"kind":"js","name":"circleDot","declaration":{"name":"circleDot","module":"shared/icons.js"}},{"kind":"js","name":"chevronsUpDown","declaration":{"name":"chevronsUpDown","module":"shared/icons.js"}},{"kind":"js","name":"chevronUp","declaration":{"name":"chevronUp","module":"shared/icons.js"}},{"kind":"js","name":"chevronDown","declaration":{"name":"chevronDown","module":"shared/icons.js"}},{"kind":"js","name":"search","declaration":{"name":"search","module":"shared/icons.js"}},{"kind":"js","name":"circleX","declaration":{"name":"circleX","module":"shared/icons.js"}},{"kind":"js","name":"circleAlert","declaration":{"name":"circleAlert","module":"shared/icons.js"}},{"kind":"js","name":"octagonAlert","declaration":{"name":"octagonAlert","module":"shared/icons.js"}},{"kind":"js","name":"searchFilled","declaration":{"name":"searchFilled","module":"shared/icons.js"}},{"kind":"js","name":"commandFilled","declaration":{"name":"commandFilled","module":"shared/icons.js"}},{"kind":"js","name":"chevronRight","declaration":{"name":"chevronRight","module":"shared/icons.js"}}]},{"kind":"javascript-module","path":"shared/lang/locale-codes.js","declarations":[{"kind":"variable","name":"sourceLocale","default":"`en`","description":"The locale code that templates in this source code are written in."},{"kind":"variable","name":"targetLocales","type":{"text":"[\n `da`,\n `fi`,\n `nl`,\n `no`,\n `sv`,\n]"},"default":"[ `da`, `fi`, `nl`, `no`, `sv`, ]","description":"The other locale codes that this application is localized into. Sorted\nlexicographically."},{"kind":"variable","name":"allLocales","type":{"text":"[\n `da`,\n `en`,\n `fi`,\n `nl`,\n `no`,\n `sv`,\n]"},"default":"[ `da`, `en`, `fi`, `nl`, `no`, `sv`, ]","description":"All valid project locale codes. Sorted lexicographically."}],"exports":[{"kind":"js","name":"sourceLocale","declaration":{"name":"sourceLocale","module":"shared/lang/locale-codes.js"}},{"kind":"js","name":"targetLocales","declaration":{"name":"targetLocales","module":"shared/lang/locale-codes.js"}},{"kind":"js","name":"allLocales","declaration":{"name":"allLocales","module":"shared/lang/locale-codes.js"}}]},{"kind":"javascript-module","path":"shared/lang/locale-setup.js","declarations":[{"kind":"variable","name":"{ getLocale, setLocale }"}],"exports":[{"kind":"js","name":"{ getLocale, setLocale }","declaration":{"name":"{ getLocale, setLocale }","module":"shared/lang/locale-setup.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/da.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Har du brug for hjælp? Kontakt support.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Indtast mindst ${0} tegn for at søge`, 's2be8f715fbd00dcb': `Vi fandt ingen matchende resultater.`, 's3112f1ca236c8a61': `Indlæsningsfejl`, 's352719d86112de9a': `Hjælp`, 's387a4a41718122cb': str`${0} resultater`, 's3fb7db4771812f0c': `Hvis problemet fortsætter, genindlæs siden eller kontakt support.`, 's442010a1a0adb81d': `Vis skjulte brødkrummer`, 's457d59d649765619': `Gå til hovedindhold`, 's4b0c6b66b4efd7d8': `Vælg en tjeneste`, 's58a1dace5a9acc5b': str`Tjenestemenu, ${0}`, 's5be3c6d61cd9182f': `Notifikationer`, 's5d369be551a4dd7a': `Menupunkter`, 's5d929ff1619ac0c9': `Søg`, 's5f4586bc1e2740e6': `Ryd søgning`, 's60fb9db2c6c14775': `Tjek din internetforbindelse og prøv igen.`, 's6abb1cd87fe0114e': `Hjem`, 's7584ded3d749c75e': `Indlæs mere`, 's82b383a30bc685e9': `Brugermenu`, 's842e9f4f6fdb5901': `Søgeomfang`, 's8a1cc2725e462c2a': `Send feedback`, 's8d91340b5caa2d5c': `Åbn menu`, 's9094c0cde8fb5058': `Ingen resultater fundet`, 's970de9ba0cf07677': `Søger`, 's97b95ad19ebb75a9': str`Brugermenu, ${0}`, 'sacde528ad7d2d031': `Vi kan ikke indlæse menuen.`, 'sb560e5cd092ef2e5': `Indlæser resultater`, 'sb64127e4e4f0b575': `Log ud`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Sidenavigation`, 'sd9582ea5f8f8ac5d': `Åbn AI-assistent`, 'sdb2bf46270cfda6c': `Brødkrumme`, 'sf55d634dcc743595': `Tjenester`, 'sfbf31f663cef6cc2': `Prøv andre søgeord eller tjek stavningen.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/da.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/fi.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Oma profiili`, 's119f9875b7d4cdfc': `Tarvitsetko apua? Ota yhteyttä tukeen.`, 's1228605ee65ddefa': str`${0} tulos`, 's2bb33291ef8ae3d4': str`Kirjoita vähintään ${0} merkkiä hakua varten`, 's2be8f715fbd00dcb': `Emme löytäneet osumia.`, 's3112f1ca236c8a61': `Latausvirhe`, 's352719d86112de9a': `Ohje`, 's387a4a41718122cb': str`${0} tulosta`, 's3fb7db4771812f0c': `Jos ongelma jatkuu, lataa sivu uudelleen tai ota yhteyttä tukeen.`, 's442010a1a0adb81d': `Näytä piilotetut murupolun kohteet`, 's457d59d649765619': `Siirry pääsisältöön`, 's4b0c6b66b4efd7d8': `Valitse palvelu`, 's58a1dace5a9acc5b': str`Palveluvalikko, ${0}`, 's5be3c6d61cd9182f': `Ilmoitukset`, 's5d369be551a4dd7a': `Valikkokohteet`, 's5d929ff1619ac0c9': `Hae`, 's5f4586bc1e2740e6': `Tyhjennä haku`, 's60fb9db2c6c14775': `Tarkista internetyhteytesi ja yritä uudelleen.`, 's6abb1cd87fe0114e': `Etusivu`, 's7584ded3d749c75e': `Lataa lisää`, 's82b383a30bc685e9': `Käyttäjävalikko`, 's842e9f4f6fdb5901': `Hakuala`, 's8a1cc2725e462c2a': `Lähetä palautetta`, 's8d91340b5caa2d5c': `Avaa valikko`, 's9094c0cde8fb5058': `Tuloksia ei löytynyt`, 's970de9ba0cf07677': `Haetaan`, 's97b95ad19ebb75a9': str`Käyttäjävalikko, ${0}`, 'sacde528ad7d2d031': `Valikko ei lataudu.`, 'sb560e5cd092ef2e5': `Ladataan tuloksia`, 'sb64127e4e4f0b575': `Kirjaudu ulos`, 'sbb588bb505779122': `Palaute`, 'sd1b2ae9109b29cf0': `Sivunavigaatio`, 'sd9582ea5f8f8ac5d': `Avaa AI-avustaja`, 'sdb2bf46270cfda6c': `Murupolku`, 'sf55d634dcc743595': `Palvelut`, 'sfbf31f663cef6cc2': `Kokeile eri hakusanoja tai tarkista kirjoitusasu.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/fi.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/nl.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Mijn profiel`, 's119f9875b7d4cdfc': `Hulp nodig? Neem contact op met ondersteuning.`, 's1228605ee65ddefa': str`${0} resultaat`, 's2bb33291ef8ae3d4': str`Typ minimaal ${0} tekens om te zoeken`, 's2be8f715fbd00dcb': `We konden geen overeenkomsten vinden.`, 's3112f1ca236c8a61': `Laadingsfout`, 's352719d86112de9a': `Hulp`, 's387a4a41718122cb': str`${0} resultaten`, 's3fb7db4771812f0c': `Als het probleem aanhoudt, laad de pagina opnieuw of neem contact op met ondersteuning.`, 's442010a1a0adb81d': `Toon verborgen broodkruimels`, 's457d59d649765619': `Ga naar hoofdinhoud`, 's4b0c6b66b4efd7d8': `Kies een service`, 's58a1dace5a9acc5b': str`Servicemenu, ${0}`, 's5be3c6d61cd9182f': `Meldingen`, 's5d369be551a4dd7a': `Menu-items`, 's5d929ff1619ac0c9': `Zoeken`, 's5f4586bc1e2740e6': `Zoekopdracht wissen`, 's60fb9db2c6c14775': `Controleer uw internetverbinding en probeer het opnieuw.`, 's6abb1cd87fe0114e': `Home`, 's7584ded3d749c75e': `Meer laden`, 's82b383a30bc685e9': `Gebruikersmenu`, 's842e9f4f6fdb5901': `Zoekbereik`, 's8a1cc2725e462c2a': `Feedback sturen`, 's8d91340b5caa2d5c': `Menu openen`, 's9094c0cde8fb5058': `Geen resultaten gevonden`, 's970de9ba0cf07677': `Zoeken`, 's97b95ad19ebb75a9': str`Gebruikersmenu, ${0}`, 'sacde528ad7d2d031': `We kunnen het menu niet laden.`, 'sb560e5cd092ef2e5': `Resultaten laden`, 'sb64127e4e4f0b575': `Uitloggen`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Zijnavigatie`, 'sd9582ea5f8f8ac5d': `AI-assistent openen`, 'sdb2bf46270cfda6c': `Broodkruimel`, 'sf55d634dcc743595': `Services`, 'sfbf31f663cef6cc2': `Probeer andere zoekwoorden of controleer de spelling.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/nl.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/no.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Trenger du hjelp? Kontakt støtte.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Skriv inn minst ${0} tegn for å søke`, 's2be8f715fbd00dcb': `Vi fant ingen treff.`, 's3112f1ca236c8a61': `Lastingsfeil`, 's352719d86112de9a': `Hjelp`, 's387a4a41718122cb': str`${0} resultater`, 's3fb7db4771812f0c': `Hvis problemet vedvarer, last inn siden på nytt eller kontakt støtte.`, 's442010a1a0adb81d': `Vis skjulte brødsmuleelementer`, 's457d59d649765619': `Hopp til hovedinnhold`, 's4b0c6b66b4efd7d8': `Velg en tjeneste`, 's58a1dace5a9acc5b': str`Tjenestemeny, ${0}`, 's5be3c6d61cd9182f': `Varsler`, 's5d369be551a4dd7a': `Menyelementer`, 's5d929ff1619ac0c9': `Søk`, 's5f4586bc1e2740e6': `Tøm søk`, 's60fb9db2c6c14775': `Sjekk internettforbindelsen din og prøv igjen.`, 's6abb1cd87fe0114e': `Hjem`, 's7584ded3d749c75e': `Last inn mer`, 's82b383a30bc685e9': `Brukermeny`, 's842e9f4f6fdb5901': `Søkeomfang`, 's8a1cc2725e462c2a': `Send tilbakemelding`, 's8d91340b5caa2d5c': `Åpne meny`, 's9094c0cde8fb5058': `Ingen resultater funnet`, 's970de9ba0cf07677': `Søker`, 's97b95ad19ebb75a9': str`Brukermeny, ${0}`, 'sacde528ad7d2d031': `Vi kan ikke laste menyen.`, 'sb560e5cd092ef2e5': `Laster resultater`, 'sb64127e4e4f0b575': `Logg ut`, 'sbb588bb505779122': `Tilbakemelding`, 'sd1b2ae9109b29cf0': `Sidenavigasjon`, 'sd9582ea5f8f8ac5d': `Åpne AI-assistent`, 'sdb2bf46270cfda6c': `Brødsmule`, 'sf55d634dcc743595': `Tjenester`, 'sfbf31f663cef6cc2': `Prøv andre søkeord eller sjekk stavemåten.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/no.js"}}]},{"kind":"javascript-module","path":"shared/lang/locales/sv.js","declarations":[{"kind":"variable","name":"templates","type":{"text":"object"},"default":"{ 's09a45db408570a7a': `Min profil`, 's119f9875b7d4cdfc': `Behöver du hjälp? Kontakta support.`, 's1228605ee65ddefa': str`${0} resultat`, 's2bb33291ef8ae3d4': str`Skriv minst ${0} tecken för att söka`, 's2be8f715fbd00dcb': `Vi hittade inga matchningar.`, 's3112f1ca236c8a61': `Laddningsfel`, 's352719d86112de9a': `Hjälp`, 's387a4a41718122cb': str`${0} resultat`, 's3fb7db4771812f0c': `Om problemet kvarstår, ladda om sidan eller kontakta support.`, 's442010a1a0adb81d': `Visa dolda brödsmulor`, 's457d59d649765619': `Hoppa till huvudinnehåll`, 's4b0c6b66b4efd7d8': `Välj en tjänst`, 's58a1dace5a9acc5b': str`Tjänstemeny, ${0}`, 's5be3c6d61cd9182f': `Aviseringar`, 's5d369be551a4dd7a': `Menyalternativ`, 's5d929ff1619ac0c9': `Sök`, 's5f4586bc1e2740e6': `Rensa sökning`, 's60fb9db2c6c14775': `Kontrollera din internetanslutning och försök igen.`, 's6abb1cd87fe0114e': `Hem`, 's7584ded3d749c75e': `Läs in mer`, 's82b383a30bc685e9': `Användarmeny`, 's842e9f4f6fdb5901': `Sökområde`, 's8a1cc2725e462c2a': `Skicka feedback`, 's8d91340b5caa2d5c': `Öppna meny`, 's9094c0cde8fb5058': `Inga resultat hittades`, 's970de9ba0cf07677': `Söker`, 's97b95ad19ebb75a9': str`Användarmeny, ${0}`, 'sacde528ad7d2d031': `Vi kan inte ladda menyn.`, 'sb560e5cd092ef2e5': `Laddar resultat`, 'sb64127e4e4f0b575': `Logga ut`, 'sbb588bb505779122': `Feedback`, 'sd1b2ae9109b29cf0': `Sidnavigering`, 'sd9582ea5f8f8ac5d': `Öppna AI-assistent`, 'sdb2bf46270cfda6c': `Brödsmula`, 'sf55d634dcc743595': `Tjänster`, 'sfbf31f663cef6cc2': `Prova andra sökord eller kontrollera stavningen.`, 's38385cd359b17f7a': `Loading modules`, }"}],"exports":[{"kind":"js","name":"templates","declaration":{"name":"templates","module":"shared/lang/locales/sv.js"}}]},{"kind":"javascript-module","path":"shared/scrollbar-styles.js","declarations":[{"kind":"variable","name":"scrollbarStyles","default":"css` .ga-scroll { scrollbar-color: var(--ga-color-text-disabled) var(--ga-color-surface-page); scrollbar-width: thin; } `"}],"exports":[{"kind":"js","name":"scrollbarStyles","declaration":{"name":"scrollbarStyles","module":"shared/scrollbar-styles.js"}}]},{"kind":"javascript-module","path":"shared/spinner.css.js","declarations":[{"kind":"variable","name":"spinnerStyles","default":"css` .vsn-spinner { display: inline-block; flex-shrink: 0; width: calc(1rem * var(--ga-base-scaling-factor, 1)); height: calc(1rem * var(--ga-base-scaling-factor, 1)); border-radius: 50%; border: calc(0.125rem * var(--ga-base-scaling-factor, 1)) solid var(--ga-color-surface-action-hover-2); border-top-color: var(--ga-color-surface-progress); animation: vsn-spin 0.7s linear infinite; } .vsn-switcher-dropdown--loading { align-items: center; justify-content: center; } @keyframes vsn-spin { to { transform: rotate(360deg); } } `"}],"exports":[{"kind":"js","name":"spinnerStyles","declaration":{"name":"spinnerStyles","module":"shared/spinner.css.js"}}]},{"kind":"javascript-module","path":"shared/types/index.js","declarations":[{"kind":"function","name":"isTreeLeaf","return":{"type":{"text":"item is TreeLeaf"}},"parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"function","name":"isTreeParent","return":{"type":{"text":"item is TreeParent"}},"parameters":[{"name":"item","type":{"text":"TreeItem"}}]},{"kind":"class","description":"","name":"SearchError","members":[{"kind":"field","name":"name","type":{"text":"string"},"default":"'SearchError'"}],"superclass":{"name":"Error","module":"src/shared/types/index.ts"}},{"kind":"variable","name":"activeIdContext"},{"kind":"variable","name":"focusManagerContext"}],"exports":[{"kind":"js","name":"isTreeLeaf","declaration":{"name":"isTreeLeaf","module":"shared/types/index.js"}},{"kind":"js","name":"isTreeParent","declaration":{"name":"isTreeParent","module":"shared/types/index.js"}},{"kind":"js","name":"SearchError","declaration":{"name":"SearchError","module":"shared/types/index.js"}},{"kind":"js","name":"activeIdContext","declaration":{"name":"activeIdContext","module":"shared/types/index.js"}},{"kind":"js","name":"focusManagerContext","declaration":{"name":"focusManagerContext","module":"shared/types/index.js"}}]},{"kind":"javascript-module","path":"shared/types/survicate.types.js","declarations":[],"exports":[]},{"kind":"javascript-module","path":"shared/utils.js","declarations":[{"kind":"function","name":"isMac","return":{"type":{"text":"boolean"}},"description":"True on macOS. Prefers the modern userAgentData, falls back to navigator.platform.\nGuarded for non-browser contexts (SSR, node tooling, tests without jsdom):\nwhen navigator is unavailable it defaults to non-Mac rather than throwing."},{"kind":"function","name":"isShortcutWithCommandModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}],"description":"True when a command shortcut modifier is held.\nOn Mac: Ctrl or Cmd (both accepted; Ctrl is a Safari fallback).\nOn other platforms: Ctrl only (Meta/Super is captured by the OS)."},{"kind":"function","name":"isShortcutWithModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}]},{"kind":"function","name":"isShortcutWithoutModifier","return":{"type":{"text":"boolean"}},"parameters":[{"name":"e","type":{"text":"KeyboardEvent | MouseEvent"}}]},{"kind":"function","name":"SWITCHER_DROPDOWN_HEADER","return":{"type":{"text":"string"}}},{"kind":"function","name":"SEARCH_PLACEHOLDER","return":{"type":{"text":"string"}}},{"kind":"function","name":"SEARCH_SHORTCUT","return":{"type":{"text":"string"}},"description":"Platform-specific display label for the search shortcut."},{"kind":"variable","name":"SEARCH_MIN_LENGTH","type":{"text":"number"},"default":"3"},{"kind":"variable","name":"SEARCH_DEBOUNCE_MS","type":{"text":"number"},"default":"200"},{"kind":"function","name":"SEARCH_HINT","return":{"type":{"text":"string"}},"parameters":[{"name":"minLength","type":{"text":"number"}}]},{"kind":"function","name":"MENU_SCOPE_LABEL","return":{"type":{"text":"string"}}},{"kind":"function","name":"LOAD_MORE_LABEL","return":{"type":{"text":"string"}}},{"kind":"function","name":"DROPDOWN_DEFAULT_TITLE","return":{"type":{"text":"string"}}},{"kind":"function","name":"PLATFORM_LABEL","return":{"type":{"text":"string"}}},{"kind":"variable","name":"MENU_SCOPE_ID","type":{"text":"string"},"default":"'menu'"},{"kind":"variable","name":"SURVICATE_SDK_ID","type":{"text":"string"},"default":"'survicate-sdk'"},{"kind":"variable","name":"SURVICATE_FEEDBACK_EVENT","type":{"text":"string"},"default":"'ui-components-feedback'"},{"kind":"function","name":"getSurvicateSdkUrl","parameters":[{"name":"workspaceId","type":{"text":"string"}}]}],"exports":[{"kind":"js","name":"isMac","declaration":{"name":"isMac","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithCommandModifier","declaration":{"name":"isShortcutWithCommandModifier","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithModifier","declaration":{"name":"isShortcutWithModifier","module":"shared/utils.js"}},{"kind":"js","name":"isShortcutWithoutModifier","declaration":{"name":"isShortcutWithoutModifier","module":"shared/utils.js"}},{"kind":"js","name":"SWITCHER_DROPDOWN_HEADER","declaration":{"name":"SWITCHER_DROPDOWN_HEADER","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_PLACEHOLDER","declaration":{"name":"SEARCH_PLACEHOLDER","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_SHORTCUT","declaration":{"name":"SEARCH_SHORTCUT","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_MIN_LENGTH","declaration":{"name":"SEARCH_MIN_LENGTH","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_DEBOUNCE_MS","declaration":{"name":"SEARCH_DEBOUNCE_MS","module":"shared/utils.js"}},{"kind":"js","name":"SEARCH_HINT","declaration":{"name":"SEARCH_HINT","module":"shared/utils.js"}},{"kind":"js","name":"MENU_SCOPE_LABEL","declaration":{"name":"MENU_SCOPE_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"LOAD_MORE_LABEL","declaration":{"name":"LOAD_MORE_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"DROPDOWN_DEFAULT_TITLE","declaration":{"name":"DROPDOWN_DEFAULT_TITLE","module":"shared/utils.js"}},{"kind":"js","name":"PLATFORM_LABEL","declaration":{"name":"PLATFORM_LABEL","module":"shared/utils.js"}},{"kind":"js","name":"MENU_SCOPE_ID","declaration":{"name":"MENU_SCOPE_ID","module":"shared/utils.js"}},{"kind":"js","name":"SURVICATE_SDK_ID","declaration":{"name":"SURVICATE_SDK_ID","module":"shared/utils.js"}},{"kind":"js","name":"SURVICATE_FEEDBACK_EVENT","declaration":{"name":"SURVICATE_FEEDBACK_EVENT","module":"shared/utils.js"}},{"kind":"js","name":"getSurvicateSdkUrl","declaration":{"name":"getSurvicateSdkUrl","module":"shared/utils.js"}}]}],"package":{"name":"@visma-swno/vsn-navigation","version":"0.0.0-semantically-released"}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visma-swno/vsn-navigation",
|
|
3
|
-
"version": "1.4.0-beta.
|
|
3
|
+
"version": "1.4.0-beta.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"customElements": "dist/custom-elements.json",
|
|
6
6
|
"exports": {
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"localize:build": "lit-localize build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tailwindcss/vite": "^4.2.3",
|
|
27
26
|
"@vsn-ux/gaia-styles": "^0.6.9"
|
|
28
27
|
},
|
|
29
28
|
"peerDependencies": {
|
|
@@ -33,7 +32,7 @@
|
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"@lit/localize-tools": "^0.8.1",
|
|
36
|
-
"@tailwindcss/vite": "^4.2.
|
|
35
|
+
"@tailwindcss/vite": "^4.2.3",
|
|
37
36
|
"semantic-release": "^25.0.3",
|
|
38
37
|
"typescript": "~5.9.3",
|
|
39
38
|
"vite": "^8.0.1",
|