@abgov/web-components 1.0.0-alpha.103 → 1.0.0-alpha.104

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/web-components",
3
- "version": "1.0.0-alpha.103",
3
+ "version": "1.0.0-alpha.104",
4
4
  "description": "Government of Alberta - UI Web components",
5
5
  "bugs": {
6
6
  "url": "https://github.com/GovAlta/ui-components/issues"
@@ -4011,7 +4011,7 @@ function get_each_context$4(ctx, list, i) {
4011
4011
  return child_ctx;
4012
4012
  }
4013
4013
 
4014
- // (198:2) {#if isMenuVisible}
4014
+ // (201:2) {#if isMenuVisible}
4015
4015
  function create_if_block$c(ctx) {
4016
4016
  let div;
4017
4017
  let div_data_testid_value;
@@ -4045,13 +4045,14 @@ function create_if_block$c(ctx) {
4045
4045
  };
4046
4046
  }
4047
4047
 
4048
- // (239:4) {#each options as option, index}
4048
+ // (242:4) {#each options as option, index}
4049
4049
  function create_each_block$4(ctx) {
4050
4050
  let li;
4051
4051
  let t_value = (/*option*/ ctx[39].label || /*option*/ ctx[39].value) + "";
4052
4052
  let t;
4053
4053
  let li_id_value;
4054
4054
  let li_aria_label_value;
4055
+ let li_aria_selected_value;
4055
4056
  let li_data_testid_value;
4056
4057
  let li_data_index_value;
4057
4058
  let li_style_value;
@@ -4067,11 +4068,16 @@ function create_each_block$4(ctx) {
4067
4068
  li = element("li");
4068
4069
  t = text(t_value);
4069
4070
  attr(li, "id", li_id_value = /*option*/ ctx[39].label);
4070
- attr(li, "aria-label", li_aria_label_value = /*option*/ ctx[39].label || /*option*/ ctx[39].value);
4071
4071
  attr(li, "role", "option");
4072
+ attr(li, "aria-label", li_aria_label_value = /*option*/ ctx[39].label || /*option*/ ctx[39].value);
4073
+
4074
+ attr(li, "aria-selected", li_aria_selected_value = /*_values*/ ctx[9].includes(/*option*/ ctx[39].value)
4075
+ ? "true"
4076
+ : "false");
4077
+
4078
+ attr(li, "class", "goa-dropdown-option");
4072
4079
  attr(li, "data-testid", li_data_testid_value = `${/*option*/ ctx[39].value}-dropdown-item`);
4073
4080
  attr(li, "data-index", li_data_index_value = /*index*/ ctx[41]);
4074
- attr(li, "class", "goa-dropdown-option");
4075
4081
  attr(li, "style", li_style_value = `display: ${"block"}`);
4076
4082
  toggle_class(li, "goa-dropdown-option--disabled", false);
4077
4083
  toggle_class(li, "goa-dropdown-option--tabbed", /*index*/ ctx[41] === /*highlightedIndex*/ ctx[13]);
@@ -4098,6 +4104,12 @@ function create_each_block$4(ctx) {
4098
4104
  attr(li, "aria-label", li_aria_label_value);
4099
4105
  }
4100
4106
 
4107
+ if (dirty[0] & /*_values, options*/ 1536 && li_aria_selected_value !== (li_aria_selected_value = /*_values*/ ctx[9].includes(/*option*/ ctx[39].value)
4108
+ ? "true"
4109
+ : "false")) {
4110
+ attr(li, "aria-selected", li_aria_selected_value);
4111
+ }
4112
+
4101
4113
  if (dirty[0] & /*options*/ 1024 && li_data_testid_value !== (li_data_testid_value = `${/*option*/ ctx[39].value}-dropdown-item`)) {
4102
4114
  attr(li, "data-testid", li_data_testid_value);
4103
4115
  }
@@ -4259,7 +4271,7 @@ function create_fragment$r(ctx) {
4259
4271
  attr(div0, "data-testid", div0_data_testid_value);
4260
4272
  }
4261
4273
 
4262
- if (dirty[0] & /*options, highlightedIndex, _values, onSelect*/ 534016) {
4274
+ if (dirty[0] & /*options, _values, highlightedIndex, onSelect*/ 534016) {
4263
4275
  each_value = /*options*/ ctx[10];
4264
4276
  let i;
4265
4277
 
@@ -4462,7 +4474,7 @@ function instance$p($$self, $$props, $$invalidate) {
4462
4474
  }
4463
4475
 
4464
4476
  // Event handlers
4465
- function onSelect(val, label) {
4477
+ function onSelect(val, label, close) {
4466
4478
  if (_disabled) return;
4467
4479
  $$invalidate(11, selectedLabel = label);
4468
4480
 
@@ -4484,7 +4496,9 @@ function instance$p($$self, $$props, $$invalidate) {
4484
4496
  }));
4485
4497
  }
4486
4498
 
4487
- closeMenu();
4499
+ if (close) {
4500
+ closeMenu();
4501
+ }
4488
4502
  }
4489
4503
 
4490
4504
  const onInputKeyDown = e => {
@@ -4509,20 +4523,22 @@ function instance$p($$self, $$props, $$invalidate) {
4509
4523
  function onMenuKeyDown(e) {
4510
4524
  switch (e.key) {
4511
4525
  case "ArrowUp":
4512
- if (highlightedIndex === 0) {
4513
- $$invalidate(13, highlightedIndex = options.length - 1);
4514
- } else {
4526
+ if (highlightedIndex > 0) {
4515
4527
  $$invalidate(13, highlightedIndex--, highlightedIndex);
4528
+ onSelect(options[highlightedIndex].value, options[highlightedIndex].label, false);
4516
4529
  }
4517
4530
  e.preventDefault();
4518
4531
  break;
4519
4532
  case "ArrowDown":
4520
- $$invalidate(13, highlightedIndex = (highlightedIndex + 1) % options.length);
4533
+ if (highlightedIndex < options.length - 1) {
4534
+ $$invalidate(13, highlightedIndex++, highlightedIndex);
4535
+ onSelect(options[highlightedIndex].value, options[highlightedIndex].label, false);
4536
+ }
4521
4537
  e.preventDefault();
4522
4538
  break;
4523
4539
  case "Tab":
4524
4540
  case "Enter":
4525
- onSelect(options[highlightedIndex].value, options[highlightedIndex].label);
4541
+ closeMenu();
4526
4542
  e.preventDefault();
4527
4543
  break;
4528
4544
  case "Escape":
@@ -4536,7 +4552,7 @@ function instance$p($$self, $$props, $$invalidate) {
4536
4552
  $$invalidate(13, highlightedIndex = Number(e.target.dataset.index));
4537
4553
  }
4538
4554
 
4539
- const click_handler = option => onSelect(option.value, option.label);
4555
+ const click_handler = option => onSelect(option.value, option.label, true);
4540
4556
 
4541
4557
  function ul_binding($$value) {
4542
4558
  binding_callbacks[$$value ? 'unshift' : 'push'](() => {
@@ -1,11 +1,11 @@
1
- (function(p){typeof define=="function"&&define.amd?define(p):p()})(function(){"use strict";function p(){}const ke=i=>i;function Je(i,e){for(const t in e)i[t]=e[t];return i}function Ve(i){return i()}function Qe(){return Object.create(null)}function $(i){i.forEach(Ve)}function ue(i){return typeof i=="function"}function N(i,e){return i!=i?e==e:i!==e||i&&typeof i=="object"||typeof i=="function"}let Me;function Le(i,e){return Me||(Me=document.createElement("a")),Me.href=e,i===Me.href}function gi(i){return Object.keys(i).length===0}function mi(i,...e){if(i==null)return p;const t=i.subscribe(...e);return t.unsubscribe?()=>t.unsubscribe():t}function bi(i,e,t){i.$$.on_destroy.push(mi(e,t))}function $e(i){return i&&ue(i.destroy)?i.destroy:p}const et=typeof window!="undefined";let Te=et?()=>window.performance.now():()=>Date.now(),We=et?i=>requestAnimationFrame(i):p;const me=new Set;function tt(i){me.forEach(e=>{e.c(i)||(me.delete(e),e.f())}),me.size!==0&&We(tt)}function Re(i){let e;return me.size===0&&We(tt),{promise:new Promise(t=>{me.add(e={c:i,f:t})}),abort(){me.delete(e)}}}function g(i,e){i.appendChild(e)}function it(i){if(!i)return document;const e=i.getRootNode?i.getRootNode():i.ownerDocument;return e&&e.host?e:i.ownerDocument}function vi(i){const e=m("style");return pi(it(i),e),e.sheet}function pi(i,e){g(i.head||i,e)}function v(i,e,t){i.insertBefore(e,t||null)}function z(i){i.parentNode.removeChild(i)}function Ae(i,e){for(let t=0;t<i.length;t+=1)i[t]&&i[t].d(e)}function m(i){return document.createElement(i)}function fe(i){return document.createElementNS("http://www.w3.org/2000/svg",i)}function F(i){return document.createTextNode(i)}function H(){return F(" ")}function ie(){return F("")}function U(i,e,t,r){return i.addEventListener(e,t,r),()=>i.removeEventListener(e,t,r)}function u(i,e,t){t==null?i.removeAttribute(e):i.getAttribute(e)!==t&&i.setAttribute(e,t)}function C(i,e,t){e in i?i[e]=typeof i[e]=="boolean"&&t===""?!0:t:u(i,e,t)}function wi(i){return Array.from(i.childNodes)}function q(i,e){e=""+e,i.wholeText!==e&&(i.data=e)}function V(i,e,t,r){t===null?i.style.removeProperty(e):i.style.setProperty(e,t,r?"important":"")}function B(i,e,t){i.classList[t?"add":"remove"](e)}function yi(i,e,{bubbles:t=!1,cancelable:r=!1}={}){const n=document.createEvent("CustomEvent");return n.initCustomEvent(i,t,r,e),n}function O(i){const e={};for(const t of i)e[t.name]=t.value;return e}const He=new Map;let Ie=0;function _i(i){let e=5381,t=i.length;for(;t--;)e=(e<<5)-e^i.charCodeAt(t);return e>>>0}function ki(i,e){const t={stylesheet:vi(e),rules:{}};return He.set(i,t),t}function Se(i,e,t,r,n,o,a,l=0){const s=16.666/r;let c=`{
1
+ (function(w){typeof define=="function"&&define.amd?define(w):w()})(function(){"use strict";function w(){}const ke=i=>i;function Je(i,e){for(const t in e)i[t]=e[t];return i}function Ve(i){return i()}function Qe(){return Object.create(null)}function $(i){i.forEach(Ve)}function ue(i){return typeof i=="function"}function N(i,e){return i!=i?e==e:i!==e||i&&typeof i=="object"||typeof i=="function"}let Me;function Le(i,e){return Me||(Me=document.createElement("a")),Me.href=e,i===Me.href}function gi(i){return Object.keys(i).length===0}function mi(i,...e){if(i==null)return w;const t=i.subscribe(...e);return t.unsubscribe?()=>t.unsubscribe():t}function bi(i,e,t){i.$$.on_destroy.push(mi(e,t))}function $e(i){return i&&ue(i.destroy)?i.destroy:w}const et=typeof window!="undefined";let Te=et?()=>window.performance.now():()=>Date.now(),We=et?i=>requestAnimationFrame(i):w;const be=new Set;function tt(i){be.forEach(e=>{e.c(i)||(be.delete(e),e.f())}),be.size!==0&&We(tt)}function Re(i){let e;return be.size===0&&We(tt),{promise:new Promise(t=>{be.add(e={c:i,f:t})}),abort(){be.delete(e)}}}function g(i,e){i.appendChild(e)}function it(i){if(!i)return document;const e=i.getRootNode?i.getRootNode():i.ownerDocument;return e&&e.host?e:i.ownerDocument}function vi(i){const e=m("style");return pi(it(i),e),e.sheet}function pi(i,e){g(i.head||i,e)}function v(i,e,t){i.insertBefore(e,t||null)}function z(i){i.parentNode.removeChild(i)}function Ae(i,e){for(let t=0;t<i.length;t+=1)i[t]&&i[t].d(e)}function m(i){return document.createElement(i)}function fe(i){return document.createElementNS("http://www.w3.org/2000/svg",i)}function F(i){return document.createTextNode(i)}function H(){return F(" ")}function ie(){return F("")}function U(i,e,t,r){return i.addEventListener(e,t,r),()=>i.removeEventListener(e,t,r)}function u(i,e,t){t==null?i.removeAttribute(e):i.getAttribute(e)!==t&&i.setAttribute(e,t)}function C(i,e,t){e in i?i[e]=typeof i[e]=="boolean"&&t===""?!0:t:u(i,e,t)}function wi(i){return Array.from(i.childNodes)}function q(i,e){e=""+e,i.wholeText!==e&&(i.data=e)}function V(i,e,t,r){t===null?i.style.removeProperty(e):i.style.setProperty(e,t,r?"important":"")}function B(i,e,t){i.classList[t?"add":"remove"](e)}function yi(i,e,{bubbles:t=!1,cancelable:r=!1}={}){const n=document.createEvent("CustomEvent");return n.initCustomEvent(i,t,r,e),n}function O(i){const e={};for(const t of i)e[t.name]=t.value;return e}const He=new Map;let Ie=0;function _i(i){let e=5381,t=i.length;for(;t--;)e=(e<<5)-e^i.charCodeAt(t);return e>>>0}function ki(i,e){const t={stylesheet:vi(e),rules:{}};return He.set(i,t),t}function Se(i,e,t,r,n,o,a,l=0){const s=16.666/r;let c=`{
2
2
  `;for(let M=0;M<=1;M+=s){const x=e+(t-e)*o(M);c+=M*100+`%{${a(x,1-x)}}
3
3
  `}const d=c+`100% {${a(t,1-t)}}
4
- }`,f=`__svelte_${_i(d)}_${l}`,b=it(i),{stylesheet:y,rules:w}=He.get(b)||ki(b,i);w[f]||(w[f]=!0,y.insertRule(`@keyframes ${f} ${d}`,y.cssRules.length));const _=i.style.animation||"";return i.style.animation=`${_?`${_}, `:""}${f} ${r}ms linear ${n}ms 1 both`,Ie+=1,f}function De(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?o=>o.indexOf(e)<0:o=>o.indexOf("__svelte")===-1),n=t.length-r.length;n&&(i.style.animation=r.join(", "),Ie-=n,Ie||xi())}function xi(){We(()=>{Ie||(He.forEach(i=>{const{stylesheet:e}=i;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.rules={}}),He.clear())})}let xe;function Ee(i){xe=i}function rt(){if(!xe)throw new Error("Function called outside component initialization");return xe}function Y(i){rt().$$.on_mount.push(i)}function nt(i){rt().$$.on_destroy.push(i)}const ze=[],ee=[],Be=[],ot=[],at=Promise.resolve();let Ue=!1;function lt(){Ue||(Ue=!0,at.then(h))}function Ne(){return lt(),at}function re(i){Be.push(i)}const Ze=new Set;let je=0;function h(){const i=xe;do{for(;je<ze.length;){const e=ze[je];je++,Ee(e),Ei(e.$$)}for(Ee(null),ze.length=0,je=0;ee.length;)ee.pop()();for(let e=0;e<Be.length;e+=1){const t=Be[e];Ze.has(t)||(Ze.add(t),t())}Be.length=0}while(ze.length);for(;ot.length;)ot.pop()();Ue=!1,Ze.clear(),Ee(i)}function Ei(i){if(i.fragment!==null){i.update(),$(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(re)}}let Ce;function Ke(){return Ce||(Ce=Promise.resolve(),Ce.then(()=>{Ce=null})),Ce}function he(i,e,t){i.dispatchEvent(yi(`${e?"intro":"outro"}${t}`))}const Oe=new Set;let ne;function be(){ne={r:0,c:[],p:ne}}function ve(){ne.r||$(ne.c),ne=ne.p}function W(i,e){i&&i.i&&(Oe.delete(i),i.i(e))}function Z(i,e,t,r){if(i&&i.o){if(Oe.has(i))return;Oe.add(i),ne.c.push(()=>{Oe.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}else r&&r()}const Xe={duration:0};function st(i,e,t){let r=e(i,t),n=!1,o,a,l=0;function s(){o&&De(i,o)}function c(){const{delay:f=0,duration:b=300,easing:y=ke,tick:w=p,css:_}=r||Xe;_&&(o=Se(i,0,1,b,f,y,_,l++)),w(0,1);const M=Te()+f,x=M+b;a&&a.abort(),n=!0,re(()=>he(i,!0,"start")),a=Re(E=>{if(n){if(E>=x)return w(1,0),he(i,!0,"end"),s(),n=!1;if(E>=M){const T=y((E-M)/b);w(T,1-T)}}return n})}let d=!1;return{start(){d||(d=!0,De(i),ue(r)?(r=r(),Ke().then(c)):c())},invalidate(){d=!1},end(){n&&(s(),n=!1)}}}function ct(i,e,t){let r=e(i,t),n=!0,o;const a=ne;a.r+=1;function l(){const{delay:s=0,duration:c=300,easing:d=ke,tick:f=p,css:b}=r||Xe;b&&(o=Se(i,1,0,c,s,d,b));const y=Te()+s,w=y+c;re(()=>he(i,!1,"start")),Re(_=>{if(n){if(_>=w)return f(0,1),he(i,!1,"end"),--a.r||$(a.c),!1;if(_>=y){const M=d((_-y)/c);f(1-M,M)}}return n})}return ue(r)?Ke().then(()=>{r=r(),l()}):l(),{end(s){s&&r.tick&&r.tick(1,0),n&&(o&&De(i,o),n=!1)}}}function Pe(i,e,t,r){let n=e(i,t),o=r?0:1,a=null,l=null,s=null;function c(){s&&De(i,s)}function d(b,y){const w=b.b-o;return y*=Math.abs(w),{a:o,b:b.b,d:w,duration:y,start:b.start,end:b.start+y,group:b.group}}function f(b){const{delay:y=0,duration:w=300,easing:_=ke,tick:M=p,css:x}=n||Xe,E={start:Te()+y,b};b||(E.group=ne,ne.r+=1),a||l?l=E:(x&&(c(),s=Se(i,o,b,w,y,_,x)),b&&M(0,1),a=d(E,w),re(()=>he(i,b,"start")),Re(T=>{if(l&&T>l.start&&(a=d(l,w),l=null,he(i,a.b,"start"),x&&(c(),s=Se(i,o,a.b,a.duration,0,_,n.css))),a){if(T>=a.end)M(o=a.b,1-o),he(i,a.b,"end"),l||(a.b?c():--a.group.r||$(a.group.c)),a=null;else if(T>=a.start){const k=T-a.start;o=a.a+a.d*_(k/a.duration),M(o,1-o)}}return!!(a||l)}))}return{run(b){ue(n)?Ke().then(()=>{n=n(),f(b)}):f(b)},end(){c(),a=l=null}}}function zi(i,e){i.d(1),e.delete(i.key)}function Ci(i,e,t,r,n,o,a,l,s,c,d,f){let b=i.length,y=o.length,w=b;const _={};for(;w--;)_[i[w].key]=w;const M=[],x=new Map,E=new Map;for(w=y;w--;){const R=f(n,o,w),L=t(R);let D=a.get(L);D?r&&D.p(R,e):(D=c(L,R),D.c()),x.set(L,M[w]=D),L in _&&E.set(L,Math.abs(w-_[L]))}const T=new Set,k=new Set;function A(R){W(R,1),R.m(l,d),a.set(R.key,R),d=R.first,y--}for(;b&&y;){const R=M[y-1],L=i[b-1],D=R.key,X=L.key;R===L?(d=R.first,b--,y--):x.has(X)?!a.has(D)||T.has(D)?A(R):k.has(X)?b--:E.get(D)>E.get(X)?(k.add(D),A(R)):(T.add(X),b--):(s(L,a),b--)}for(;b--;){const R=i[b];x.has(R.key)||s(R,a)}for(;y;)A(M[y-1]);return M}function ge(i){i&&i.c()}function ae(i,e,t,r){const{fragment:n,on_mount:o,on_destroy:a,after_update:l}=i.$$;n&&n.m(e,t),r||re(()=>{const s=o.map(Ve).filter(ue);a?a.push(...s):$(s),i.$$.on_mount=[]}),l.forEach(re)}function le(i,e){const t=i.$$;t.fragment!==null&&($(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Mi(i,e){i.$$.dirty[0]===-1&&(ze.push(i),lt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function P(i,e,t,r,n,o,a,l=[-1]){const s=xe;Ee(i);const c=i.$$={fragment:null,ctx:null,props:o,update:p,not_equal:n,bound:Qe(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(s?s.$$.context:[])),callbacks:Qe(),dirty:l,skip_bound:!1,root:e.target||s.$$.root};a&&a(c.root);let d=!1;if(c.ctx=t?t(i,e.props||{},(f,b,...y)=>{const w=y.length?y[0]:b;return c.ctx&&n(c.ctx[f],c.ctx[f]=w)&&(!c.skip_bound&&c.bound[f]&&c.bound[f](w),d&&Mi(i,f)),b}):[],c.update(),d=!0,$(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const f=wi(e.target);c.fragment&&c.fragment.l(f),f.forEach(z)}else c.fragment&&c.fragment.c();e.intro&&W(i.$$.fragment),ae(i,e.target,e.anchor,e.customElement),h()}Ee(s)}let j;typeof HTMLElement=="function"&&(j=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(Ve).filter(ue);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){$(this.$$.on_disconnect)}$destroy(){le(this,1),this.$destroy=p}$on(i,e){const t=this.$$.callbacks[i]||(this.$$.callbacks[i]=[]);return t.push(e),()=>{const r=t.indexOf(e);r!==-1&&t.splice(r,1)}}$set(i){this.$$set&&!gi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0])},d(d){d&&z(e)}}}function Ti(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("a"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"href",i[1]),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0]),f&2&&u(e,"href",d[1])},d(d){d&&z(e)}}}function Ri(i){let e,t,r,n,o;function a(c,d){return c[1]?Ti:Li}let l=a(i),s=l(i);return{c(){e=m("div"),t=m("div"),s.c(),r=H(),n=m("div"),n.innerHTML="<slot></slot>",this.c=p,u(t,"class","content"),u(e,"class","app-header"),u(e,"data-testid",i[2]),u(e,"style",o=`--max-content-width: ${i[3]||"var(--layout-max-content-width)"}`)},m(c,d){v(c,e,d),g(e,t),s.m(t,null),g(t,r),g(t,n)},p(c,[d]){l===(l=a(c))&&s?s.p(c,d):(s.d(1),s=l(c),s&&(s.c(),s.m(t,r))),d&4&&u(e,"data-testid",c[2]),d&8&&o!==(o=`--max-content-width: ${c[3]||"var(--layout-max-content-width)"}`)&&u(e,"style",o)},i:p,o:p,d(c){c&&z(e),s.d()}}}function Ai(i,e,t){let{heading:r=""}=e,{url:n=""}=e,{testid:o=""}=e,{maxcontentwidth:a=""}=e;return i.$$set=l=>{"heading"in l&&t(0,r=l.heading),"url"in l&&t(1,n=l.url),"testid"in l&&t(2,o=l.testid),"maxcontentwidth"in l&&t(3,a=l.maxcontentwidth)},[r,n,o,a]}class Hi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ai,Ri,N,{heading:0,url:1,testid:2,maxcontentwidth:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","url","testid","maxcontentwidth"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get url(){return this.$$.ctx[1]}set url(e){this.$$set({url:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}get maxcontentwidth(){return this.$$.ctx[3]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-header",Hi);function G(i){return i==="false"?!1:i===""?!0:!!i}function Ii(i){let e;return{c(){e=m("div"),V(e,"height","1.2rem"),V(e,"margin-left","-0.25rem")},m(t,r){v(t,e,r)},p,d(t){t&&z(e)}}}function Si(i){let e;return{c(){e=m("goa-icon"),C(e,"type",i[4]),C(e,"size","small")},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4])},d(t){t&&z(e)}}}function dt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","goa-badge-content")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&z(e)}}}function Di(i){let e,t,r;function n(s,c){return s[3]?Si:Ii}let o=n(i),a=o(i),l=i[2]&&dt(i);return{c(){e=m("div"),a.c(),t=H(),l&&l.c(),this.c=p,u(e,"data-testid",i[1]),u(e,"data-type","goa-badge"),u(e,"class",r="goa-badge badge-"+i[0]),B(e,"icon-only",i[3]&&!i[2])},m(s,c){v(s,e,c),a.m(e,null),g(e,t),l&&l.m(e,null)},p(s,[c]){o===(o=n(s))&&a?a.p(s,c):(a.d(1),a=o(s),a&&(a.c(),a.m(e,t))),s[2]?l?l.p(s,c):(l=dt(s),l.c(),l.m(e,null)):l&&(l.d(1),l=null),c&2&&u(e,"data-testid",s[1]),c&1&&r!==(r="goa-badge badge-"+s[0])&&u(e,"class",r),c&13&&B(e,"icon-only",s[3]&&!s[2])},i:p,o:p,d(s){s&&z(e),a.d(),l&&l.d()}}}function Bi(i,e,t){let r,n,{type:o}=e,{testid:a=""}=e,{icon:l="false"}=e,{content:s=""}=e;return Y(()=>{!r&&!s&&console.warn("GoABadge must have either then content or icon property set")}),i.$$set=c=>{"type"in c&&t(0,o=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,l=c.icon),"content"in c&&t(2,s=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(3,r=G(l)),i.$$.dirty&1&&t(4,n={success:"checkmark-circle",important:"alert-circle",information:"information-circle",emergency:"warning",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[o])},[o,a,s,r,n,l]}class Ni extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;align-items:center;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular);margin:0.25rem}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm);padding-bottom:var(--font-valign-fix)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--goa-color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-important{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.goa-badge.badge-emergency{background-color:var(--goa-color-status-emergency);color:var(--goa-color-text-light)}.goa-badge.badge-dark{background-color:var(--color-black);color:var(--goa-color-text-light)}.goa-badge.badge-midtone{background-color:var(--color-gray-600);color:var(--goa-color-text-light)}.goa-badge.badge-light{background-color:var(--color-white);color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Bi,Di,N,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","testid","icon","content"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}get icon(){return this.$$.ctx[5]}set icon(e){this.$$set({icon:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-badge",Ni);function ji(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=p,V(e,"--alignment","flex-"+i[1]),V(e,"--gap-size",i[0]==="small"?"0.5rem":"1.25rem")},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&2&&V(e,"--alignment","flex-"+r[1]),n&1&&V(e,"--gap-size",r[0]==="small"?"0.5rem":"1.25rem")},i:p,o:p,d(r){r&&z(e)}}}function Oi(i,e,t){let{gap:r="medium"}=e,{alignment:n}=e;return i.$$set=o=>{"gap"in o&&t(0,r=o.gap),"alignment"in o&&t(1,n=o.alignment)},[r,n]}class Pi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Oi,ji,N,{gap:0,alignment:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap","alignment"]}get gap(){return this.$$.ctx[0]}set gap(e){this.$$set({gap:e}),h()}get alignment(){return this.$$.ctx[1]}set alignment(e){this.$$set({alignment:e}),h()}}customElements.define("goa-button-group",Pi);function Fi(i){let e,t,r,n,o=i[3]&&ut(i),a=i[4]&&ft(i);return{c(){o&&o.c(),e=H(),t=m("slot"),r=H(),a&&a.c(),n=ie(),u(t,"class","text")},m(l,s){o&&o.m(l,s),v(l,e,s),v(l,t,s),v(l,r,s),a&&a.m(l,s),v(l,n,s)},p(l,s){l[3]?o?o.p(l,s):(o=ut(l),o.c(),o.m(e.parentNode,e)):o&&(o.d(1),o=null),l[4]?a?a.p(l,s):(a=ft(l),a.c(),a.m(n.parentNode,n)):a&&(a.d(1),a=null)},d(l){o&&o.d(l),l&&z(e),l&&z(t),l&&z(r),a&&a.d(l),l&&z(n)}}}function Gi(i){let e,t,r;return{c(){e=m("slot"),t=H(),r=m("goa-icon"),u(e,"class","text"),C(r,"id","trailing-icon"),C(r,"type","arrow-forward"),C(r,"inverted","true")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},p,d(n){n&&z(e),n&&z(t),n&&z(r)}}}function ut(i){let e;return{c(){e=m("goa-icon"),C(e,"id","leading-icon"),C(e,"type",i[3]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&8&&C(e,"type",t[3]),r&64&&C(e,"inverted",t[6])},d(t){t&&z(e)}}}function ft(i){let e;return{c(){e=m("goa-icon"),C(e,"id","trailing-icon"),C(e,"type",i[4]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4]),r&64&&C(e,"inverted",t[6])},d(t){t&&z(e)}}}function qi(i){let e,t,r,n;function o(s,c){return s[0]==="start"?Gi:Fi}let a=o(i),l=a(i);return{c(){e=m("button"),l.c(),this.c=p,u(e,"class",t=""+(i[0]+" "+i[1]+" "+i[2])),e.disabled=i[7],u(e,"data-testid",i[5]),B(e,"leading",i[3]),B(e,"trailing",i[4]||i[0]==="start")},m(s,c){v(s,e,c),l.m(e,null),r||(n=U(e,"click",Vi),r=!0)},p(s,[c]){a===(a=o(s))&&l?l.p(s,c):(l.d(1),l=a(s),l&&(l.c(),l.m(e,null))),c&7&&t!==(t=""+(s[0]+" "+s[1]+" "+s[2]))&&u(e,"class",t),c&128&&(e.disabled=s[7]),c&32&&u(e,"data-testid",s[5]),c&15&&B(e,"leading",s[3]),c&23&&B(e,"trailing",s[4]||s[0]==="start")},i:p,o:p,d(s){s&&z(e),l.d(),r=!1,n()}}}function Vi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Wi(i,e,t){let r,n;const o=["primary","submit","secondary","tertiary","start"],a=["normal","compact"],l=["normal","destructive"];function s(E){return o.includes(E)}function c(E){return a.includes(E)}function d(E){return l.includes(E)}let{type:f="primary"}=e,{size:b="normal"}=e,{variant:y="normal"}=e,{disabled:w="false"}=e,{leadingicon:_=null}=e,{trailingicon:M=null}=e,{testid:x=""}=e;return Y(()=>{if(!s(f))throw"Invalid button type";if(!c(b))throw"Invalid button size";if(!d(y))throw"Invalid button variant"}),i.$$set=E=>{"type"in E&&t(0,f=E.type),"size"in E&&t(1,b=E.size),"variant"in E&&t(2,y=E.variant),"disabled"in E&&t(8,w=E.disabled),"leadingicon"in E&&t(3,_=E.leadingicon),"trailingicon"in E&&t(4,M=E.trailingicon),"testid"in E&&t(5,x=E.testid)},i.$$.update=()=>{i.$$.dirty&256&&t(7,r=G(w)),i.$$.dirty&1&&t(6,n=f==="primary"||f==="start")},[f,b,y,_,M,x,n,r,w]}class Ui extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-family:var(--font-family);font-size:var(--fs-lg);font-weight:400;height:var(--button-height);letter-spacing:0.5px;line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
5
- border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--fs-base)}button.start{height:var(--button-height-tall);font-weight:var(--fw-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive);background-color:var(--goa-color-interactive);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive--hover);background-color:var(--goa-color-interactive--hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);border-color:var(--goa-color-interactive--active);background-color:var(--goa-color-interactive--active);outline:none}button.secondary{border:2px solid var(--goa-color-interactive);background-color:var(--color-white);color:var(--goa-color-interactive)}button.secondary:hover{border-color:var(--goa-color-interactive--hover);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);background-color:var(--color-gray-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive);text-decoration:underline}button.tertiary:hover{border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--color-gray-100);background-color:var(--color-gray-100);color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.submit.destructive,.primary.destructive{color:var(--color-white);background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.secondary.destructive{color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);background-color:var(--color-white)}.secondary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive{color:var(--goa-color-status-emergency);border-color:var(--color-gray-200);background-color:var(--color-white)}.tertiary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Wi,qi,N,{type:0,size:1,variant:2,disabled:8,leadingicon:3,trailingicon:4,testid:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","variant","disabled","leadingicon","trailingicon","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get variant(){return this.$$.ctx[2]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[8]}set disabled(e){this.$$set({disabled:e}),h()}get leadingicon(){return this.$$.ctx[3]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[4]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-button",Ui);function ht(i){let e,t;return{c(){e=m("h3"),t=F(i[1])},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function Zi(i){let e,t,r,n,o,a,l,s,c,d=i[1]&&ht(i);return{c(){e=m("div"),t=m("span"),r=m("goa-icon"),a=H(),l=m("span"),d&&d.c(),s=H(),c=m("slot"),this.c=p,C(r,"type",i[3]),C(r,"inverted",n=i[0]==="important"?"false":"true"),u(t,"class",o="icon "+i[0]),u(l,"class","content"),u(e,"class","notification"),u(e,"data-testid",i[2])},m(f,b){v(f,e,b),g(e,t),g(t,r),g(e,a),g(e,l),d&&d.m(l,null),g(l,s),g(l,c)},p(f,[b]){b&8&&C(r,"type",f[3]),b&1&&n!==(n=f[0]==="important"?"false":"true")&&C(r,"inverted",n),b&1&&o!==(o="icon "+f[0])&&u(t,"class",o),f[1]?d?d.p(f,b):(d=ht(f),d.c(),d.m(l,s)):d&&(d.d(1),d=null),b&4&&u(e,"data-testid",f[2])},i:p,o:p,d(f){f&&z(e),d&&d.d()}}}function Ki(i,e,t){let r,{type:n}=e,{heading:o=""}=e,{testid:a=""}=e;return i.$$set=l=>{"type"in l&&t(0,n=l.type),"heading"in l&&t(1,o=l.heading),"testid"in l&&t(2,a=l.testid)},i.$$.update=()=>{i.$$.dirty&1&&t(3,r=n==="emergency"?"warning":n==="important"?"alert-circle":n==="information"?"information-circle":n==="success"?"checkmark-circle":n==="event"?"calendar":"")},[n,o,a,r]}class Xi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{display:flex;align-items:stretch;border-radius:3px;overflow:hidden;margin-bottom:1.75rem}h3{font-size:var(--fs-xl);line-height:var(--lh-base);font-weight:var(--fw-regular);margin-top:0}.emergency{background-color:var(--goa-color-status-emergency)}.important{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info)}.event{background-color:var(--goa-color-status-info)}.success{background-color:var(--goa-color-status-success)}.icon{flex:0 0 3rem;text-align:center;padding-top:1.75rem}.content{flex:1 1 auto;background-color:var(--color-gray-100);padding:1.75rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ki,Zi,N,{type:0,heading:1,testid:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","heading","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get heading(){return this.$$.ctx[1]}set heading(e){this.$$set({heading:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-callout",Xi);function Yi(i){let e;return{c(){e=m("goa-card-content"),e.innerHTML='<goa-button-group alignment="end"><slot></slot></goa-button-group>',this.c=p},m(t,r){v(t,e,r)},p,i:p,o:p,d(t){t&&z(e)}}}class Ji extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,Yi,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-actions",Ji);function Qi(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=p,u(e,"class","card-content")},m(t,r){v(t,e,r)},p,i:p,o:p,d(t){t&&z(e)}}}class $i extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-content{padding:1rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,Qi,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-content",$i);function er(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=p,u(e,"class","card-group")},m(t,r){v(t,e,r)},p,i:p,o:p,d(t){t&&z(e)}}}class tr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-group{display:flex;flex-wrap:wrap;justify-content:space-around;gap:1rem;width:100%}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,er,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-group",tr);function ir(i){let e;return{c(){e=m("div"),this.c=p,u(e,"class","card-image"),V(e,"background-image","url("+i[0]+")"),V(e,"height",i[1]),V(e,"background-size","cover"),V(e,"background-position","center")},m(t,r){v(t,e,r)},p(t,[r]){r&1&&V(e,"background-image","url("+t[0]+")"),r&2&&V(e,"height",t[1])},i:p,o:p,d(t){t&&z(e)}}}function rr(i,e,t){let{src:r}=e,{height:n="100%"}=e;return i.$$set=o=>{"src"in o&&t(0,r=o.src),"height"in o&&t(1,n=o.height)},[r,n]}class nr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},rr,ir,N,{src:0,height:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["src","height"]}get src(){return this.$$.ctx[0]}set src(e){this.$$set({src:e}),h()}get height(){return this.$$.ctx[1]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-card-image",nr);function or(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=p,u(e,"data-testid",i[2]),u(e,"class","card"),u(e,"style",r="--width: "+i[1]+"px; "+(i[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${i[0]});`)+"")},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&4&&u(e,"data-testid",n[2]),o&3&&r!==(r="--width: "+n[1]+"px; "+(n[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${n[0]});`)+"")&&u(e,"style",r)},i:p,o:p,d(n){n&&z(e)}}}function ar(i,e,t){let{elevation:r=0}=e,{width:n=320}=e,{testId:o=""}=e;return i.$$set=a=>{"elevation"in a&&t(0,r=a.elevation),"width"in a&&t(1,n=a.width),"testId"in a&&t(2,o=a.testId)},[r,n,o]}class lr extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card{display:flex;flex-direction:column;background-color:var(--color-white);border-radius:4px;overflow:hidden;width:100%}@media(min-width: 320px){.card{width:var(--width);margin:0 auto
6
- }}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ar,or,N,{elevation:0,width:1,testId:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["elevation","width","testId"]}get elevation(){return this.$$.ctx[0]}set elevation(e){this.$$set({elevation:e}),h()}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get testId(){return this.$$.ctx[2]}set testId(e){this.$$set({testId:e}),h()}}customElements.define("goa-card",lr);function sr(i){let e,t;return{c(){e=fe("svg"),t=fe("path"),u(t,"d","M5.09,9.64,1.27,5.82,0,7.09l5.09,5.09L16,1.27,14.73,0Z"),u(e,"id","checkmark"),u(e,"data-testid","checkmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 16 12.18")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&z(e)}}}function cr(i){let e,t;return{c(){e=fe("svg"),t=fe("rect"),u(t,"width","15"),u(t,"height","2"),u(e,"id","dashmark"),u(e,"data-testid","dashmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 15 2")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&z(e)}}}function dr(i){let e,t,r,n,o,a,l,s,c,d,f;function b(_,M){if(_[5])return cr;if(_[4])return sr}let y=b(i),w=y&&y(i);return{c(){e=m("label"),t=m("div"),r=m("input"),o=H(),w&&w.c(),a=H(),l=m("div"),s=m("slot"),c=F(i[1]),this.c=p,u(r,"id",i[0]),u(r,"data-testid",i[3]),u(r,"name",i[0]),r.checked=i[4],r.disabled=i[7],u(r,"type","checkbox"),r.value=n=`${i[2]}`,u(t,"class","goa-checkbox-container"),B(t,"goa-checkbox--selected",i[4]),u(l,"class","goa-checkbox-text"),u(l,"data-testid","text"),u(e,"for",i[0]),u(e,"class","goa-checkbox"),B(e,"goa-checkbox--disabled",i[7]),B(e,"goa-checkbox--error",i[6])},m(_,M){v(_,e,M),g(e,t),g(t,r),g(t,o),w&&w.m(t,null),g(e,a),g(e,l),g(l,s),g(s,c),d||(f=U(r,"change",i[8]),d=!0)},p(_,[M]){M&1&&u(r,"id",_[0]),M&8&&u(r,"data-testid",_[3]),M&1&&u(r,"name",_[0]),M&16&&(r.checked=_[4]),M&128&&(r.disabled=_[7]),M&4&&n!==(n=`${_[2]}`)&&(r.value=n),y!==(y=b(_))&&(w&&w.d(1),w=y&&y(_),w&&(w.c(),w.m(t,null))),M&16&&B(t,"goa-checkbox--selected",_[4]),M&2&&q(c,_[1]),M&1&&u(e,"for",_[0]),M&128&&B(e,"goa-checkbox--disabled",_[7]),M&64&&B(e,"goa-checkbox--error",_[6])},i:p,o:p,d(_){_&&z(e),w&&w.d(),d=!1,f()}}}function ur(i,e,t){let r,n,o,a,{name:l}=e,{checked:s}=e,{text:c=""}=e,{value:d=""}=e,{disabled:f}=e,{error:b}=e,{testid:y=""}=e;function w(_){const M=!o,x=M?`${d||"checked"}`:"";_.target.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:l,checked:M,value:x}}))}return i.$$set=_=>{"name"in _&&t(0,l=_.name),"checked"in _&&t(9,s=_.checked),"text"in _&&t(1,c=_.text),"value"in _&&t(2,d=_.value),"disabled"in _&&t(10,f=_.disabled),"error"in _&&t(11,b=_.error),"testid"in _&&t(3,y=_.testid)},i.$$.update=()=>{i.$$.dirty&1024&&t(7,r=G(f)),i.$$.dirty&2048&&t(6,n=G(b)),i.$$.dirty&512&&t(4,o=G(s))},t(5,a=!1),[l,c,d,y,o,a,n,r,w,s,f,b]}class fr extends j{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family);display:block}.goa-checkbox{display:inline-flex;align-items:center;min-height:calc(3rem - 4px);cursor:pointer}.goa-checkbox input[type="checkbox"]{opacity:0;position:absolute;cursor:pointer}.goa-checkbox--disabled{opacity:40%}.goa-checkbox-container{box-sizing:border-box;border:1px solid var(--color-gray-600);border-radius:2px;background-color:var(--color-white);height:1.5rem;width:1.5rem;display:flex;justify-content:center;padding:3px;flex:0 0 auto}.goa-checkbox-container svg{fill:var(--color-white)}.goa-checkbox-container.goa-checkbox--selected{background-color:var(--goa-color-interactive)}.goa-checkbox-container.goa-checkbox--selected:hover{background-color:var(--goa-color-interactive--hover)}.goa-checkbox-container:hover{border:1px solid var(--goa-color-interactive--hover)}.goa-checkbox-container:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.goa-checkbox-text{padding-left:0.5rem;user-select:none;font-weight:var(--fw-regular)}.goa-checkbox--disabled .goa-checkbox-container,.goa-checkbox--disabled .goa-checkbox-container:hover{border:1px solid var(--color-gray-400)}.goa-checkbox--error .goa-checkbox-container,.goa-checkbox--error .goa-checkbox-container:hover{border:1px solid var(--goa-color-status-emergency);box-shadow:inset 0 0 0 1px var(--goa-color-status-emergency);background-color:var(--color-white)}.goa-checkbox--error .goa-checkbox-container svg{fill:var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ur,dr,N,{name:0,checked:9,text:1,value:2,disabled:10,error:11,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","checked","text","value","disabled","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get checked(){return this.$$.ctx[9]}set checked(e){this.$$set({checked:e}),h()}get text(){return this.$$.ctx[1]}set text(e){this.$$set({text:e}),h()}get value(){return this.$$.ctx[2]}set value(e){this.$$set({value:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[11]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-checkbox",fr);function gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","leading-icon"),C(e,"size","medium"),C(e,"type",i[0])},m(t,r){v(t,e,r)},p(t,r){r&1&&C(e,"type",t[0])},d(t){t&&z(e)}}}function mt(i){let e,t,r;return{c(){e=m("goa-icon"),C(e,"class","delete-icon"),C(e,"size","medium"),C(e,"theme","filled"),C(e,"type","close-circle"),C(e,"fillcolor",t=i[4]?"var(--goa-color-status-emergency)":i[3]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)"),C(e,"opacity",r=i[4]?i[3]?1:.5:1)},m(n,o){v(n,e,o)},p(n,o){o&24&&t!==(t=n[4]?"var(--goa-color-status-emergency)":n[3]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)")&&C(e,"fillcolor",t),o&24&&r!==(r=n[4]?n[3]?1:.5:1)&&C(e,"opacity",r)},d(n){n&&z(e)}}}function hr(i){let e,t,r,n,o,a,l,s=i[0]&&gt(i),c=i[5]&&mt(i);return{c(){e=m("div"),s&&s.c(),t=H(),r=m("div"),n=F(i[1]),o=H(),c&&c.c(),this.c=p,u(r,"class","text"),u(e,"data-testid","chip"),u(e,"class","chip"),u(e,"tabindex","0"),B(e,"deletable",i[5]),B(e,"error",i[4])},m(d,f){v(d,e,f),s&&s.m(e,null),g(e,t),g(e,r),g(r,n),g(e,o),c&&c.m(e,null),i[9](e),a||(l=[U(e,"click",i[10]),U(e,"mouseover",i[11]),U(e,"mouseout",i[12]),U(e,"focus",i[13]),U(e,"blur",i[14])],a=!0)},p(d,[f]){d[0]?s?s.p(d,f):(s=gt(d),s.c(),s.m(e,t)):s&&(s.d(1),s=null),f&2&&q(n,d[1]),d[5]?c?c.p(d,f):(c=mt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null),f&32&&B(e,"deletable",d[5]),f&16&&B(e,"error",d[4])},i:p,o:p,d(d){d&&z(e),s&&s.d(),c&&c.d(),i[9](null),a=!1,$(l)}}}function gr(i,e,t){let{leadingicon:r=null}=e,{error:n="false"}=e,{deletable:o="false"}=e,{content:a}=e,l,s=!1,c,d;function f(E){l.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),E.stopPropagation()}function b(E){ee[E?"unshift":"push"](()=>{l=E,t(2,l)})}const y=E=>d&&f(E),w=()=>t(3,s=!0),_=()=>t(3,s=!1),M=()=>t(3,s=!1),x=()=>t(3,s=!1);return i.$$set=E=>{"leadingicon"in E&&t(0,r=E.leadingicon),"error"in E&&t(7,n=E.error),"deletable"in E&&t(8,o=E.deletable),"content"in E&&t(1,a=E.content)},i.$$.update=()=>{i.$$.dirty&128&&t(4,c=G(n)),i.$$.dirty&256&&t(5,d=G(o))},[r,a,l,s,c,d,f,n,o,b,y,w,_,M,x]}class mr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.leading-icon{margin-left:-0.25rem}.chip{vertical-align:middle;align-items:center;background-color:var(--color-white);border-radius:99px;border:1px solid #949494;box-sizing:border-box;color:var(--goa-color-text);display:inline-flex;flex-direction:row;font-size:var(--chip-font-size);font-weight:var(--fw-regular);gap:0.25rem;height:2rem;justify-content:center;margin:0.25rem;padding:0 0.75rem;cursor:default}.text{padding-bottom:var(--font-valign-fix)}.chip:focus{outline:2px solid var(--goa-color-interactive--focus);background-color:var(--color-white)}.chip:hover{background-color:var(--color-gray-200)}.deletable{cursor:pointer}.delete-icon{margin-right:-0.25rem}.error,.error:hover{background-color:var(--goa-color-status-emergency-light)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},gr,hr,N,{leadingicon:0,error:7,deletable:8,content:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["leadingicon","error","deletable","content"]}get leadingicon(){return this.$$.ctx[0]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get error(){return this.$$.ctx[7]}set error(e){this.$$set({error:e}),h()}get deletable(){return this.$$.ctx[8]}set deletable(e){this.$$set({deletable:e}),h()}get content(){return this.$$.ctx[1]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-chip",mr);function br(i){const e=i-1;return e*e*e+1}function vr(i){return Math.pow(i-1,3)*(1-i)+1}function pe(i,{delay:e=0,duration:t=400,easing:r=ke}={}){const n=+getComputedStyle(i).opacity;return{delay:e,duration:t,easing:r,css:o=>`opacity: ${o*n}`}}function bt(i,{delay:e=0,duration:t=400,easing:r=br,x:n=0,y:o=0,opacity:a=0}={}){const l=getComputedStyle(i),s=+l.opacity,c=l.transform==="none"?"":l.transform,d=s*(1-a);return{delay:e,duration:t,easing:r,css:(f,b)=>`
4
+ }`,f=`__svelte_${_i(d)}_${l}`,b=it(i),{stylesheet:y,rules:p}=He.get(b)||ki(b,i);p[f]||(p[f]=!0,y.insertRule(`@keyframes ${f} ${d}`,y.cssRules.length));const _=i.style.animation||"";return i.style.animation=`${_?`${_}, `:""}${f} ${r}ms linear ${n}ms 1 both`,Ie+=1,f}function De(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?o=>o.indexOf(e)<0:o=>o.indexOf("__svelte")===-1),n=t.length-r.length;n&&(i.style.animation=r.join(", "),Ie-=n,Ie||xi())}function xi(){We(()=>{Ie||(He.forEach(i=>{const{stylesheet:e}=i;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.rules={}}),He.clear())})}let xe;function Ee(i){xe=i}function rt(){if(!xe)throw new Error("Function called outside component initialization");return xe}function Y(i){rt().$$.on_mount.push(i)}function nt(i){rt().$$.on_destroy.push(i)}const ze=[],ee=[],Be=[],ot=[],at=Promise.resolve();let Ue=!1;function lt(){Ue||(Ue=!0,at.then(h))}function Ne(){return lt(),at}function re(i){Be.push(i)}const Ze=new Set;let je=0;function h(){const i=xe;do{for(;je<ze.length;){const e=ze[je];je++,Ee(e),Ei(e.$$)}for(Ee(null),ze.length=0,je=0;ee.length;)ee.pop()();for(let e=0;e<Be.length;e+=1){const t=Be[e];Ze.has(t)||(Ze.add(t),t())}Be.length=0}while(ze.length);for(;ot.length;)ot.pop()();Ue=!1,Ze.clear(),Ee(i)}function Ei(i){if(i.fragment!==null){i.update(),$(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(re)}}let Ce;function Ke(){return Ce||(Ce=Promise.resolve(),Ce.then(()=>{Ce=null})),Ce}function he(i,e,t){i.dispatchEvent(yi(`${e?"intro":"outro"}${t}`))}const Oe=new Set;let ne;function ve(){ne={r:0,c:[],p:ne}}function pe(){ne.r||$(ne.c),ne=ne.p}function W(i,e){i&&i.i&&(Oe.delete(i),i.i(e))}function Z(i,e,t,r){if(i&&i.o){if(Oe.has(i))return;Oe.add(i),ne.c.push(()=>{Oe.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}else r&&r()}const Xe={duration:0};function st(i,e,t){let r=e(i,t),n=!1,o,a,l=0;function s(){o&&De(i,o)}function c(){const{delay:f=0,duration:b=300,easing:y=ke,tick:p=w,css:_}=r||Xe;_&&(o=Se(i,0,1,b,f,y,_,l++)),p(0,1);const M=Te()+f,x=M+b;a&&a.abort(),n=!0,re(()=>he(i,!0,"start")),a=Re(E=>{if(n){if(E>=x)return p(1,0),he(i,!0,"end"),s(),n=!1;if(E>=M){const T=y((E-M)/b);p(T,1-T)}}return n})}let d=!1;return{start(){d||(d=!0,De(i),ue(r)?(r=r(),Ke().then(c)):c())},invalidate(){d=!1},end(){n&&(s(),n=!1)}}}function ct(i,e,t){let r=e(i,t),n=!0,o;const a=ne;a.r+=1;function l(){const{delay:s=0,duration:c=300,easing:d=ke,tick:f=w,css:b}=r||Xe;b&&(o=Se(i,1,0,c,s,d,b));const y=Te()+s,p=y+c;re(()=>he(i,!1,"start")),Re(_=>{if(n){if(_>=p)return f(0,1),he(i,!1,"end"),--a.r||$(a.c),!1;if(_>=y){const M=d((_-y)/c);f(1-M,M)}}return n})}return ue(r)?Ke().then(()=>{r=r(),l()}):l(),{end(s){s&&r.tick&&r.tick(1,0),n&&(o&&De(i,o),n=!1)}}}function Pe(i,e,t,r){let n=e(i,t),o=r?0:1,a=null,l=null,s=null;function c(){s&&De(i,s)}function d(b,y){const p=b.b-o;return y*=Math.abs(p),{a:o,b:b.b,d:p,duration:y,start:b.start,end:b.start+y,group:b.group}}function f(b){const{delay:y=0,duration:p=300,easing:_=ke,tick:M=w,css:x}=n||Xe,E={start:Te()+y,b};b||(E.group=ne,ne.r+=1),a||l?l=E:(x&&(c(),s=Se(i,o,b,p,y,_,x)),b&&M(0,1),a=d(E,p),re(()=>he(i,b,"start")),Re(T=>{if(l&&T>l.start&&(a=d(l,p),l=null,he(i,a.b,"start"),x&&(c(),s=Se(i,o,a.b,a.duration,0,_,n.css))),a){if(T>=a.end)M(o=a.b,1-o),he(i,a.b,"end"),l||(a.b?c():--a.group.r||$(a.group.c)),a=null;else if(T>=a.start){const k=T-a.start;o=a.a+a.d*_(k/a.duration),M(o,1-o)}}return!!(a||l)}))}return{run(b){ue(n)?Ke().then(()=>{n=n(),f(b)}):f(b)},end(){c(),a=l=null}}}function zi(i,e){i.d(1),e.delete(i.key)}function Ci(i,e,t,r,n,o,a,l,s,c,d,f){let b=i.length,y=o.length,p=b;const _={};for(;p--;)_[i[p].key]=p;const M=[],x=new Map,E=new Map;for(p=y;p--;){const R=f(n,o,p),L=t(R);let D=a.get(L);D?r&&D.p(R,e):(D=c(L,R),D.c()),x.set(L,M[p]=D),L in _&&E.set(L,Math.abs(p-_[L]))}const T=new Set,k=new Set;function A(R){W(R,1),R.m(l,d),a.set(R.key,R),d=R.first,y--}for(;b&&y;){const R=M[y-1],L=i[b-1],D=R.key,X=L.key;R===L?(d=R.first,b--,y--):x.has(X)?!a.has(D)||T.has(D)?A(R):k.has(X)?b--:E.get(D)>E.get(X)?(k.add(D),A(R)):(T.add(X),b--):(s(L,a),b--)}for(;b--;){const R=i[b];x.has(R.key)||s(R,a)}for(;y;)A(M[y-1]);return M}function ge(i){i&&i.c()}function se(i,e,t,r){const{fragment:n,on_mount:o,on_destroy:a,after_update:l}=i.$$;n&&n.m(e,t),r||re(()=>{const s=o.map(Ve).filter(ue);a?a.push(...s):$(s),i.$$.on_mount=[]}),l.forEach(re)}function ce(i,e){const t=i.$$;t.fragment!==null&&($(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Mi(i,e){i.$$.dirty[0]===-1&&(ze.push(i),lt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function P(i,e,t,r,n,o,a,l=[-1]){const s=xe;Ee(i);const c=i.$$={fragment:null,ctx:null,props:o,update:w,not_equal:n,bound:Qe(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(s?s.$$.context:[])),callbacks:Qe(),dirty:l,skip_bound:!1,root:e.target||s.$$.root};a&&a(c.root);let d=!1;if(c.ctx=t?t(i,e.props||{},(f,b,...y)=>{const p=y.length?y[0]:b;return c.ctx&&n(c.ctx[f],c.ctx[f]=p)&&(!c.skip_bound&&c.bound[f]&&c.bound[f](p),d&&Mi(i,f)),b}):[],c.update(),d=!0,$(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const f=wi(e.target);c.fragment&&c.fragment.l(f),f.forEach(z)}else c.fragment&&c.fragment.c();e.intro&&W(i.$$.fragment),se(i,e.target,e.anchor,e.customElement),h()}Ee(s)}let j;typeof HTMLElement=="function"&&(j=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(Ve).filter(ue);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){$(this.$$.on_disconnect)}$destroy(){ce(this,1),this.$destroy=w}$on(i,e){const t=this.$$.callbacks[i]||(this.$$.callbacks[i]=[]);return t.push(e),()=>{const r=t.indexOf(e);r!==-1&&t.splice(r,1)}}$set(i){this.$$set&&!gi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0])},d(d){d&&z(e)}}}function Ti(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("a"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"href",i[1]),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0]),f&2&&u(e,"href",d[1])},d(d){d&&z(e)}}}function Ri(i){let e,t,r,n,o;function a(c,d){return c[1]?Ti:Li}let l=a(i),s=l(i);return{c(){e=m("div"),t=m("div"),s.c(),r=H(),n=m("div"),n.innerHTML="<slot></slot>",this.c=w,u(t,"class","content"),u(e,"class","app-header"),u(e,"data-testid",i[2]),u(e,"style",o=`--max-content-width: ${i[3]||"var(--layout-max-content-width)"}`)},m(c,d){v(c,e,d),g(e,t),s.m(t,null),g(t,r),g(t,n)},p(c,[d]){l===(l=a(c))&&s?s.p(c,d):(s.d(1),s=l(c),s&&(s.c(),s.m(t,r))),d&4&&u(e,"data-testid",c[2]),d&8&&o!==(o=`--max-content-width: ${c[3]||"var(--layout-max-content-width)"}`)&&u(e,"style",o)},i:w,o:w,d(c){c&&z(e),s.d()}}}function Ai(i,e,t){let{heading:r=""}=e,{url:n=""}=e,{testid:o=""}=e,{maxcontentwidth:a=""}=e;return i.$$set=l=>{"heading"in l&&t(0,r=l.heading),"url"in l&&t(1,n=l.url),"testid"in l&&t(2,o=l.testid),"maxcontentwidth"in l&&t(3,a=l.maxcontentwidth)},[r,n,o,a]}class Hi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ai,Ri,N,{heading:0,url:1,testid:2,maxcontentwidth:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","url","testid","maxcontentwidth"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get url(){return this.$$.ctx[1]}set url(e){this.$$set({url:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}get maxcontentwidth(){return this.$$.ctx[3]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-header",Hi);function G(i){return i==="false"?!1:i===""?!0:!!i}function Ii(i){let e;return{c(){e=m("div"),V(e,"height","1.2rem"),V(e,"margin-left","-0.25rem")},m(t,r){v(t,e,r)},p:w,d(t){t&&z(e)}}}function Si(i){let e;return{c(){e=m("goa-icon"),C(e,"type",i[4]),C(e,"size","small")},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4])},d(t){t&&z(e)}}}function dt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","goa-badge-content")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&z(e)}}}function Di(i){let e,t,r;function n(s,c){return s[3]?Si:Ii}let o=n(i),a=o(i),l=i[2]&&dt(i);return{c(){e=m("div"),a.c(),t=H(),l&&l.c(),this.c=w,u(e,"data-testid",i[1]),u(e,"data-type","goa-badge"),u(e,"class",r="goa-badge badge-"+i[0]),B(e,"icon-only",i[3]&&!i[2])},m(s,c){v(s,e,c),a.m(e,null),g(e,t),l&&l.m(e,null)},p(s,[c]){o===(o=n(s))&&a?a.p(s,c):(a.d(1),a=o(s),a&&(a.c(),a.m(e,t))),s[2]?l?l.p(s,c):(l=dt(s),l.c(),l.m(e,null)):l&&(l.d(1),l=null),c&2&&u(e,"data-testid",s[1]),c&1&&r!==(r="goa-badge badge-"+s[0])&&u(e,"class",r),c&13&&B(e,"icon-only",s[3]&&!s[2])},i:w,o:w,d(s){s&&z(e),a.d(),l&&l.d()}}}function Bi(i,e,t){let r,n,{type:o}=e,{testid:a=""}=e,{icon:l="false"}=e,{content:s=""}=e;return Y(()=>{!r&&!s&&console.warn("GoABadge must have either then content or icon property set")}),i.$$set=c=>{"type"in c&&t(0,o=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,l=c.icon),"content"in c&&t(2,s=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(3,r=G(l)),i.$$.dirty&1&&t(4,n={success:"checkmark-circle",important:"alert-circle",information:"information-circle",emergency:"warning",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[o])},[o,a,s,r,n,l]}class Ni extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;align-items:center;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular);margin:0.25rem}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm);padding-bottom:var(--font-valign-fix)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--goa-color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-important{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.goa-badge.badge-emergency{background-color:var(--goa-color-status-emergency);color:var(--goa-color-text-light)}.goa-badge.badge-dark{background-color:var(--color-black);color:var(--goa-color-text-light)}.goa-badge.badge-midtone{background-color:var(--color-gray-600);color:var(--goa-color-text-light)}.goa-badge.badge-light{background-color:var(--color-white);color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Bi,Di,N,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","testid","icon","content"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}get icon(){return this.$$.ctx[5]}set icon(e){this.$$set({icon:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-badge",Ni);function ji(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,V(e,"--alignment","flex-"+i[1]),V(e,"--gap-size",i[0]==="small"?"0.5rem":"1.25rem")},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&2&&V(e,"--alignment","flex-"+r[1]),n&1&&V(e,"--gap-size",r[0]==="small"?"0.5rem":"1.25rem")},i:w,o:w,d(r){r&&z(e)}}}function Oi(i,e,t){let{gap:r="medium"}=e,{alignment:n}=e;return i.$$set=o=>{"gap"in o&&t(0,r=o.gap),"alignment"in o&&t(1,n=o.alignment)},[r,n]}class Pi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Oi,ji,N,{gap:0,alignment:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap","alignment"]}get gap(){return this.$$.ctx[0]}set gap(e){this.$$set({gap:e}),h()}get alignment(){return this.$$.ctx[1]}set alignment(e){this.$$set({alignment:e}),h()}}customElements.define("goa-button-group",Pi);function Fi(i){let e,t,r,n,o=i[3]&&ut(i),a=i[4]&&ft(i);return{c(){o&&o.c(),e=H(),t=m("slot"),r=H(),a&&a.c(),n=ie(),u(t,"class","text")},m(l,s){o&&o.m(l,s),v(l,e,s),v(l,t,s),v(l,r,s),a&&a.m(l,s),v(l,n,s)},p(l,s){l[3]?o?o.p(l,s):(o=ut(l),o.c(),o.m(e.parentNode,e)):o&&(o.d(1),o=null),l[4]?a?a.p(l,s):(a=ft(l),a.c(),a.m(n.parentNode,n)):a&&(a.d(1),a=null)},d(l){o&&o.d(l),l&&z(e),l&&z(t),l&&z(r),a&&a.d(l),l&&z(n)}}}function Gi(i){let e,t,r;return{c(){e=m("slot"),t=H(),r=m("goa-icon"),u(e,"class","text"),C(r,"id","trailing-icon"),C(r,"type","arrow-forward"),C(r,"inverted","true")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},p:w,d(n){n&&z(e),n&&z(t),n&&z(r)}}}function ut(i){let e;return{c(){e=m("goa-icon"),C(e,"id","leading-icon"),C(e,"type",i[3]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&8&&C(e,"type",t[3]),r&64&&C(e,"inverted",t[6])},d(t){t&&z(e)}}}function ft(i){let e;return{c(){e=m("goa-icon"),C(e,"id","trailing-icon"),C(e,"type",i[4]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4]),r&64&&C(e,"inverted",t[6])},d(t){t&&z(e)}}}function qi(i){let e,t,r,n;function o(s,c){return s[0]==="start"?Gi:Fi}let a=o(i),l=a(i);return{c(){e=m("button"),l.c(),this.c=w,u(e,"class",t=""+(i[0]+" "+i[1]+" "+i[2])),e.disabled=i[7],u(e,"data-testid",i[5]),B(e,"leading",i[3]),B(e,"trailing",i[4]||i[0]==="start")},m(s,c){v(s,e,c),l.m(e,null),r||(n=U(e,"click",Vi),r=!0)},p(s,[c]){a===(a=o(s))&&l?l.p(s,c):(l.d(1),l=a(s),l&&(l.c(),l.m(e,null))),c&7&&t!==(t=""+(s[0]+" "+s[1]+" "+s[2]))&&u(e,"class",t),c&128&&(e.disabled=s[7]),c&32&&u(e,"data-testid",s[5]),c&15&&B(e,"leading",s[3]),c&23&&B(e,"trailing",s[4]||s[0]==="start")},i:w,o:w,d(s){s&&z(e),l.d(),r=!1,n()}}}function Vi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Wi(i,e,t){let r,n;const o=["primary","submit","secondary","tertiary","start"],a=["normal","compact"],l=["normal","destructive"];function s(E){return o.includes(E)}function c(E){return a.includes(E)}function d(E){return l.includes(E)}let{type:f="primary"}=e,{size:b="normal"}=e,{variant:y="normal"}=e,{disabled:p="false"}=e,{leadingicon:_=null}=e,{trailingicon:M=null}=e,{testid:x=""}=e;return Y(()=>{if(!s(f))throw"Invalid button type";if(!c(b))throw"Invalid button size";if(!d(y))throw"Invalid button variant"}),i.$$set=E=>{"type"in E&&t(0,f=E.type),"size"in E&&t(1,b=E.size),"variant"in E&&t(2,y=E.variant),"disabled"in E&&t(8,p=E.disabled),"leadingicon"in E&&t(3,_=E.leadingicon),"trailingicon"in E&&t(4,M=E.trailingicon),"testid"in E&&t(5,x=E.testid)},i.$$.update=()=>{i.$$.dirty&256&&t(7,r=G(p)),i.$$.dirty&1&&t(6,n=f==="primary"||f==="start")},[f,b,y,_,M,x,n,r,p]}class Ui extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-family:var(--font-family);font-size:var(--fs-lg);font-weight:400;height:var(--button-height);letter-spacing:0.5px;line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
5
+ border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--fs-base)}button.start{height:var(--button-height-tall);font-weight:var(--fw-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive);background-color:var(--goa-color-interactive);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive--hover);background-color:var(--goa-color-interactive--hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);border-color:var(--goa-color-interactive--active);background-color:var(--goa-color-interactive--active);outline:none}button.secondary{border:2px solid var(--goa-color-interactive);background-color:var(--color-white);color:var(--goa-color-interactive)}button.secondary:hover{border-color:var(--goa-color-interactive--hover);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);background-color:var(--color-gray-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive);text-decoration:underline}button.tertiary:hover{border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--color-gray-100);background-color:var(--color-gray-100);color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.submit.destructive,.primary.destructive{color:var(--color-white);background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.secondary.destructive{color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);background-color:var(--color-white)}.secondary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive{color:var(--goa-color-status-emergency);border-color:var(--color-gray-200);background-color:var(--color-white)}.tertiary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Wi,qi,N,{type:0,size:1,variant:2,disabled:8,leadingicon:3,trailingicon:4,testid:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","variant","disabled","leadingicon","trailingicon","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get variant(){return this.$$.ctx[2]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[8]}set disabled(e){this.$$set({disabled:e}),h()}get leadingicon(){return this.$$.ctx[3]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[4]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-button",Ui);function ht(i){let e,t;return{c(){e=m("h3"),t=F(i[1])},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function Zi(i){let e,t,r,n,o,a,l,s,c,d=i[1]&&ht(i);return{c(){e=m("div"),t=m("span"),r=m("goa-icon"),a=H(),l=m("span"),d&&d.c(),s=H(),c=m("slot"),this.c=w,C(r,"type",i[3]),C(r,"inverted",n=i[0]==="important"?"false":"true"),u(t,"class",o="icon "+i[0]),u(l,"class","content"),u(e,"class","notification"),u(e,"data-testid",i[2])},m(f,b){v(f,e,b),g(e,t),g(t,r),g(e,a),g(e,l),d&&d.m(l,null),g(l,s),g(l,c)},p(f,[b]){b&8&&C(r,"type",f[3]),b&1&&n!==(n=f[0]==="important"?"false":"true")&&C(r,"inverted",n),b&1&&o!==(o="icon "+f[0])&&u(t,"class",o),f[1]?d?d.p(f,b):(d=ht(f),d.c(),d.m(l,s)):d&&(d.d(1),d=null),b&4&&u(e,"data-testid",f[2])},i:w,o:w,d(f){f&&z(e),d&&d.d()}}}function Ki(i,e,t){let r,{type:n}=e,{heading:o=""}=e,{testid:a=""}=e;return i.$$set=l=>{"type"in l&&t(0,n=l.type),"heading"in l&&t(1,o=l.heading),"testid"in l&&t(2,a=l.testid)},i.$$.update=()=>{i.$$.dirty&1&&t(3,r=n==="emergency"?"warning":n==="important"?"alert-circle":n==="information"?"information-circle":n==="success"?"checkmark-circle":n==="event"?"calendar":"")},[n,o,a,r]}class Xi extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{display:flex;align-items:stretch;border-radius:3px;overflow:hidden;margin-bottom:1.75rem}h3{font-size:var(--fs-xl);line-height:var(--lh-base);font-weight:var(--fw-regular);margin-top:0}.emergency{background-color:var(--goa-color-status-emergency)}.important{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info)}.event{background-color:var(--goa-color-status-info)}.success{background-color:var(--goa-color-status-success)}.icon{flex:0 0 3rem;text-align:center;padding-top:1.75rem}.content{flex:1 1 auto;background-color:var(--color-gray-100);padding:1.75rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ki,Zi,N,{type:0,heading:1,testid:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","heading","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get heading(){return this.$$.ctx[1]}set heading(e){this.$$set({heading:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-callout",Xi);function Yi(i){let e;return{c(){e=m("goa-card-content"),e.innerHTML='<goa-button-group alignment="end"><slot></slot></goa-button-group>',this.c=w},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&z(e)}}}class Ji extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,Yi,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-actions",Ji);function Qi(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=w,u(e,"class","card-content")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&z(e)}}}class $i extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-content{padding:1rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,Qi,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-content",$i);function er(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=w,u(e,"class","card-group")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&z(e)}}}class tr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-group{display:flex;flex-wrap:wrap;justify-content:space-around;gap:1rem;width:100%}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,er,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-group",tr);function ir(i){let e;return{c(){e=m("div"),this.c=w,u(e,"class","card-image"),V(e,"background-image","url("+i[0]+")"),V(e,"height",i[1]),V(e,"background-size","cover"),V(e,"background-position","center")},m(t,r){v(t,e,r)},p(t,[r]){r&1&&V(e,"background-image","url("+t[0]+")"),r&2&&V(e,"height",t[1])},i:w,o:w,d(t){t&&z(e)}}}function rr(i,e,t){let{src:r}=e,{height:n="100%"}=e;return i.$$set=o=>{"src"in o&&t(0,r=o.src),"height"in o&&t(1,n=o.height)},[r,n]}class nr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},rr,ir,N,{src:0,height:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["src","height"]}get src(){return this.$$.ctx[0]}set src(e){this.$$set({src:e}),h()}get height(){return this.$$.ctx[1]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-card-image",nr);function or(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"data-testid",i[2]),u(e,"class","card"),u(e,"style",r="--width: "+i[1]+"px; "+(i[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${i[0]});`)+"")},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&4&&u(e,"data-testid",n[2]),o&3&&r!==(r="--width: "+n[1]+"px; "+(n[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${n[0]});`)+"")&&u(e,"style",r)},i:w,o:w,d(n){n&&z(e)}}}function ar(i,e,t){let{elevation:r=0}=e,{width:n=320}=e,{testId:o=""}=e;return i.$$set=a=>{"elevation"in a&&t(0,r=a.elevation),"width"in a&&t(1,n=a.width),"testId"in a&&t(2,o=a.testId)},[r,n,o]}class lr extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card{display:flex;flex-direction:column;background-color:var(--color-white);border-radius:4px;overflow:hidden;width:100%}@media(min-width: 320px){.card{width:var(--width);margin:0 auto
6
+ }}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ar,or,N,{elevation:0,width:1,testId:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["elevation","width","testId"]}get elevation(){return this.$$.ctx[0]}set elevation(e){this.$$set({elevation:e}),h()}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get testId(){return this.$$.ctx[2]}set testId(e){this.$$set({testId:e}),h()}}customElements.define("goa-card",lr);function sr(i){let e,t;return{c(){e=fe("svg"),t=fe("path"),u(t,"d","M5.09,9.64,1.27,5.82,0,7.09l5.09,5.09L16,1.27,14.73,0Z"),u(e,"id","checkmark"),u(e,"data-testid","checkmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 16 12.18")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&z(e)}}}function cr(i){let e,t;return{c(){e=fe("svg"),t=fe("rect"),u(t,"width","15"),u(t,"height","2"),u(e,"id","dashmark"),u(e,"data-testid","dashmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 15 2")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&z(e)}}}function dr(i){let e,t,r,n,o,a,l,s,c,d,f;function b(_,M){if(_[5])return cr;if(_[4])return sr}let y=b(i),p=y&&y(i);return{c(){e=m("label"),t=m("div"),r=m("input"),o=H(),p&&p.c(),a=H(),l=m("div"),s=m("slot"),c=F(i[1]),this.c=w,u(r,"id",i[0]),u(r,"data-testid",i[3]),u(r,"name",i[0]),r.checked=i[4],r.disabled=i[7],u(r,"type","checkbox"),r.value=n=`${i[2]}`,u(t,"class","goa-checkbox-container"),B(t,"goa-checkbox--selected",i[4]),u(l,"class","goa-checkbox-text"),u(l,"data-testid","text"),u(e,"for",i[0]),u(e,"class","goa-checkbox"),B(e,"goa-checkbox--disabled",i[7]),B(e,"goa-checkbox--error",i[6])},m(_,M){v(_,e,M),g(e,t),g(t,r),g(t,o),p&&p.m(t,null),g(e,a),g(e,l),g(l,s),g(s,c),d||(f=U(r,"change",i[8]),d=!0)},p(_,[M]){M&1&&u(r,"id",_[0]),M&8&&u(r,"data-testid",_[3]),M&1&&u(r,"name",_[0]),M&16&&(r.checked=_[4]),M&128&&(r.disabled=_[7]),M&4&&n!==(n=`${_[2]}`)&&(r.value=n),y!==(y=b(_))&&(p&&p.d(1),p=y&&y(_),p&&(p.c(),p.m(t,null))),M&16&&B(t,"goa-checkbox--selected",_[4]),M&2&&q(c,_[1]),M&1&&u(e,"for",_[0]),M&128&&B(e,"goa-checkbox--disabled",_[7]),M&64&&B(e,"goa-checkbox--error",_[6])},i:w,o:w,d(_){_&&z(e),p&&p.d(),d=!1,f()}}}function ur(i,e,t){let r,n,o,a,{name:l}=e,{checked:s}=e,{text:c=""}=e,{value:d=""}=e,{disabled:f}=e,{error:b}=e,{testid:y=""}=e;function p(_){const M=!o,x=M?`${d||"checked"}`:"";_.target.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:l,checked:M,value:x}}))}return i.$$set=_=>{"name"in _&&t(0,l=_.name),"checked"in _&&t(9,s=_.checked),"text"in _&&t(1,c=_.text),"value"in _&&t(2,d=_.value),"disabled"in _&&t(10,f=_.disabled),"error"in _&&t(11,b=_.error),"testid"in _&&t(3,y=_.testid)},i.$$.update=()=>{i.$$.dirty&1024&&t(7,r=G(f)),i.$$.dirty&2048&&t(6,n=G(b)),i.$$.dirty&512&&t(4,o=G(s))},t(5,a=!1),[l,c,d,y,o,a,n,r,p,s,f,b]}class fr extends j{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family);display:block}.goa-checkbox{display:inline-flex;align-items:center;min-height:calc(3rem - 4px);cursor:pointer}.goa-checkbox input[type="checkbox"]{opacity:0;position:absolute;cursor:pointer}.goa-checkbox--disabled{opacity:40%}.goa-checkbox-container{box-sizing:border-box;border:1px solid var(--color-gray-600);border-radius:2px;background-color:var(--color-white);height:1.5rem;width:1.5rem;display:flex;justify-content:center;padding:3px;flex:0 0 auto}.goa-checkbox-container svg{fill:var(--color-white)}.goa-checkbox-container.goa-checkbox--selected{background-color:var(--goa-color-interactive)}.goa-checkbox-container.goa-checkbox--selected:hover{background-color:var(--goa-color-interactive--hover)}.goa-checkbox-container:hover{border:1px solid var(--goa-color-interactive--hover)}.goa-checkbox-container:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.goa-checkbox-text{padding-left:0.5rem;user-select:none;font-weight:var(--fw-regular)}.goa-checkbox--disabled .goa-checkbox-container,.goa-checkbox--disabled .goa-checkbox-container:hover{border:1px solid var(--color-gray-400)}.goa-checkbox--error .goa-checkbox-container,.goa-checkbox--error .goa-checkbox-container:hover{border:1px solid var(--goa-color-status-emergency);box-shadow:inset 0 0 0 1px var(--goa-color-status-emergency);background-color:var(--color-white)}.goa-checkbox--error .goa-checkbox-container svg{fill:var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ur,dr,N,{name:0,checked:9,text:1,value:2,disabled:10,error:11,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","checked","text","value","disabled","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get checked(){return this.$$.ctx[9]}set checked(e){this.$$set({checked:e}),h()}get text(){return this.$$.ctx[1]}set text(e){this.$$set({text:e}),h()}get value(){return this.$$.ctx[2]}set value(e){this.$$set({value:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[11]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-checkbox",fr);function gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","leading-icon"),C(e,"size","medium"),C(e,"type",i[0])},m(t,r){v(t,e,r)},p(t,r){r&1&&C(e,"type",t[0])},d(t){t&&z(e)}}}function mt(i){let e,t,r;return{c(){e=m("goa-icon"),C(e,"class","delete-icon"),C(e,"size","medium"),C(e,"theme","filled"),C(e,"type","close-circle"),C(e,"fillcolor",t=i[4]?"var(--goa-color-status-emergency)":i[3]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)"),C(e,"opacity",r=i[4]?i[3]?1:.5:1)},m(n,o){v(n,e,o)},p(n,o){o&24&&t!==(t=n[4]?"var(--goa-color-status-emergency)":n[3]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)")&&C(e,"fillcolor",t),o&24&&r!==(r=n[4]?n[3]?1:.5:1)&&C(e,"opacity",r)},d(n){n&&z(e)}}}function hr(i){let e,t,r,n,o,a,l,s=i[0]&&gt(i),c=i[5]&&mt(i);return{c(){e=m("div"),s&&s.c(),t=H(),r=m("div"),n=F(i[1]),o=H(),c&&c.c(),this.c=w,u(r,"class","text"),u(e,"data-testid","chip"),u(e,"class","chip"),u(e,"tabindex","0"),B(e,"deletable",i[5]),B(e,"error",i[4])},m(d,f){v(d,e,f),s&&s.m(e,null),g(e,t),g(e,r),g(r,n),g(e,o),c&&c.m(e,null),i[9](e),a||(l=[U(e,"click",i[10]),U(e,"mouseover",i[11]),U(e,"mouseout",i[12]),U(e,"focus",i[13]),U(e,"blur",i[14])],a=!0)},p(d,[f]){d[0]?s?s.p(d,f):(s=gt(d),s.c(),s.m(e,t)):s&&(s.d(1),s=null),f&2&&q(n,d[1]),d[5]?c?c.p(d,f):(c=mt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null),f&32&&B(e,"deletable",d[5]),f&16&&B(e,"error",d[4])},i:w,o:w,d(d){d&&z(e),s&&s.d(),c&&c.d(),i[9](null),a=!1,$(l)}}}function gr(i,e,t){let{leadingicon:r=null}=e,{error:n="false"}=e,{deletable:o="false"}=e,{content:a}=e,l,s=!1,c,d;function f(E){l.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),E.stopPropagation()}function b(E){ee[E?"unshift":"push"](()=>{l=E,t(2,l)})}const y=E=>d&&f(E),p=()=>t(3,s=!0),_=()=>t(3,s=!1),M=()=>t(3,s=!1),x=()=>t(3,s=!1);return i.$$set=E=>{"leadingicon"in E&&t(0,r=E.leadingicon),"error"in E&&t(7,n=E.error),"deletable"in E&&t(8,o=E.deletable),"content"in E&&t(1,a=E.content)},i.$$.update=()=>{i.$$.dirty&128&&t(4,c=G(n)),i.$$.dirty&256&&t(5,d=G(o))},[r,a,l,s,c,d,f,n,o,b,y,p,_,M,x]}class mr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.leading-icon{margin-left:-0.25rem}.chip{vertical-align:middle;align-items:center;background-color:var(--color-white);border-radius:99px;border:1px solid #949494;box-sizing:border-box;color:var(--goa-color-text);display:inline-flex;flex-direction:row;font-size:var(--chip-font-size);font-weight:var(--fw-regular);gap:0.25rem;height:2rem;justify-content:center;margin:0.25rem;padding:0 0.75rem;cursor:default}.text{padding-bottom:var(--font-valign-fix)}.chip:focus{outline:2px solid var(--goa-color-interactive--focus);background-color:var(--color-white)}.chip:hover{background-color:var(--color-gray-200)}.deletable{cursor:pointer}.delete-icon{margin-right:-0.25rem}.error,.error:hover{background-color:var(--goa-color-status-emergency-light)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},gr,hr,N,{leadingicon:0,error:7,deletable:8,content:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["leadingicon","error","deletable","content"]}get leadingicon(){return this.$$.ctx[0]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get error(){return this.$$.ctx[7]}set error(e){this.$$set({error:e}),h()}get deletable(){return this.$$.ctx[8]}set deletable(e){this.$$set({deletable:e}),h()}get content(){return this.$$.ctx[1]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-chip",mr);function br(i){const e=i-1;return e*e*e+1}function vr(i){return Math.pow(i-1,3)*(1-i)+1}function we(i,{delay:e=0,duration:t=400,easing:r=ke}={}){const n=+getComputedStyle(i).opacity;return{delay:e,duration:t,easing:r,css:o=>`opacity: ${o*n}`}}function bt(i,{delay:e=0,duration:t=400,easing:r=br,x:n=0,y:o=0,opacity:a=0}={}){const l=getComputedStyle(i),s=+l.opacity,c=l.transform==="none"?"":l.transform,d=s*(1-a);return{delay:e,duration:t,easing:r,css:(f,b)=>`
7
7
  transform: ${c} translate(${(1-f)*n}px, ${(1-f)*o}px);
8
- opacity: ${s-d*b}`}}function vt(i,e){let t=!1;function r(){if(!n())return;const l=a();l>0&&(t=!0,document.body.style.overflow="hidden",document.body.style.paddingRight=l+"px")}function n(){return document.body.style.overflow!=="hidden"}function o(){!t||(t=!1,setTimeout(()=>{document.body.style.overflow="",document.body.style.paddingRight="0"},200))}function a(){if(document.body.clientHeight<=document.documentElement.clientHeight)return 0;const l=document.createElement("div");l.style.visibility="hidden",l.style.overflow="scroll",document.body.appendChild(l);const s=document.createElement("div");l.appendChild(s);const c=l.offsetWidth-s.offsetWidth;return l.parentNode.removeChild(l),c}return e.enable&&r(),{update(){e.enable||o()},destroy(){o()}}}function pt(i){let e,t,r,n;const o=[wr,pr],a=[];function l(s,c){return s[3]?0:s[4]?1:-1}return~(e=l(i))&&(t=a[e]=o[e](i)),{c(){t&&t.c(),r=ie()},m(s,c){~e&&a[e].m(s,c),v(s,r,c),n=!0},p(s,c){let d=e;e=l(s),e===d?~e&&a[e].p(s,c):(t&&(be(),Z(a[d],1,1,()=>{a[d]=null}),ve()),~e?(t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r)):t=null)},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){~e&&a[e].d(s),s&&z(r)}}}function pr(i){let e,t,r,n,o=i[0]&&wt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),o&&o.c(),C(t,"size",i[2]),C(t,"progress",i[1]),u(e,"class",n="spinner-"+i[2]),B(e,"inline",i[4])},m(a,l){v(a,e,l),g(e,t),g(e,r),o&&o.m(e,null)},p(a,l){l&4&&C(t,"size",a[2]),l&2&&C(t,"progress",a[1]),a[0]?o?o.p(a,l):(o=wt(a),o.c(),o.m(e,null)):o&&(o.d(1),o=null),l&4&&n!==(n="spinner-"+a[2])&&u(e,"class",n),l&20&&B(e,"inline",a[4])},i:p,o:p,d(a){a&&z(e),o&&o.d()}}}function wr(i){let e,t,r,n,o,a,l,s=i[0]&&yt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),s&&s.c(),C(t,"size",i[2]),C(t,"progress",i[1]),B(e,"fullscreen",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r),s&&s.m(e,null),o=!0,a||(l=$e(vt.call(null,e,{enable:!0})),a=!0)},p(c,d){(!o||d&4)&&C(t,"size",c[2]),(!o||d&2)&&C(t,"progress",c[1]),c[0]?s?s.p(c,d):(s=yt(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&8&&B(e,"fullscreen",c[3])},i(c){o||(re(()=>{n||(n=Pe(e,pe,{duration:300},!0)),n.run(1)}),o=!0)},o(c){n||(n=Pe(e,pe,{duration:300},!1)),n.run(0),o=!1},d(c){c&&z(e),s&&s.d(),c&&n&&n.end(),a=!1,l()}}}function wt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function yt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function yr(i){let e,t,r=i[5]&&pt(i);return{c(){r&&r.c(),e=ie(),this.c=p},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=pt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(be(),Z(r,1,1,()=>{r=null}),ve())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function _r(i,e,t){let r,{variant:n="inline"}=e,{size:o="large"}=e,{message:a=""}=e,{progress:l=-1}=e,{visible:s="false"}=e,c,d,f;return Y(async()=>{t(2,c=o==="small"?"large":"xlarge"),t(3,d=n==="fullscreen"),t(4,f=n==="inline")}),i.$$set=b=>{"variant"in b&&t(6,n=b.variant),"size"in b&&t(7,o=b.size),"message"in b&&t(0,a=b.message),"progress"in b&&t(1,l=b.progress),"visible"in b&&t(8,s=b.visible)},i.$$.update=()=>{i.$$.dirty&256&&t(5,r=G(s))},[a,l,c,d,f,r,n,o,s]}class kr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.fullscreen{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:rgba(255, 255, 255, 0.9)}.inline{margin:3.5rem;display:inline-flex;flex-direction:column;align-items:center;justify-content:center}.spinner-large .message{margin-top:1.5rem;font-size:1.2rem}.spinner-xlarge .message{margin-top:2rem;font-size:1.5rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},_r,yr,N,{variant:6,size:7,message:0,progress:1,visible:8},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["variant","size","message","progress","visible"]}get variant(){return this.$$.ctx[6]}set variant(e){this.$$set({variant:e}),h()}get size(){return this.$$.ctx[7]}set size(e){this.$$set({size:e}),h()}get message(){return this.$$.ctx[0]}set message(e){this.$$set({message:e}),h()}get progress(){return this.$$.ctx[1]}set progress(e){this.$$set({progress:e}),h()}get visible(){return this.$$.ctx[8]}set visible(e){this.$$set({visible:e}),h()}}customElements.define("goa-circular-progress",kr);function xr(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("header"),r=m("div"),r.innerHTML='<slot name="title"></slot>',n=H(),o=m("div"),o.innerHTML='<slot name="actions"></slot>',l=H(),s=m("div"),s.innerHTML="<slot></slot>",this.c=p,u(r,"class","title"),u(o,"class","actions"),u(t,"class",a="heading--"+i[1]),u(s,"class","content"),u(e,"class",c=`
8
+ opacity: ${s-d*b}`}}function vt(i,e){let t=!1;function r(){if(!n())return;const l=a();l>0&&(t=!0,document.body.style.overflow="hidden",document.body.style.paddingRight=l+"px")}function n(){return document.body.style.overflow!=="hidden"}function o(){!t||(t=!1,setTimeout(()=>{document.body.style.overflow="",document.body.style.paddingRight="0"},200))}function a(){if(document.body.clientHeight<=document.documentElement.clientHeight)return 0;const l=document.createElement("div");l.style.visibility="hidden",l.style.overflow="scroll",document.body.appendChild(l);const s=document.createElement("div");l.appendChild(s);const c=l.offsetWidth-s.offsetWidth;return l.parentNode.removeChild(l),c}return e.enable&&r(),{update(){e.enable||o()},destroy(){o()}}}function pt(i){let e,t,r,n;const o=[wr,pr],a=[];function l(s,c){return s[3]?0:s[4]?1:-1}return~(e=l(i))&&(t=a[e]=o[e](i)),{c(){t&&t.c(),r=ie()},m(s,c){~e&&a[e].m(s,c),v(s,r,c),n=!0},p(s,c){let d=e;e=l(s),e===d?~e&&a[e].p(s,c):(t&&(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe()),~e?(t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r)):t=null)},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){~e&&a[e].d(s),s&&z(r)}}}function pr(i){let e,t,r,n,o=i[0]&&wt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),o&&o.c(),C(t,"size",i[2]),C(t,"progress",i[1]),u(e,"class",n="spinner-"+i[2]),B(e,"inline",i[4])},m(a,l){v(a,e,l),g(e,t),g(e,r),o&&o.m(e,null)},p(a,l){l&4&&C(t,"size",a[2]),l&2&&C(t,"progress",a[1]),a[0]?o?o.p(a,l):(o=wt(a),o.c(),o.m(e,null)):o&&(o.d(1),o=null),l&4&&n!==(n="spinner-"+a[2])&&u(e,"class",n),l&20&&B(e,"inline",a[4])},i:w,o:w,d(a){a&&z(e),o&&o.d()}}}function wr(i){let e,t,r,n,o,a,l,s=i[0]&&yt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),s&&s.c(),C(t,"size",i[2]),C(t,"progress",i[1]),B(e,"fullscreen",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r),s&&s.m(e,null),o=!0,a||(l=$e(vt.call(null,e,{enable:!0})),a=!0)},p(c,d){(!o||d&4)&&C(t,"size",c[2]),(!o||d&2)&&C(t,"progress",c[1]),c[0]?s?s.p(c,d):(s=yt(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&8&&B(e,"fullscreen",c[3])},i(c){o||(re(()=>{n||(n=Pe(e,we,{duration:300},!0)),n.run(1)}),o=!0)},o(c){n||(n=Pe(e,we,{duration:300},!1)),n.run(0),o=!1},d(c){c&&z(e),s&&s.d(),c&&n&&n.end(),a=!1,l()}}}function wt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function yt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function yr(i){let e,t,r=i[5]&&pt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=pt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function _r(i,e,t){let r,{variant:n="inline"}=e,{size:o="large"}=e,{message:a=""}=e,{progress:l=-1}=e,{visible:s="false"}=e,c,d,f;return Y(async()=>{t(2,c=o==="small"?"large":"xlarge"),t(3,d=n==="fullscreen"),t(4,f=n==="inline")}),i.$$set=b=>{"variant"in b&&t(6,n=b.variant),"size"in b&&t(7,o=b.size),"message"in b&&t(0,a=b.message),"progress"in b&&t(1,l=b.progress),"visible"in b&&t(8,s=b.visible)},i.$$.update=()=>{i.$$.dirty&256&&t(5,r=G(s))},[a,l,c,d,f,r,n,o,s]}class kr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.fullscreen{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:rgba(255, 255, 255, 0.9)}.inline{margin:3.5rem;display:inline-flex;flex-direction:column;align-items:center;justify-content:center}.spinner-large .message{margin-top:1.5rem;font-size:1.2rem}.spinner-xlarge .message{margin-top:2rem;font-size:1.5rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},_r,yr,N,{variant:6,size:7,message:0,progress:1,visible:8},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["variant","size","message","progress","visible"]}get variant(){return this.$$.ctx[6]}set variant(e){this.$$set({variant:e}),h()}get size(){return this.$$.ctx[7]}set size(e){this.$$set({size:e}),h()}get message(){return this.$$.ctx[0]}set message(e){this.$$set({message:e}),h()}get progress(){return this.$$.ctx[1]}set progress(e){this.$$set({progress:e}),h()}get visible(){return this.$$.ctx[8]}set visible(e){this.$$set({visible:e}),h()}}customElements.define("goa-circular-progress",kr);function xr(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("header"),r=m("div"),r.innerHTML='<slot name="title"></slot>',n=H(),o=m("div"),o.innerHTML='<slot name="actions"></slot>',l=H(),s=m("div"),s.innerHTML="<slot></slot>",this.c=w,u(r,"class","title"),u(o,"class","actions"),u(t,"class",a="heading--"+i[1]),u(s,"class","content"),u(e,"class",c=`
9
9
  goa-container
10
10
  goa-container--${i[0]}
11
11
  padding--${i[2]}
@@ -13,9 +13,9 @@
13
13
  goa-container
14
14
  goa-container--${d[0]}
15
15
  padding--${d[2]}
16
- `)&&u(e,"class",c),f&13&&B(e,"colored",d[3])},i:p,o:p,d(d){d&&z(e)}}}function Er(i,e,t){let r,{type:n="non-interactive"}=e,{colored:o="false"}=e,{headingsize:a="large"}=e,{padding:l="relaxed"}=e;return i.$$set=s=>{"type"in s&&t(0,n=s.type),"colored"in s&&t(4,o=s.colored),"headingsize"in s&&t(1,a=s.headingsize),"padding"in s&&t(2,l=s.padding)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(o))},[n,a,l,r,o]}class zr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);font-size:var(--fs-base)}.goa-container{margin-bottom:1rem;box-sizing:border-box}.goa-container *{box-sizing:border-box}header{display:flex;align-items:center;justify-content:space-between;font-weight:700;font-size:var(--fs-base);border-width:1px;border-style:solid;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content{border-bottom:1px solid var(--color-gray-200);border-left:1px solid var(--color-gray-200);border-right:1px solid var(--color-gray-200);border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.goa-container--non-interactive.colored .content{border-color:var(--color-gray-200);background-color:var(--color-gray-100)}.goa-container--important.colored .content{border-color:var(--goa-color-status-warning);background-color:var(--goa-color-status-warning-50)}.goa-container--error.colored .content{border-color:var(--goa-color-status-emergency);background-color:var(--goa-color-status-emergency-50)}.goa-container--success.colored .content{border-color:var(--goa-color-status-success);background-color:var(--goa-color-status-success-50)}.goa-container--info.colored .content{border-color:var(--goa-color-status-info);background-color:var(--goa-color-status-info-50)}.title,.actions{padding:0.5rem 0}.padding--relaxed header{padding:0 1.5rem}.padding--relaxed .content{padding:1.5rem}.padding--compact header,.padding--compact .content{padding:0 1rem}.padding--compact header{padding:0 1rem}.padding--compact .content{padding:1rem}@media screen and (max-width: 480px){.padding--relaxed header{padding:0 1rem}.padding--relaxed .content{padding:1rem}}.goa-container--non-interactive header{background-color:var(--color-gray-100);border-color:var(--color-gray-200);color:var(--color-black)}.goa-container--interactive header{background-color:var(--goa-color-brand);border-color:var(--goa-color-brand);color:var(--color-white)}.goa-container--info header{background-color:var(--goa-color-status-info);border-color:var(--goa-color-status-info);color:var(--color-white)}.goa-container--error header{background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);color:var(--color-white)}.goa-container--success header{background-color:var(--goa-color-status-success);border-color:var(--goa-color-status-success);color:var(--color-white)}.goa-container--important header{background-color:var(--goa-color-status-warning);border-color:var(--goa-color-status-warning);color:var(--color-white)}.heading--large{padding:0.5rem 1.5rem;max-height:3rem;min-height:1rem}.heading--large .title{line-height:2rem}.heading--small{height:0.5rem}.heading--none{display:none}.heading--none~.content{border-top:1px solid var(--color-gray-200);border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.heading--small .title,.heading--small .actions{display:none}.actions{display:flex;align-items:center}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Er,xr,N,{type:0,colored:4,headingsize:1,padding:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","colored","headingsize","padding"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get colored(){return this.$$.ctx[4]}set colored(e){this.$$set({colored:e}),h()}get headingsize(){return this.$$.ctx[1]}set headingsize(e){this.$$set({headingsize:e}),h()}get padding(){return this.$$.ctx[2]}set padding(e){this.$$set({padding:e}),h()}}customElements.define("goa-container",zr);const we=[];function _t(i,e=p){let t;const r=new Set;function n(l){if(N(i,l)&&(i=l,t)){const s=!we.length;for(const c of r)c[1](),we.push(c,i);if(s){for(let c=0;c<we.length;c+=2)we[c][0](we[c+1]);we.length=0}}}function o(l){n(l(i))}function a(l,s=p){const c=[l,s];return r.add(c),r.size===1&&(t=e(n)||p),l(i),()=>{r.delete(c),r.size===0&&(t(),t=null)}}return{set:n,update:o,subscribe:a}}const Fe={};class Cr{constructor(){this.store=_t()}subscribe(e){this.store.subscribe(t=>{e(t)})}notify(e){this.store.update(()=>e)}}function kt(i){const e=new Cr;return Fe[i]=e,e}function xt(i){return Fe[i]}function Et(i){!Fe[i]||delete Fe[i]}const zt="bind";function Ct(i,e,t){const r=i.slice();return r[39]=e[t],r[41]=t,r}function Mt(i){let e,t,r,n;return{c(){e=m("div"),u(e,"data-testid",t=`${i[0]}-dropdown-background`),u(e,"class","goa-dropdown-background")},m(o,a){v(o,e,a),r||(n=U(e,"click",i[18]),r=!0)},p(o,a){a[0]&1&&t!==(t=`${o[0]}-dropdown-background`)&&u(e,"data-testid",t)},d(o){o&&z(e),r=!1,n()}}}function Lt(i){let e,t=(i[39].label||i[39].value)+"",r,n,o,a,l,s,c,d;function f(){return i[22](i[39])}return{c(){e=m("li"),r=F(t),u(e,"id",n=i[39].label),u(e,"aria-label",o=i[39].label||i[39].value),u(e,"role","option"),u(e,"data-testid",a=`${i[39].value}-dropdown-item`),u(e,"data-index",l=i[41]),u(e,"class","goa-dropdown-option"),u(e,"style",s="display: block"),B(e,"goa-dropdown-option--disabled",!1),B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},m(b,y){v(b,e,y),g(e,r),c||(d=U(e,"click",f),c=!0)},p(b,y){i=b,y[0]&1024&&t!==(t=(i[39].label||i[39].value)+"")&&q(r,t),y[0]&1024&&n!==(n=i[39].label)&&u(e,"id",n),y[0]&1024&&o!==(o=i[39].label||i[39].value)&&u(e,"aria-label",o),y[0]&1024&&a!==(a=`${i[39].value}-dropdown-item`)&&u(e,"data-testid",a),y[0]&8192&&B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),y[0]&1536&&B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},d(b){b&&z(e),c=!1,d()}}}function Mr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,w,_,M=i[12]&&Mt(i),x=i[10],E=[];for(let T=0;T<x.length;T+=1)E[T]=Lt(Ct(i,x,T));return{c(){e=m("div"),M&&M.c(),t=H(),r=m("div"),n=m("goa-input"),s=H(),c=m("ul");for(let T=0;T<E.length;T+=1)E[T].c();d=H(),f=m("slot"),this.c=p,C(n,"error",i[8]),C(n,"disabled",i[7]),C(n,"leadingicon",i[2]),C(n,"placeholder",i[4]),C(n,"width","100%"),C(n,"id",o=`${i[0]}-dropdown-input`),C(n,"role","combobox"),C(n,"aria-label",a=i[1]||i[0]),C(n,"aria-expanded",i[12]),C(n,"aria-controls","menu"),C(n,"readonly",""),C(n,"trailingicon","chevron-down"),C(n,"type","text"),C(n,"value",i[11]),u(r,"data-testid",l=`${i[0]}-dropdown`),u(c,"id","menu"),u(c,"role","listbox"),u(c,"aria-activedescendant",i[11]),u(c,"data-testid","dropdown-menu"),u(c,"tabindex","0"),u(c,"class","goa-dropdown-list"),u(c,"style",b=`overflow-y: auto; max-height: ${i[3]}`),B(c,"dropdown-active",i[12]),u(e,"data-testid",i[5]),u(e,"class","goa-dropdown-box"),u(e,"style",y=`--width: ${i[6]||i[14]}`)},m(T,k){v(T,e,k),M&&M.m(e,null),g(e,t),g(e,r),g(r,n),g(e,s),g(e,c);for(let A=0;A<E.length;A+=1)E[A].m(c,null);g(c,d),g(c,f),i[23](c),i[24](e),w||(_=U(n,"click",i[17]),w=!0)},p(T,k){if(T[12]?M?M.p(T,k):(M=Mt(T),M.c(),M.m(e,t)):M&&(M.d(1),M=null),k[0]&256&&C(n,"error",T[8]),k[0]&128&&C(n,"disabled",T[7]),k[0]&4&&C(n,"leadingicon",T[2]),k[0]&16&&C(n,"placeholder",T[4]),k[0]&1&&o!==(o=`${T[0]}-dropdown-input`)&&C(n,"id",o),k[0]&3&&a!==(a=T[1]||T[0])&&C(n,"aria-label",a),k[0]&4096&&C(n,"aria-expanded",T[12]),k[0]&2048&&C(n,"value",T[11]),k[0]&1&&l!==(l=`${T[0]}-dropdown`)&&u(r,"data-testid",l),k[0]&534016){x=T[10];let A;for(A=0;A<x.length;A+=1){const R=Ct(T,x,A);E[A]?E[A].p(R,k):(E[A]=Lt(R),E[A].c(),E[A].m(c,d))}for(;A<E.length;A+=1)E[A].d(1);E.length=x.length}k[0]&2048&&u(c,"aria-activedescendant",T[11]),k[0]&8&&b!==(b=`overflow-y: auto; max-height: ${T[3]}`)&&u(c,"style",b),k[0]&4096&&B(c,"dropdown-active",T[12]),k[0]&32&&u(e,"data-testid",T[5]),k[0]&16448&&y!==(y=`--width: ${T[6]||T[14]}`)&&u(e,"style",y)},i:p,o:p,d(T){T&&z(e),M&&M.d(),Ae(E,T),i[23](null),i[24](null),w=!1,_()}}}const Lr="300px";function Tr(i,e,t){let r,n,{name:o}=e,{arialabel:a=""}=e,{value:l=""}=e,{leadingicon:s=null}=e,{maxheight:c=Lr}=e,{placeholder:d=""}=e,{testid:f=""}=e,{width:b=""}=e,{disabled:y="false"}=e,{error:w="false"}=e,{multiselect:_="false"}=e,M=[],x=[],E="",T=!1,k=0,A=0,R,L,D,X;Y(()=>{const I=10;let te=0;const de=setInterval(async()=>{te++,o&&L&&(J(),Q(),Ge(),clearInterval(de)),te>I&&(console.error("goa-dropdown: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(de))},10)}),nt(()=>{K(),Et(o)});function J(){L.addEventListener("focus",S,!0),L.addEventListener("blur",ui,!0)}function K(){L.removeEventListener("focus",S,!0),L.removeEventListener("blur",ui,!0)}function Q(){let I;try{I=JSON.parse(l||"[]")}catch{I=[l]}t(9,M=(typeof I=="object"?I:[I]).map(de=>`${de}`))}function Ge(){X=kt(o),X.subscribe(I=>{switch(I==null?void 0:I.type){case zt:{const te=I,de=M.includes(te.value);t(10,x=[...x,Object.assign(Object.assign({},te),{selected:de})]),de&&t(11,E=te.label),!b&&A<te.label.length&&(A=te.label.length,t(14,R=`${Math.max(20,A+12)}ch`)),oe();break}}})}async function ye(){r||T||(t(12,T=!0),await Ne(),D.addEventListener("blur",ce),D.focus(),D.addEventListener("keydown",fi),D.addEventListener("mouseover",hi))}function ce(){D.removeEventListener("blur",ce),D.removeEventListener("keydown",fi),D.removeEventListener("mouseover",hi),oe(),t(12,T=!1)}function oe(){t(13,k=x.findIndex(I=>M.includes(I.value)))}function _e(I,te){r||(t(11,E=te),n?(M.push(I),L.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,values:M}}))):(t(9,M=[I]),L.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:M[0]}}))),ce())}const qe=I=>{switch(I.key){case" ":ye(),I.preventDefault();break}};function S(){L.addEventListener("keydown",qe)}function ui(){L.removeEventListener("keydown",qe)}function fi(I){switch(I.key){case"ArrowUp":k===0?t(13,k=x.length-1):t(13,k--,k),I.preventDefault();break;case"ArrowDown":t(13,k=(k+1)%x.length),I.preventDefault();break;case"Tab":case"Enter":_e(x[k].value,x[k].label),I.preventDefault();break;case"Escape":ce(),I.preventDefault();break}}function hi(I){t(13,k=Number(I.target.dataset.index))}const wo=I=>_e(I.value,I.label);function yo(I){ee[I?"unshift":"push"](()=>{D=I,t(16,D)})}function _o(I){ee[I?"unshift":"push"](()=>{L=I,t(15,L)})}return i.$$set=I=>{"name"in I&&t(0,o=I.name),"arialabel"in I&&t(1,a=I.arialabel),"value"in I&&t(20,l=I.value),"leadingicon"in I&&t(2,s=I.leadingicon),"maxheight"in I&&t(3,c=I.maxheight),"placeholder"in I&&t(4,d=I.placeholder),"testid"in I&&t(5,f=I.testid),"width"in I&&t(6,b=I.width),"disabled"in I&&t(7,y=I.disabled),"error"in I&&t(8,w=I.error),"multiselect"in I&&t(21,_=I.multiselect)},i.$$.update=()=>{i.$$.dirty[0]&128&&(r=G(y)),i.$$.dirty[0]&2097152&&(n=G(_))},[o,a,s,c,d,f,b,y,w,M,x,E,T,k,R,L,D,ye,ce,_e,l,_,wo,yo,_o]}class Rr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-dropdown-box{position:relative;cursor:pointer;display:inline-block;width:100%}@media(min-width: 640px){.goa-dropdown-box{width:var(--width)}}.goa-dropdown-background{cursor:default;position:fixed;z-index:98;inset:0}.goa-dropdown-list{position:absolute;left:0;right:0;padding:0;margin:0;margin-top:3px;list-style-type:none;background:var(--color-white);border-radius:var(--input-border-radius);outline:none;box-shadow:var(--shadow-1);z-index:99;scroll-behavior:smooth;scrollbar-width:thin;display:none}.dropdown-active{display:block}.goa-dropdown-list::-webkit-scrollbar{width:6px}.goa-dropdown-list::-webkit-scrollbar-track{background:#f1f1f1}.goa-dropdown-list::-webkit-scrollbar-thumb{background:#888}.goa-dropdown-list::-webkit-scrollbar-thumb:hover{background:#555}.goa-dropdown-option{margin:0;padding:0.5rem;cursor:pointer;color:var(--color-black);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.goa-dropdown-option--tabbed{background:var(--color-gray-100);color:var(--goa-color-interactive--hover)}.goa-dropdown-option--disabled{opacity:0.5;cursor:default}.goa-dropdown-option--disabled:hover{cursor:default;color:var(--color-gray-600)}.goa-dropdown-option--selected{background:var(--goa-color-interactive);color:var(--color-white)}.goa-dropdown-option--tabbed.goa-dropdown-option--selected,.goa-dropdown-option--selected:hover{background:var(--goa-color-interactive--hover);color:var(--color-white)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Tr,Mr,N,{name:0,arialabel:1,value:20,leadingicon:2,maxheight:3,placeholder:4,testid:5,width:6,disabled:7,error:8,multiselect:21},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","arialabel","value","leadingicon","maxheight","placeholder","testid","width","disabled","error","multiselect"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get arialabel(){return this.$$.ctx[1]}set arialabel(e){this.$$set({arialabel:e}),h()}get value(){return this.$$.ctx[20]}set value(e){this.$$set({value:e}),h()}get leadingicon(){return this.$$.ctx[2]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get maxheight(){return this.$$.ctx[3]}set maxheight(e){this.$$set({maxheight:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[6]}set width(e){this.$$set({width:e}),h()}get disabled(){return this.$$.ctx[7]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get multiselect(){return this.$$.ctx[21]}set multiselect(e){this.$$set({multiselect:e}),h()}}customElements.define("goa-dropdown",Rr);function Ar(i){return{c(){this.c=p},m:p,p,i:p,o:p,d:p}}function Hr(i,e,t){let{name:r=""}=e,{value:n=""}=e,{label:o=""}=e,a;return Y(()=>{const l=setInterval(()=>{if(r&&n){if(a=xt(r),!a)return;a.notify({type:zt,name:r,label:o,value:n}),clearInterval(l)}},10)}),i.$$set=l=>{"name"in l&&t(0,r=l.name),"value"in l&&t(1,n=l.value),"label"in l&&t(2,o=l.label)},[r,n,o]}class Ir extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Hr,Ar,N,{name:0,value:1,label:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","label"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[2]}set label(e){this.$$set({label:e}),h()}}customElements.define("goa-dropdown-item",Ir);function Sr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=p,u(e,"class","goa-flex-col"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:p,o:p,d(r){r&&z(e)}}}function Dr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Br extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);margin-bottom:3rem}.goa-flex-col{display:flex;flex-direction:column;gap:var(--gap)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Dr,Sr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-col",Br);function Nr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=p,u(e,"class","goa-flex-row"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:p,o:p,d(r){r&&z(e)}}}function jr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Or extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-flex-row{display:flex;flex-direction:column;gap:var(--gap)}@media(min-width: 640px){.goa-flex-row{display:grid;grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));gap:var(--gap);margin-bottom:1rem}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},jr,Nr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-row",Or);function Pr(i){let e;return{c(){e=m("div"),e.innerHTML=`<slot></slot>
16
+ `)&&u(e,"class",c),f&13&&B(e,"colored",d[3])},i:w,o:w,d(d){d&&z(e)}}}function Er(i,e,t){let r,{type:n="non-interactive"}=e,{colored:o="false"}=e,{headingsize:a="large"}=e,{padding:l="relaxed"}=e;return i.$$set=s=>{"type"in s&&t(0,n=s.type),"colored"in s&&t(4,o=s.colored),"headingsize"in s&&t(1,a=s.headingsize),"padding"in s&&t(2,l=s.padding)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(o))},[n,a,l,r,o]}class zr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);font-size:var(--fs-base)}.goa-container{margin-bottom:1rem;box-sizing:border-box}.goa-container *{box-sizing:border-box}header{display:flex;align-items:center;justify-content:space-between;font-weight:700;font-size:var(--fs-base);border-width:1px;border-style:solid;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content{border-bottom:1px solid var(--color-gray-200);border-left:1px solid var(--color-gray-200);border-right:1px solid var(--color-gray-200);border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.goa-container--non-interactive.colored .content{border-color:var(--color-gray-200);background-color:var(--color-gray-100)}.goa-container--important.colored .content{border-color:var(--goa-color-status-warning);background-color:var(--goa-color-status-warning-50)}.goa-container--error.colored .content{border-color:var(--goa-color-status-emergency);background-color:var(--goa-color-status-emergency-50)}.goa-container--success.colored .content{border-color:var(--goa-color-status-success);background-color:var(--goa-color-status-success-50)}.goa-container--info.colored .content{border-color:var(--goa-color-status-info);background-color:var(--goa-color-status-info-50)}.title,.actions{padding:0.5rem 0}.padding--relaxed header{padding:0 1.5rem}.padding--relaxed .content{padding:1.5rem}.padding--compact header,.padding--compact .content{padding:0 1rem}.padding--compact header{padding:0 1rem}.padding--compact .content{padding:1rem}@media screen and (max-width: 480px){.padding--relaxed header{padding:0 1rem}.padding--relaxed .content{padding:1rem}}.goa-container--non-interactive header{background-color:var(--color-gray-100);border-color:var(--color-gray-200);color:var(--color-black)}.goa-container--interactive header{background-color:var(--goa-color-brand);border-color:var(--goa-color-brand);color:var(--color-white)}.goa-container--info header{background-color:var(--goa-color-status-info);border-color:var(--goa-color-status-info);color:var(--color-white)}.goa-container--error header{background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);color:var(--color-white)}.goa-container--success header{background-color:var(--goa-color-status-success);border-color:var(--goa-color-status-success);color:var(--color-white)}.goa-container--important header{background-color:var(--goa-color-status-warning);border-color:var(--goa-color-status-warning);color:var(--color-white)}.heading--large{padding:0.5rem 1.5rem;max-height:3rem;min-height:1rem}.heading--large .title{line-height:2rem}.heading--small{height:0.5rem}.heading--none{display:none}.heading--none~.content{border-top:1px solid var(--color-gray-200);border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.heading--small .title,.heading--small .actions{display:none}.actions{display:flex;align-items:center}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Er,xr,N,{type:0,colored:4,headingsize:1,padding:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","colored","headingsize","padding"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get colored(){return this.$$.ctx[4]}set colored(e){this.$$set({colored:e}),h()}get headingsize(){return this.$$.ctx[1]}set headingsize(e){this.$$set({headingsize:e}),h()}get padding(){return this.$$.ctx[2]}set padding(e){this.$$set({padding:e}),h()}}customElements.define("goa-container",zr);const ye=[];function _t(i,e=w){let t;const r=new Set;function n(l){if(N(i,l)&&(i=l,t)){const s=!ye.length;for(const c of r)c[1](),ye.push(c,i);if(s){for(let c=0;c<ye.length;c+=2)ye[c][0](ye[c+1]);ye.length=0}}}function o(l){n(l(i))}function a(l,s=w){const c=[l,s];return r.add(c),r.size===1&&(t=e(n)||w),l(i),()=>{r.delete(c),r.size===0&&(t(),t=null)}}return{set:n,update:o,subscribe:a}}const Fe={};class Cr{constructor(){this.store=_t()}subscribe(e){this.store.subscribe(t=>{e(t)})}notify(e){this.store.update(()=>e)}}function kt(i){const e=new Cr;return Fe[i]=e,e}function xt(i){return Fe[i]}function Et(i){!Fe[i]||delete Fe[i]}const zt="bind";function Ct(i,e,t){const r=i.slice();return r[39]=e[t],r[41]=t,r}function Mt(i){let e,t,r,n;return{c(){e=m("div"),u(e,"data-testid",t=`${i[0]}-dropdown-background`),u(e,"class","goa-dropdown-background")},m(o,a){v(o,e,a),r||(n=U(e,"click",i[18]),r=!0)},p(o,a){a[0]&1&&t!==(t=`${o[0]}-dropdown-background`)&&u(e,"data-testid",t)},d(o){o&&z(e),r=!1,n()}}}function Lt(i){let e,t=(i[39].label||i[39].value)+"",r,n,o,a,l,s,c,d,f;function b(){return i[22](i[39])}return{c(){e=m("li"),r=F(t),u(e,"id",n=i[39].label),u(e,"role","option"),u(e,"aria-label",o=i[39].label||i[39].value),u(e,"aria-selected",a=i[9].includes(i[39].value)?"true":"false"),u(e,"class","goa-dropdown-option"),u(e,"data-testid",l=`${i[39].value}-dropdown-item`),u(e,"data-index",s=i[41]),u(e,"style",c="display: block"),B(e,"goa-dropdown-option--disabled",!1),B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},m(y,p){v(y,e,p),g(e,r),d||(f=U(e,"click",b),d=!0)},p(y,p){i=y,p[0]&1024&&t!==(t=(i[39].label||i[39].value)+"")&&q(r,t),p[0]&1024&&n!==(n=i[39].label)&&u(e,"id",n),p[0]&1024&&o!==(o=i[39].label||i[39].value)&&u(e,"aria-label",o),p[0]&1536&&a!==(a=i[9].includes(i[39].value)?"true":"false")&&u(e,"aria-selected",a),p[0]&1024&&l!==(l=`${i[39].value}-dropdown-item`)&&u(e,"data-testid",l),p[0]&8192&&B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),p[0]&1536&&B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},d(y){y&&z(e),d=!1,f()}}}function Mr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,M=i[12]&&Mt(i),x=i[10],E=[];for(let T=0;T<x.length;T+=1)E[T]=Lt(Ct(i,x,T));return{c(){e=m("div"),M&&M.c(),t=H(),r=m("div"),n=m("goa-input"),s=H(),c=m("ul");for(let T=0;T<E.length;T+=1)E[T].c();d=H(),f=m("slot"),this.c=w,C(n,"error",i[8]),C(n,"disabled",i[7]),C(n,"leadingicon",i[2]),C(n,"placeholder",i[4]),C(n,"width","100%"),C(n,"id",o=`${i[0]}-dropdown-input`),C(n,"role","combobox"),C(n,"aria-label",a=i[1]||i[0]),C(n,"aria-expanded",i[12]),C(n,"aria-controls","menu"),C(n,"readonly",""),C(n,"trailingicon","chevron-down"),C(n,"type","text"),C(n,"value",i[11]),u(r,"data-testid",l=`${i[0]}-dropdown`),u(c,"id","menu"),u(c,"role","listbox"),u(c,"aria-activedescendant",i[11]),u(c,"data-testid","dropdown-menu"),u(c,"tabindex","0"),u(c,"class","goa-dropdown-list"),u(c,"style",b=`overflow-y: auto; max-height: ${i[3]}`),B(c,"dropdown-active",i[12]),u(e,"data-testid",i[5]),u(e,"class","goa-dropdown-box"),u(e,"style",y=`--width: ${i[6]||i[14]}`)},m(T,k){v(T,e,k),M&&M.m(e,null),g(e,t),g(e,r),g(r,n),g(e,s),g(e,c);for(let A=0;A<E.length;A+=1)E[A].m(c,null);g(c,d),g(c,f),i[23](c),i[24](e),p||(_=U(n,"click",i[17]),p=!0)},p(T,k){if(T[12]?M?M.p(T,k):(M=Mt(T),M.c(),M.m(e,t)):M&&(M.d(1),M=null),k[0]&256&&C(n,"error",T[8]),k[0]&128&&C(n,"disabled",T[7]),k[0]&4&&C(n,"leadingicon",T[2]),k[0]&16&&C(n,"placeholder",T[4]),k[0]&1&&o!==(o=`${T[0]}-dropdown-input`)&&C(n,"id",o),k[0]&3&&a!==(a=T[1]||T[0])&&C(n,"aria-label",a),k[0]&4096&&C(n,"aria-expanded",T[12]),k[0]&2048&&C(n,"value",T[11]),k[0]&1&&l!==(l=`${T[0]}-dropdown`)&&u(r,"data-testid",l),k[0]&534016){x=T[10];let A;for(A=0;A<x.length;A+=1){const R=Ct(T,x,A);E[A]?E[A].p(R,k):(E[A]=Lt(R),E[A].c(),E[A].m(c,d))}for(;A<E.length;A+=1)E[A].d(1);E.length=x.length}k[0]&2048&&u(c,"aria-activedescendant",T[11]),k[0]&8&&b!==(b=`overflow-y: auto; max-height: ${T[3]}`)&&u(c,"style",b),k[0]&4096&&B(c,"dropdown-active",T[12]),k[0]&32&&u(e,"data-testid",T[5]),k[0]&16448&&y!==(y=`--width: ${T[6]||T[14]}`)&&u(e,"style",y)},i:w,o:w,d(T){T&&z(e),M&&M.d(),Ae(E,T),i[23](null),i[24](null),p=!1,_()}}}const Lr="300px";function Tr(i,e,t){let r,n,{name:o}=e,{arialabel:a=""}=e,{value:l=""}=e,{leadingicon:s=null}=e,{maxheight:c=Lr}=e,{placeholder:d=""}=e,{testid:f=""}=e,{width:b=""}=e,{disabled:y="false"}=e,{error:p="false"}=e,{multiselect:_="false"}=e,M=[],x=[],E="",T=!1,k=0,A=0,R,L,D,X;Y(()=>{const I=10;let te=0;const ae=setInterval(async()=>{te++,o&&L&&(J(),Q(),Ge(),clearInterval(ae)),te>I&&(console.error("goa-dropdown: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(ae))},10)}),nt(()=>{K(),Et(o)});function J(){L.addEventListener("focus",S,!0),L.addEventListener("blur",ui,!0)}function K(){L.removeEventListener("focus",S,!0),L.removeEventListener("blur",ui,!0)}function Q(){let I;try{I=JSON.parse(l||"[]")}catch{I=[l]}t(9,M=(typeof I=="object"?I:[I]).map(ae=>`${ae}`))}function Ge(){X=kt(o),X.subscribe(I=>{switch(I==null?void 0:I.type){case zt:{const te=I,ae=M.includes(te.value);t(10,x=[...x,Object.assign(Object.assign({},te),{selected:ae})]),ae&&t(11,E=te.label),!b&&A<te.label.length&&(A=te.label.length,t(14,R=`${Math.max(20,A+12)}ch`)),oe();break}}})}async function _e(){r||T||(t(12,T=!0),await Ne(),D.addEventListener("blur",le),D.focus(),D.addEventListener("keydown",fi),D.addEventListener("mouseover",hi))}function le(){D.removeEventListener("blur",le),D.removeEventListener("keydown",fi),D.removeEventListener("mouseover",hi),oe(),t(12,T=!1)}function oe(){t(13,k=x.findIndex(I=>M.includes(I.value)))}function me(I,te,ae){r||(t(11,E=te),n?(M.push(I),L.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,values:M}}))):(t(9,M=[I]),L.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:M[0]}}))),ae&&le())}const qe=I=>{switch(I.key){case" ":_e(),I.preventDefault();break}};function S(){L.addEventListener("keydown",qe)}function ui(){L.removeEventListener("keydown",qe)}function fi(I){switch(I.key){case"ArrowUp":k>0&&(t(13,k--,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"ArrowDown":k<x.length-1&&(t(13,k++,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"Tab":case"Enter":le(),I.preventDefault();break;case"Escape":le(),I.preventDefault();break}}function hi(I){t(13,k=Number(I.target.dataset.index))}const wo=I=>me(I.value,I.label,!0);function yo(I){ee[I?"unshift":"push"](()=>{D=I,t(16,D)})}function _o(I){ee[I?"unshift":"push"](()=>{L=I,t(15,L)})}return i.$$set=I=>{"name"in I&&t(0,o=I.name),"arialabel"in I&&t(1,a=I.arialabel),"value"in I&&t(20,l=I.value),"leadingicon"in I&&t(2,s=I.leadingicon),"maxheight"in I&&t(3,c=I.maxheight),"placeholder"in I&&t(4,d=I.placeholder),"testid"in I&&t(5,f=I.testid),"width"in I&&t(6,b=I.width),"disabled"in I&&t(7,y=I.disabled),"error"in I&&t(8,p=I.error),"multiselect"in I&&t(21,_=I.multiselect)},i.$$.update=()=>{i.$$.dirty[0]&128&&(r=G(y)),i.$$.dirty[0]&2097152&&(n=G(_))},[o,a,s,c,d,f,b,y,p,M,x,E,T,k,R,L,D,_e,le,me,l,_,wo,yo,_o]}class Rr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-dropdown-box{position:relative;cursor:pointer;display:inline-block;width:100%}@media(min-width: 640px){.goa-dropdown-box{width:var(--width)}}.goa-dropdown-background{cursor:default;position:fixed;z-index:98;inset:0}.goa-dropdown-list{position:absolute;left:0;right:0;padding:0;margin:0;margin-top:3px;list-style-type:none;background:var(--color-white);border-radius:var(--input-border-radius);outline:none;box-shadow:var(--shadow-1);z-index:99;scroll-behavior:smooth;scrollbar-width:thin;display:none}.dropdown-active{display:block}.goa-dropdown-list::-webkit-scrollbar{width:6px}.goa-dropdown-list::-webkit-scrollbar-track{background:#f1f1f1}.goa-dropdown-list::-webkit-scrollbar-thumb{background:#888}.goa-dropdown-list::-webkit-scrollbar-thumb:hover{background:#555}.goa-dropdown-option{margin:0;padding:0.5rem;cursor:pointer;color:var(--color-black);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.goa-dropdown-option--tabbed{background:var(--color-gray-100);color:var(--goa-color-interactive--hover)}.goa-dropdown-option--disabled{opacity:0.5;cursor:default}.goa-dropdown-option--disabled:hover{cursor:default;color:var(--color-gray-600)}.goa-dropdown-option--selected{background:var(--goa-color-interactive);color:var(--color-white)}.goa-dropdown-option--tabbed.goa-dropdown-option--selected,.goa-dropdown-option--selected:hover{background:var(--goa-color-interactive--hover);color:var(--color-white)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Tr,Mr,N,{name:0,arialabel:1,value:20,leadingicon:2,maxheight:3,placeholder:4,testid:5,width:6,disabled:7,error:8,multiselect:21},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","arialabel","value","leadingicon","maxheight","placeholder","testid","width","disabled","error","multiselect"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get arialabel(){return this.$$.ctx[1]}set arialabel(e){this.$$set({arialabel:e}),h()}get value(){return this.$$.ctx[20]}set value(e){this.$$set({value:e}),h()}get leadingicon(){return this.$$.ctx[2]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get maxheight(){return this.$$.ctx[3]}set maxheight(e){this.$$set({maxheight:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[6]}set width(e){this.$$set({width:e}),h()}get disabled(){return this.$$.ctx[7]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get multiselect(){return this.$$.ctx[21]}set multiselect(e){this.$$set({multiselect:e}),h()}}customElements.define("goa-dropdown",Rr);function Ar(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function Hr(i,e,t){let{name:r=""}=e,{value:n=""}=e,{label:o=""}=e,a;return Y(()=>{const l=setInterval(()=>{if(r&&n){if(a=xt(r),!a)return;a.notify({type:zt,name:r,label:o,value:n}),clearInterval(l)}},10)}),i.$$set=l=>{"name"in l&&t(0,r=l.name),"value"in l&&t(1,n=l.value),"label"in l&&t(2,o=l.label)},[r,n,o]}class Ir extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Hr,Ar,N,{name:0,value:1,label:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","label"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[2]}set label(e){this.$$set({label:e}),h()}}customElements.define("goa-dropdown-item",Ir);function Sr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-col"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&z(e)}}}function Dr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Br extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);margin-bottom:3rem}.goa-flex-col{display:flex;flex-direction:column;gap:var(--gap)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Dr,Sr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-col",Br);function Nr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-row"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&z(e)}}}function jr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Or extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-flex-row{display:flex;flex-direction:column;gap:var(--gap)}@media(min-width: 640px){.goa-flex-row{display:grid;grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));gap:var(--gap);margin-bottom:1rem}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},jr,Nr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-row",Or);function Pr(i){let e;return{c(){e=m("div"),e.innerHTML=`<slot></slot>
17
17
 
18
- <span tabindex="0"></span>`,this.c=p},m(t,r){v(t,e,r),i[4](e)},p,i:p,o:p,d(t){t&&z(e),i[4](null)}}}function Fr(i){if(i.tabIndex>0||i.tabIndex===0&&i.getAttribute("tabIndex")!==null)return!0;if(i.disabled)return!1;switch(i.nodeName){case"A":return!!i.href&&i.rel!=="ignore";case"INPUT":return i.type!=="hidden"&&i.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}function Gr(i,e,t){let r,{active:n}=e,o=!1,a,l,s=!1;function c(){document.removeEventListener("focus",E,!0)}function d(){document.addEventListener("focus",E,!0)}function f(k){if(!k)return!1;for(const A of k)if(x(A)||f(A.childNodes)||b(A)||y(A))return!0;return!1}function b(k){if(!(k instanceof HTMLSlotElement))return!1;if(f(k.assignedNodes()))return!0}function y(k){var A;if(!(k instanceof HTMLElement))return!1;if(f((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function w(k){if(!k)return!1;for(let A=k.length-1;A>=0;A--){let R=k[A];if(x(R)||w(R.childNodes)||_(R)||M(R))return!0}return!1}function _(k){if(!(k instanceof HTMLSlotElement))return!1;if(w(k.assignedNodes()))return!0}function M(k){var A;if(!(k instanceof HTMLElement))return!1;if(w((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function x(k){if(!Fr(k))return!1;try{o=!0,k.focus()}catch{}finally{o=!1}return document.activeElement===k}function E(k){var A;if(o)return;const R=(A=l.firstChild)===null||A===void 0?void 0:A.assignedElements();if(!(R==null?void 0:R.length))return;const L=R[0];if(k.composedPath().includes(L)){a=k.target;return}f(L.childNodes),a==document.activeElement&&w(L.childNodes),a=document.activeElement}function T(k){ee[k?"unshift":"push"](()=>{l=k,t(0,l)})}return i.$$set=k=>{"active"in k&&t(1,n=k.active)},i.$$.update=()=>{i.$$.dirty&2&&t(3,r=G(n)),i.$$.dirty&12&&(r&&!s&&(d(),t(2,s=!0)),!r&&s&&(c(),t(2,s=!1)))},[l,n,s,r,T]}class qr extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Gr,Pr,N,{active:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["active"]}get active(){return this.$$.ctx[1]}set active(e){this.$$set({active:e}),h()}}customElements.define("goa-focus-trap",qr);function Tt(i,e,t){const r=i.slice();return r[3]=e[t],r}function Rt(i){let e,t,r=i[3].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[3].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&2&&r!==(r=a[3].innerHTML+"")&&q(n,r),l&2&&o!==(o=a[3].href)&&u(t,"href",o)},d(a){a&&z(e)}}}function Vr(i){let e,t,r,n,o=i[1],a=[];for(let l=0;l<o.length;l+=1)a[l]=Rt(Tt(i,o,l));return{c(){e=m("section"),t=m("div"),t.innerHTML="<slot></slot>",r=H(),n=m("ul");for(let l=0;l<a.length;l+=1)a[l].c();this.c=p,u(t,"class","hidden")},m(l,s){v(l,e,s),g(e,t),g(e,r),g(e,n);for(let c=0;c<a.length;c+=1)a[c].m(n,null);i[2](e)},p(l,[s]){if(s&2){o=l[1];let c;for(c=0;c<o.length;c+=1){const d=Tt(l,o,c);a[c]?a[c].p(d,s):(a[c]=Rt(d),a[c].c(),a[c].m(n,null))}for(;c<a.length;c+=1)a[c].d(1);a.length=o.length}},i:p,o:p,d(l){l&&z(e),Ae(a,l),i[2](null)}}}function Wr(i,e,t){let r,n=[];Y(async()=>{if(await Ne(),t(1,n=r.querySelector("slot").assignedElements()),!n.map(l=>l.hasAttribute("href")).reduce((l,s)=>l&&s,!0)){t(1,n=[]),console.warn("GoAFooterMetaSection children must be anchor elements.");return}});function o(a){ee[a?"unshift":"push"](()=>{r=a,t(0,r)})}return[r,n,o]}class Ur extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.hidden{display:none}ul{display:flex;flex-wrap:wrap;gap:1rem;padding-left:0}li{list-style-type:none}a{color:var(--goa-color-text);white-space:nowrap}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Wr,Vr,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-app-footer-meta-section",Ur);function At(i,e,t){const r=i.slice();return r[5]=e[t],r}function Ht(i){let e,t,r,n;return{c(){e=m("div"),t=F(i[0]),r=H(),n=m("goa-divider"),u(e,"class","title"),C(n,"spacing","small")},m(o,a){v(o,e,a),g(e,t),v(o,r,a),v(o,n,a)},p(o,a){a&1&&q(t,o[0])},d(o){o&&z(e),o&&z(r),o&&z(n)}}}function It(i){let e,t,r=i[5].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[5].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&8&&r!==(r=a[5].innerHTML+"")&&q(n,r),l&8&&o!==(o=a[5].href)&&u(t,"href",o)},d(a){a&&z(e)}}}function Zr(i){let e,t,r,n,o,a,l=i[0]&&Ht(i),s=i[3],c=[];for(let d=0;d<s.length;d+=1)c[d]=It(At(i,s,d));return{c(){e=m("section"),l&&l.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),o=m("ul");for(let d=0;d<c.length;d+=1)c[d].c();this.c=p,u(r,"class","hidden"),u(o,"class","links"),u(o,"style",a=`
18
+ <span tabindex="0"></span>`,this.c=w},m(t,r){v(t,e,r),i[4](e)},p:w,i:w,o:w,d(t){t&&z(e),i[4](null)}}}function Fr(i){if(i.tabIndex>0||i.tabIndex===0&&i.getAttribute("tabIndex")!==null)return!0;if(i.disabled)return!1;switch(i.nodeName){case"A":return!!i.href&&i.rel!=="ignore";case"INPUT":return i.type!=="hidden"&&i.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}function Gr(i,e,t){let r,{active:n}=e,o=!1,a,l,s=!1;function c(){document.removeEventListener("focus",E,!0)}function d(){document.addEventListener("focus",E,!0)}function f(k){if(!k)return!1;for(const A of k)if(x(A)||f(A.childNodes)||b(A)||y(A))return!0;return!1}function b(k){if(!(k instanceof HTMLSlotElement))return!1;if(f(k.assignedNodes()))return!0}function y(k){var A;if(!(k instanceof HTMLElement))return!1;if(f((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function p(k){if(!k)return!1;for(let A=k.length-1;A>=0;A--){let R=k[A];if(x(R)||p(R.childNodes)||_(R)||M(R))return!0}return!1}function _(k){if(!(k instanceof HTMLSlotElement))return!1;if(p(k.assignedNodes()))return!0}function M(k){var A;if(!(k instanceof HTMLElement))return!1;if(p((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function x(k){if(!Fr(k))return!1;try{o=!0,k.focus()}catch{}finally{o=!1}return document.activeElement===k}function E(k){var A;if(o)return;const R=(A=l.firstChild)===null||A===void 0?void 0:A.assignedElements();if(!(R==null?void 0:R.length))return;const L=R[0];if(k.composedPath().includes(L)){a=k.target;return}f(L.childNodes),a==document.activeElement&&p(L.childNodes),a=document.activeElement}function T(k){ee[k?"unshift":"push"](()=>{l=k,t(0,l)})}return i.$$set=k=>{"active"in k&&t(1,n=k.active)},i.$$.update=()=>{i.$$.dirty&2&&t(3,r=G(n)),i.$$.dirty&12&&(r&&!s&&(d(),t(2,s=!0)),!r&&s&&(c(),t(2,s=!1)))},[l,n,s,r,T]}class qr extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Gr,Pr,N,{active:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["active"]}get active(){return this.$$.ctx[1]}set active(e){this.$$set({active:e}),h()}}customElements.define("goa-focus-trap",qr);function Tt(i,e,t){const r=i.slice();return r[3]=e[t],r}function Rt(i){let e,t,r=i[3].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[3].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&2&&r!==(r=a[3].innerHTML+"")&&q(n,r),l&2&&o!==(o=a[3].href)&&u(t,"href",o)},d(a){a&&z(e)}}}function Vr(i){let e,t,r,n,o=i[1],a=[];for(let l=0;l<o.length;l+=1)a[l]=Rt(Tt(i,o,l));return{c(){e=m("section"),t=m("div"),t.innerHTML="<slot></slot>",r=H(),n=m("ul");for(let l=0;l<a.length;l+=1)a[l].c();this.c=w,u(t,"class","hidden")},m(l,s){v(l,e,s),g(e,t),g(e,r),g(e,n);for(let c=0;c<a.length;c+=1)a[c].m(n,null);i[2](e)},p(l,[s]){if(s&2){o=l[1];let c;for(c=0;c<o.length;c+=1){const d=Tt(l,o,c);a[c]?a[c].p(d,s):(a[c]=Rt(d),a[c].c(),a[c].m(n,null))}for(;c<a.length;c+=1)a[c].d(1);a.length=o.length}},i:w,o:w,d(l){l&&z(e),Ae(a,l),i[2](null)}}}function Wr(i,e,t){let r,n=[];Y(async()=>{if(await Ne(),t(1,n=r.querySelector("slot").assignedElements()),!n.map(l=>l.hasAttribute("href")).reduce((l,s)=>l&&s,!0)){t(1,n=[]),console.warn("GoAFooterMetaSection children must be anchor elements.");return}});function o(a){ee[a?"unshift":"push"](()=>{r=a,t(0,r)})}return[r,n,o]}class Ur extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.hidden{display:none}ul{display:flex;flex-wrap:wrap;gap:1rem;padding-left:0}li{list-style-type:none}a{color:var(--goa-color-text);white-space:nowrap}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Wr,Vr,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-app-footer-meta-section",Ur);function At(i,e,t){const r=i.slice();return r[5]=e[t],r}function Ht(i){let e,t,r,n;return{c(){e=m("div"),t=F(i[0]),r=H(),n=m("goa-divider"),u(e,"class","title"),C(n,"spacing","small")},m(o,a){v(o,e,a),g(e,t),v(o,r,a),v(o,n,a)},p(o,a){a&1&&q(t,o[0])},d(o){o&&z(e),o&&z(r),o&&z(n)}}}function It(i){let e,t,r=i[5].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[5].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&8&&r!==(r=a[5].innerHTML+"")&&q(n,r),l&8&&o!==(o=a[5].href)&&u(t,"href",o)},d(a){a&&z(e)}}}function Zr(i){let e,t,r,n,o,a,l=i[0]&&Ht(i),s=i[3],c=[];for(let d=0;d<s.length;d+=1)c[d]=It(At(i,s,d));return{c(){e=m("section"),l&&l.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),o=m("ul");for(let d=0;d<c.length;d+=1)c[d].c();this.c=w,u(r,"class","hidden"),u(o,"class","links"),u(o,"style",a=`
19
19
  --narrow-display-type: ${Math.ceil(i[1]/2)>1?"block":"flex"};
20
20
  --narrow-column-count: ${Math.ceil(i[1]/2)};
21
21
  --wide-display-type: ${i[1]>1?"block":"flex"};
@@ -25,11 +25,11 @@
25
25
  --narrow-column-count: ${Math.ceil(d[1]/2)};
26
26
  --wide-display-type: ${d[1]>1?"block":"flex"};
27
27
  --wide-column-count: ${d[1]};
28
- `)&&u(o,"style",a)},i:p,o:p,d(d){d&&z(e),l&&l.d(),Ae(c,d),i[4](null)}}}function Kr(i,e,t){let{name:r=""}=e,{maxcolumncount:n=1}=e,o,a=[];Y(async()=>{if(await Ne(),t(3,a=o.querySelector("slot").assignedElements()),!a.map(d=>d.hasAttribute("href")).reduce((d,f)=>d&&f,!0)){t(3,a=[]),console.warn("GoAFooterNavSection children must be anchor elements.");return}const c=document.createElement("style");c.innerHTML=`
28
+ `)&&u(o,"style",a)},i:w,o:w,d(d){d&&z(e),l&&l.d(),Ae(c,d),i[4](null)}}}function Kr(i,e,t){let{name:r=""}=e,{maxcolumncount:n=1}=e,o,a=[];Y(async()=>{if(await Ne(),t(3,a=o.querySelector("slot").assignedElements()),!a.map(d=>d.hasAttribute("href")).reduce((d,f)=>d&&f,!0)){t(3,a=[]),console.warn("GoAFooterNavSection children must be anchor elements.");return}const c=document.createElement("style");c.innerHTML=`
29
29
  :host {
30
30
  flex-grow: ${n};
31
31
  }
32
- `,o.appendChild(c)});function l(s){ee[s?"unshift":"push"](()=>{o=s,t(2,o)})}return i.$$set=s=>{"name"in s&&t(0,r=s.name),"maxcolumncount"in s&&t(1,n=s.maxcolumncount)},[r,n,o,a,l]}class Xr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{flex:auto}.title{font-size:var(--fs-xl);line-height:var(--lh-lg)}.hidden{display:none}.links{display:block;list-style-type:none;padding-left:0}@media(min-width: 720px){.links{display:var(--narrow-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--narrow-column-count)}}@media(min-width: 1024px){.links{display:var(--wide-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--wide-column-count)}}li{padding:0.75rem 0}a{color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Kr,Zr,N,{name:0,maxcolumncount:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","maxcolumncount"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get maxcolumncount(){return this.$$.ctx[1]}set maxcolumncount(e){this.$$set({maxcolumncount:e}),h()}}customElements.define("goa-app-footer-nav-section",Xr);function St(i){let e;return{c(){e=m("goa-divider"),C(e,"spacing","small")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function Yr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,w=i[2]?.length&&St();return{c(){e=m("div"),t=m("div"),r=m("div"),r.innerHTML='<slot name="nav"></slot>',n=H(),w&&w.c(),o=H(),a=m("div"),l=m("div"),l.innerHTML='<slot name="meta"></slot>',s=H(),c=m("div"),d=m("a"),d.innerHTML='<img alt="GoA Logo" class="logo" src="data:image/svg+xml,%3Csvg xmlns=&#39;http://www.w3.org/2000/svg&#39; xmlns:xlink=&#39;http://www.w3.org/1999/xlink&#39; width=&#39;149.351&#39; height=&#39;42&#39; viewBox=&#39;0 0 149.351 42&#39;%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id=&#39;a&#39;%3E%3Crect class=&#39;a&#39; width=&#39;149.351&#39; height=&#39;42&#39;/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class=&#39;b&#39;%3E%3Crect class=&#39;c&#39; width=&#39;13.555&#39; height=&#39;13.555&#39; transform=&#39;translate(135.796 21.524)&#39;/%3E%3Cpath class=&#39;d&#39; d=&#39;M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83&#39; transform=&#39;translate(-0.038 0.124)&#39;/%3E%3C/g%3E%3C/svg%3E"/>',f=H(),b=m("a"),b.textContent=`\xA9 ${i[4]} Government of Alberta`,this.c=p,u(r,"class","nav-links"),u(l,"class","meta-links"),u(d,"href","https://alberta.ca"),u(b,"href","https://alberta.ca"),u(b,"class","goa-copyright"),u(c,"class","abgov"),B(c,"with-meta-links",i[3]?.length),u(a,"class","meta-section"),B(a,"with-meta-links",i[3]?.length),u(t,"class","content"),u(e,"class","app-footer"),u(e,"style",y=`--max-content-width: ${i[0]||"var(--layout-max-content-width)"}`)},m(_,M){v(_,e,M),g(e,t),g(t,r),g(t,n),w&&w.m(t,null),g(t,o),g(t,a),g(a,l),g(a,s),g(a,c),g(c,d),g(c,f),g(c,b),i[5](e)},p(_,[M]){_[2]?.length?w||(w=St(),w.c(),w.m(t,o)):w&&(w.d(1),w=null),M&8&&B(c,"with-meta-links",_[3]?.length),M&8&&B(a,"with-meta-links",_[3]?.length),M&1&&y!==(y=`--max-content-width: ${_[0]||"var(--layout-max-content-width)"}`)&&u(e,"style",y)},i:p,o:p,d(_){_&&z(e),w&&w.d(),i[5](null)}}}function Jr(i,e,t){let{maxcontentwidth:r=""}=e,n,o,a;const l=new Date().getFullYear();Y(async()=>{await Ne();const c=n.querySelector("slot[name=nav]"),d=n.querySelector("slot[name=meta]");t(2,o=c.assignedElements()),t(3,a=d.assignedElements())});function s(c){ee[c?"unshift":"push"](()=>{n=c,t(1,n)})}return i.$$set=c=>{"maxcontentwidth"in c&&t(0,r=c.maxcontentwidth)},[r,n,o,a,l,s]}class Qr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.app-footer{background-color:var(--color-gray-100);border-top:2px solid var(--color-gray-200);border-bottom:1rem solid var(--goa-color-brand)}.content{padding:2rem 1rem;margin:0 auto;width:min(var(--max-content-width), 100vw)}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.meta-section{display:flex;flex-direction:column;padding:1rem 0}.meta-section.with-meta-links{gap:2rem;justify-content:space-between}.meta-links{display:none}.with-meta-links .meta-links{display:block}.nav-links{display:flex;flex-direction:column;gap:2rem}.abgov{display:flex;flex-direction:column;justify-content:space-between;width:100%}@media(min-width: 640px){.meta-section{flex-direction:row;gap:2rem}.nav-links{flex-direction:row}.abgov{align-items:center;flex-direction:row-reverse}}.abgov.with-meta-links{gap:1rem;flex-direction:column;width:unset}@media(min-width: 640px){.abgov.with-meta-links{align-items:flex-end}}.goa-copyright{white-space:nowrap}a{color:var(--goa-color-text-secondary)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Jr,Yr,N,{maxcontentwidth:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["maxcontentwidth"]}get maxcontentwidth(){return this.$$.ctx[0]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-footer",Qr);function Dt(i){let e,t,r,n=i[3]&&Bt();return{c(){e=m("div"),t=F(i[0]),r=H(),n&&n.c(),u(e,"class","label")},m(o,a){v(o,e,a),g(e,t),g(e,r),n&&n.m(e,null)},p(o,a){a&1&&q(t,o[0]),o[3]?n||(n=Bt(),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(o){o&&z(e),n&&n.d()}}}function Bt(i){let e;return{c(){e=m("em"),e.textContent="(optional)"},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function Nt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","error-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&z(e)}}}function jt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"class","help-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function $r(i){let e,t,r,n,o,a=i[0]&&Dt(i),l=i[2]&&Nt(i),s=i[1]&&jt(i);return{c(){e=m("div"),a&&a.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),l&&l.c(),o=H(),s&&s.c(),this.c=p,u(r,"class","form-item-input"),u(e,"class","goa-form-item")},m(c,d){v(c,e,d),a&&a.m(e,null),g(e,t),g(e,r),g(e,n),l&&l.m(e,null),g(e,o),s&&s.m(e,null)},p(c,[d]){c[0]?a?a.p(c,d):(a=Dt(c),a.c(),a.m(e,t)):a&&(a.d(1),a=null),c[2]?l?l.p(c,d):(l=Nt(c),l.c(),l.m(e,o)):l&&(l.d(1),l=null),c[1]?s?s.p(c,d):(s=jt(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null)},i:p,o:p,d(c){c&&z(e),a&&a.d(),l&&l.d(),s&&s.d()}}}function en(i,e,t){let r,{label:n=""}=e,{helptext:o=""}=e,{error:a=""}=e,{optional:l="false"}=e;return i.$$set=s=>{"label"in s&&t(0,n=s.label),"helptext"in s&&t(1,o=s.helptext),"error"in s&&t(2,a=s.error),"optional"in s&&t(4,l=s.optional)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(l))},[n,o,a,r,l]}class tn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0;overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis}.label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-sm);line-height:var(--lh-sm);font-style:normal}.form-item-input{margin-bottom:0.25rem}.help-msg{font-size:var(--fs-sm);color:var(--goa-color-text)}.error-msg{font-size:var(--fs-sm);color:var(--goa-color-interactive--error);margin-bottom:0.25rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},en,$r,N,{label:0,helptext:1,error:2,optional:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["label","helptext","error","optional"]}get label(){return this.$$.ctx[0]}set label(e){this.$$set({label:e}),h()}get helptext(){return this.$$.ctx[1]}set helptext(e){this.$$set({helptext:e}),h()}get error(){return this.$$.ctx[2]}set error(e){this.$$set({error:e}),h()}get optional(){return this.$$.ctx[4]}set optional(e){this.$$set({optional:e}),h()}}customElements.define("goa-form-item",tn);function rn(i){let e,t,r,n,o,a,l,s;return{c(){e=m("div"),t=m("goa-page-block"),r=m("h1"),n=F(i[0]),o=H(),a=m("div"),a.innerHTML="<slot></slot>",l=H(),s=m("slot"),this.c=p,u(a,"class","goa-hero-banner-content"),u(a,"role","note"),u(s,"name","actions"),C(t,"width","full"),u(e,"class","goa-hero"),u(e,"data-testid","background"),V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+i[1]+")"),V(e,"background-size","cover"),V(e,"background-position","center"),V(e,"background-repeat","no-repeat")},m(c,d){v(c,e,d),g(e,t),g(t,r),g(r,n),g(t,o),g(t,a),g(t,l),g(t,s)},p(c,[d]){d&1&&q(n,c[0]),d&2&&V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+c[1]+")")},i:p,o:p,d(c){c&&z(e)}}}function nn(i,e,t){let{heading:r}=e,{backgroundurl:n}=e;return i.$$set=o=>{"heading"in o&&t(0,r=o.heading),"backgroundurl"in o&&t(1,n=o.backgroundurl)},[r,n]}class on extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-hero{box-sizing:border-box;display:flex;justify-content:flex-end;flex-direction:column;min-height:600px;border-bottom:8px solid var(--goa-color-brand);color:var(--color-white);background-position:center center;width:100%;padding:3.5rem 0}h1{margin:0 0 1.75rem;padding:0;color:var(--color-white);font-size:var(--fs-3xl);line-height:var(--lh-2xl);font-weight:var(--fw-bold)}.goa-hero-banner-content{font-size:1.5rem;line-height:2rem;margin-bottom:1.75rem;color:#fff}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},nn,rn,N,{heading:0,backgroundurl:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","backgroundurl"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get backgroundurl(){return this.$$.ctx[1]}set backgroundurl(e){this.$$set({backgroundurl:e}),h()}}customElements.define("goa-hero-banner",on);function an(i){let e,t,r,n;return{c(){e=m("button"),t=m("goa-icon"),this.c=p,C(t,"title",i[3]),C(t,"type",i[0]),C(t,"size",i[1]),C(t,"theme",i[2]),C(t,"inverted",i[5]),V(e,"--size",i[6]),u(e,"title",i[3]),e.disabled=i[7],u(e,"class",i[8]),u(e,"data-testid",i[4])},m(o,a){v(o,e,a),g(e,t),r||(n=U(e,"click",ln),r=!0)},p(o,[a]){a&8&&C(t,"title",o[3]),a&1&&C(t,"type",o[0]),a&2&&C(t,"size",o[1]),a&4&&C(t,"theme",o[2]),a&32&&C(t,"inverted",o[5]),a&64&&V(e,"--size",o[6]),a&8&&u(e,"title",o[3]),a&128&&(e.disabled=o[7]),a&256&&u(e,"class",o[8]),a&16&&u(e,"data-testid",o[4])},i:p,o:p,d(o){o&&z(e),r=!1,n()}}}function ln(i){i.target.dispatchEvent(new CustomEvent("_click",{composed:!0,detail:{event:i}}))}function sn(i,e,t){let r,n,o,a,{type:l}=e,{size:s="medium"}=e,{theme:c="outline"}=e,{variant:d="color"}=e,{title:f=""}=e,{testId:b=""}=e,{disabled:y}=e,{inverted:w}=e;return i.$$set=_=>{"type"in _&&t(0,l=_.type),"size"in _&&t(1,s=_.size),"theme"in _&&t(2,c=_.theme),"variant"in _&&t(9,d=_.variant),"title"in _&&t(3,f=_.title),"testId"in _&&t(4,b=_.testId),"disabled"in _&&t(10,y=_.disabled),"inverted"in _&&t(11,w=_.inverted)},i.$$.update=()=>{i.$$.dirty&2048&&t(5,o=G(w)),i.$$.dirty&544&&t(8,r=`${d} ${o?"inverted":""}`),i.$$.dirty&1024&&t(7,n=G(y)),i.$$.dirty&2&&t(6,a={small:"1rem",medium:"1.5rem",large:"2rem"}[s])},[l,s,c,f,b,o,a,n,r,d,y,w]}class cn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;justify-content:center;background:transparent;cursor:pointer;border:none}.color{border-radius:0.5rem;padding:calc(var(--size) / 4)}.color{border-radius:0.5rem;color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.color:active,.nocolor:active{transform:scale(0.9);border:none}.color:hover{background-color:var(--goa-color-primary-light)}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{color:var(--color-gray-200);fill:var(--color-gray-200);transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},sn,an,N,{type:0,size:1,theme:2,variant:9,title:3,testId:4,disabled:10,inverted:11},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","variant","title","testId","disabled","inverted"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[2]}set theme(e){this.$$set({theme:e}),h()}get variant(){return this.$$.ctx[9]}set variant(e){this.$$set({variant:e}),h()}get title(){return this.$$.ctx[3]}set title(e){this.$$set({title:e}),h()}get testId(){return this.$$.ctx[4]}set testId(e){this.$$set({testId:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get inverted(){return this.$$.ctx[11]}set inverted(e){this.$$set({inverted:e}),h()}}customElements.define("goa-icon-button",cn);function Ot(i){let e,t;return{c(){e=m("ion-icon"),C(e,"name",t=i[1]==="filled"||i[0].indexOf("logo")===0?i[0]:`${i[0]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&3&&t!==(t=r[1]==="filled"||r[0].indexOf("logo")===0?r[0]:`${r[0]}-${r[1]}`)&&C(e,"name",t)},d(r){r&&z(e)}}}function dn(i){let e,t,r,n=i[0]&&Ot(i);return{c(){e=m("div"),n&&n.c(),this.c=p,u(e,"class","goa-icon"),u(e,"data-testid",t=`icon-${i[0]}`),u(e,"title",i[5]),u(e,"style",r=`
32
+ `,o.appendChild(c)});function l(s){ee[s?"unshift":"push"](()=>{o=s,t(2,o)})}return i.$$set=s=>{"name"in s&&t(0,r=s.name),"maxcolumncount"in s&&t(1,n=s.maxcolumncount)},[r,n,o,a,l]}class Xr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{flex:auto}.title{font-size:var(--fs-xl);line-height:var(--lh-lg)}.hidden{display:none}.links{display:block;list-style-type:none;padding-left:0}@media(min-width: 720px){.links{display:var(--narrow-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--narrow-column-count)}}@media(min-width: 1024px){.links{display:var(--wide-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--wide-column-count)}}li{padding:0.75rem 0}a{color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Kr,Zr,N,{name:0,maxcolumncount:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","maxcolumncount"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get maxcolumncount(){return this.$$.ctx[1]}set maxcolumncount(e){this.$$set({maxcolumncount:e}),h()}}customElements.define("goa-app-footer-nav-section",Xr);function St(i){let e;return{c(){e=m("goa-divider"),C(e,"spacing","small")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function Yr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p=i[2]?.length&&St();return{c(){e=m("div"),t=m("div"),r=m("div"),r.innerHTML='<slot name="nav"></slot>',n=H(),p&&p.c(),o=H(),a=m("div"),l=m("div"),l.innerHTML='<slot name="meta"></slot>',s=H(),c=m("div"),d=m("a"),d.innerHTML='<img alt="GoA Logo" class="logo" src="data:image/svg+xml,%3Csvg xmlns=&#39;http://www.w3.org/2000/svg&#39; xmlns:xlink=&#39;http://www.w3.org/1999/xlink&#39; width=&#39;149.351&#39; height=&#39;42&#39; viewBox=&#39;0 0 149.351 42&#39;%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id=&#39;a&#39;%3E%3Crect class=&#39;a&#39; width=&#39;149.351&#39; height=&#39;42&#39;/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class=&#39;b&#39;%3E%3Crect class=&#39;c&#39; width=&#39;13.555&#39; height=&#39;13.555&#39; transform=&#39;translate(135.796 21.524)&#39;/%3E%3Cpath class=&#39;d&#39; d=&#39;M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83&#39; transform=&#39;translate(-0.038 0.124)&#39;/%3E%3C/g%3E%3C/svg%3E"/>',f=H(),b=m("a"),b.textContent=`\xA9 ${i[4]} Government of Alberta`,this.c=w,u(r,"class","nav-links"),u(l,"class","meta-links"),u(d,"href","https://alberta.ca"),u(b,"href","https://alberta.ca"),u(b,"class","goa-copyright"),u(c,"class","abgov"),B(c,"with-meta-links",i[3]?.length),u(a,"class","meta-section"),B(a,"with-meta-links",i[3]?.length),u(t,"class","content"),u(e,"class","app-footer"),u(e,"style",y=`--max-content-width: ${i[0]||"var(--layout-max-content-width)"}`)},m(_,M){v(_,e,M),g(e,t),g(t,r),g(t,n),p&&p.m(t,null),g(t,o),g(t,a),g(a,l),g(a,s),g(a,c),g(c,d),g(c,f),g(c,b),i[5](e)},p(_,[M]){_[2]?.length?p||(p=St(),p.c(),p.m(t,o)):p&&(p.d(1),p=null),M&8&&B(c,"with-meta-links",_[3]?.length),M&8&&B(a,"with-meta-links",_[3]?.length),M&1&&y!==(y=`--max-content-width: ${_[0]||"var(--layout-max-content-width)"}`)&&u(e,"style",y)},i:w,o:w,d(_){_&&z(e),p&&p.d(),i[5](null)}}}function Jr(i,e,t){let{maxcontentwidth:r=""}=e,n,o,a;const l=new Date().getFullYear();Y(async()=>{await Ne();const c=n.querySelector("slot[name=nav]"),d=n.querySelector("slot[name=meta]");t(2,o=c.assignedElements()),t(3,a=d.assignedElements())});function s(c){ee[c?"unshift":"push"](()=>{n=c,t(1,n)})}return i.$$set=c=>{"maxcontentwidth"in c&&t(0,r=c.maxcontentwidth)},[r,n,o,a,l,s]}class Qr extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.app-footer{background-color:var(--color-gray-100);border-top:2px solid var(--color-gray-200);border-bottom:1rem solid var(--goa-color-brand)}.content{padding:2rem 1rem;margin:0 auto;width:min(var(--max-content-width), 100vw)}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.meta-section{display:flex;flex-direction:column;padding:1rem 0}.meta-section.with-meta-links{gap:2rem;justify-content:space-between}.meta-links{display:none}.with-meta-links .meta-links{display:block}.nav-links{display:flex;flex-direction:column;gap:2rem}.abgov{display:flex;flex-direction:column;justify-content:space-between;width:100%}@media(min-width: 640px){.meta-section{flex-direction:row;gap:2rem}.nav-links{flex-direction:row}.abgov{align-items:center;flex-direction:row-reverse}}.abgov.with-meta-links{gap:1rem;flex-direction:column;width:unset}@media(min-width: 640px){.abgov.with-meta-links{align-items:flex-end}}.goa-copyright{white-space:nowrap}a{color:var(--goa-color-text-secondary)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Jr,Yr,N,{maxcontentwidth:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["maxcontentwidth"]}get maxcontentwidth(){return this.$$.ctx[0]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-footer",Qr);function Dt(i){let e,t,r,n=i[3]&&Bt();return{c(){e=m("div"),t=F(i[0]),r=H(),n&&n.c(),u(e,"class","label")},m(o,a){v(o,e,a),g(e,t),g(e,r),n&&n.m(e,null)},p(o,a){a&1&&q(t,o[0]),o[3]?n||(n=Bt(),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(o){o&&z(e),n&&n.d()}}}function Bt(i){let e;return{c(){e=m("em"),e.textContent="(optional)"},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function Nt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","error-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&z(e)}}}function jt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"class","help-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function $r(i){let e,t,r,n,o,a=i[0]&&Dt(i),l=i[2]&&Nt(i),s=i[1]&&jt(i);return{c(){e=m("div"),a&&a.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),l&&l.c(),o=H(),s&&s.c(),this.c=w,u(r,"class","form-item-input"),u(e,"class","goa-form-item")},m(c,d){v(c,e,d),a&&a.m(e,null),g(e,t),g(e,r),g(e,n),l&&l.m(e,null),g(e,o),s&&s.m(e,null)},p(c,[d]){c[0]?a?a.p(c,d):(a=Dt(c),a.c(),a.m(e,t)):a&&(a.d(1),a=null),c[2]?l?l.p(c,d):(l=Nt(c),l.c(),l.m(e,o)):l&&(l.d(1),l=null),c[1]?s?s.p(c,d):(s=jt(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null)},i:w,o:w,d(c){c&&z(e),a&&a.d(),l&&l.d(),s&&s.d()}}}function en(i,e,t){let r,{label:n=""}=e,{helptext:o=""}=e,{error:a=""}=e,{optional:l="false"}=e;return i.$$set=s=>{"label"in s&&t(0,n=s.label),"helptext"in s&&t(1,o=s.helptext),"error"in s&&t(2,a=s.error),"optional"in s&&t(4,l=s.optional)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(l))},[n,o,a,r,l]}class tn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0;overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis}.label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-sm);line-height:var(--lh-sm);font-style:normal}.form-item-input{margin-bottom:0.25rem}.help-msg{font-size:var(--fs-sm);color:var(--goa-color-text)}.error-msg{font-size:var(--fs-sm);color:var(--goa-color-interactive--error);margin-bottom:0.25rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},en,$r,N,{label:0,helptext:1,error:2,optional:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["label","helptext","error","optional"]}get label(){return this.$$.ctx[0]}set label(e){this.$$set({label:e}),h()}get helptext(){return this.$$.ctx[1]}set helptext(e){this.$$set({helptext:e}),h()}get error(){return this.$$.ctx[2]}set error(e){this.$$set({error:e}),h()}get optional(){return this.$$.ctx[4]}set optional(e){this.$$set({optional:e}),h()}}customElements.define("goa-form-item",tn);function rn(i){let e,t,r,n,o,a,l,s;return{c(){e=m("div"),t=m("goa-page-block"),r=m("h1"),n=F(i[0]),o=H(),a=m("div"),a.innerHTML="<slot></slot>",l=H(),s=m("slot"),this.c=w,u(a,"class","goa-hero-banner-content"),u(a,"role","note"),u(s,"name","actions"),C(t,"width","full"),u(e,"class","goa-hero"),u(e,"data-testid","background"),V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+i[1]+")"),V(e,"background-size","cover"),V(e,"background-position","center"),V(e,"background-repeat","no-repeat")},m(c,d){v(c,e,d),g(e,t),g(t,r),g(r,n),g(t,o),g(t,a),g(t,l),g(t,s)},p(c,[d]){d&1&&q(n,c[0]),d&2&&V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+c[1]+")")},i:w,o:w,d(c){c&&z(e)}}}function nn(i,e,t){let{heading:r}=e,{backgroundurl:n}=e;return i.$$set=o=>{"heading"in o&&t(0,r=o.heading),"backgroundurl"in o&&t(1,n=o.backgroundurl)},[r,n]}class on extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-hero{box-sizing:border-box;display:flex;justify-content:flex-end;flex-direction:column;min-height:600px;border-bottom:8px solid var(--goa-color-brand);color:var(--color-white);background-position:center center;width:100%;padding:3.5rem 0}h1{margin:0 0 1.75rem;padding:0;color:var(--color-white);font-size:var(--fs-3xl);line-height:var(--lh-2xl);font-weight:var(--fw-bold)}.goa-hero-banner-content{font-size:1.5rem;line-height:2rem;margin-bottom:1.75rem;color:#fff}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},nn,rn,N,{heading:0,backgroundurl:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","backgroundurl"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get backgroundurl(){return this.$$.ctx[1]}set backgroundurl(e){this.$$set({backgroundurl:e}),h()}}customElements.define("goa-hero-banner",on);function an(i){let e,t,r,n;return{c(){e=m("button"),t=m("goa-icon"),this.c=w,C(t,"title",i[3]),C(t,"type",i[0]),C(t,"size",i[1]),C(t,"theme",i[2]),C(t,"inverted",i[5]),V(e,"--size",i[6]),u(e,"title",i[3]),e.disabled=i[7],u(e,"class",i[8]),u(e,"data-testid",i[4])},m(o,a){v(o,e,a),g(e,t),r||(n=U(e,"click",ln),r=!0)},p(o,[a]){a&8&&C(t,"title",o[3]),a&1&&C(t,"type",o[0]),a&2&&C(t,"size",o[1]),a&4&&C(t,"theme",o[2]),a&32&&C(t,"inverted",o[5]),a&64&&V(e,"--size",o[6]),a&8&&u(e,"title",o[3]),a&128&&(e.disabled=o[7]),a&256&&u(e,"class",o[8]),a&16&&u(e,"data-testid",o[4])},i:w,o:w,d(o){o&&z(e),r=!1,n()}}}function ln(i){i.target.dispatchEvent(new CustomEvent("_click",{composed:!0,detail:{event:i}}))}function sn(i,e,t){let r,n,o,a,{type:l}=e,{size:s="medium"}=e,{theme:c="outline"}=e,{variant:d="color"}=e,{title:f=""}=e,{testId:b=""}=e,{disabled:y}=e,{inverted:p}=e;return i.$$set=_=>{"type"in _&&t(0,l=_.type),"size"in _&&t(1,s=_.size),"theme"in _&&t(2,c=_.theme),"variant"in _&&t(9,d=_.variant),"title"in _&&t(3,f=_.title),"testId"in _&&t(4,b=_.testId),"disabled"in _&&t(10,y=_.disabled),"inverted"in _&&t(11,p=_.inverted)},i.$$.update=()=>{i.$$.dirty&2048&&t(5,o=G(p)),i.$$.dirty&544&&t(8,r=`${d} ${o?"inverted":""}`),i.$$.dirty&1024&&t(7,n=G(y)),i.$$.dirty&2&&t(6,a={small:"1rem",medium:"1.5rem",large:"2rem"}[s])},[l,s,c,f,b,o,a,n,r,d,y,p]}class cn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;justify-content:center;background:transparent;cursor:pointer;border:none}.color{border-radius:0.5rem;padding:calc(var(--size) / 4)}.color{border-radius:0.5rem;color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.color:active,.nocolor:active{transform:scale(0.9);border:none}.color:hover{background-color:var(--goa-color-primary-light)}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{color:var(--color-gray-200);fill:var(--color-gray-200);transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},sn,an,N,{type:0,size:1,theme:2,variant:9,title:3,testId:4,disabled:10,inverted:11},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","variant","title","testId","disabled","inverted"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[2]}set theme(e){this.$$set({theme:e}),h()}get variant(){return this.$$.ctx[9]}set variant(e){this.$$set({variant:e}),h()}get title(){return this.$$.ctx[3]}set title(e){this.$$set({title:e}),h()}get testId(){return this.$$.ctx[4]}set testId(e){this.$$set({testId:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get inverted(){return this.$$.ctx[11]}set inverted(e){this.$$set({inverted:e}),h()}}customElements.define("goa-icon-button",cn);function Ot(i){let e,t;return{c(){e=m("ion-icon"),C(e,"name",t=i[1]==="filled"||i[0].indexOf("logo")===0?i[0]:`${i[0]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&3&&t!==(t=r[1]==="filled"||r[0].indexOf("logo")===0?r[0]:`${r[0]}-${r[1]}`)&&C(e,"name",t)},d(r){r&&z(e)}}}function dn(i){let e,t,r,n=i[0]&&Ot(i);return{c(){e=m("div"),n&&n.c(),this.c=w,u(e,"class","goa-icon"),u(e,"data-testid",t=`icon-${i[0]}`),u(e,"title",i[5]),u(e,"style",r=`
33
33
  --size: ${i[6]};
34
34
  --fill-color: ${i[2]};
35
35
  --hover-color: ${i[3]};
@@ -39,23 +39,23 @@
39
39
  --fill-color: ${o[2]};
40
40
  --hover-color: ${o[3]};
41
41
  --opacity: ${o[4]};
42
- `)&&u(e,"style",r),a&128&&B(e,"inverted",o[7])},i:p,o:p,d(o){o&&z(e),n&&n.d()}}}function un(i,e,t){let r,n,{type:o}=e,{size:a="medium"}=e,{theme:l="outline"}=e,{inverted:s="false"}=e,{fillcolor:c=""}=e,{hovercolor:d=""}=e,{opacity:f=1}=e,{title:b=""}=e;return i.$$set=y=>{"type"in y&&t(0,o=y.type),"size"in y&&t(8,a=y.size),"theme"in y&&t(1,l=y.theme),"inverted"in y&&t(9,s=y.inverted),"fillcolor"in y&&t(2,c=y.fillcolor),"hovercolor"in y&&t(3,d=y.hovercolor),"opacity"in y&&t(4,f=y.opacity),"title"in y&&t(5,b=y.title)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(s)),i.$$.dirty&256&&t(6,n={small:"1.25rem",medium:"1.5rem",large:"2rem"}[a])},[o,l,c,d,f,b,n,r,a,s]}class fn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center}ion-icon{pointer-events:none;width:100%;height:100%}.goa-icon{width:var(--size);height:var(--size);fill:var(--fill-color);color:var(--fill-color);opacity:var(--opacity);display:inline-flex;align-items:center;justify-content:center}.goa-icon:hover ion-icon{fill:var(--hover-color);color:var(--hover-color)}.inverted{color:#fff;fill:#fff}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},un,dn,N,{type:0,size:8,theme:1,inverted:9,fillcolor:2,hovercolor:3,opacity:4,title:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","inverted","fillcolor","hovercolor","opacity","title"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[8]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[1]}set theme(e){this.$$set({theme:e}),h()}get inverted(){return this.$$.ctx[9]}set inverted(e){this.$$set({inverted:e}),h()}get fillcolor(){return this.$$.ctx[2]}set fillcolor(e){this.$$set({fillcolor:e}),h()}get hovercolor(){return this.$$.ctx[3]}set hovercolor(e){this.$$set({hovercolor:e}),h()}get opacity(){return this.$$.ctx[4]}set opacity(e){this.$$set({opacity:e}),h()}get title(){return this.$$.ctx[5]}set title(e){this.$$set({title:e}),h()}}customElements.define("goa-icon",fn);function Pt(i){let e,t;return{c(){e=m("div"),t=F(i[14]),u(e,"class","prefix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&16384&&q(t,r[14])},d(r){r&&z(e)}}}function Ft(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-leading-icon"),C(e,"data-testid","leading-icon"),C(e,"type",i[5])},m(t,r){v(t,e,r)},p(t,r){r[0]&32&&C(e,"type",t[5])},d(t){t&&z(e)}}}function Gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-trailing-icon"),C(e,"data-testid","trailing-icon"),C(e,"size","medium"),C(e,"type",i[6])},m(t,r){v(t,e,r)},p(t,r){r[0]&64&&C(e,"type",t[6])},d(t){t&&z(e)}}}function qt(i){let e,t,r;return{c(){e=m("goa-icon-button"),C(e,"disabled",i[19]),C(e,"variant","nocolor"),C(e,"size","medium"),C(e,"type",i[6]),C(e,"data-testid","trailing-icon-button")},m(n,o){v(n,e,o),t||(r=U(e,"click",bn),t=!0)},p(n,o){o[0]&524288&&C(e,"disabled",n[19]),o[0]&64&&C(e,"type",n[6])},d(n){n&&z(e),t=!1,r()}}}function Vt(i){let e,t;return{c(){e=m("span"),t=F(i[15]),u(e,"class","suffix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&32768&&q(t,r[15])},d(r){r&&z(e)}}}function Wt(i){let e;function t(o,a){if(o[16]>0)return gn;if(o[0].length>0)return hn}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&z(e)}}}function hn(i){let e,t=i[0].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o[0]&1&&t!==(t=n[0].length+"")&&q(r,t)},d(n){n&&z(e)}}}function gn(i){let e,t=i[0].length+"",r,n=`/${i[16]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[0].length>i[16])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l[0]&1&&t!==(t=a[0].length+"")&&q(r,t),l[0]&65536&&n!==(n=`/${a[16]}`)&&q(o,n),l[0]&65537&&B(e,"counter-error",a[0].length>a[16])},d(a){a&&z(e)}}}function mn(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,w,_,M,x=i[14]&&Pt(i),E=i[5]&&Ft(i),T=i[6]&&!i[22]&&Gt(i),k=i[6]&&i[22]&&qt(i),A=i[15]&&Vt(i),R=i[18]&&Wt(i);return{c(){e=m("div"),t=m("div"),x&&x.c(),r=H(),E&&E.c(),n=H(),o=m("input"),c=H(),T&&T.c(),d=H(),k&&k.c(),f=H(),A&&A.c(),y=H(),R&&R.c(),this.c=p,u(o,"class",a=`input--${i[7]}`),u(o,"style",l=`--search-icon-offset: ${i[6]?"-0.5rem":"0"}`),o.readOnly=i[21],o.disabled=i[19],u(o,"data-testid",i[8]),u(o,"autocapitalize",i[3]),u(o,"name",i[2]),u(o,"type",i[1]),o.value=i[0],u(o,"placeholder",i[4]),u(o,"min",i[11]),u(o,"max",i[12]),u(o,"step",i[13]),u(o,"role","textbox"),u(o,"aria-label",s=i[10]||i[2]),u(t,"class",b=`
42
+ `)&&u(e,"style",r),a&128&&B(e,"inverted",o[7])},i:w,o:w,d(o){o&&z(e),n&&n.d()}}}function un(i,e,t){let r,n,{type:o}=e,{size:a="medium"}=e,{theme:l="outline"}=e,{inverted:s="false"}=e,{fillcolor:c=""}=e,{hovercolor:d=""}=e,{opacity:f=1}=e,{title:b=""}=e;return i.$$set=y=>{"type"in y&&t(0,o=y.type),"size"in y&&t(8,a=y.size),"theme"in y&&t(1,l=y.theme),"inverted"in y&&t(9,s=y.inverted),"fillcolor"in y&&t(2,c=y.fillcolor),"hovercolor"in y&&t(3,d=y.hovercolor),"opacity"in y&&t(4,f=y.opacity),"title"in y&&t(5,b=y.title)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(s)),i.$$.dirty&256&&t(6,n={small:"1.25rem",medium:"1.5rem",large:"2rem"}[a])},[o,l,c,d,f,b,n,r,a,s]}class fn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center}ion-icon{pointer-events:none;width:100%;height:100%}.goa-icon{width:var(--size);height:var(--size);fill:var(--fill-color);color:var(--fill-color);opacity:var(--opacity);display:inline-flex;align-items:center;justify-content:center}.goa-icon:hover ion-icon{fill:var(--hover-color);color:var(--hover-color)}.inverted{color:#fff;fill:#fff}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},un,dn,N,{type:0,size:8,theme:1,inverted:9,fillcolor:2,hovercolor:3,opacity:4,title:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","inverted","fillcolor","hovercolor","opacity","title"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[8]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[1]}set theme(e){this.$$set({theme:e}),h()}get inverted(){return this.$$.ctx[9]}set inverted(e){this.$$set({inverted:e}),h()}get fillcolor(){return this.$$.ctx[2]}set fillcolor(e){this.$$set({fillcolor:e}),h()}get hovercolor(){return this.$$.ctx[3]}set hovercolor(e){this.$$set({hovercolor:e}),h()}get opacity(){return this.$$.ctx[4]}set opacity(e){this.$$set({opacity:e}),h()}get title(){return this.$$.ctx[5]}set title(e){this.$$set({title:e}),h()}}customElements.define("goa-icon",fn);function Pt(i){let e,t;return{c(){e=m("div"),t=F(i[14]),u(e,"class","prefix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&16384&&q(t,r[14])},d(r){r&&z(e)}}}function Ft(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-leading-icon"),C(e,"data-testid","leading-icon"),C(e,"type",i[5])},m(t,r){v(t,e,r)},p(t,r){r[0]&32&&C(e,"type",t[5])},d(t){t&&z(e)}}}function Gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-trailing-icon"),C(e,"data-testid","trailing-icon"),C(e,"size","medium"),C(e,"type",i[6])},m(t,r){v(t,e,r)},p(t,r){r[0]&64&&C(e,"type",t[6])},d(t){t&&z(e)}}}function qt(i){let e,t,r;return{c(){e=m("goa-icon-button"),C(e,"disabled",i[19]),C(e,"variant","nocolor"),C(e,"size","medium"),C(e,"type",i[6]),C(e,"data-testid","trailing-icon-button")},m(n,o){v(n,e,o),t||(r=U(e,"click",bn),t=!0)},p(n,o){o[0]&524288&&C(e,"disabled",n[19]),o[0]&64&&C(e,"type",n[6])},d(n){n&&z(e),t=!1,r()}}}function Vt(i){let e,t;return{c(){e=m("span"),t=F(i[15]),u(e,"class","suffix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&32768&&q(t,r[15])},d(r){r&&z(e)}}}function Wt(i){let e;function t(o,a){if(o[16]>0)return gn;if(o[0].length>0)return hn}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&z(e)}}}function hn(i){let e,t=i[0].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o[0]&1&&t!==(t=n[0].length+"")&&q(r,t)},d(n){n&&z(e)}}}function gn(i){let e,t=i[0].length+"",r,n=`/${i[16]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[0].length>i[16])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l[0]&1&&t!==(t=a[0].length+"")&&q(r,t),l[0]&65536&&n!==(n=`/${a[16]}`)&&q(o,n),l[0]&65537&&B(e,"counter-error",a[0].length>a[16])},d(a){a&&z(e)}}}function mn(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,M,x=i[14]&&Pt(i),E=i[5]&&Ft(i),T=i[6]&&!i[22]&&Gt(i),k=i[6]&&i[22]&&qt(i),A=i[15]&&Vt(i),R=i[18]&&Wt(i);return{c(){e=m("div"),t=m("div"),x&&x.c(),r=H(),E&&E.c(),n=H(),o=m("input"),c=H(),T&&T.c(),d=H(),k&&k.c(),f=H(),A&&A.c(),y=H(),R&&R.c(),this.c=w,u(o,"class",a=`input--${i[7]}`),u(o,"style",l=`--search-icon-offset: ${i[6]?"-0.5rem":"0"}`),o.readOnly=i[21],o.disabled=i[19],u(o,"data-testid",i[8]),u(o,"autocapitalize",i[3]),u(o,"name",i[2]),u(o,"type",i[1]),o.value=i[0],u(o,"placeholder",i[4]),u(o,"min",i[11]),u(o,"max",i[12]),u(o,"step",i[13]),u(o,"role","textbox"),u(o,"aria-label",s=i[10]||i[2]),u(t,"class",b=`
43
43
  goa-input
44
44
  ${i[19]?"goa-input--disabled":""}
45
45
  variant--${i[7]}
46
46
  type--${i[1]}
47
- `),B(t,"error",i[20]),u(e,"class","container"),u(e,"style",w=`
47
+ `),B(t,"error",i[20]),u(e,"class","container"),u(e,"style",p=`
48
48
  --width: ${i[9]};
49
49
  `)},m(L,D){v(L,e,D),g(e,t),x&&x.m(t,null),g(t,r),E&&E.m(t,null),g(t,n),g(t,o),i[31](o),g(t,c),T&&T.m(t,null),g(t,d),k&&k.m(t,null),g(t,f),A&&A.m(t,null),g(e,y),R&&R.m(e,null),_||(M=[U(o,"keyup",i[23]),U(o,"change",i[23])],_=!0)},p(L,D){L[14]?x?x.p(L,D):(x=Pt(L),x.c(),x.m(t,r)):x&&(x.d(1),x=null),L[5]?E?E.p(L,D):(E=Ft(L),E.c(),E.m(t,n)):E&&(E.d(1),E=null),D[0]&128&&a!==(a=`input--${L[7]}`)&&u(o,"class",a),D[0]&64&&l!==(l=`--search-icon-offset: ${L[6]?"-0.5rem":"0"}`)&&u(o,"style",l),D[0]&2097152&&(o.readOnly=L[21]),D[0]&524288&&(o.disabled=L[19]),D[0]&256&&u(o,"data-testid",L[8]),D[0]&8&&u(o,"autocapitalize",L[3]),D[0]&4&&u(o,"name",L[2]),D[0]&2&&u(o,"type",L[1]),D[0]&1&&o.value!==L[0]&&(o.value=L[0]),D[0]&16&&u(o,"placeholder",L[4]),D[0]&2048&&u(o,"min",L[11]),D[0]&4096&&u(o,"max",L[12]),D[0]&8192&&u(o,"step",L[13]),D[0]&1028&&s!==(s=L[10]||L[2])&&u(o,"aria-label",s),L[6]&&!L[22]?T?T.p(L,D):(T=Gt(L),T.c(),T.m(t,d)):T&&(T.d(1),T=null),L[6]&&L[22]?k?k.p(L,D):(k=qt(L),k.c(),k.m(t,f)):k&&(k.d(1),k=null),L[15]?A?A.p(L,D):(A=Vt(L),A.c(),A.m(t,null)):A&&(A.d(1),A=null),D[0]&524418&&b!==(b=`
50
50
  goa-input
51
51
  ${L[19]?"goa-input--disabled":""}
52
52
  variant--${L[7]}
53
53
  type--${L[1]}
54
- `)&&u(t,"class",b),D[0]&1572994&&B(t,"error",L[20]),L[18]?R?R.p(L,D):(R=Wt(L),R.c(),R.m(e,null)):R&&(R.d(1),R=null),D[0]&512&&w!==(w=`
54
+ `)&&u(t,"class",b),D[0]&1572994&&B(t,"error",L[20]),L[18]?R?R.p(L,D):(R=Wt(L),R.c(),R.m(e,null)):R&&(R.d(1),R=null),D[0]&512&&p!==(p=`
55
55
  --width: ${L[9]};
56
- `)&&u(e,"style",w)},i:p,o:p,d(L){L&&z(e),x&&x.d(),E&&E.d(),i[31](null),T&&T.d(),k&&k.d(),A&&A.d(),R&&R.d(),_=!1,$(M)}}}function bn(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function vn(i,e,t){let r,n,o,a,l,s,{type:c="text"}=e,{name:d=""}=e,{value:f=""}=e,{autocapitalize:b="off"}=e,{placeholder:y=""}=e,{leadingicon:w=null}=e,{trailingicon:_=null}=e,{variant:M="goa"}=e,{disabled:x="false"}=e,{handletrailingiconclick:E="false"}=e,{focused:T="false"}=e,{readonly:k="false"}=e,{error:A="false"}=e,{testid:R=""}=e,{width:L="30ch"}=e,{arialabel:D=null}=e,{min:X=null}=e,{max:J=null}=e,{step:K=null}=e,{prefix:Q=""}=e,{suffix:Ge=""}=e,{showcounter:ye="false"}=e,{maxcharcount:ce=0}=e,oe;function _e(S){S.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:d,value:S.target.value}})),t(0,f=S.target.value)}function qe(S){ee[S?"unshift":"push"](()=>{oe=S,t(17,oe)})}return i.$$set=S=>{"type"in S&&t(1,c=S.type),"name"in S&&t(2,d=S.name),"value"in S&&t(0,f=S.value),"autocapitalize"in S&&t(3,b=S.autocapitalize),"placeholder"in S&&t(4,y=S.placeholder),"leadingicon"in S&&t(5,w=S.leadingicon),"trailingicon"in S&&t(6,_=S.trailingicon),"variant"in S&&t(7,M=S.variant),"disabled"in S&&t(24,x=S.disabled),"handletrailingiconclick"in S&&t(25,E=S.handletrailingiconclick),"focused"in S&&t(26,T=S.focused),"readonly"in S&&t(27,k=S.readonly),"error"in S&&t(28,A=S.error),"testid"in S&&t(8,R=S.testid),"width"in S&&t(9,L=S.width),"arialabel"in S&&t(10,D=S.arialabel),"min"in S&&t(11,X=S.min),"max"in S&&t(12,J=S.max),"step"in S&&t(13,K=S.step),"prefix"in S&&t(14,Q=S.prefix),"suffix"in S&&t(15,Ge=S.suffix),"showcounter"in S&&t(29,ye=S.showcounter),"maxcharcount"in S&&t(16,ce=S.maxcharcount)},i.$$.update=()=>{i.$$.dirty[0]&33554432&&t(22,r=G(E)),i.$$.dirty[0]&67108864&&t(30,n=G(T)),i.$$.dirty[0]&134217728&&t(21,o=G(k)),i.$$.dirty[0]&268435456&&t(20,a=G(A)),i.$$.dirty[0]&16777216&&t(19,l=G(x)),i.$$.dirty[0]&536870912&&t(18,s=G(ye)),i.$$.dirty[0]&1073872896&&n&&oe&&setTimeout(()=>oe.focus(),1),i.$$.dirty[0]&131074&&oe&&c==="search"&&oe.addEventListener("search",S=>{_e(S)})},[f,c,d,b,y,w,_,M,R,L,D,X,J,K,Q,Ge,ce,oe,s,l,a,o,r,_e,x,E,T,k,A,ye,n,qe]}class pn extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box}.container{position:relative;width:100%}@media(min-width: 640px){.container{width:var(--width)}}.goa-input,.goa-input *{box-sizing:border-box}.goa-input{box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:var(--input-border-radius);background:white;display:inline-flex;align-items:stretch;vertical-align:middle;min-width:100%}.goa-input:hover{border-color:var(--goa-color-interactive--hover)}.goa-input:active,.goa-input:focus,.goa-input:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-input.type--range{border:none}.goa-input.type--range:active,.goa-input.type--range:focus,.goa-input.type--range:focus-within{box-shadow:none}.goa-input-leading-icon{margin-left:0.5rem}.goa-input-trailing-icon{margin-right:0.5rem}input{display:inline-block;color:var(--goa-color-text);font-size:var(--input-font-size);padding:var(--input-padding);line-height:calc(40px - calc(var(--input-padding) * 2));background-color:transparent;width:0;flex:1 1 auto}input[type=text],input[type=date],input[type="datetime-local"],input[type=number]{font-family:var(--font-family)}input[readonly]{cursor:pointer}.goa-input-leading-icon+input{padding-left:0.5rem}input,input:focus,input:hover,input:active{outline:none;border:none}.goa-input--disabled,.goa-input--disabled:hover,.goa-input--disabled:active,.goa-input--disabled:focus{background-color:var(--color-gray-100);border-color:var(--color-gray-200);cursor:default;box-shadow:none}.goa-input--disabled input,.goa-input--disabled input:hover,.goa-input--disabled input:active,.goa-input--disabled input:focus{color:var(--goa-color-text-secondary)}.goa-input--disabled input:hover{cursor:default !important}.prefix,.suffix{background-color:var(--color-gray-100);padding:0 0.75rem;display:flex;align-items:center}.prefix{border-top-left-radius:var(--input-border-radius);border-bottom-left-radius:var(--input-border-radius);border-right:1px solid var(--color-gray-600)}.suffix{border-top-right-radius:var(--input-border-radius);border-bottom-right-radius:var(--input-border-radius);border-left:1px solid var(--color-gray-600)}input.input--goa{display:block;border:none;flex:1 1 auto}.variant--bare{border:none}.variant--bare:focus,.variant--bare:active,.variant--bare:focus-within{box-shadow:none}.counter{position:absolute;padding-top:0.25rem;right:0;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button{position:relative;right:var(--search-icon-offset);cursor:pointer;-webkit-appearance:none;height:1.2rem;width:1.2rem;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23333" d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"/></svg>')
56
+ `)&&u(e,"style",p)},i:w,o:w,d(L){L&&z(e),x&&x.d(),E&&E.d(),i[31](null),T&&T.d(),k&&k.d(),A&&A.d(),R&&R.d(),_=!1,$(M)}}}function bn(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function vn(i,e,t){let r,n,o,a,l,s,{type:c="text"}=e,{name:d=""}=e,{value:f=""}=e,{autocapitalize:b="off"}=e,{placeholder:y=""}=e,{leadingicon:p=null}=e,{trailingicon:_=null}=e,{variant:M="goa"}=e,{disabled:x="false"}=e,{handletrailingiconclick:E="false"}=e,{focused:T="false"}=e,{readonly:k="false"}=e,{error:A="false"}=e,{testid:R=""}=e,{width:L="30ch"}=e,{arialabel:D=null}=e,{min:X=null}=e,{max:J=null}=e,{step:K=null}=e,{prefix:Q=""}=e,{suffix:Ge=""}=e,{showcounter:_e="false"}=e,{maxcharcount:le=0}=e,oe;function me(S){S.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:d,value:S.target.value}})),t(0,f=S.target.value)}function qe(S){ee[S?"unshift":"push"](()=>{oe=S,t(17,oe)})}return i.$$set=S=>{"type"in S&&t(1,c=S.type),"name"in S&&t(2,d=S.name),"value"in S&&t(0,f=S.value),"autocapitalize"in S&&t(3,b=S.autocapitalize),"placeholder"in S&&t(4,y=S.placeholder),"leadingicon"in S&&t(5,p=S.leadingicon),"trailingicon"in S&&t(6,_=S.trailingicon),"variant"in S&&t(7,M=S.variant),"disabled"in S&&t(24,x=S.disabled),"handletrailingiconclick"in S&&t(25,E=S.handletrailingiconclick),"focused"in S&&t(26,T=S.focused),"readonly"in S&&t(27,k=S.readonly),"error"in S&&t(28,A=S.error),"testid"in S&&t(8,R=S.testid),"width"in S&&t(9,L=S.width),"arialabel"in S&&t(10,D=S.arialabel),"min"in S&&t(11,X=S.min),"max"in S&&t(12,J=S.max),"step"in S&&t(13,K=S.step),"prefix"in S&&t(14,Q=S.prefix),"suffix"in S&&t(15,Ge=S.suffix),"showcounter"in S&&t(29,_e=S.showcounter),"maxcharcount"in S&&t(16,le=S.maxcharcount)},i.$$.update=()=>{i.$$.dirty[0]&33554432&&t(22,r=G(E)),i.$$.dirty[0]&67108864&&t(30,n=G(T)),i.$$.dirty[0]&134217728&&t(21,o=G(k)),i.$$.dirty[0]&268435456&&t(20,a=G(A)),i.$$.dirty[0]&16777216&&t(19,l=G(x)),i.$$.dirty[0]&536870912&&t(18,s=G(_e)),i.$$.dirty[0]&1073872896&&n&&oe&&setTimeout(()=>oe.focus(),1),i.$$.dirty[0]&131074&&oe&&c==="search"&&oe.addEventListener("search",S=>{me(S)})},[f,c,d,b,y,p,_,M,R,L,D,X,J,K,Q,Ge,le,oe,s,l,a,o,r,me,x,E,T,k,A,_e,n,qe]}class pn extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box}.container{position:relative;width:100%}@media(min-width: 640px){.container{width:var(--width)}}.goa-input,.goa-input *{box-sizing:border-box}.goa-input{box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:var(--input-border-radius);background:white;display:inline-flex;align-items:stretch;vertical-align:middle;min-width:100%}.goa-input:hover{border-color:var(--goa-color-interactive--hover)}.goa-input:active,.goa-input:focus,.goa-input:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-input.type--range{border:none}.goa-input.type--range:active,.goa-input.type--range:focus,.goa-input.type--range:focus-within{box-shadow:none}.goa-input-leading-icon{margin-left:0.5rem}.goa-input-trailing-icon{margin-right:0.5rem}input{display:inline-block;color:var(--goa-color-text);font-size:var(--input-font-size);padding:var(--input-padding);line-height:calc(40px - calc(var(--input-padding) * 2));background-color:transparent;width:0;flex:1 1 auto}input[type=text],input[type=date],input[type="datetime-local"],input[type=number]{font-family:var(--font-family)}input[readonly]{cursor:pointer}.goa-input-leading-icon+input{padding-left:0.5rem}input,input:focus,input:hover,input:active{outline:none;border:none}.goa-input--disabled,.goa-input--disabled:hover,.goa-input--disabled:active,.goa-input--disabled:focus{background-color:var(--color-gray-100);border-color:var(--color-gray-200);cursor:default;box-shadow:none}.goa-input--disabled input,.goa-input--disabled input:hover,.goa-input--disabled input:active,.goa-input--disabled input:focus{color:var(--goa-color-text-secondary)}.goa-input--disabled input:hover{cursor:default !important}.prefix,.suffix{background-color:var(--color-gray-100);padding:0 0.75rem;display:flex;align-items:center}.prefix{border-top-left-radius:var(--input-border-radius);border-bottom-left-radius:var(--input-border-radius);border-right:1px solid var(--color-gray-600)}.suffix{border-top-right-radius:var(--input-border-radius);border-bottom-right-radius:var(--input-border-radius);border-left:1px solid var(--color-gray-600)}input.input--goa{display:block;border:none;flex:1 1 auto}.variant--bare{border:none}.variant--bare:focus,.variant--bare:active,.variant--bare:focus-within{box-shadow:none}.counter{position:absolute;padding-top:0.25rem;right:0;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button{position:relative;right:var(--search-icon-offset);cursor:pointer;-webkit-appearance:none;height:1.2rem;width:1.2rem;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23333" d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"/></svg>')
57
57
  center center no-repeat}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},vn,mn,N,{type:1,name:2,value:0,autocapitalize:3,placeholder:4,leadingicon:5,trailingicon:6,variant:7,disabled:24,handletrailingiconclick:25,focused:26,readonly:27,error:28,testid:8,width:9,arialabel:10,min:11,max:12,step:13,prefix:14,suffix:15,showcounter:29,maxcharcount:16},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","name","value","autocapitalize","placeholder","leadingicon","trailingicon","variant","disabled","handletrailingiconclick","focused","readonly","error","testid","width","arialabel","min","max","step","prefix","suffix","showcounter","maxcharcount"]}get type(){return this.$$.ctx[1]}set type(e){this.$$set({type:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get autocapitalize(){return this.$$.ctx[3]}set autocapitalize(e){this.$$set({autocapitalize:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get leadingicon(){return this.$$.ctx[5]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[6]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get variant(){return this.$$.ctx[7]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[24]}set disabled(e){this.$$set({disabled:e}),h()}get handletrailingiconclick(){return this.$$.ctx[25]}set handletrailingiconclick(e){this.$$set({handletrailingiconclick:e}),h()}get focused(){return this.$$.ctx[26]}set focused(e){this.$$set({focused:e}),h()}get readonly(){return this.$$.ctx[27]}set readonly(e){this.$$set({readonly:e}),h()}get error(){return this.$$.ctx[28]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[8]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[9]}set width(e){this.$$set({width:e}),h()}get arialabel(){return this.$$.ctx[10]}set arialabel(e){this.$$set({arialabel:e}),h()}get min(){return this.$$.ctx[11]}set min(e){this.$$set({min:e}),h()}get max(){return this.$$.ctx[12]}set max(e){this.$$set({max:e}),h()}get step(){return this.$$.ctx[13]}set step(e){this.$$set({step:e}),h()}get prefix(){return this.$$.ctx[14]}set prefix(e){this.$$set({prefix:e}),h()}get suffix(){return this.$$.ctx[15]}set suffix(e){this.$$set({suffix:e}),h()}get showcounter(){return this.$$.ctx[29]}set showcounter(e){this.$$set({showcounter:e}),h()}get maxcharcount(){return this.$$.ctx[16]}set maxcharcount(e){this.$$set({maxcharcount:e}),h()}}customElements.define("goa-input",pn);function Ut(i){let e,t,r;return{c(){e=m("div"),e.innerHTML='<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 26C20.1797 26 26 20.1797 26 13C26 5.8203 20.1797 0 13 0C5.8203 0 0 5.8203 0 13C0 20.1797 5.8203 26 13 26Z" fill="#00AAD2"></path><path d="M16.9764 17.7174C15.942 17.3358 14.9325 16.8896 13.9539 16.3817C14.8446 16.0551 15.7131 15.6708 16.5539 15.2312C16.6398 16.0688 16.7831 16.8995 16.9829 17.7174H16.9764ZM22.5339 7.42143C22.1016 7.36618 22.3259 7.56931 22.2089 8.13968C21.863 9.3075 21.2806 10.3917 20.4978 11.3248C19.7151 12.258 18.7487 13.0201 17.6589 13.5639C17.3972 10.9368 17.5336 8.28529 18.0635 5.69893C18.5104 4.07393 19.0385 4.3778 18.3885 4.03818C17.6946 3.68068 16.9471 4.15356 16.3443 5.35931C14.4174 9.81946 11.7695 13.932 8.50689 17.5322C7.96404 18.2422 7.16875 18.7161 6.28592 18.8556C5.40309 18.9951 4.50044 18.7894 3.76514 18.2813C3.43039 17.9986 3.30689 18.4357 3.72289 18.8826C4.47366 19.5882 5.47211 19.9699 6.50216 19.945C7.53222 19.92 8.51102 19.4905 9.22677 18.7493C12.0405 15.3939 14.429 11.7038 16.3378 7.76268C16.1901 9.91268 16.2243 12.0713 16.4401 14.2156C15.4158 14.7181 14.3475 15.1256 13.2486 15.4327C12.6181 15.5952 12.2281 15.8552 12.2168 16.1461C12.2054 16.4711 12.6279 16.7359 13.2405 17.0252C14.3293 17.5419 17.5191 19.0499 18.3056 19.5066C18.9784 19.8966 19.3066 19.5927 19.5065 19.1702C19.7665 18.6209 19.0531 18.3041 18.369 18.0961C18.0632 16.9353 17.8555 15.7508 17.7483 14.5552C19.4404 13.5939 20.8636 12.2226 21.8871 10.5674C22.1817 9.98406 22.4001 9.36529 22.5371 8.7263C22.6338 8.3321 22.6602 7.92393 22.6151 7.52056C22.6151 7.52056 22.6038 7.43281 22.5371 7.42468" fill="white"></path></svg>',t=H(),r=m("div"),r.innerHTML='An official site of the <a href="https://www.alberta.ca/index.aspx">Alberta Government</a>',u(e,"class","service-type service-type--live"),u(r,"data-testid","type"),u(r,"class","site-text")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},d(n){n&&z(e),n&&z(t),n&&z(r)}}}function Zt(i){let e,t=Yt(i[0])+"",r,n,o,a,l,s,c,d=i[2]&&Kt(i);return{c(){e=m("div"),r=F(t),o=H(),a=m("div"),l=F("This is a new "),s=m("a"),s.textContent="Alberta Government",c=F(` service
58
- `),d&&d.c(),u(e,"data-testid","type"),u(e,"class",n="service-type service-type--"+i[0].toLowerCase()),u(s,"href","https://www.alberta.ca/index.aspx"),u(a,"data-testid","site-text"),u(a,"class","site-text")},m(f,b){v(f,e,b),g(e,r),v(f,o,b),v(f,a,b),g(a,l),g(a,s),g(a,c),d&&d.m(a,null)},p(f,b){b&1&&t!==(t=Yt(f[0])+"")&&q(r,t),b&1&&n!==(n="service-type service-type--"+f[0].toLowerCase())&&u(e,"class",n),f[2]?d?d.p(f,b):(d=Kt(f),d.c(),d.m(a,null)):d&&(d.d(1),d=null)},d(f){f&&z(e),f&&z(o),f&&z(a),d&&d.d()}}}function Kt(i){let e,t,r,n;return{c(){e=m("span"),t=F("\u2014 help us improve it by giving "),r=m("a"),n=F("feedback"),u(r,"href",i[2]),u(e,"data-testid","feedback")},m(o,a){v(o,e,a),g(e,t),g(e,r),g(r,n)},p(o,a){a&4&&u(r,"href",o[2])},d(o){o&&z(e)}}}function Xt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"data-testid","version"),u(e,"class","version")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function wn(i){let e,t,r=["alpha","beta"].includes(i[0]),n,o,a,l=i[0]==="live"&&Ut(),s=r&&Zt(i),c=i[1]&&Xt(i);return{c(){e=m("header"),l&&l.c(),t=H(),s&&s.c(),n=H(),o=m("div"),a=H(),c&&c.c(),this.c=p,u(o,"class","spacer"),u(e,"class","goa-official-site-header")},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),s&&s.m(e,null),g(e,n),g(e,o),g(e,a),c&&c.m(e,null)},p(d,[f]){d[0]==="live"?l||(l=Ut(),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&1&&(r=["alpha","beta"].includes(d[0])),r?s?s.p(d,f):(s=Zt(d),s.c(),s.m(e,n)):s&&(s.d(1),s=null),d[1]?c?c.p(d,f):(c=Xt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null)},i:p,o:p,d(d){d&&z(e),l&&l.d(),s&&s.d(),c&&c.d()}}}function Yt(i){return!i||i&&i.length===0?"":i[0].toUpperCase()+i.slice(1)}function yn(i,e,t){let{type:r}=e,{version:n}=e,{feedbackurl:o}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"version"in a&&t(1,n=a.version),"feedbackurl"in a&&t(2,o=a.feedbackurl)},[r,n,o]}class _n extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}a{color:var(--goa-color-interactive);cursor:pointer}a:hover{color:var(--goa-color-interactive--hover)}a:focus{outline-width:thin;outline-style:solid;outline-color:var(--goa-color-interactive--hover);outline-offset:0px}.goa-official-site-header{display:flex;font-size:var(--fs-sm);background-color:var(--color-gray-100);align-items:center;justify-content:space-between;padding:0.5rem 1.5rem}@media(max-width: 640px){.goa-official-site-header{padding:0.5rem 1rem;align-items:start}}.spacer{flex:1 1 auto}.version{color:var(--goa-color-text-secondary);padding-left:1rem;line-height:1.25rem}.service-type{font-weight:bold;padding:0.25rem;display:flex;margin-right:1rem;line-height:initial}.service-type--alpha{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.service-type--beta{background-color:var(--goa-color-brand);color:var(--goa-color-text-light)}.service-type--live{padding:0}.site-text{color:var(--goa-color-text);line-height:1.25rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},yn,wn,N,{type:0,version:1,feedbackurl:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","version","feedbackurl"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get version(){return this.$$.ctx[1]}set version(e){this.$$set({version:e}),h()}get feedbackurl(){return this.$$.ctx[2]}set feedbackurl(e){this.$$set({feedbackurl:e}),h()}}customElements.define("goa-microsite-header",_n);function Jt(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,w,_,M,x,E,T,k,A,R=i[0]&&Qt(i),L=i[3]&&$t(i);function D(K,Q){return K[6]?xn:kn}let X=D(i),J=X(i);return{c(){e=m("goa-focus-trap"),t=m("div"),r=m("div"),n=H(),o=m("div"),R&&R.c(),a=H(),L&&L.c(),l=H(),s=m("div"),J.c(),c=H(),d=m("slot"),f=H(),b=m("div"),b.innerHTML='<slot name="actions"></slot>',u(r,"data-testid","modal-overlay"),u(r,"class","modal-overlay"),u(s,"data-testid","modal-content"),u(s,"class","modal-content"),u(b,"data-testid","modal-actions"),u(b,"class","modal-actions"),u(o,"class","modal-pane"),u(t,"data-testid","modal"),u(t,"class","modal"),u(t,"style",_=""+((i[2]&&`--width: ${i[2]};`)+";")),C(e,"active",i[1])},m(K,Q){v(K,e,Q),g(e,t),g(t,r),g(t,n),g(t,o),R&&R.m(o,null),g(o,a),L&&L.m(o,null),g(o,l),g(o,s),J.m(s,null),g(s,c),g(s,d),g(o,f),g(o,b),T=!0,k||(A=[U(r,"click",i[7]),$e(M=vt.call(null,t,{enable:i[5]}))],k=!0)},p(K,Q){i=K,i[0]?R?R.p(i,Q):(R=Qt(i),R.c(),R.m(o,a)):R&&(R.d(1),R=null),i[3]?L?L.p(i,Q):(L=$t(i),L.c(),L.m(o,l)):L&&(L.d(1),L=null),X!==(X=D(i))&&(J.d(1),J=X(i),J&&(J.c(),J.m(s,c))),(!T||Q&4&&_!==(_=""+((i[2]&&`--width: ${i[2]};`)+";")))&&u(t,"style",_),M&&ue(M.update)&&Q&32&&M.update.call(null,{enable:i[5]}),(!T||Q&2)&&C(e,"active",i[1])},i(K){T||(re(()=>{w&&w.end(1),y=st(o,bt,{duration:i[4],y:200}),y.start()}),re(()=>{E&&E.end(1),x=st(t,pe,{duration:i[4]}),x.start()}),T=!0)},o(K){y&&y.invalidate(),w=ct(o,bt,{delay:i[4],duration:i[4],y:-100}),x&&x.invalidate(),E=ct(t,pe,{delay:i[4],duration:i[4]}),T=!1},d(K){K&&z(e),R&&R.d(),L&&L.d(),J.d(),K&&w&&w.end(),K&&E&&E.end(),k=!1,$(A)}}}function Qt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"data-testid","modal-title"),u(e,"class","modal-title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function $t(i){let e,t,r,n;return{c(){e=m("div"),t=m("goa-icon-button"),C(t,"data-testid","modal-close-button"),C(t,"type","close"),u(e,"class","modal-close")},m(o,a){v(o,e,a),g(e,t),r||(n=U(t,"click",i[7]),r=!0)},p,d(o){o&&z(e),r=!1,n()}}}function kn(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",V(e,"margin","1.75rem")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function xn(i){let e;return{c(){e=m("goa-scrollable"),e.innerHTML="<slot></slot>",C(e,"direction","vertical"),C(e,"height","50"),C(e,"hpadding","1.75")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function En(i){let e,t,r=i[5]&&Jt(i);return{c(){r&&r.c(),e=ie(),this.c=p},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=Jt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(be(),Z(r,1,1,()=>{r=null}),ve())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function zn(i,e,t){let r,n,o,a,{heading:l}=e,{closable:s}=e,{scrollable:c}=e,{open:d}=e,{transition:f}=e,{width:b}=e;Y(()=>{console.log("in the modal v2")});function y(w){!r||(w.target.dispatchEvent(new CustomEvent("_close",{composed:!0})),w.stopPropagation())}return i.$$set=w=>{"heading"in w&&t(0,l=w.heading),"closable"in w&&t(8,s=w.closable),"scrollable"in w&&t(9,c=w.scrollable),"open"in w&&t(1,d=w.open),"transition"in w&&t(10,f=w.transition),"width"in w&&t(2,b=w.width)},i.$$.update=()=>{i.$$.dirty&256&&t(3,r=G(s)),i.$$.dirty&512&&t(6,n=G(c)),i.$$.dirty&2&&t(5,o=G(d)),i.$$.dirty&1024&&t(4,a=f==="none"?0:f==="slow"?400:200)},[l,d,b,r,a,o,n,y,s,c,f]}class Cn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.modal{font-family:var(--font-family);position:fixed;inset:0;display:flex;align-items:center;justify-content:center;height:100vh;width:100%;z-index:100}.modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.2);z-index:1000}.modal-pane{position:relative;background-color:#fff;z-index:1001;width:90%;margin:1rem;box-shadow:var(--shadow-2);border-radius:4px;max-height:90%}@media(min-width: 640px){.modal-pane{width:var(--width, 60ch);max-height:80%}}.modal-actions{text-align:right;padding:0 1.75rem;margin:1.75rem 0;flex:1 1 auto}.modal-close{position:absolute;top:1rem;right:1rem}.modal-title{font-size:var(--fs-xl);padding-bottom:1rem;padding:0 1.75rem;margin:1.75rem 0;margin-right:40px;flex:0 0 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},zn,En,N,{heading:0,closable:8,scrollable:9,open:1,transition:10,width:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","closable","scrollable","open","transition","width"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get closable(){return this.$$.ctx[8]}set closable(e){this.$$set({closable:e}),h()}get scrollable(){return this.$$.ctx[9]}set scrollable(e){this.$$set({scrollable:e}),h()}get open(){return this.$$.ctx[1]}set open(e){this.$$set({open:e}),h()}get transition(){return this.$$.ctx[10]}set transition(e){this.$$set({transition:e}),h()}get width(){return this.$$.ctx[2]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-modal",Cn);function ei(i){let e,t,r,n,o,a,l,s,c,d,f,b,y;return{c(){e=m("div"),t=m("div"),r=m("goa-icon"),n=H(),o=m("div"),o.innerHTML="<slot></slot>",a=H(),l=m("div"),s=m("goa-icon-button"),C(r,"type",i[2]),C(r,"inverted",""),u(t,"class","icon"),u(o,"class","content"),C(s,"type","close"),C(s,"inverted",""),u(l,"class","close"),u(e,"class",c="notification "+i[0])},m(w,_){v(w,e,_),g(e,t),g(t,r),g(e,n),g(e,o),g(e,a),g(e,l),g(l,s),f=!0,b||(y=U(s,"click",i[3]),b=!0)},p(w,_){(!f||_&4)&&C(r,"type",w[2]),(!f||_&1&&c!==(c="notification "+w[0]))&&u(e,"class",c)},i(w){f||(re(()=>{d||(d=Pe(e,pe,{},!0)),d.run(1)}),f=!0)},o(w){d||(d=Pe(e,pe,{},!1)),d.run(0),f=!1},d(w){w&&z(e),w&&d&&d.end(),b=!1,y()}}}function Mn(i){let e,t,r=i[1]&&ei(i);return{c(){r&&r.c(),e=ie(),this.c=p},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[1]?r?(r.p(n,o),o&2&&W(r,1)):(r=ei(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(be(),Z(r,1,1,()=>{r=null}),ve())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function Ln(i,e,t){let r,{type:n}=e,o=!0;function a(){t(1,o=!1)}return i.$$set=l=>{"type"in l&&t(0,n=l.type)},i.$$.update=()=>{i.$$.dirty&1&&t(2,r=n==="emergency"?"warning":n==="caution"?"alert-circle":n==="information"?"information-circle":"calendar")},[n,o,r,a]}class Tn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{padding:1.5rem;display:flex;align-items:center;gap:1rem;border-radius:3px}.emergency{background-color:var(--goa-color-status-emergency);color:var(--color-white)}.caution{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info);color:var(--color-white)}.event{background-color:var(--goa-color-status-success);color:var(--color-white)}.icon{flex:0 0 auto;align-self:flex-start}.content{flex:1 1 auto}.close{flex:0 0 auto;align-self:flex-start}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ln,Mn,N,{type:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-notification",Tn);const Rn=/^[1-9]+[0-9]*(px|em|rem|ch|vh|vw|%)$/;function An(i){return Rn.test(i)}function Hn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=p,u(e,"class","page-content"),u(e,"style",r=`--max-width: ${i[0]}`)},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&1&&r!==(r=`--max-width: ${n[0]}`)&&u(e,"style",r)},i:p,o:p,d(n){n&&z(e)}}}function In(i,e,t){const r={full:"100%"};let{width:n}=e,{_width:o}=e;function a(l){return!!(["full"].includes(n)||An(l))}return Y(()=>{if(!a(n))throw"Invalid PageBlock width";t(0,o=r[n]||n)}),i.$$set=l=>{"width"in l&&t(1,n=l.width),"_width"in l&&t(0,o=l._width)},[o,n]}class Sn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--max-width);margin:0 auto;padding:0 1.75rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},In,Hn,N,{width:1,_width:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","_width"]}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get _width(){return this.$$.ctx[0]}set _width(e){this.$$set({_width:e}),h()}}customElements.define("goa-page-block",Sn);const ti="bind";function ii(i,e,t){const r=i.slice();return r[14]=e[t],r}function ri(i,e){let t,r,n,o,a,l,s,c,d=(e[14].label||e[14].value)+"",f,b,y,w,_;function M(){return e[11](e[14])}return{key:i,first:null,c(){t=m("label"),r=m("input"),a=H(),l=m("div"),s=H(),c=m("span"),f=F(d),b=H(),u(r,"type","radio"),u(r,"name",e[1]),r.value=n=e[14].value,r.disabled=e[7],r.checked=o=e[14].value===e[0],u(l,"class","goa-radio-icon"),u(c,"class","goa-radio-label"),u(t,"data-testid",y="radio-option-"+e[14].value),u(t,"class","goa-radio"),B(t,"goa-radio--disabled",e[7]),B(t,"goa-radio--error",e[5]),this.first=t},m(x,E){v(x,t,E),g(t,r),g(t,a),g(t,l),g(t,s),g(t,c),g(c,f),g(t,b),w||(_=U(r,"change",M),w=!0)},p(x,E){e=x,E&2&&u(r,"name",e[1]),E&16&&n!==(n=e[14].value)&&(r.value=n),E&128&&(r.disabled=e[7]),E&17&&o!==(o=e[14].value===e[0])&&(r.checked=o),E&16&&d!==(d=(e[14].label||e[14].value)+"")&&q(f,d),E&16&&y!==(y="radio-option-"+e[14].value)&&u(t,"data-testid",y),E&128&&B(t,"goa-radio--disabled",e[7]),E&32&&B(t,"goa-radio--error",e[5])},d(x){x&&z(t),w=!1,_()}}}function Dn(i){let e,t,r,n=[],o=new Map,a,l=i[4];const s=c=>c[14].value;for(let c=0;c<l.length;c+=1){let d=ii(i,l,c),f=s(d);o.set(f,n[c]=ri(f,d))}return{c(){e=m("div"),t=m("slot"),r=H();for(let c=0;c<n.length;c+=1)n[c].c();this.c=p,u(e,"class",a=`goa-radio-group--${i[2]}`),u(e,"data-testid",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r);for(let f=0;f<n.length;f+=1)n[f].m(e,null);i[12](e)},p(c,[d]){d&435&&(l=c[4],n=Ci(n,d,s,1,c,l,o,e,zi,ri,null,ii)),d&4&&a!==(a=`goa-radio-group--${c[2]}`)&&u(e,"class",a),d&8&&u(e,"data-testid",c[3])},i:p,o:p,d(c){c&&z(e);for(let d=0;d<n.length;d+=1)n[d].d();i[12](null)}}}function Bn(i,e,t){let r,{name:n}=e,{value:o}=e,{orientation:a="vertical"}=e,{disabled:l="false"}=e,{error:s="false"}=e,{testid:c=""}=e,d=[],f,b,y;Y(()=>{const x=10;let E=0;const T=setInterval(async()=>{E++,n&&(b=kt(n),b.subscribe(k=>{switch(k==null?void 0:k.type){case ti:t(4,d=[...d,k])}}),clearInterval(T)),E>x&&(console.error("goa-radio: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(T))},10)});function w(x){x!==o&&(t(0,o=x),y.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:n,value:o}})))}nt(()=>{Et(n)});const _=x=>w(x.value);function M(x){ee[x?"unshift":"push"](()=>{y=x,t(6,y)})}return i.$$set=x=>{"name"in x&&t(1,n=x.name),"value"in x&&t(0,o=x.value),"orientation"in x&&t(2,a=x.orientation),"disabled"in x&&t(9,l=x.disabled),"error"in x&&t(10,s=x.error),"testid"in x&&t(3,c=x.testid)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(l)),i.$$.dirty&1024&&t(5,f=G(s))},[o,n,a,c,d,f,y,r,w,l,s,_,M]}class Nn extends j{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-radio-group--horizontal{display:flex;flex-direction:row}.goa-radio-group--vertical{display:inline-block}label.goa-radio{--goa-radio-outline-width:3px;--goa-radio-diameter:1.5rem;--goa-radio-border-width:1px;--goa-radio-border-width--checked:7px;display:inline-block;box-sizing:border-box;display:flex;align-items:center;min-height:3rem}.goa-radio:hover{cursor:pointer}.goa-radio *,.goa-radio *:before,.goa-radio *:after{box-sizing:border-box}.goa-radio input[type="radio"]{width:0;height:0;margin:0;opacity:0}input[type="radio"]:hover~.goa-radio-icon{border-color:var(--goa-color-interactive--hover)}input[type="radio"]:focus~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio-label{padding:0.5rem;font-weight:var(--fw-regular)}.goa-radio-icon{display:inline-block;height:var(--goa-radio-diameter);width:var(--goa-radio-diameter);border-radius:50%;background-color:#fff;transition:box-shadow 100ms ease-in-out;flex:0 0 auto}.goa-radio:focus>input:not(:disabled)~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio--disabled{opacity:0.4}.goa-radio--disabled:hover{cursor:default}input[type="radio"]:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}input[type="radio"]:not(:checked)~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}.goa-radio--error input[type="radio"]:checked~.goa-radio-icon{border:7px solid var(--goa-color-status-emergency)}.goa-radio--error input[type="radio"]:not(:checked)~.goa-radio-icon{border:2px solid var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Bn,Dn,N,{name:1,value:0,orientation:2,disabled:9,error:10,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","orientation","disabled","error","testid"]}get name(){return this.$$.ctx[1]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get orientation(){return this.$$.ctx[2]}set orientation(e){this.$$set({orientation:e}),h()}get disabled(){return this.$$.ctx[9]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[10]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-radio-group",Nn);function jn(i){return{c(){this.c=p},m:p,p,i:p,o:p,d:p}}function On(i,e,t){let{value:r}=e,{label:n}=e,{name:o}=e,a;return Y(()=>{const l=10;let s=0;const c=setInterval(()=>{if(s++,o){if(a=xt(o),!a)return;a.notify({type:ti,value:r,label:n}),clearInterval(c)}s>l&&(console.error("goa-radio-item: missing the required `name` attribute. It must match the parent's name attribute."),clearInterval(c))},10)}),i.$$set=l=>{"value"in l&&t(0,r=l.value),"label"in l&&t(1,n=l.label),"name"in l&&t(2,o=l.name)},[r,n,o]}class Pn extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},On,jn,N,{value:0,label:1,name:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["value","label","name"]}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[1]}set label(e){this.$$set({label:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}}customElements.define("goa-radio-item",Pn);function Fn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=p,u(e,"class","goa-scrollable"),u(e,"style",r=`
58
+ `),d&&d.c(),u(e,"data-testid","type"),u(e,"class",n="service-type service-type--"+i[0].toLowerCase()),u(s,"href","https://www.alberta.ca/index.aspx"),u(a,"data-testid","site-text"),u(a,"class","site-text")},m(f,b){v(f,e,b),g(e,r),v(f,o,b),v(f,a,b),g(a,l),g(a,s),g(a,c),d&&d.m(a,null)},p(f,b){b&1&&t!==(t=Yt(f[0])+"")&&q(r,t),b&1&&n!==(n="service-type service-type--"+f[0].toLowerCase())&&u(e,"class",n),f[2]?d?d.p(f,b):(d=Kt(f),d.c(),d.m(a,null)):d&&(d.d(1),d=null)},d(f){f&&z(e),f&&z(o),f&&z(a),d&&d.d()}}}function Kt(i){let e,t,r,n;return{c(){e=m("span"),t=F("\u2014 help us improve it by giving "),r=m("a"),n=F("feedback"),u(r,"href",i[2]),u(e,"data-testid","feedback")},m(o,a){v(o,e,a),g(e,t),g(e,r),g(r,n)},p(o,a){a&4&&u(r,"href",o[2])},d(o){o&&z(e)}}}function Xt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"data-testid","version"),u(e,"class","version")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&z(e)}}}function wn(i){let e,t,r=["alpha","beta"].includes(i[0]),n,o,a,l=i[0]==="live"&&Ut(),s=r&&Zt(i),c=i[1]&&Xt(i);return{c(){e=m("header"),l&&l.c(),t=H(),s&&s.c(),n=H(),o=m("div"),a=H(),c&&c.c(),this.c=w,u(o,"class","spacer"),u(e,"class","goa-official-site-header")},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),s&&s.m(e,null),g(e,n),g(e,o),g(e,a),c&&c.m(e,null)},p(d,[f]){d[0]==="live"?l||(l=Ut(),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&1&&(r=["alpha","beta"].includes(d[0])),r?s?s.p(d,f):(s=Zt(d),s.c(),s.m(e,n)):s&&(s.d(1),s=null),d[1]?c?c.p(d,f):(c=Xt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null)},i:w,o:w,d(d){d&&z(e),l&&l.d(),s&&s.d(),c&&c.d()}}}function Yt(i){return!i||i&&i.length===0?"":i[0].toUpperCase()+i.slice(1)}function yn(i,e,t){let{type:r}=e,{version:n}=e,{feedbackurl:o}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"version"in a&&t(1,n=a.version),"feedbackurl"in a&&t(2,o=a.feedbackurl)},[r,n,o]}class _n extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}a{color:var(--goa-color-interactive);cursor:pointer}a:hover{color:var(--goa-color-interactive--hover)}a:focus{outline-width:thin;outline-style:solid;outline-color:var(--goa-color-interactive--hover);outline-offset:0px}.goa-official-site-header{display:flex;font-size:var(--fs-sm);background-color:var(--color-gray-100);align-items:center;justify-content:space-between;padding:0.5rem 1.5rem}@media(max-width: 640px){.goa-official-site-header{padding:0.5rem 1rem;align-items:start}}.spacer{flex:1 1 auto}.version{color:var(--goa-color-text-secondary);padding-left:1rem;line-height:1.25rem}.service-type{font-weight:bold;padding:0.25rem;display:flex;margin-right:1rem;line-height:initial}.service-type--alpha{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.service-type--beta{background-color:var(--goa-color-brand);color:var(--goa-color-text-light)}.service-type--live{padding:0}.site-text{color:var(--goa-color-text);line-height:1.25rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},yn,wn,N,{type:0,version:1,feedbackurl:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","version","feedbackurl"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get version(){return this.$$.ctx[1]}set version(e){this.$$set({version:e}),h()}get feedbackurl(){return this.$$.ctx[2]}set feedbackurl(e){this.$$set({feedbackurl:e}),h()}}customElements.define("goa-microsite-header",_n);function Jt(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,M,x,E,T,k,A,R=i[0]&&Qt(i),L=i[3]&&$t(i);function D(K,Q){return K[6]?xn:kn}let X=D(i),J=X(i);return{c(){e=m("goa-focus-trap"),t=m("div"),r=m("div"),n=H(),o=m("div"),R&&R.c(),a=H(),L&&L.c(),l=H(),s=m("div"),J.c(),c=H(),d=m("slot"),f=H(),b=m("div"),b.innerHTML='<slot name="actions"></slot>',u(r,"data-testid","modal-overlay"),u(r,"class","modal-overlay"),u(s,"data-testid","modal-content"),u(s,"class","modal-content"),u(b,"data-testid","modal-actions"),u(b,"class","modal-actions"),u(o,"class","modal-pane"),u(t,"data-testid","modal"),u(t,"class","modal"),u(t,"style",_=""+((i[2]&&`--width: ${i[2]};`)+";")),C(e,"active",i[1])},m(K,Q){v(K,e,Q),g(e,t),g(t,r),g(t,n),g(t,o),R&&R.m(o,null),g(o,a),L&&L.m(o,null),g(o,l),g(o,s),J.m(s,null),g(s,c),g(s,d),g(o,f),g(o,b),T=!0,k||(A=[U(r,"click",i[7]),$e(M=vt.call(null,t,{enable:i[5]}))],k=!0)},p(K,Q){i=K,i[0]?R?R.p(i,Q):(R=Qt(i),R.c(),R.m(o,a)):R&&(R.d(1),R=null),i[3]?L?L.p(i,Q):(L=$t(i),L.c(),L.m(o,l)):L&&(L.d(1),L=null),X!==(X=D(i))&&(J.d(1),J=X(i),J&&(J.c(),J.m(s,c))),(!T||Q&4&&_!==(_=""+((i[2]&&`--width: ${i[2]};`)+";")))&&u(t,"style",_),M&&ue(M.update)&&Q&32&&M.update.call(null,{enable:i[5]}),(!T||Q&2)&&C(e,"active",i[1])},i(K){T||(re(()=>{p&&p.end(1),y=st(o,bt,{duration:i[4],y:200}),y.start()}),re(()=>{E&&E.end(1),x=st(t,we,{duration:i[4]}),x.start()}),T=!0)},o(K){y&&y.invalidate(),p=ct(o,bt,{delay:i[4],duration:i[4],y:-100}),x&&x.invalidate(),E=ct(t,we,{delay:i[4],duration:i[4]}),T=!1},d(K){K&&z(e),R&&R.d(),L&&L.d(),J.d(),K&&p&&p.end(),K&&E&&E.end(),k=!1,$(A)}}}function Qt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"data-testid","modal-title"),u(e,"class","modal-title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function $t(i){let e,t,r,n;return{c(){e=m("div"),t=m("goa-icon-button"),C(t,"data-testid","modal-close-button"),C(t,"type","close"),u(e,"class","modal-close")},m(o,a){v(o,e,a),g(e,t),r||(n=U(t,"click",i[7]),r=!0)},p:w,d(o){o&&z(e),r=!1,n()}}}function kn(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",V(e,"margin","1.75rem")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function xn(i){let e;return{c(){e=m("goa-scrollable"),e.innerHTML="<slot></slot>",C(e,"direction","vertical"),C(e,"height","50"),C(e,"hpadding","1.75")},m(t,r){v(t,e,r)},d(t){t&&z(e)}}}function En(i){let e,t,r=i[5]&&Jt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=Jt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function zn(i,e,t){let r,n,o,a,{heading:l}=e,{closable:s}=e,{scrollable:c}=e,{open:d}=e,{transition:f}=e,{width:b}=e;Y(()=>{console.log("in the modal v2")});function y(p){!r||(p.target.dispatchEvent(new CustomEvent("_close",{composed:!0})),p.stopPropagation())}return i.$$set=p=>{"heading"in p&&t(0,l=p.heading),"closable"in p&&t(8,s=p.closable),"scrollable"in p&&t(9,c=p.scrollable),"open"in p&&t(1,d=p.open),"transition"in p&&t(10,f=p.transition),"width"in p&&t(2,b=p.width)},i.$$.update=()=>{i.$$.dirty&256&&t(3,r=G(s)),i.$$.dirty&512&&t(6,n=G(c)),i.$$.dirty&2&&t(5,o=G(d)),i.$$.dirty&1024&&t(4,a=f==="none"?0:f==="slow"?400:200)},[l,d,b,r,a,o,n,y,s,c,f]}class Cn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.modal{font-family:var(--font-family);position:fixed;inset:0;display:flex;align-items:center;justify-content:center;height:100vh;width:100%;z-index:100}.modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.2);z-index:1000}.modal-pane{position:relative;background-color:#fff;z-index:1001;width:90%;margin:1rem;box-shadow:var(--shadow-2);border-radius:4px;max-height:90%}@media(min-width: 640px){.modal-pane{width:var(--width, 60ch);max-height:80%}}.modal-actions{text-align:right;padding:0 1.75rem;margin:1.75rem 0;flex:1 1 auto}.modal-close{position:absolute;top:1rem;right:1rem}.modal-title{font-size:var(--fs-xl);padding-bottom:1rem;padding:0 1.75rem;margin:1.75rem 0;margin-right:40px;flex:0 0 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},zn,En,N,{heading:0,closable:8,scrollable:9,open:1,transition:10,width:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","closable","scrollable","open","transition","width"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get closable(){return this.$$.ctx[8]}set closable(e){this.$$set({closable:e}),h()}get scrollable(){return this.$$.ctx[9]}set scrollable(e){this.$$set({scrollable:e}),h()}get open(){return this.$$.ctx[1]}set open(e){this.$$set({open:e}),h()}get transition(){return this.$$.ctx[10]}set transition(e){this.$$set({transition:e}),h()}get width(){return this.$$.ctx[2]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-modal",Cn);function ei(i){let e,t,r,n,o,a,l,s,c,d,f,b,y;return{c(){e=m("div"),t=m("div"),r=m("goa-icon"),n=H(),o=m("div"),o.innerHTML="<slot></slot>",a=H(),l=m("div"),s=m("goa-icon-button"),C(r,"type",i[2]),C(r,"inverted",""),u(t,"class","icon"),u(o,"class","content"),C(s,"type","close"),C(s,"inverted",""),u(l,"class","close"),u(e,"class",c="notification "+i[0])},m(p,_){v(p,e,_),g(e,t),g(t,r),g(e,n),g(e,o),g(e,a),g(e,l),g(l,s),f=!0,b||(y=U(s,"click",i[3]),b=!0)},p(p,_){(!f||_&4)&&C(r,"type",p[2]),(!f||_&1&&c!==(c="notification "+p[0]))&&u(e,"class",c)},i(p){f||(re(()=>{d||(d=Pe(e,we,{},!0)),d.run(1)}),f=!0)},o(p){d||(d=Pe(e,we,{},!1)),d.run(0),f=!1},d(p){p&&z(e),p&&d&&d.end(),b=!1,y()}}}function Mn(i){let e,t,r=i[1]&&ei(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[1]?r?(r.p(n,o),o&2&&W(r,1)):(r=ei(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&z(e)}}}function Ln(i,e,t){let r,{type:n}=e,o=!0;function a(){t(1,o=!1)}return i.$$set=l=>{"type"in l&&t(0,n=l.type)},i.$$.update=()=>{i.$$.dirty&1&&t(2,r=n==="emergency"?"warning":n==="caution"?"alert-circle":n==="information"?"information-circle":"calendar")},[n,o,r,a]}class Tn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{padding:1.5rem;display:flex;align-items:center;gap:1rem;border-radius:3px}.emergency{background-color:var(--goa-color-status-emergency);color:var(--color-white)}.caution{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info);color:var(--color-white)}.event{background-color:var(--goa-color-status-success);color:var(--color-white)}.icon{flex:0 0 auto;align-self:flex-start}.content{flex:1 1 auto}.close{flex:0 0 auto;align-self:flex-start}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Ln,Mn,N,{type:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-notification",Tn);const Rn=/^[1-9]+[0-9]*(px|em|rem|ch|vh|vw|%)$/;function An(i){return Rn.test(i)}function Hn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","page-content"),u(e,"style",r=`--max-width: ${i[0]}`)},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&1&&r!==(r=`--max-width: ${n[0]}`)&&u(e,"style",r)},i:w,o:w,d(n){n&&z(e)}}}function In(i,e,t){const r={full:"100%"};let{width:n}=e,{_width:o}=e;function a(l){return!!(["full"].includes(n)||An(l))}return Y(()=>{if(!a(n))throw"Invalid PageBlock width";t(0,o=r[n]||n)}),i.$$set=l=>{"width"in l&&t(1,n=l.width),"_width"in l&&t(0,o=l._width)},[o,n]}class Sn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--max-width);margin:0 auto;padding:0 1.75rem}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},In,Hn,N,{width:1,_width:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","_width"]}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get _width(){return this.$$.ctx[0]}set _width(e){this.$$set({_width:e}),h()}}customElements.define("goa-page-block",Sn);const ti="bind";function ii(i,e,t){const r=i.slice();return r[14]=e[t],r}function ri(i,e){let t,r,n,o,a,l,s,c,d=(e[14].label||e[14].value)+"",f,b,y,p,_;function M(){return e[11](e[14])}return{key:i,first:null,c(){t=m("label"),r=m("input"),a=H(),l=m("div"),s=H(),c=m("span"),f=F(d),b=H(),u(r,"type","radio"),u(r,"name",e[1]),r.value=n=e[14].value,r.disabled=e[7],r.checked=o=e[14].value===e[0],u(l,"class","goa-radio-icon"),u(c,"class","goa-radio-label"),u(t,"data-testid",y="radio-option-"+e[14].value),u(t,"class","goa-radio"),B(t,"goa-radio--disabled",e[7]),B(t,"goa-radio--error",e[5]),this.first=t},m(x,E){v(x,t,E),g(t,r),g(t,a),g(t,l),g(t,s),g(t,c),g(c,f),g(t,b),p||(_=U(r,"change",M),p=!0)},p(x,E){e=x,E&2&&u(r,"name",e[1]),E&16&&n!==(n=e[14].value)&&(r.value=n),E&128&&(r.disabled=e[7]),E&17&&o!==(o=e[14].value===e[0])&&(r.checked=o),E&16&&d!==(d=(e[14].label||e[14].value)+"")&&q(f,d),E&16&&y!==(y="radio-option-"+e[14].value)&&u(t,"data-testid",y),E&128&&B(t,"goa-radio--disabled",e[7]),E&32&&B(t,"goa-radio--error",e[5])},d(x){x&&z(t),p=!1,_()}}}function Dn(i){let e,t,r,n=[],o=new Map,a,l=i[4];const s=c=>c[14].value;for(let c=0;c<l.length;c+=1){let d=ii(i,l,c),f=s(d);o.set(f,n[c]=ri(f,d))}return{c(){e=m("div"),t=m("slot"),r=H();for(let c=0;c<n.length;c+=1)n[c].c();this.c=w,u(e,"class",a=`goa-radio-group--${i[2]}`),u(e,"data-testid",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r);for(let f=0;f<n.length;f+=1)n[f].m(e,null);i[12](e)},p(c,[d]){d&435&&(l=c[4],n=Ci(n,d,s,1,c,l,o,e,zi,ri,null,ii)),d&4&&a!==(a=`goa-radio-group--${c[2]}`)&&u(e,"class",a),d&8&&u(e,"data-testid",c[3])},i:w,o:w,d(c){c&&z(e);for(let d=0;d<n.length;d+=1)n[d].d();i[12](null)}}}function Bn(i,e,t){let r,{name:n}=e,{value:o}=e,{orientation:a="vertical"}=e,{disabled:l="false"}=e,{error:s="false"}=e,{testid:c=""}=e,d=[],f,b,y;Y(()=>{const x=10;let E=0;const T=setInterval(async()=>{E++,n&&(b=kt(n),b.subscribe(k=>{switch(k==null?void 0:k.type){case ti:t(4,d=[...d,k])}}),clearInterval(T)),E>x&&(console.error("goa-radio: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(T))},10)});function p(x){x!==o&&(t(0,o=x),y.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:n,value:o}})))}nt(()=>{Et(n)});const _=x=>p(x.value);function M(x){ee[x?"unshift":"push"](()=>{y=x,t(6,y)})}return i.$$set=x=>{"name"in x&&t(1,n=x.name),"value"in x&&t(0,o=x.value),"orientation"in x&&t(2,a=x.orientation),"disabled"in x&&t(9,l=x.disabled),"error"in x&&t(10,s=x.error),"testid"in x&&t(3,c=x.testid)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(l)),i.$$.dirty&1024&&t(5,f=G(s))},[o,n,a,c,d,f,y,r,p,l,s,_,M]}class Nn extends j{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-radio-group--horizontal{display:flex;flex-direction:row}.goa-radio-group--vertical{display:inline-block}label.goa-radio{--goa-radio-outline-width:3px;--goa-radio-diameter:1.5rem;--goa-radio-border-width:1px;--goa-radio-border-width--checked:7px;display:inline-block;box-sizing:border-box;display:flex;align-items:center;min-height:3rem}.goa-radio:hover{cursor:pointer}.goa-radio *,.goa-radio *:before,.goa-radio *:after{box-sizing:border-box}.goa-radio input[type="radio"]{width:0;height:0;margin:0;opacity:0}input[type="radio"]:hover~.goa-radio-icon{border-color:var(--goa-color-interactive--hover)}input[type="radio"]:focus~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio-label{padding:0.5rem;font-weight:var(--fw-regular)}.goa-radio-icon{display:inline-block;height:var(--goa-radio-diameter);width:var(--goa-radio-diameter);border-radius:50%;background-color:#fff;transition:box-shadow 100ms ease-in-out;flex:0 0 auto}.goa-radio:focus>input:not(:disabled)~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio--disabled{opacity:0.4}.goa-radio--disabled:hover{cursor:default}input[type="radio"]:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}input[type="radio"]:not(:checked)~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}.goa-radio--error input[type="radio"]:checked~.goa-radio-icon{border:7px solid var(--goa-color-status-emergency)}.goa-radio--error input[type="radio"]:not(:checked)~.goa-radio-icon{border:2px solid var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Bn,Dn,N,{name:1,value:0,orientation:2,disabled:9,error:10,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","orientation","disabled","error","testid"]}get name(){return this.$$.ctx[1]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get orientation(){return this.$$.ctx[2]}set orientation(e){this.$$set({orientation:e}),h()}get disabled(){return this.$$.ctx[9]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[10]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-radio-group",Nn);function jn(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function On(i,e,t){let{value:r}=e,{label:n}=e,{name:o}=e,a;return Y(()=>{const l=10;let s=0;const c=setInterval(()=>{if(s++,o){if(a=xt(o),!a)return;a.notify({type:ti,value:r,label:n}),clearInterval(c)}s>l&&(console.error("goa-radio-item: missing the required `name` attribute. It must match the parent's name attribute."),clearInterval(c))},10)}),i.$$set=l=>{"value"in l&&t(0,r=l.value),"label"in l&&t(1,n=l.label),"name"in l&&t(2,o=l.name)},[r,n,o]}class Pn extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},On,jn,N,{value:0,label:1,name:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["value","label","name"]}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[1]}set label(e){this.$$set({label:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}}customElements.define("goa-radio-item",Pn);function Fn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-scrollable"),u(e,"style",r=`
59
59
  --max-height: ${i[3]};
60
60
  overflow-y: ${i[0]==="vertical"?"auto":"hidden"};
61
61
  overflow-x: ${i[0]==="horizontal"?"auto":"hidden"};
@@ -67,32 +67,32 @@
67
67
  overflow-x: ${n[0]==="horizontal"?"auto":"hidden"};
68
68
  margin: ${n[2]}rem 0;
69
69
  padding: 0 ${n[1]}rem;
70
- `)&&u(e,"style",r)},i:p,o:p,d(n){n&&z(e)}}}function Gn(i,e,t){let{direction:r="vertical"}=e,{hpadding:n=0}=e,{vpadding:o=0}=e,{height:a=0}=e;return i.$$set=l=>{"direction"in l&&t(0,r=l.direction),"hpadding"in l&&t(1,n=l.hpadding),"vpadding"in l&&t(2,o=l.vpadding),"height"in l&&t(3,a=l.height)},[r,n,o,a]}class qn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.goa-scrollable{scroll-behavior:smooth;max-height:calc(100vh * var(--max-height, 100) / 100)}.goa-scrollable::-webkit-scrollbar{width:6px}.goa-scrollable::-webkit-scrollbar-track{background:#f1f1f1}.goa-scrollable::-webkit-scrollbar-thumb{background:#888}.goa-scrollable::-webkit-scrollbar-thumb:hover{background:#555}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Gn,Fn,N,{direction:0,hpadding:1,vpadding:2,height:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["direction","hpadding","vpadding","height"]}get direction(){return this.$$.ctx[0]}set direction(e){this.$$set({direction:e}),h()}get hpadding(){return this.$$.ctx[1]}set hpadding(e){this.$$set({hpadding:e}),h()}get vpadding(){return this.$$.ctx[2]}set vpadding(e){this.$$set({vpadding:e}),h()}get height(){return this.$$.ctx[3]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-scrollable",qn);function ni(i,e,t){const r=i.slice();return r[4]=e[t],r}function Vn(i){let e,t;return{c(){e=m("div"),u(e,"class",t="skeleton "+i[3]+` ${i[3]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&10&&t!==(t="skeleton "+r[3]+` ${r[3]}-${r[1]}`)&&u(e,"class",t)},i:p,o:p,d(r){r&&z(e)}}}function Wn(i){let e,t,r=Array(i[2]),n=[];for(let a=0;a<r.length;a+=1)n[a]=oi(ni(i,r,a));const o=a=>Z(n[a],1,1,()=>{n[a]=null});return{c(){for(let a=0;a<n.length;a+=1)n[a].c();e=ie()},m(a,l){for(let s=0;s<n.length;s+=1)n[s].m(a,l);v(a,e,l),t=!0},p(a,l){if(l&6){r=Array(a[2]);let s;for(s=0;s<r.length;s+=1){const c=ni(a,r,s);n[s]?(n[s].p(c,l),W(n[s],1)):(n[s]=oi(c),n[s].c(),W(n[s],1),n[s].m(e.parentNode,e))}for(be(),s=r.length;s<n.length;s+=1)o(s);ve()}},i(a){if(!t){for(let l=0;l<r.length;l+=1)W(n[l]);t=!0}},o(a){n=n.filter(Boolean);for(let l=0;l<n.length;l+=1)Z(n[l]);t=!1},d(a){Ae(n,a),a&&z(e)}}}function Un(i){let e,t,r,n,o,a,l,s,c,d;return r=new se({props:{type:"avatar",size:i[1]}}),a=new se({props:{type:"title",size:i[1]}}),s=new se({props:{type:"text-small",size:i[1]}}),{c(){e=m("div"),t=m("div"),ge(r.$$.fragment),n=H(),o=m("div"),ge(a.$$.fragment),l=H(),ge(s.$$.fragment),u(t,"class","profile-avatar"),u(o,"class","profile-name"),u(e,"class",c="profile profile-"+i[1])},m(f,b){v(f,e,b),g(e,t),ae(r,t,null),g(e,n),g(e,o),ae(a,o,null),g(o,l),ae(s,o,null),d=!0},p(f,b){const y={};b&2&&(y.size=f[1]),r.$set(y);const w={};b&2&&(w.size=f[1]),a.$set(w);const _={};b&2&&(_.size=f[1]),s.$set(_),(!d||b&2&&c!==(c="profile profile-"+f[1]))&&u(e,"class",c)},i(f){d||(W(r.$$.fragment,f),W(a.$$.fragment,f),W(s.$$.fragment,f),d=!0)},o(f){Z(r.$$.fragment,f),Z(a.$$.fragment,f),Z(s.$$.fragment,f),d=!1},d(f){f&&z(e),le(r),le(a),le(s)}}}function Zn(i){let e,t,r,n,o,a,l,s,c;return t=new se({props:{type:"image",size:i[1]}}),o=new se({props:{type:"header",size:i[1]}}),l=new se({props:{type:"lines",size:i[1],count:3}}),{c(){e=m("div"),ge(t.$$.fragment),r=H(),n=m("div"),ge(o.$$.fragment),a=H(),ge(l.$$.fragment),u(n,"class","card-content"),u(e,"class",s="card card-"+i[1]),V(e,"--width",i[0]+"px")},m(d,f){v(d,e,f),ae(t,e,null),g(e,r),g(e,n),ae(o,n,null),g(n,a),ae(l,n,null),c=!0},p(d,f){const b={};f&2&&(b.size=d[1]),t.$set(b);const y={};f&2&&(y.size=d[1]),o.$set(y);const w={};f&2&&(w.size=d[1]),l.$set(w),(!c||f&2&&s!==(s="card card-"+d[1]))&&u(e,"class",s),(!c||f&1)&&V(e,"--width",d[0]+"px")},i(d){c||(W(t.$$.fragment,d),W(o.$$.fragment,d),W(l.$$.fragment,d),c=!0)},o(d){Z(t.$$.fragment,d),Z(o.$$.fragment,d),Z(l.$$.fragment,d),c=!1},d(d){d&&z(e),le(t),le(o),le(l)}}}function oi(i){let e,t;return e=new se({props:{type:"text",size:i[1],count:i[2]}}),{c(){ge(e.$$.fragment)},m(r,n){ae(e,r,n),t=!0},p(r,n){const o={};n&2&&(o.size=r[1]),n&4&&(o.count=r[2]),e.$set(o)},i(r){t||(W(e.$$.fragment,r),t=!0)},o(r){Z(e.$$.fragment,r),t=!1},d(r){le(e,r)}}}function Kn(i){let e,t,r,n;const o=[Zn,Un,Wn,Vn],a=[];function l(s,c){return s[3]==="card"?0:s[3]==="profile"?1:s[3]==="lines"?2:3}return e=l(i),t=a[e]=o[e](i),{c(){t.c(),r=ie(),this.c=p},m(s,c){a[e].m(s,c),v(s,r,c),n=!0},p(s,[c]){let d=e;e=l(s),e===d?a[e].p(s,c):(be(),Z(a[d],1,1,()=>{a[d]=null}),ve(),t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r))},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){a[e].d(s),s&&z(r)}}}function Xn(i,e,t){let{width:r=320}=e,{size:n=1}=e,{linecount:o=3}=e,{type:a}=e;return i.$$set=l=>{"width"in l&&t(0,r=l.width),"size"in l&&t(1,n=l.size),"linecount"in l&&t(2,o=l.linecount),"type"in l&&t(3,a=l.type)},[r,n,o,a]}class se extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 320px){.card{width:var(--width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Xn,Kn,N,{width:0,size:1,linecount:2,type:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","size","linecount","type"]}get width(){return this.$$.ctx[0]}set width(e){this.$$set({width:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get linecount(){return this.$$.ctx[2]}set linecount(e){this.$$set({linecount:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-skeleton",se);function ai(i){return Object.prototype.toString.call(i)==="[object Date]"}function Ye(i,e){if(i===e||i!==i)return()=>i;const t=typeof i;if(t!==typeof e||Array.isArray(i)!==Array.isArray(e))throw new Error("Cannot interpolate values of different type");if(Array.isArray(i)){const r=e.map((n,o)=>Ye(i[o],n));return n=>r.map(o=>o(n))}if(t==="object"){if(!i||!e)throw new Error("Object cannot be null");if(ai(i)&&ai(e)){i=i.getTime(),e=e.getTime();const o=e-i;return a=>new Date(i+a*o)}const r=Object.keys(e),n={};return r.forEach(o=>{n[o]=Ye(i[o],e[o])}),o=>{const a={};return r.forEach(l=>{a[l]=n[l](o)}),a}}if(t==="number"){const r=e-i;return n=>i+n*r}throw new Error(`Cannot interpolate ${t} values`)}function Yn(i,e={}){const t=_t(i);let r,n=i;function o(a,l){if(i==null)return t.set(i=a),Promise.resolve();n=a;let s=r,c=!1,{delay:d=0,duration:f=400,easing:b=ke,interpolate:y=Ye}=Je(Je({},e),l);if(f===0)return s&&(s.abort(),s=null),t.set(i=n),Promise.resolve();const w=Te()+d;let _;return r=Re(M=>{if(M<w)return!0;c||(_=y(i,a),typeof f=="function"&&(f=f(i,a)),c=!0),s&&(s.abort(),s=null);const x=M-w;return x>f?(t.set(i=a),!1):(t.set(i=_(b(x/f))),!0)}),r.promise}return{set:o,update:(a,l)=>o(a(n,i),l),subscribe:t.subscribe}}function li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=fe("svg"),t=fe("circle"),o=fe("path"),u(t,"cx",i[3]),u(t,"cy",i[3]),u(t,"stroke",r=i[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)"),u(t,"stroke-width",i[4]),u(t,"r",n=i[3]-i[4]/2),u(o,"d",a=i[9](i[7])),u(o,"stroke-width",i[4]),u(o,"stroke",l=i[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)"),u(o,"stroke-linecap","round"),u(e,"class",s=`spinner-${i[2]}`),u(e,"fill","none"),u(e,"viewBox",c="0 0 "+i[5]+" "+i[5]),u(e,"width",i[5]),u(e,"height",i[5]),u(e,"data-testid",i[1]),u(e,"xmlns","http://www.w3.org/2000/svg")},m(d,f){v(d,e,f),g(e,t),g(e,o)},p(d,f){f&8&&u(t,"cx",d[3]),f&8&&u(t,"cy",d[3]),f&1&&r!==(r=d[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)")&&u(t,"stroke",r),f&16&&u(t,"stroke-width",d[4]),f&24&&n!==(n=d[3]-d[4]/2)&&u(t,"r",n),f&128&&a!==(a=d[9](d[7]))&&u(o,"d",a),f&16&&u(o,"stroke-width",d[4]),f&1&&l!==(l=d[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)")&&u(o,"stroke",l),f&4&&s!==(s=`spinner-${d[2]}`)&&u(e,"class",s),f&32&&c!==(c="0 0 "+d[5]+" "+d[5])&&u(e,"viewBox",c),f&32&&u(e,"width",d[5]),f&32&&u(e,"height",d[5]),f&2&&u(e,"data-testid",d[1])},d(d){d&&z(e)}}}function Jn(i){let e,t=i[6]&&li(i);return{c(){t&&t.c(),e=ie(),this.c=p},m(r,n){t&&t.m(r,n),v(r,e,n)},p(r,[n]){r[6]?t?t.p(r,n):(t=li(r),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},i:p,o:p,d(r){t&&t.d(r),r&&z(e)}}}function Qn(i,e,t){let r,n,o,a,l,s,{size:c}=e,{invert:d=!1}=e,{progress:f=-1}=e,{testid:b=""}=e,y="infinite";const w=Yn(0,{duration:500,easing:vr});bi(i,w,x=>t(7,s=x));function _(x){const E=o+a*Math.cos(x),T=o+a*Math.sin(x);return E+" "+T}function M(x){switch(y){case"progress":{const E=_(-Math.PI/2),T=_(-Math.PI/2+2*Math.PI*(x/100)),k=x%100<50?0:1;return`M ${E} A ${a} ${a} 0 ${k} 1 ${T}`}case"infinite":{const E=_(Math.PI*1.5),T=_(0);return`M ${E} A ${a} ${a} 0 1 0 ${T}`}}}return i.$$set=x=>{"size"in x&&t(10,c=x.size),"invert"in x&&t(0,d=x.invert),"progress"in x&&t(11,f=x.progress),"testid"in x&&t(1,b=x.testid)},i.$$.update=()=>{if(i.$$.dirty&2048){const x=parseFloat(f+"");x>=0&&(w.set(x||1),t(2,y="progress"))}i.$$.dirty&1024&&t(5,r=c&&{small:16,medium:32,large:64,xlarge:100}[c]),i.$$.dirty&1024&&t(4,n=c&&{small:2,medium:4,large:7,xlarge:9}[c]),i.$$.dirty&32&&t(3,o=r/2),i.$$.dirty&24&&t(12,a=o-n/2),i.$$.dirty&6148&&t(6,l=y==="infinite"?a:a&&f)},[d,b,y,o,n,r,l,s,w,M,c,f,a]}class $n extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes rotate{100%{transform:rotate(360deg)}}.spinner-infinite{animation:rotate 2s linear infinite}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Qn,Jn,N,{size:10,invert:0,progress:11,testid:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["size","invert","progress","testid"]}get size(){return this.$$.ctx[10]}set size(e){this.$$set({size:e}),h()}get invert(){return this.$$.ctx[0]}set invert(e){this.$$set({invert:e}),h()}get progress(){return this.$$.ctx[11]}set progress(e){this.$$set({progress:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-spinner",$n);function si(i){let e;function t(o,a){if(o[7]>0)return to;if(o[1].length>0)return eo}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&z(e)}}}function eo(i){let e,t=i[1].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o&2&&t!==(t=n[1].length+"")&&q(r,t)},d(n){n&&z(e)}}}function to(i){let e,t=i[1].length+"",r,n=`/${i[7]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[1].length>i[7])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l&2&&t!==(t=a[1].length+"")&&q(r,t),l&128&&n!==(n=`/${a[7]}`)&&q(o,n),l&130&&B(e,"counter-error",a[1].length>a[7])},d(a){a&&z(e)}}}function io(i){let e,t,r,n,o,a,l,s=i[9]&&si(i);return{c(){e=m("div"),t=m("textarea"),n=H(),s&&s.c(),this.c=p,u(t,"name",i[0]),u(t,"placeholder",i[2]),t.value=i[1],u(t,"rows",i[3]),u(t,"aria-label",r=i[6]||i[0]),u(t,"class","goa-textarea"),t.disabled=i[8],t.readOnly=i[10],u(t,"data-testid",i[4]),B(t,"error",i[11]),u(e,"class","container"),u(e,"style",o=`
70
+ `)&&u(e,"style",r)},i:w,o:w,d(n){n&&z(e)}}}function Gn(i,e,t){let{direction:r="vertical"}=e,{hpadding:n=0}=e,{vpadding:o=0}=e,{height:a=0}=e;return i.$$set=l=>{"direction"in l&&t(0,r=l.direction),"hpadding"in l&&t(1,n=l.hpadding),"vpadding"in l&&t(2,o=l.vpadding),"height"in l&&t(3,a=l.height)},[r,n,o,a]}class qn extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.goa-scrollable{scroll-behavior:smooth;max-height:calc(100vh * var(--max-height, 100) / 100)}.goa-scrollable::-webkit-scrollbar{width:6px}.goa-scrollable::-webkit-scrollbar-track{background:#f1f1f1}.goa-scrollable::-webkit-scrollbar-thumb{background:#888}.goa-scrollable::-webkit-scrollbar-thumb:hover{background:#555}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Gn,Fn,N,{direction:0,hpadding:1,vpadding:2,height:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["direction","hpadding","vpadding","height"]}get direction(){return this.$$.ctx[0]}set direction(e){this.$$set({direction:e}),h()}get hpadding(){return this.$$.ctx[1]}set hpadding(e){this.$$set({hpadding:e}),h()}get vpadding(){return this.$$.ctx[2]}set vpadding(e){this.$$set({vpadding:e}),h()}get height(){return this.$$.ctx[3]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-scrollable",qn);function ni(i,e,t){const r=i.slice();return r[4]=e[t],r}function Vn(i){let e,t;return{c(){e=m("div"),u(e,"class",t="skeleton "+i[3]+` ${i[3]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&10&&t!==(t="skeleton "+r[3]+` ${r[3]}-${r[1]}`)&&u(e,"class",t)},i:w,o:w,d(r){r&&z(e)}}}function Wn(i){let e,t,r=Array(i[2]),n=[];for(let a=0;a<r.length;a+=1)n[a]=oi(ni(i,r,a));const o=a=>Z(n[a],1,1,()=>{n[a]=null});return{c(){for(let a=0;a<n.length;a+=1)n[a].c();e=ie()},m(a,l){for(let s=0;s<n.length;s+=1)n[s].m(a,l);v(a,e,l),t=!0},p(a,l){if(l&6){r=Array(a[2]);let s;for(s=0;s<r.length;s+=1){const c=ni(a,r,s);n[s]?(n[s].p(c,l),W(n[s],1)):(n[s]=oi(c),n[s].c(),W(n[s],1),n[s].m(e.parentNode,e))}for(ve(),s=r.length;s<n.length;s+=1)o(s);pe()}},i(a){if(!t){for(let l=0;l<r.length;l+=1)W(n[l]);t=!0}},o(a){n=n.filter(Boolean);for(let l=0;l<n.length;l+=1)Z(n[l]);t=!1},d(a){Ae(n,a),a&&z(e)}}}function Un(i){let e,t,r,n,o,a,l,s,c,d;return r=new de({props:{type:"avatar",size:i[1]}}),a=new de({props:{type:"title",size:i[1]}}),s=new de({props:{type:"text-small",size:i[1]}}),{c(){e=m("div"),t=m("div"),ge(r.$$.fragment),n=H(),o=m("div"),ge(a.$$.fragment),l=H(),ge(s.$$.fragment),u(t,"class","profile-avatar"),u(o,"class","profile-name"),u(e,"class",c="profile profile-"+i[1])},m(f,b){v(f,e,b),g(e,t),se(r,t,null),g(e,n),g(e,o),se(a,o,null),g(o,l),se(s,o,null),d=!0},p(f,b){const y={};b&2&&(y.size=f[1]),r.$set(y);const p={};b&2&&(p.size=f[1]),a.$set(p);const _={};b&2&&(_.size=f[1]),s.$set(_),(!d||b&2&&c!==(c="profile profile-"+f[1]))&&u(e,"class",c)},i(f){d||(W(r.$$.fragment,f),W(a.$$.fragment,f),W(s.$$.fragment,f),d=!0)},o(f){Z(r.$$.fragment,f),Z(a.$$.fragment,f),Z(s.$$.fragment,f),d=!1},d(f){f&&z(e),ce(r),ce(a),ce(s)}}}function Zn(i){let e,t,r,n,o,a,l,s,c;return t=new de({props:{type:"image",size:i[1]}}),o=new de({props:{type:"header",size:i[1]}}),l=new de({props:{type:"lines",size:i[1],count:3}}),{c(){e=m("div"),ge(t.$$.fragment),r=H(),n=m("div"),ge(o.$$.fragment),a=H(),ge(l.$$.fragment),u(n,"class","card-content"),u(e,"class",s="card card-"+i[1]),V(e,"--width",i[0]+"px")},m(d,f){v(d,e,f),se(t,e,null),g(e,r),g(e,n),se(o,n,null),g(n,a),se(l,n,null),c=!0},p(d,f){const b={};f&2&&(b.size=d[1]),t.$set(b);const y={};f&2&&(y.size=d[1]),o.$set(y);const p={};f&2&&(p.size=d[1]),l.$set(p),(!c||f&2&&s!==(s="card card-"+d[1]))&&u(e,"class",s),(!c||f&1)&&V(e,"--width",d[0]+"px")},i(d){c||(W(t.$$.fragment,d),W(o.$$.fragment,d),W(l.$$.fragment,d),c=!0)},o(d){Z(t.$$.fragment,d),Z(o.$$.fragment,d),Z(l.$$.fragment,d),c=!1},d(d){d&&z(e),ce(t),ce(o),ce(l)}}}function oi(i){let e,t;return e=new de({props:{type:"text",size:i[1],count:i[2]}}),{c(){ge(e.$$.fragment)},m(r,n){se(e,r,n),t=!0},p(r,n){const o={};n&2&&(o.size=r[1]),n&4&&(o.count=r[2]),e.$set(o)},i(r){t||(W(e.$$.fragment,r),t=!0)},o(r){Z(e.$$.fragment,r),t=!1},d(r){ce(e,r)}}}function Kn(i){let e,t,r,n;const o=[Zn,Un,Wn,Vn],a=[];function l(s,c){return s[3]==="card"?0:s[3]==="profile"?1:s[3]==="lines"?2:3}return e=l(i),t=a[e]=o[e](i),{c(){t.c(),r=ie(),this.c=w},m(s,c){a[e].m(s,c),v(s,r,c),n=!0},p(s,[c]){let d=e;e=l(s),e===d?a[e].p(s,c):(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe(),t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r))},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){a[e].d(s),s&&z(r)}}}function Xn(i,e,t){let{width:r=320}=e,{size:n=1}=e,{linecount:o=3}=e,{type:a}=e;return i.$$set=l=>{"width"in l&&t(0,r=l.width),"size"in l&&t(1,n=l.size),"linecount"in l&&t(2,o=l.linecount),"type"in l&&t(3,a=l.type)},[r,n,o,a]}class de extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 320px){.card{width:var(--width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Xn,Kn,N,{width:0,size:1,linecount:2,type:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","size","linecount","type"]}get width(){return this.$$.ctx[0]}set width(e){this.$$set({width:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get linecount(){return this.$$.ctx[2]}set linecount(e){this.$$set({linecount:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-skeleton",de);function ai(i){return Object.prototype.toString.call(i)==="[object Date]"}function Ye(i,e){if(i===e||i!==i)return()=>i;const t=typeof i;if(t!==typeof e||Array.isArray(i)!==Array.isArray(e))throw new Error("Cannot interpolate values of different type");if(Array.isArray(i)){const r=e.map((n,o)=>Ye(i[o],n));return n=>r.map(o=>o(n))}if(t==="object"){if(!i||!e)throw new Error("Object cannot be null");if(ai(i)&&ai(e)){i=i.getTime(),e=e.getTime();const o=e-i;return a=>new Date(i+a*o)}const r=Object.keys(e),n={};return r.forEach(o=>{n[o]=Ye(i[o],e[o])}),o=>{const a={};return r.forEach(l=>{a[l]=n[l](o)}),a}}if(t==="number"){const r=e-i;return n=>i+n*r}throw new Error(`Cannot interpolate ${t} values`)}function Yn(i,e={}){const t=_t(i);let r,n=i;function o(a,l){if(i==null)return t.set(i=a),Promise.resolve();n=a;let s=r,c=!1,{delay:d=0,duration:f=400,easing:b=ke,interpolate:y=Ye}=Je(Je({},e),l);if(f===0)return s&&(s.abort(),s=null),t.set(i=n),Promise.resolve();const p=Te()+d;let _;return r=Re(M=>{if(M<p)return!0;c||(_=y(i,a),typeof f=="function"&&(f=f(i,a)),c=!0),s&&(s.abort(),s=null);const x=M-p;return x>f?(t.set(i=a),!1):(t.set(i=_(b(x/f))),!0)}),r.promise}return{set:o,update:(a,l)=>o(a(n,i),l),subscribe:t.subscribe}}function li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=fe("svg"),t=fe("circle"),o=fe("path"),u(t,"cx",i[3]),u(t,"cy",i[3]),u(t,"stroke",r=i[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)"),u(t,"stroke-width",i[4]),u(t,"r",n=i[3]-i[4]/2),u(o,"d",a=i[9](i[7])),u(o,"stroke-width",i[4]),u(o,"stroke",l=i[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)"),u(o,"stroke-linecap","round"),u(e,"class",s=`spinner-${i[2]}`),u(e,"fill","none"),u(e,"viewBox",c="0 0 "+i[5]+" "+i[5]),u(e,"width",i[5]),u(e,"height",i[5]),u(e,"data-testid",i[1]),u(e,"xmlns","http://www.w3.org/2000/svg")},m(d,f){v(d,e,f),g(e,t),g(e,o)},p(d,f){f&8&&u(t,"cx",d[3]),f&8&&u(t,"cy",d[3]),f&1&&r!==(r=d[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)")&&u(t,"stroke",r),f&16&&u(t,"stroke-width",d[4]),f&24&&n!==(n=d[3]-d[4]/2)&&u(t,"r",n),f&128&&a!==(a=d[9](d[7]))&&u(o,"d",a),f&16&&u(o,"stroke-width",d[4]),f&1&&l!==(l=d[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)")&&u(o,"stroke",l),f&4&&s!==(s=`spinner-${d[2]}`)&&u(e,"class",s),f&32&&c!==(c="0 0 "+d[5]+" "+d[5])&&u(e,"viewBox",c),f&32&&u(e,"width",d[5]),f&32&&u(e,"height",d[5]),f&2&&u(e,"data-testid",d[1])},d(d){d&&z(e)}}}function Jn(i){let e,t=i[6]&&li(i);return{c(){t&&t.c(),e=ie(),this.c=w},m(r,n){t&&t.m(r,n),v(r,e,n)},p(r,[n]){r[6]?t?t.p(r,n):(t=li(r),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},i:w,o:w,d(r){t&&t.d(r),r&&z(e)}}}function Qn(i,e,t){let r,n,o,a,l,s,{size:c}=e,{invert:d=!1}=e,{progress:f=-1}=e,{testid:b=""}=e,y="infinite";const p=Yn(0,{duration:500,easing:vr});bi(i,p,x=>t(7,s=x));function _(x){const E=o+a*Math.cos(x),T=o+a*Math.sin(x);return E+" "+T}function M(x){switch(y){case"progress":{const E=_(-Math.PI/2),T=_(-Math.PI/2+2*Math.PI*(x/100)),k=x%100<50?0:1;return`M ${E} A ${a} ${a} 0 ${k} 1 ${T}`}case"infinite":{const E=_(Math.PI*1.5),T=_(0);return`M ${E} A ${a} ${a} 0 1 0 ${T}`}}}return i.$$set=x=>{"size"in x&&t(10,c=x.size),"invert"in x&&t(0,d=x.invert),"progress"in x&&t(11,f=x.progress),"testid"in x&&t(1,b=x.testid)},i.$$.update=()=>{if(i.$$.dirty&2048){const x=parseFloat(f+"");x>=0&&(p.set(x||1),t(2,y="progress"))}i.$$.dirty&1024&&t(5,r=c&&{small:16,medium:32,large:64,xlarge:100}[c]),i.$$.dirty&1024&&t(4,n=c&&{small:2,medium:4,large:7,xlarge:9}[c]),i.$$.dirty&32&&t(3,o=r/2),i.$$.dirty&24&&t(12,a=o-n/2),i.$$.dirty&6148&&t(6,l=y==="infinite"?a:a&&f)},[d,b,y,o,n,r,l,s,p,M,c,f,a]}class $n extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes rotate{100%{transform:rotate(360deg)}}.spinner-infinite{animation:rotate 2s linear infinite}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},Qn,Jn,N,{size:10,invert:0,progress:11,testid:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["size","invert","progress","testid"]}get size(){return this.$$.ctx[10]}set size(e){this.$$set({size:e}),h()}get invert(){return this.$$.ctx[0]}set invert(e){this.$$set({invert:e}),h()}get progress(){return this.$$.ctx[11]}set progress(e){this.$$set({progress:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-spinner",$n);function si(i){let e;function t(o,a){if(o[7]>0)return to;if(o[1].length>0)return eo}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&z(e)}}}function eo(i){let e,t=i[1].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o&2&&t!==(t=n[1].length+"")&&q(r,t)},d(n){n&&z(e)}}}function to(i){let e,t=i[1].length+"",r,n=`/${i[7]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[1].length>i[7])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l&2&&t!==(t=a[1].length+"")&&q(r,t),l&128&&n!==(n=`/${a[7]}`)&&q(o,n),l&130&&B(e,"counter-error",a[1].length>a[7])},d(a){a&&z(e)}}}function io(i){let e,t,r,n,o,a,l,s=i[9]&&si(i);return{c(){e=m("div"),t=m("textarea"),n=H(),s&&s.c(),this.c=w,u(t,"name",i[0]),u(t,"placeholder",i[2]),t.value=i[1],u(t,"rows",i[3]),u(t,"aria-label",r=i[6]||i[0]),u(t,"class","goa-textarea"),t.disabled=i[8],t.readOnly=i[10],u(t,"data-testid",i[4]),B(t,"error",i[11]),u(e,"class","container"),u(e,"style",o=`
71
71
  --width: ${i[5]};
72
72
  `)},m(c,d){v(c,e,d),g(e,t),g(e,n),s&&s.m(e,null),a||(l=U(t,"keyup",i[12]),a=!0)},p(c,[d]){d&1&&u(t,"name",c[0]),d&4&&u(t,"placeholder",c[2]),d&2&&(t.value=c[1]),d&8&&u(t,"rows",c[3]),d&65&&r!==(r=c[6]||c[0])&&u(t,"aria-label",r),d&256&&(t.disabled=c[8]),d&1024&&(t.readOnly=c[10]),d&16&&u(t,"data-testid",c[4]),d&2048&&B(t,"error",c[11]),c[9]?s?s.p(c,d):(s=si(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&32&&o!==(o=`
73
73
  --width: ${c[5]};
74
- `)&&u(e,"style",o)},i:p,o:p,d(c){c&&z(e),s&&s.d(),a=!1,l()}}}function ro(i,e,t){let r,n,o,a,{name:l}=e,{value:s=""}=e,{placeholder:c=""}=e,{rows:d=3}=e,{testid:f=""}=e,{width:b="60ch"}=e,{error:y="false"}=e,{readonly:w="false"}=e,{disabled:_="false"}=e,{arialabel:M=""}=e,{showcounter:x="false"}=e,{maxcharcount:E=0}=e;function T(k){const R=k.target.value;n||(k.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{event:k,name:l,value:R}})),k.stopPropagation())}return i.$$set=k=>{"name"in k&&t(0,l=k.name),"value"in k&&t(1,s=k.value),"placeholder"in k&&t(2,c=k.placeholder),"rows"in k&&t(3,d=k.rows),"testid"in k&&t(4,f=k.testid),"width"in k&&t(5,b=k.width),"error"in k&&t(13,y=k.error),"readonly"in k&&t(14,w=k.readonly),"disabled"in k&&t(15,_=k.disabled),"arialabel"in k&&t(6,M=k.arialabel),"showcounter"in k&&t(16,x=k.showcounter),"maxcharcount"in k&&t(7,E=k.maxcharcount)},i.$$.update=()=>{i.$$.dirty&8192&&t(11,r=G(y)),i.$$.dirty&32768&&t(8,n=G(_)),i.$$.dirty&16384&&t(10,o=G(w)),i.$$.dirty&65536&&t(9,a=G(x))},[l,s,c,d,f,b,M,E,n,a,o,r,T,y,w,_,x]}class no extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.container{position:relative;width:100%}@media(min-width: 640px){.container{max-width:var(--width)}}.goa-textarea{display:block;width:100%;box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:3px;background:var(--color-white);color:var(--color-black, #ccc);padding:var(--textarea-padding-vertical, 0.5rem) var(--textarea-padding-horizontal, 0.5rem);font-size:var(--input-font-size);font-family:var(--font-family);min-width:100%}@media(min-width: 640px){.goa-textarea{min-width:0;width:var(--width)}}.goa-textarea[readonly]{cursor:pointer}.goa-textarea:hover{border-color:var(--goa-color-interactive--hover)}.goa-textarea:active,.goa-textarea:focus,.goa-textarea:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-textarea:disabled{border-color:var(--color-gray-200)}.goa-textarea:disabled:hover{border-color:var(--color-gray-200)}.goa-textarea:disabled:focus,.goa-textarea:disabled:active{box-shadow:none}.counter{position:absolute;right:0;padding-top:0.25rem;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)
74
+ `)&&u(e,"style",o)},i:w,o:w,d(c){c&&z(e),s&&s.d(),a=!1,l()}}}function ro(i,e,t){let r,n,o,a,{name:l}=e,{value:s=""}=e,{placeholder:c=""}=e,{rows:d=3}=e,{testid:f=""}=e,{width:b="60ch"}=e,{error:y="false"}=e,{readonly:p="false"}=e,{disabled:_="false"}=e,{arialabel:M=""}=e,{showcounter:x="false"}=e,{maxcharcount:E=0}=e;function T(k){const R=k.target.value;n||(k.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{event:k,name:l,value:R}})),k.stopPropagation())}return i.$$set=k=>{"name"in k&&t(0,l=k.name),"value"in k&&t(1,s=k.value),"placeholder"in k&&t(2,c=k.placeholder),"rows"in k&&t(3,d=k.rows),"testid"in k&&t(4,f=k.testid),"width"in k&&t(5,b=k.width),"error"in k&&t(13,y=k.error),"readonly"in k&&t(14,p=k.readonly),"disabled"in k&&t(15,_=k.disabled),"arialabel"in k&&t(6,M=k.arialabel),"showcounter"in k&&t(16,x=k.showcounter),"maxcharcount"in k&&t(7,E=k.maxcharcount)},i.$$.update=()=>{i.$$.dirty&8192&&t(11,r=G(y)),i.$$.dirty&32768&&t(8,n=G(_)),i.$$.dirty&16384&&t(10,o=G(p)),i.$$.dirty&65536&&t(9,a=G(x))},[l,s,c,d,f,b,M,E,n,a,o,r,T,y,p,_,x]}class no extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.container{position:relative;width:100%}@media(min-width: 640px){.container{max-width:var(--width)}}.goa-textarea{display:block;width:100%;box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:3px;background:var(--color-white);color:var(--color-black, #ccc);padding:var(--textarea-padding-vertical, 0.5rem) var(--textarea-padding-horizontal, 0.5rem);font-size:var(--input-font-size);font-family:var(--font-family);min-width:100%}@media(min-width: 640px){.goa-textarea{min-width:0;width:var(--width)}}.goa-textarea[readonly]{cursor:pointer}.goa-textarea:hover{border-color:var(--goa-color-interactive--hover)}.goa-textarea:active,.goa-textarea:focus,.goa-textarea:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-textarea:disabled{border-color:var(--color-gray-200)}.goa-textarea:disabled:hover{border-color:var(--color-gray-200)}.goa-textarea:disabled:focus,.goa-textarea:disabled:active{box-shadow:none}.counter{position:absolute;right:0;padding-top:0.25rem;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)
75
75
  }.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ro,io,N,{name:0,value:1,placeholder:2,rows:3,testid:4,width:5,error:13,readonly:14,disabled:15,arialabel:6,showcounter:16,maxcharcount:7},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","placeholder","rows","testid","width","error","readonly","disabled","arialabel","showcounter","maxcharcount"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get placeholder(){return this.$$.ctx[2]}set placeholder(e){this.$$set({placeholder:e}),h()}get rows(){return this.$$.ctx[3]}set rows(e){this.$$set({rows:e}),h()}get testid(){return this.$$.ctx[4]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[5]}set width(e){this.$$set({width:e}),h()}get error(){return this.$$.ctx[13]}set error(e){this.$$set({error:e}),h()}get readonly(){return this.$$.ctx[14]}set readonly(e){this.$$set({readonly:e}),h()}get disabled(){return this.$$.ctx[15]}set disabled(e){this.$$set({disabled:e}),h()}get arialabel(){return this.$$.ctx[6]}set arialabel(e){this.$$set({arialabel:e}),h()}get showcounter(){return this.$$.ctx[16]}set showcounter(e){this.$$set({showcounter:e}),h()}get maxcharcount(){return this.$$.ctx[7]}set maxcharcount(e){this.$$set({maxcharcount:e}),h()}}customElements.define("goa-textarea",no);function oo(i){let e,t,r,n,o,a,l;return{c(){e=m("div"),t=m("header"),t.innerHTML='<slot name="header"></slot>',r=H(),n=m("section"),n.innerHTML=`<nav class="nav"><slot name="nav"></slot></nav>
76
76
 
77
- <main><slot></slot></main>`,o=H(),a=m("footer"),a.innerHTML='<slot name="footer"></slot>',this.c=p,u(t,"class","header"),u(n,"class","content"),u(a,"class","footer"),u(e,"class","page"),u(e,"style",l=`
77
+ <main><slot></slot></main>`,o=H(),a=m("footer"),a.innerHTML='<slot name="footer"></slot>',this.c=w,u(t,"class","header"),u(n,"class","content"),u(a,"class","footer"),u(e,"class","page"),u(e,"style",l=`
78
78
  --max-content-width: ${i[1]||"var(--layout-max-content-width)"};
79
79
  --nav-column-width: ${i[0]||"var(--layout-nav-column-width)"};
80
80
  `)},m(s,c){v(s,e,c),g(e,t),g(e,r),g(e,n),g(e,o),g(e,a)},p(s,[c]){c&3&&l!==(l=`
81
81
  --max-content-width: ${s[1]||"var(--layout-max-content-width)"};
82
82
  --nav-column-width: ${s[0]||"var(--layout-nav-column-width)"};
83
- `)&&u(e,"style",l)},i:p,o:p,d(s){s&&z(e)}}}function ao(i,e,t){let{navcolumnwidth:r=""}=e,{maxcontentwidth:n=""}=e;return i.$$set=o=>{"navcolumnwidth"in o&&t(0,r=o.navcolumnwidth),"maxcontentwidth"in o&&t(1,n=o.maxcontentwidth)},[r,n]}class lo extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.page{height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ao,oo,N,{navcolumnwidth:0,maxcontentwidth:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["navcolumnwidth","maxcontentwidth"]}get navcolumnwidth(){return this.$$.ctx[0]}set navcolumnwidth(e){this.$$set({navcolumnwidth:e}),h()}get maxcontentwidth(){return this.$$.ctx[1]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-two-column-layout",lo);function so(i){let e;return{c(){e=m("div"),e.innerHTML=`<header class="header"><slot name="header"></slot></header>
83
+ `)&&u(e,"style",l)},i:w,o:w,d(s){s&&z(e)}}}function ao(i,e,t){let{navcolumnwidth:r=""}=e,{maxcontentwidth:n=""}=e;return i.$$set=o=>{"navcolumnwidth"in o&&t(0,r=o.navcolumnwidth),"maxcontentwidth"in o&&t(1,n=o.maxcontentwidth)},[r,n]}class lo extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.page{height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},ao,oo,N,{navcolumnwidth:0,maxcontentwidth:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["navcolumnwidth","maxcontentwidth"]}get navcolumnwidth(){return this.$$.ctx[0]}set navcolumnwidth(e){this.$$set({navcolumnwidth:e}),h()}get maxcontentwidth(){return this.$$.ctx[1]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-two-column-layout",lo);function so(i){let e;return{c(){e=m("div"),e.innerHTML=`<header class="header"><slot name="header"></slot></header>
84
84
 
85
85
  <nav class="nav"><slot name="nav"></slot></nav>
86
86
 
87
87
  <main><slot></slot></main>
88
88
 
89
- <footer class="footer"><slot name="footer"></slot></footer>`,this.c=p,u(e,"class","page")},m(t,r){v(t,e,r)},p,i:p,o:p,d(t){t&&z(e)}}}class co extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>.page{height:100vh;grid-template-columns:auto;grid-template-rows:min-content auto min-content;grid-template-areas:"header"
89
+ <footer class="footer"><slot name="footer"></slot></footer>`,this.c=w,u(e,"class","page")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&z(e)}}}class co extends j{constructor(e){super();this.shadowRoot.innerHTML=`<style>.page{height:100vh;grid-template-columns:auto;grid-template-rows:min-content auto min-content;grid-template-areas:"header"
90
90
  "content"
91
91
  "nav"
92
92
  "footer";display:grid;place-content:stretch stretch;gap:0 0}@media(min-width: 640px){.page{grid-template-columns:300px auto;grid-template-rows:min-content auto min-content;grid-template-areas:"header header"
93
93
  "nav content"
94
- "footer footer"}}.header{grid-area:header}.footer{grid-area:footer}main{grid-area:content;justify-self:stretch;padding:1rem}.nav{grid-area:nav;padding:1rem;background-color:var(--color-gray-100)}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,so,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-layout-full-nav",co);function ci(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"slot","title"),u(e,"class","title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function di(i){let e;return{c(){e=m("div"),u(e,"class","actions"),u(e,"slot","actions")},m(t,r){v(t,e,r),e.innerHTML=i[1]},p(t,r){r&2&&(e.innerHTML=t[1])},d(t){t&&z(e)}}}function uo(i){let e,t,r,n,o=i[0]&&ci(i),a=i[1]&&di(i);return{c(){e=m("goa-container"),o&&o.c(),t=H(),a&&a.c(),r=H(),n=m("div"),this.c=p,u(n,"class","content"),u(n,"slot",""),C(e,"type",i[3]),C(e,"headingsize",i[4])},m(l,s){v(l,e,s),o&&o.m(e,null),g(e,t),a&&a.m(e,null),g(e,r),g(e,n),n.innerHTML=i[2]},p(l,[s]){l[0]?o?o.p(l,s):(o=ci(l),o.c(),o.m(e,t)):o&&(o.d(1),o=null),l[1]?a?a.p(l,s):(a=di(l),a.c(),a.m(e,r)):a&&(a.d(1),a=null),s&4&&(n.innerHTML=l[2]),s&8&&C(e,"type",l[3]),s&16&&C(e,"headingsize",l[4])},i:p,o:p,d(l){l&&z(e),o&&o.d(),a&&a.d()}}}function fo(i,e,t){let{title:r}=e,{actions:n=""}=e,{content:o}=e,{type:a="default"}=e,{headingsize:l="large"}=e;return i.$$set=s=>{"title"in s&&t(0,r=s.title),"actions"in s&&t(1,n=s.actions),"content"in s&&t(2,o=s.content),"type"in s&&t(3,a=s.type),"headingsize"in s&&t(4,l=s.headingsize)},[r,n,o,a,l]}class ho extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},fo,uo,N,{title:0,actions:1,content:2,type:3,headingsize:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["title","actions","content","type","headingsize"]}get title(){return this.$$.ctx[0]}set title(e){this.$$set({title:e}),h()}get actions(){return this.$$.ctx[1]}set actions(e){this.$$set({actions:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}get headingsize(){return this.$$.ctx[4]}set headingsize(e){this.$$set({headingsize:e}),h()}}customElements.define("test-container",ho);function go(i){let e;return{c(){e=m("hr"),this.c=p,V(e,"--spacing",i[0])},m(t,r){v(t,e,r)},p(t,[r]){r&1&&V(e,"--spacing",t[0])},i:p,o:p,d(t){t&&z(e)}}}function mo(i,e,t){let r,{spacing:n=""}=e;const o=["small","medium","large"];function a(l){return o.includes(l)}return Y(()=>{if(!a(n))throw"Invalid spacing"}),i.$$set=l=>{"spacing"in l&&t(1,n=l.spacing)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r={small:"1rem",medium:"2rem",large:"4rem"}[n])},[r,n]}class bo extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>hr{padding:0;margin:var(--spacing) 0;border:none;border-top:1px solid var(--color-gray-200)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},mo,go,N,{spacing:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["spacing"]}get spacing(){return this.$$.ctx[1]}set spacing(e){this.$$set({spacing:e}),h()}}customElements.define("goa-divider",bo);function vo(i){let e;return{c(){e=m("div"),e.innerHTML=`<section class="header"><slot name="header"></slot></section>
94
+ "footer footer"}}.header{grid-area:header}.footer{grid-area:footer}main{grid-area:content;justify-self:stretch;padding:1rem}.nav{grid-area:nav;padding:1rem;background-color:var(--color-gray-100)}</style>`,P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,so,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-layout-full-nav",co);function ci(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"slot","title"),u(e,"class","title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&z(e)}}}function di(i){let e;return{c(){e=m("div"),u(e,"class","actions"),u(e,"slot","actions")},m(t,r){v(t,e,r),e.innerHTML=i[1]},p(t,r){r&2&&(e.innerHTML=t[1])},d(t){t&&z(e)}}}function uo(i){let e,t,r,n,o=i[0]&&ci(i),a=i[1]&&di(i);return{c(){e=m("goa-container"),o&&o.c(),t=H(),a&&a.c(),r=H(),n=m("div"),this.c=w,u(n,"class","content"),u(n,"slot",""),C(e,"type",i[3]),C(e,"headingsize",i[4])},m(l,s){v(l,e,s),o&&o.m(e,null),g(e,t),a&&a.m(e,null),g(e,r),g(e,n),n.innerHTML=i[2]},p(l,[s]){l[0]?o?o.p(l,s):(o=ci(l),o.c(),o.m(e,t)):o&&(o.d(1),o=null),l[1]?a?a.p(l,s):(a=di(l),a.c(),a.m(e,r)):a&&(a.d(1),a=null),s&4&&(n.innerHTML=l[2]),s&8&&C(e,"type",l[3]),s&16&&C(e,"headingsize",l[4])},i:w,o:w,d(l){l&&z(e),o&&o.d(),a&&a.d()}}}function fo(i,e,t){let{title:r}=e,{actions:n=""}=e,{content:o}=e,{type:a="default"}=e,{headingsize:l="large"}=e;return i.$$set=s=>{"title"in s&&t(0,r=s.title),"actions"in s&&t(1,n=s.actions),"content"in s&&t(2,o=s.content),"type"in s&&t(3,a=s.type),"headingsize"in s&&t(4,l=s.headingsize)},[r,n,o,a,l]}class ho extends j{constructor(e){super();P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},fo,uo,N,{title:0,actions:1,content:2,type:3,headingsize:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["title","actions","content","type","headingsize"]}get title(){return this.$$.ctx[0]}set title(e){this.$$set({title:e}),h()}get actions(){return this.$$.ctx[1]}set actions(e){this.$$set({actions:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}get headingsize(){return this.$$.ctx[4]}set headingsize(e){this.$$set({headingsize:e}),h()}}customElements.define("test-container",ho);function go(i){let e;return{c(){e=m("hr"),this.c=w,V(e,"--spacing",i[0])},m(t,r){v(t,e,r)},p(t,[r]){r&1&&V(e,"--spacing",t[0])},i:w,o:w,d(t){t&&z(e)}}}function mo(i,e,t){let r,{spacing:n=""}=e;const o=["small","medium","large"];function a(l){return o.includes(l)}return Y(()=>{if(!a(n))throw"Invalid spacing"}),i.$$set=l=>{"spacing"in l&&t(1,n=l.spacing)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r={small:"1rem",medium:"2rem",large:"4rem"}[n])},[r,n]}class bo extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>hr{padding:0;margin:var(--spacing) 0;border:none;border-top:1px solid var(--color-gray-200)}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},mo,go,N,{spacing:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["spacing"]}get spacing(){return this.$$.ctx[1]}set spacing(e){this.$$set({spacing:e}),h()}}customElements.define("goa-divider",bo);function vo(i){let e;return{c(){e=m("div"),e.innerHTML=`<section class="header"><slot name="header"></slot></section>
95
95
 
96
96
  <main><slot></slot></main>
97
97
 
98
- <section class="footer"><slot name="footer"></slot></section>`,this.c=p,u(e,"class","page")},m(t,r){v(t,e,r)},p,i:p,o:p,d(t){t&&z(e)}}}class po extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.page{height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,vo,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-page",po)});
98
+ <section class="footer"><slot name="footer"></slot></section>`,this.c=w,u(e,"class","page")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&z(e)}}}class po extends j{constructor(e){super();this.shadowRoot.innerHTML="<style>.page{height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:O(this.attributes),customElement:!0},null,vo,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-page",po)});