@abgov/web-components 1.0.0-alpha.45 → 1.0.0-alpha.46
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 +1 -1
- package/web-components.es.js +3 -3
- package/web-components.umd.js +2 -2
package/package.json
CHANGED
package/web-components.es.js
CHANGED
|
@@ -896,7 +896,7 @@ function instance$r($$self, $$props, $$invalidate) {
|
|
|
896
896
|
class AppHeader extends SvelteElement {
|
|
897
897
|
constructor(options) {
|
|
898
898
|
super();
|
|
899
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.app-header{display:flex;align-items:center;justify-content:space-between;margin:0 auto;padding:1rem 0;border-bottom:1px solid var(--color-gray-100)}.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: 768px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>`;
|
|
899
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.app-header{display:flex;align-items:center;justify-content:space-between;margin:0 auto;padding:1rem 0.5rem;border-bottom:1px solid var(--color-gray-100)}.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: 768px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>`;
|
|
900
900
|
|
|
901
901
|
init(
|
|
902
902
|
this,
|
|
@@ -1161,7 +1161,7 @@ function instance$q($$self, $$props, $$invalidate) {
|
|
|
1161
1161
|
class Badge extends SvelteElement {
|
|
1162
1162
|
constructor(options) {
|
|
1163
1163
|
super();
|
|
1164
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular)}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-warning{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)}.goa-badge.badge-inactive{background-color:var(--color-white);color:var(--goa-color-text)}</style>`;
|
|
1164
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular)}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm)}.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-warning{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)}.goa-badge.badge-inactive{background-color:var(--color-white);color:var(--goa-color-text)}</style>`;
|
|
1165
1165
|
|
|
1166
1166
|
init(
|
|
1167
1167
|
this,
|
|
@@ -5036,7 +5036,7 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
|
5036
5036
|
class Input extends SvelteElement {
|
|
5037
5037
|
constructor(options) {
|
|
5038
5038
|
super();
|
|
5039
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.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:3px;background:white;color:var(--color-black, #ccc);padding:var(--input-padding, 0.5rem) 0.5rem;display:inline-flex;align-items:center}.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
|
|
5039
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}.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:3px;background:white;color:var(--color-black, #ccc);padding:var(--input-padding, 0.5rem) 0.5rem;display:inline-flex;align-items:center}.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 input[readonly]{cursor:pointer}.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{line-height:18px}.goa-input-trailing-icon{display:flex;align-items:center}.goa-input-trailing-icon>.goa-icon-button{margin-right:-0.5rem}input{display:block;width:100%;font-size:var(--input-font-size)}.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);color:var(--goa-color-text-secondary);cursor:default;box-shadow:none}.goa-input--disabled input:hover{cursor:default !important}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}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-status-emergency-dark)}</style>`;
|
|
5040
5040
|
|
|
5041
5041
|
init(
|
|
5042
5042
|
this,
|
package/web-components.umd.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(function(L,p){typeof exports=="object"&&typeof module!="undefined"?p(exports):typeof define=="function"&&define.amd?define(["exports"],p):(L=typeof globalThis!="undefined"?globalThis:L||self,p(L["web-components"]={}))})(this,function(L){"use strict";function p(){}const ge=i=>i;function We(i,e){for(const t in e)i[t]=e[t];return i}function He(i){return i()}function Ve(){return Object.create(null)}function Y(i){i.forEach(He)}function ie(i){return typeof i=="function"}function H(i,e){return i!=i?e==e:i!==e||i&&typeof i=="object"||typeof i=="function"}let pe;function Ze(i,e){return pe||(pe=document.createElement("a")),pe.href=e,i===pe.href}function pi(i){return Object.keys(i).length===0}function wi(i,...e){if(i==null)return p;const t=i.subscribe(...e);return t.unsubscribe?()=>t.unsubscribe():t}function ki(i,e,t){i.$$.on_destroy.push(wi(e,t))}function Ue(i){return i&&ie(i.destroy)?i.destroy:p}const Xe=typeof window!="undefined";let we=Xe?()=>window.performance.now():()=>Date.now(),Ie=Xe?i=>requestAnimationFrame(i):p;const ne=new Set;function Je(i){ne.forEach(e=>{e.c(i)||(ne.delete(e),e.f())}),ne.size!==0&&Ie(Je)}function ke(i){let e;return ne.size===0&&Ie(Je),{promise:new Promise(t=>{ne.add(e={c:i,f:t})}),abort(){ne.delete(e)}}}function y(i,e){i.appendChild(e)}function Ke(i){if(!i)return document;const e=i.getRootNode?i.getRootNode():i.ownerDocument;return e&&e.host?e:i.ownerDocument}function xi(i){const e=_("style");return zi(Ke(i),e),e}function zi(i,e){y(i.head||i,e)}function w(i,e,t){i.insertBefore(e,t||null)}function x(i){i.parentNode.removeChild(i)}function _(i){return document.createElement(i)}function re(i){return document.createElementNS("http://www.w3.org/2000/svg",i)}function W(i){return document.createTextNode(i)}function M(){return W(" ")}function ae(){return W("")}function U(i,e,t,r){return i.addEventListener(e,t,r),()=>i.removeEventListener(e,t,r)}function d(i,e,t){t==null?i.removeAttribute(e):i.getAttribute(e)!==t&&i.setAttribute(e,t)}function k(i,e,t){e in i?i[e]=typeof i[e]=="boolean"&&t===""?!0:t:d(i,e,t)}function Ei(i){return Array.from(i.childNodes)}function Z(i,e){e=""+e,i.wholeText!==e&&(i.data=e)}function D(i,e,t,r){i.style.setProperty(e,t,r?"important":"")}function P(i,e,t){i.classList[t?"add":"remove"](e)}function Ci(i,e,t=!1){const r=document.createEvent("CustomEvent");return r.initCustomEvent(i,t,!1,e),r}function G(i){const e={};for(const t of i)e[t.name]=t.value;return e}const Ge=new Set;let xe=0;function Ai(i){let e=5381,t=i.length;for(;t--;)e=(e<<5)-e^i.charCodeAt(t);return e>>>0}function ze(i,e,t,r,o,n,a,s=0){const l=16.666/r;let c=`{
|
|
2
2
|
`;for(let E=0;E<=1;E+=l){const C=e+(t-e)*n(E);c+=E*100+`%{${a(C,1-C)}}
|
|
3
3
|
`}const f=c+`100% {${a(t,1-t)}}
|
|
4
|
-
}`,u=`__svelte_${Ai(f)}_${s}`,v=Ke(i);Ge.add(v);const b=v.__svelte_stylesheet||(v.__svelte_stylesheet=xi(i).sheet),g=v.__svelte_rules||(v.__svelte_rules={});g[u]||(g[u]=!0,b.insertRule(`@keyframes ${u} ${f}`,b.cssRules.length));const m=i.style.animation||"";return i.style.animation=`${m?`${m}, `:""}${u} ${r}ms linear ${o}ms 1 both`,xe+=1,u}function Ee(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?n=>n.indexOf(e)<0:n=>n.indexOf("__svelte")===-1),o=t.length-r.length;o&&(i.style.animation=r.join(", "),xe-=o,xe||Mi())}function Mi(){Ie(()=>{xe||(Ge.forEach(i=>{const e=i.__svelte_stylesheet;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.__svelte_rules={}}),Ge.clear())})}let he;function me(i){he=i}function Ye(){if(!he)throw new Error("Function called outside component initialization");return he}function Ce(i){Ye().$$.on_mount.push(i)}function Qe(i){Ye().$$.on_destroy.push(i)}const be=[],le=[],Ae=[],$e=[],et=Promise.resolve();let Se=!1;function tt(){Se||(Se=!0,et.then(h))}function it(){return tt(),et}function X(i){Ae.push(i)}const Be=new Set;let Me=0;function h(){const i=he;do{for(;Me<be.length;){const e=be[Me];Me++,me(e),Ri(e.$$)}for(me(null),be.length=0,Me=0;le.length;)le.pop()();for(let e=0;e<Ae.length;e+=1){const t=Ae[e];Be.has(t)||(Be.add(t),t())}Ae.length=0}while(be.length);for(;$e.length;)$e.pop()();Se=!1,Be.clear(),me(i)}function Ri(i){if(i.fragment!==null){i.update(),Y(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(X)}}let ve;function Pe(){return ve||(ve=Promise.resolve(),ve.then(()=>{ve=null})),ve}function oe(i,e,t){i.dispatchEvent(Ci(`${e?"intro":"outro"}${t}`))}const Re=new Set;let J;function ye(){J={r:0,c:[],p:J}}function _e(){J.r||Y(J.c),J=J.p}function q(i,e){i&&i.i&&(Re.delete(i),i.i(e))}function V(i,e,t,r){if(i&&i.o){if(Re.has(i))return;Re.add(i),J.c.push(()=>{Re.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}}const je={duration:0};function rt(i,e,t){let r=e(i,t),o=!1,n,a,s=0;function l(){n&&Ee(i,n)}function c(){const{delay:u=0,duration:v=300,easing:b=ge,tick:g=p,css:m}=r||je;m&&(n=ze(i,0,1,v,u,b,m,s++)),g(0,1);const E=we()+u,C=E+v;a&&a.abort(),o=!0,X(()=>oe(i,!0,"start")),a=ke(z=>{if(o){if(z>=C)return g(1,0),oe(i,!0,"end"),l(),o=!1;if(z>=E){const T=b((z-E)/v);g(T,1-T)}}return o})}let f=!1;return{start(){f||(f=!0,Ee(i),ie(r)?(r=r(),Pe().then(c)):c())},invalidate(){f=!1},end(){o&&(l(),o=!1)}}}function ot(i,e,t){let r=e(i,t),o=!0,n;const a=J;a.r+=1;function s(){const{delay:l=0,duration:c=300,easing:f=ge,tick:u=p,css:v}=r||je;v&&(n=ze(i,1,0,c,l,f,v));const b=we()+l,g=b+c;X(()=>oe(i,!1,"start")),ke(m=>{if(o){if(m>=g)return u(0,1),oe(i,!1,"end"),--a.r||Y(a.c),!1;if(m>=b){const E=f((m-b)/c);u(1-E,E)}}return o})}return ie(r)?Pe().then(()=>{r=r(),s()}):s(),{end(l){l&&r.tick&&r.tick(1,0),o&&(n&&Ee(i,n),o=!1)}}}function Le(i,e,t,r){let o=e(i,t),n=r?0:1,a=null,s=null,l=null;function c(){l&&Ee(i,l)}function f(v,b){const g=v.b-n;return b*=Math.abs(g),{a:n,b:v.b,d:g,duration:b,start:v.start,end:v.start+b,group:v.group}}function u(v){const{delay:b=0,duration:g=300,easing:m=ge,tick:E=p,css:C}=o||je,z={start:we()+b,b:v};v||(z.group=J,J.r+=1),a||s?s=z:(C&&(c(),l=ze(i,n,v,g,b,m,C)),v&&E(0,1),a=f(z,g),X(()=>oe(i,v,"start")),ke(T=>{if(s&&T>s.start&&(a=f(s,g),s=null,oe(i,a.b,"start"),C&&(c(),l=ze(i,n,a.b,a.duration,0,m,o.css))),a){if(T>=a.end)E(n=a.b,1-n),oe(i,a.b,"end"),s||(a.b?c():--a.group.r||Y(a.group.c)),a=null;else if(T>=a.start){const B=T-a.start;n=a.a+a.d*m(B/a.duration),E(n,1-n)}}return!!(a||s)}))}return{run(v){ie(o)?Pe().then(()=>{o=o(),u(v)}):u(v)},end(){c(),a=s=null}}}function ee(i){i&&i.c()}function Q(i,e,t,r){const{fragment:o,on_mount:n,on_destroy:a,after_update:s}=i.$$;o&&o.m(e,t),r||X(()=>{const l=n.map(He).filter(ie);a?a.push(...l):Y(l),i.$$.on_mount=[]}),s.forEach(X)}function $(i,e){const t=i.$$;t.fragment!==null&&(Y(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Li(i,e){i.$$.dirty[0]===-1&&(be.push(i),tt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function S(i,e,t,r,o,n,a,s=[-1]){const l=he;me(i);const c=i.$$={fragment:null,ctx:null,props:n,update:p,not_equal:o,bound:Ve(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(l?l.$$.context:[])),callbacks:Ve(),dirty:s,skip_bound:!1,root:e.target||l.$$.root};a&&a(c.root);let f=!1;if(c.ctx=t?t(i,e.props||{},(u,v,...b)=>{const g=b.length?b[0]:v;return c.ctx&&o(c.ctx[u],c.ctx[u]=g)&&(!c.skip_bound&&c.bound[u]&&c.bound[u](g),f&&Li(i,u)),v}):[],c.update(),f=!0,Y(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const u=Ei(e.target);c.fragment&&c.fragment.l(u),u.forEach(x)}else c.fragment&&c.fragment.c();e.intro&&q(i.$$.fragment),Q(i,e.target,e.anchor,e.customElement),h()}me(l)}let I;typeof HTMLElement=="function"&&(I=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(He).filter(ie);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){Y(this.$$.on_disconnect)}$destroy(){$(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&&!pi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Ti(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",this.c=p,d(e,"class","page-content")},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class nt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--page-width-max);margin:0 auto;padding:0 1.75rem}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Ti,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-page-block",nt);function Hi(i){let e,t,r,o,n,a,s,l,c,f,u,v;return{c(){e=_("div"),t=_("a"),r=_("img"),n=M(),a=_("img"),l=M(),c=_("span"),f=W(i[1]),u=M(),v=_("div"),v.innerHTML="<slot></slot>",this.c=p,d(r,"alt","GoA Logo"),d(r,"class","image-mobile"),Ze(r.src,o="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")||d(r,"src",o),d(a,"alt","GoA Logo"),d(a,"class","image-desktop"),Ze(a.src,s="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")||d(a,"src",s),d(c,"class","title"),d(t,"href",i[0]),d(t,"class","app-link"),d(e,"class","app-header"),d(e,"data-testid",i[2])},m(b,g){w(b,e,g),y(e,t),y(t,r),y(t,n),y(t,a),y(t,l),y(t,c),y(c,f),y(e,u),y(e,v)},p(b,[g]){g&2&&Z(f,b[1]),g&1&&d(t,"href",b[0]),g&4&&d(e,"data-testid",b[2])},i:p,o:p,d(b){b&&x(e)}}}function Ii(i,e,t){let{url:r="#"}=e,{title:o=""}=e,{testid:n=""}=e;return i.$$set=a=>{"url"in a&&t(0,r=a.url),"title"in a&&t(1,o=a.title),"testid"in a&&t(2,n=a.testid)},[r,o,n]}class at extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.app-header{display:flex;align-items:center;justify-content:space-between;margin:0 auto;padding:1rem 0;border-bottom:1px solid var(--color-gray-100)}.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: 768px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Ii,Hi,H,{url:0,title:1,testid:2},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["url","title","testid"]}get url(){return this.$$.ctx[0]}set url(e){this.$$set({url:e}),h()}get title(){return this.$$.ctx[1]}set title(e){this.$$set({title:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-app-header",at);function j(i){return i==="false"?!1:i===""?!0:!!i}function Gi(i){return i?"true":"false"}function Si(i){let e;return{c(){e=_("div"),D(e,"height","1.2rem"),D(e,"margin-left","-0.25rem")},m(t,r){w(t,e,r)},p,d(t){t&&x(e)}}}function Bi(i){let e;return{c(){e=_("goa-icon"),k(e,"type",i[3]),k(e,"size","small")},m(t,r){w(t,e,r)},p(t,r){r&8&&k(e,"type",t[3])},d(t){t&&x(e)}}}function lt(i){let e,t;return{c(){e=_("div"),t=W(i[2]),d(e,"class","goa-badge-content")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&4&&Z(t,r[2])},d(r){r&&x(e)}}}function Pi(i){let e,t,r;function o(l,c){return l[4]?Bi:Si}let n=o(i),a=n(i),s=i[2]&<(i);return{c(){e=_("div"),a.c(),t=M(),s&&s.c(),this.c=p,d(e,"data-testid",i[1]),d(e,"data-type","goa-badge"),d(e,"class",r="goa-badge badge-"+i[0]),P(e,"icon-only",i[4]&&!i[2])},m(l,c){w(l,e,c),a.m(e,null),y(e,t),s&&s.m(e,null)},p(l,[c]){n===(n=o(l))&&a?a.p(l,c):(a.d(1),a=n(l),a&&(a.c(),a.m(e,t))),l[2]?s?s.p(l,c):(s=lt(l),s.c(),s.m(e,null)):s&&(s.d(1),s=null),c&2&&d(e,"data-testid",l[1]),c&1&&r!==(r="goa-badge badge-"+l[0])&&d(e,"class",r),c&21&&P(e,"icon-only",l[4]&&!l[2])},i:p,o:p,d(l){l&&x(e),a.d(),s&&s.d()}}}function ji(i,e,t){let r,o,{type:n}=e,{testid:a=""}=e,{icon:s="false"}=e,{content:l=""}=e;return i.$$set=c=>{"type"in c&&t(0,n=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,s=c.icon),"content"in c&&t(2,l=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(4,r=j(s)),i.$$.dirty&1&&t(3,o={success:"checkmark-circle",warning:"alert-circle",information:"information-circle",emergency:"warning",inactive:"information-circle",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[n])},[n,a,l,o,r,s]}class st extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular)}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-warning{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)}.goa-badge.badge-inactive{background-color:var(--color-white);color:var(--goa-color-text)}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},ji,Pi,H,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&w(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",st);function Di(i){let e,t,r,o,n;return{c(){e=_("button"),t=_("slot"),this.c=p,d(e,"class",r=""+(i[0]+" "+i[1]+" "+i[2])),d(e,"title",i[3]),e.disabled=i[5],d(e,"data-testid",i[4])},m(a,s){w(a,e,s),y(e,t),o||(n=U(e,"click",Oi),o=!0)},p(a,[s]){s&7&&r!==(r=""+(a[0]+" "+a[1]+" "+a[2]))&&d(e,"class",r),s&8&&d(e,"title",a[3]),s&32&&(e.disabled=a[5]),s&16&&d(e,"data-testid",a[4])},i:p,o:p,d(a){a&&x(e),o=!1,n()}}}function Oi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Ni(i,e,t){let r,{type:o="primary"}=e,{size:n="medium"}=e,{variant:a="default"}=e,{title:s=""}=e,{disabled:l="false"}=e,{testid:c=""}=e;return i.$$set=f=>{"type"in f&&t(0,o=f.type),"size"in f&&t(1,n=f.size),"variant"in f&&t(2,a=f.variant),"title"in f&&t(3,s=f.title),"disabled"in f&&t(6,l=f.disabled),"testid"in f&&t(4,c=f.testid)},i.$$.update=()=>{i.$$.dirty&64&&t(5,r=j(l))},[o,n,a,s,c,r,l]}class ct extends I{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 320px){:host{width:100%}button{width:100%}}button{border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-size:var(--fs-base, 1rem);font-weight:700;line-height:2.375rem;padding:0 0.75rem;display:flex;gap:0.25rem;align-items:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
|
|
4
|
+
}`,u=`__svelte_${Ai(f)}_${s}`,v=Ke(i);Ge.add(v);const b=v.__svelte_stylesheet||(v.__svelte_stylesheet=xi(i).sheet),g=v.__svelte_rules||(v.__svelte_rules={});g[u]||(g[u]=!0,b.insertRule(`@keyframes ${u} ${f}`,b.cssRules.length));const m=i.style.animation||"";return i.style.animation=`${m?`${m}, `:""}${u} ${r}ms linear ${o}ms 1 both`,xe+=1,u}function Ee(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?n=>n.indexOf(e)<0:n=>n.indexOf("__svelte")===-1),o=t.length-r.length;o&&(i.style.animation=r.join(", "),xe-=o,xe||Mi())}function Mi(){Ie(()=>{xe||(Ge.forEach(i=>{const e=i.__svelte_stylesheet;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.__svelte_rules={}}),Ge.clear())})}let he;function me(i){he=i}function Ye(){if(!he)throw new Error("Function called outside component initialization");return he}function Ce(i){Ye().$$.on_mount.push(i)}function Qe(i){Ye().$$.on_destroy.push(i)}const be=[],le=[],Ae=[],$e=[],et=Promise.resolve();let Se=!1;function tt(){Se||(Se=!0,et.then(h))}function it(){return tt(),et}function X(i){Ae.push(i)}const Be=new Set;let Me=0;function h(){const i=he;do{for(;Me<be.length;){const e=be[Me];Me++,me(e),Ri(e.$$)}for(me(null),be.length=0,Me=0;le.length;)le.pop()();for(let e=0;e<Ae.length;e+=1){const t=Ae[e];Be.has(t)||(Be.add(t),t())}Ae.length=0}while(be.length);for(;$e.length;)$e.pop()();Se=!1,Be.clear(),me(i)}function Ri(i){if(i.fragment!==null){i.update(),Y(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(X)}}let ve;function Pe(){return ve||(ve=Promise.resolve(),ve.then(()=>{ve=null})),ve}function oe(i,e,t){i.dispatchEvent(Ci(`${e?"intro":"outro"}${t}`))}const Re=new Set;let J;function ye(){J={r:0,c:[],p:J}}function _e(){J.r||Y(J.c),J=J.p}function q(i,e){i&&i.i&&(Re.delete(i),i.i(e))}function V(i,e,t,r){if(i&&i.o){if(Re.has(i))return;Re.add(i),J.c.push(()=>{Re.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}}const je={duration:0};function rt(i,e,t){let r=e(i,t),o=!1,n,a,s=0;function l(){n&&Ee(i,n)}function c(){const{delay:u=0,duration:v=300,easing:b=ge,tick:g=p,css:m}=r||je;m&&(n=ze(i,0,1,v,u,b,m,s++)),g(0,1);const E=we()+u,C=E+v;a&&a.abort(),o=!0,X(()=>oe(i,!0,"start")),a=ke(z=>{if(o){if(z>=C)return g(1,0),oe(i,!0,"end"),l(),o=!1;if(z>=E){const T=b((z-E)/v);g(T,1-T)}}return o})}let f=!1;return{start(){f||(f=!0,Ee(i),ie(r)?(r=r(),Pe().then(c)):c())},invalidate(){f=!1},end(){o&&(l(),o=!1)}}}function ot(i,e,t){let r=e(i,t),o=!0,n;const a=J;a.r+=1;function s(){const{delay:l=0,duration:c=300,easing:f=ge,tick:u=p,css:v}=r||je;v&&(n=ze(i,1,0,c,l,f,v));const b=we()+l,g=b+c;X(()=>oe(i,!1,"start")),ke(m=>{if(o){if(m>=g)return u(0,1),oe(i,!1,"end"),--a.r||Y(a.c),!1;if(m>=b){const E=f((m-b)/c);u(1-E,E)}}return o})}return ie(r)?Pe().then(()=>{r=r(),s()}):s(),{end(l){l&&r.tick&&r.tick(1,0),o&&(n&&Ee(i,n),o=!1)}}}function Le(i,e,t,r){let o=e(i,t),n=r?0:1,a=null,s=null,l=null;function c(){l&&Ee(i,l)}function f(v,b){const g=v.b-n;return b*=Math.abs(g),{a:n,b:v.b,d:g,duration:b,start:v.start,end:v.start+b,group:v.group}}function u(v){const{delay:b=0,duration:g=300,easing:m=ge,tick:E=p,css:C}=o||je,z={start:we()+b,b:v};v||(z.group=J,J.r+=1),a||s?s=z:(C&&(c(),l=ze(i,n,v,g,b,m,C)),v&&E(0,1),a=f(z,g),X(()=>oe(i,v,"start")),ke(T=>{if(s&&T>s.start&&(a=f(s,g),s=null,oe(i,a.b,"start"),C&&(c(),l=ze(i,n,a.b,a.duration,0,m,o.css))),a){if(T>=a.end)E(n=a.b,1-n),oe(i,a.b,"end"),s||(a.b?c():--a.group.r||Y(a.group.c)),a=null;else if(T>=a.start){const B=T-a.start;n=a.a+a.d*m(B/a.duration),E(n,1-n)}}return!!(a||s)}))}return{run(v){ie(o)?Pe().then(()=>{o=o(),u(v)}):u(v)},end(){c(),a=s=null}}}function ee(i){i&&i.c()}function Q(i,e,t,r){const{fragment:o,on_mount:n,on_destroy:a,after_update:s}=i.$$;o&&o.m(e,t),r||X(()=>{const l=n.map(He).filter(ie);a?a.push(...l):Y(l),i.$$.on_mount=[]}),s.forEach(X)}function $(i,e){const t=i.$$;t.fragment!==null&&(Y(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Li(i,e){i.$$.dirty[0]===-1&&(be.push(i),tt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function S(i,e,t,r,o,n,a,s=[-1]){const l=he;me(i);const c=i.$$={fragment:null,ctx:null,props:n,update:p,not_equal:o,bound:Ve(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(l?l.$$.context:[])),callbacks:Ve(),dirty:s,skip_bound:!1,root:e.target||l.$$.root};a&&a(c.root);let f=!1;if(c.ctx=t?t(i,e.props||{},(u,v,...b)=>{const g=b.length?b[0]:v;return c.ctx&&o(c.ctx[u],c.ctx[u]=g)&&(!c.skip_bound&&c.bound[u]&&c.bound[u](g),f&&Li(i,u)),v}):[],c.update(),f=!0,Y(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const u=Ei(e.target);c.fragment&&c.fragment.l(u),u.forEach(x)}else c.fragment&&c.fragment.c();e.intro&&q(i.$$.fragment),Q(i,e.target,e.anchor,e.customElement),h()}me(l)}let I;typeof HTMLElement=="function"&&(I=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(He).filter(ie);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){Y(this.$$.on_disconnect)}$destroy(){$(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&&!pi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Ti(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",this.c=p,d(e,"class","page-content")},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class nt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--page-width-max);margin:0 auto;padding:0 1.75rem}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Ti,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-page-block",nt);function Hi(i){let e,t,r,o,n,a,s,l,c,f,u,v;return{c(){e=_("div"),t=_("a"),r=_("img"),n=M(),a=_("img"),l=M(),c=_("span"),f=W(i[1]),u=M(),v=_("div"),v.innerHTML="<slot></slot>",this.c=p,d(r,"alt","GoA Logo"),d(r,"class","image-mobile"),Ze(r.src,o="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")||d(r,"src",o),d(a,"alt","GoA Logo"),d(a,"class","image-desktop"),Ze(a.src,s="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")||d(a,"src",s),d(c,"class","title"),d(t,"href",i[0]),d(t,"class","app-link"),d(e,"class","app-header"),d(e,"data-testid",i[2])},m(b,g){w(b,e,g),y(e,t),y(t,r),y(t,n),y(t,a),y(t,l),y(t,c),y(c,f),y(e,u),y(e,v)},p(b,[g]){g&2&&Z(f,b[1]),g&1&&d(t,"href",b[0]),g&4&&d(e,"data-testid",b[2])},i:p,o:p,d(b){b&&x(e)}}}function Ii(i,e,t){let{url:r="#"}=e,{title:o=""}=e,{testid:n=""}=e;return i.$$set=a=>{"url"in a&&t(0,r=a.url),"title"in a&&t(1,o=a.title),"testid"in a&&t(2,n=a.testid)},[r,o,n]}class at extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.app-header{display:flex;align-items:center;justify-content:space-between;margin:0 auto;padding:1rem 0.5rem;border-bottom:1px solid var(--color-gray-100)}.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: 768px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Ii,Hi,H,{url:0,title:1,testid:2},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["url","title","testid"]}get url(){return this.$$.ctx[0]}set url(e){this.$$set({url:e}),h()}get title(){return this.$$.ctx[1]}set title(e){this.$$set({title:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-app-header",at);function j(i){return i==="false"?!1:i===""?!0:!!i}function Gi(i){return i?"true":"false"}function Si(i){let e;return{c(){e=_("div"),D(e,"height","1.2rem"),D(e,"margin-left","-0.25rem")},m(t,r){w(t,e,r)},p,d(t){t&&x(e)}}}function Bi(i){let e;return{c(){e=_("goa-icon"),k(e,"type",i[3]),k(e,"size","small")},m(t,r){w(t,e,r)},p(t,r){r&8&&k(e,"type",t[3])},d(t){t&&x(e)}}}function lt(i){let e,t;return{c(){e=_("div"),t=W(i[2]),d(e,"class","goa-badge-content")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&4&&Z(t,r[2])},d(r){r&&x(e)}}}function Pi(i){let e,t,r;function o(l,c){return l[4]?Bi:Si}let n=o(i),a=n(i),s=i[2]&<(i);return{c(){e=_("div"),a.c(),t=M(),s&&s.c(),this.c=p,d(e,"data-testid",i[1]),d(e,"data-type","goa-badge"),d(e,"class",r="goa-badge badge-"+i[0]),P(e,"icon-only",i[4]&&!i[2])},m(l,c){w(l,e,c),a.m(e,null),y(e,t),s&&s.m(e,null)},p(l,[c]){n===(n=o(l))&&a?a.p(l,c):(a.d(1),a=n(l),a&&(a.c(),a.m(e,t))),l[2]?s?s.p(l,c):(s=lt(l),s.c(),s.m(e,null)):s&&(s.d(1),s=null),c&2&&d(e,"data-testid",l[1]),c&1&&r!==(r="goa-badge badge-"+l[0])&&d(e,"class",r),c&21&&P(e,"icon-only",l[4]&&!l[2])},i:p,o:p,d(l){l&&x(e),a.d(),s&&s.d()}}}function ji(i,e,t){let r,o,{type:n}=e,{testid:a=""}=e,{icon:s="false"}=e,{content:l=""}=e;return i.$$set=c=>{"type"in c&&t(0,n=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,s=c.icon),"content"in c&&t(2,l=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(4,r=j(s)),i.$$.dirty&1&&t(3,o={success:"checkmark-circle",warning:"alert-circle",information:"information-circle",emergency:"warning",inactive:"information-circle",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[n])},[n,a,l,o,r,s]}class st extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular)}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm)}.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-warning{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)}.goa-badge.badge-inactive{background-color:var(--color-white);color:var(--goa-color-text)}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},ji,Pi,H,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&w(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",st);function Di(i){let e,t,r,o,n;return{c(){e=_("button"),t=_("slot"),this.c=p,d(e,"class",r=""+(i[0]+" "+i[1]+" "+i[2])),d(e,"title",i[3]),e.disabled=i[5],d(e,"data-testid",i[4])},m(a,s){w(a,e,s),y(e,t),o||(n=U(e,"click",Oi),o=!0)},p(a,[s]){s&7&&r!==(r=""+(a[0]+" "+a[1]+" "+a[2]))&&d(e,"class",r),s&8&&d(e,"title",a[3]),s&32&&(e.disabled=a[5]),s&16&&d(e,"data-testid",a[4])},i:p,o:p,d(a){a&&x(e),o=!1,n()}}}function Oi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Ni(i,e,t){let r,{type:o="primary"}=e,{size:n="medium"}=e,{variant:a="default"}=e,{title:s=""}=e,{disabled:l="false"}=e,{testid:c=""}=e;return i.$$set=f=>{"type"in f&&t(0,o=f.type),"size"in f&&t(1,n=f.size),"variant"in f&&t(2,a=f.variant),"title"in f&&t(3,s=f.title),"disabled"in f&&t(6,l=f.disabled),"testid"in f&&t(4,c=f.testid)},i.$$.update=()=>{i.$$.dirty&64&&t(5,r=j(l))},[o,n,a,s,c,r,l]}class ct extends I{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 320px){:host{width:100%}button{width:100%}}button{border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-size:var(--fs-base, 1rem);font-weight:700;line-height:2.375rem;padding:0 0.75rem;display:flex;gap:0.25rem;align-items:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
|
|
5
5
|
border-color 0.2s ease-in-out;transform:scaleX(1)}button.primary{border:2px solid var(--goa-color-interactive);background:var(--goa-color-interactive);color:var(--color-white, white)}button.primary:hover{border-color:var(--goa-color-interactive--hover);background:var(--goa-color-interactive--hover)}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:var(--goa-color-interactive--active);outline:none}button.secondary{border:2px solid var(--goa-color-interactive);background: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: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:var(--color-gray-100);outline:none}button.tertiary{border:1px solid var(--color-gray-200);background:var(--color-white);color:var(--goa-color-interactive)}button.tertiary:hover{border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);background:var(--color-gray-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--goa-color-interactive--active);color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}button.borderless{background:none;color:var(--goa-color-interactive);border:none}button.borderless:hover{background-color:var(--goa-color-primary-light);color:var(--goa-color-interactive--hover)}button.borderless:focus,button.borderless:active{outline:none;box-shadow:none;background-color:var(--goa-color-primary-light)}.primary.danger{color:var(--color-white);background:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency)}.primary.danger:hover{background:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.primary.danger:focus,.primary.danger:active{background:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.secondary.danger{color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);background:var(--color-white)}.secondary.danger:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background:var(--color-white)}.secondary.danger:focus,.secondary.danger:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background:var(--color-white)}button:disabled{pointer-events:none;color:var(--color-gray-600);background-color:var(--color-gray-100);border-color:var(--color-gray-100)}.tertiary.danger{color:var(--goa-color-status-emergency);border-color:var(--color-gray-200);background:var(--color-white)}.tertiary.danger:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background:var(--color-white)}.tertiary.danger:focus,.tertiary.danger:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background:var(--color-white)}.borderless.danger{color:var(--goa-color-status-emergency)}.borderless.danger:hover{background:var(--goa-color-emergency-light);color:var(--goa-color-status-emergency-dark)}.borderless.danger:focus,.borderless.danger:active{background:var(--goa-color-emergency-light);color:var(--goa-color-status-emergency-dark)}.large{font-size:var(--fs-lg);line-height:3rem}.large.borderless{line-height:calc(3rem + 4px)}.medium{font-size:var(--fs-base);line-height:2.375rem}.medium.borderless{line-height:calc(2.375rem + 4px)}.small{font-size:var(--fs-sm);line-height:1.75rem}.small.borderless{line-height:calc(1.75rem + 4px)}</style>`,S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Ni,Di,H,{type:0,size:1,variant:2,title:3,disabled:6,testid:4},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","variant","title","disabled","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 title(){return this.$$.ctx[3]}set title(e){this.$$set({title:e}),h()}get disabled(){return this.$$.ctx[6]}set disabled(e){this.$$set({disabled:e}),h()}get testid(){return this.$$.ctx[4]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-button",ct);function Fi(i){let e,t;return{c(){e=_("div"),t=_("slot"),this.c=p,D(e,"--alignment","flex-"+i[1]),D(e,"--gap-size",i[0]==="small"?"0.5rem":"1rem")},m(r,o){w(r,e,o),y(e,t)},p(r,[o]){o&2&&D(e,"--alignment","flex-"+r[1]),o&1&&D(e,"--gap-size",r[0]==="small"?"0.5rem":"1rem")},i:p,o:p,d(r){r&&x(e)}}}function qi(i,e,t){let{gap:r="medium"}=e,{alignment:o}=e;return i.$$set=n=>{"gap"in n&&t(0,r=n.gap),"alignment"in n&&t(1,o=n.alignment)},[r,o]}class dt extends I{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},qi,Fi,H,{gap:0,alignment:1},null),e&&(e.target&&w(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",dt);function Wi(i){let e,t,r,o,n,a,s,l,c,f,u;return{c(){e=_("div"),t=_("span"),r=_("goa-icon"),a=M(),s=_("span"),l=_("h3"),c=W(i[1]),f=M(),u=_("slot"),this.c=p,k(r,"type",i[3]),k(r,"inverted",o=i[0]==="important"?"false":"true"),d(t,"class",n="icon "+i[0]),d(s,"class","content"),d(e,"class","notification"),d(e,"data-testid",i[2])},m(v,b){w(v,e,b),y(e,t),y(t,r),y(e,a),y(e,s),y(s,l),y(l,c),y(s,f),y(s,u)},p(v,[b]){b&8&&k(r,"type",v[3]),b&1&&o!==(o=v[0]==="important"?"false":"true")&&k(r,"inverted",o),b&1&&n!==(n="icon "+v[0])&&d(t,"class",n),b&2&&Z(c,v[1]),b&4&&d(e,"data-testid",v[2])},i:p,o:p,d(v){v&&x(e)}}}function Vi(i,e,t){let r,{type:o}=e,{title:n}=e,{testid:a=""}=e;return i.$$set=s=>{"type"in s&&t(0,o=s.type),"title"in s&&t(1,n=s.title),"testid"in s&&t(2,a=s.testid)},i.$$.update=()=>{i.$$.dirty&1&&t(3,r=o==="emergency"?"warning":o==="important"?"alert-circle":o==="information"?"information-circle":o==="success"?"checkmark-circle":o==="event"?"calendar":"")},[o,n,a,r]}class ut extends I{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.5rem}.content{flex:1 1 auto;background-color:var(--color-gray-100);padding:1.5rem}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Vi,Wi,H,{type:0,title:1,testid:2},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","title","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get title(){return this.$$.ctx[1]}set title(e){this.$$set({title:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-callout",ut);function Zi(i){let e,t,r;return{c(){e=_("div"),t=_("slot"),this.c=p,d(e,"data-testid",i[2]),d(e,"class","card"),d(e,"style",r="--width: "+i[1]+"px; "+(i[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${i[0]});`)+"")},m(o,n){w(o,e,n),y(e,t)},p(o,[n]){n&4&&d(e,"data-testid",o[2]),n&3&&r!==(r="--width: "+o[1]+"px; "+(o[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${o[0]});`)+"")&&d(e,"style",r)},i:p,o:p,d(o){o&&x(e)}}}function Ui(i,e,t){let{elevation:r=0}=e,{width:o=320}=e,{testId:n=""}=e;return i.$$set=a=>{"elevation"in a&&t(0,r=a.elevation),"width"in a&&t(1,o=a.width),"testId"in a&&t(2,n=a.testId)},[r,o,n]}class ft extends I{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
6
|
}}</style>`,S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Ui,Zi,H,{elevation:0,width:1,testId:2},null),e&&(e.target&&w(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",ft);function Xi(i){let e;return{c(){e=_("goa-card-content"),e.innerHTML='<goa-button-group alignment="end"><slot></slot></goa-button-group>',this.c=p},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class gt extends I{constructor(e){super();S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Xi,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-card-actions",gt);function Ji(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",this.c=p,d(e,"class","card-content")},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class ht extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-content{padding:1rem}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Ji,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-card-content",ht);function Ki(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",this.c=p,d(e,"class","card-group")},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class mt extends I{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Ki,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-card-group",mt);function Yi(i){let e;return{c(){e=_("div"),this.c=p,d(e,"class","card-image"),D(e,"background-image","url("+i[0]+")"),D(e,"height",i[1]),D(e,"background-size","cover"),D(e,"background-position","center")},m(t,r){w(t,e,r)},p(t,[r]){r&1&&D(e,"background-image","url("+t[0]+")"),r&2&&D(e,"height",t[1])},i:p,o:p,d(t){t&&x(e)}}}function Qi(i,e,t){let{src:r}=e,{height:o="100%"}=e;return i.$$set=n=>{"src"in n&&t(0,r=n.src),"height"in n&&t(1,o=n.height)},[r,o]}class bt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Qi,Yi,H,{src:0,height:1},null),e&&(e.target&&w(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",bt);function $i(i){let e,t;return{c(){e=re("svg"),t=re("path"),d(t,"d","M5.09,9.64,1.27,5.82,0,7.09l5.09,5.09L16,1.27,14.73,0Z"),d(e,"id","checkmark"),d(e,"data-testid","checkmark"),d(e,"xmlns","http://www.w3.org/2000/svg"),d(e,"viewBox","0 0 16 12.18")},m(r,o){w(r,e,o),y(e,t)},d(r){r&&x(e)}}}function er(i){let e,t;return{c(){e=re("svg"),t=re("rect"),d(t,"width","15"),d(t,"height","2"),d(e,"id","dashmark"),d(e,"data-testid","dashmark"),d(e,"xmlns","http://www.w3.org/2000/svg"),d(e,"viewBox","0 0 15 2")},m(r,o){w(r,e,o),y(e,t)},d(r){r&&x(e)}}}function tr(i){let e,t,r,o,n,a,s,l,c,f,u;function v(m,E){if(m[5])return er;if(m[4])return $i}let b=v(i),g=b&&b(i);return{c(){e=_("label"),t=_("div"),r=_("input"),n=M(),g&&g.c(),a=M(),s=_("div"),l=_("slot"),c=W(i[1]),this.c=p,d(r,"id",i[8]),d(r,"data-testid",i[3]),d(r,"name",i[0]),r.checked=i[4],r.disabled=i[7],d(r,"type","checkbox"),r.value=o=`${i[2]}`,d(t,"class","goa-checkbox-container"),P(t,"goa-checkbox--selected",i[4]),d(l,"name","main"),d(s,"class","goa-checkbox-text"),d(s,"data-testid","text"),d(e,"for",i[8]),d(e,"class","goa-checkbox"),P(e,"goa-checkbox--disabled",i[7]),P(e,"goa-checkbox--error",i[6])},m(m,E){w(m,e,E),y(e,t),y(t,r),y(t,n),g&&g.m(t,null),y(e,a),y(e,s),y(s,l),y(l,c),f||(u=U(r,"change",i[9]),f=!0)},p(m,[E]){E&256&&d(r,"id",m[8]),E&8&&d(r,"data-testid",m[3]),E&1&&d(r,"name",m[0]),E&16&&(r.checked=m[4]),E&128&&(r.disabled=m[7]),E&4&&o!==(o=`${m[2]}`)&&(r.value=o),b!==(b=v(m))&&(g&&g.d(1),g=b&&b(m),g&&(g.c(),g.m(t,null))),E&16&&P(t,"goa-checkbox--selected",m[4]),E&2&&Z(c,m[1]),E&256&&d(e,"for",m[8]),E&128&&P(e,"goa-checkbox--disabled",m[7]),E&64&&P(e,"goa-checkbox--error",m[6])},i:p,o:p,d(m){m&&x(e),g&&g.d(),f=!1,u()}}}function ir(i,e,t){let r,o,n,a,s,{name:l}=e,{text:c=""}=e,{value:f=""}=e,{checked:u}=e,{disabled:v}=e,{error:b}=e,{testid:g=""}=e;function m(E){const C=!a,z=C?`${f||"checked"}`:"";E.target.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:l,checked:C,value:z}}))}return i.$$set=E=>{"name"in E&&t(0,l=E.name),"text"in E&&t(1,c=E.text),"value"in E&&t(2,f=E.value),"checked"in E&&t(10,u=E.checked),"disabled"in E&&t(11,v=E.disabled),"error"in E&&t(12,b=E.error),"testid"in E&&t(3,g=E.testid)},i.$$.update=()=>{i.$$.dirty&1&&t(8,r=`id-${l}`),i.$$.dirty&2048&&t(7,o=j(v)),i.$$.dirty&4096&&t(6,n=j(b)),i.$$.dirty&1024&&t(4,a=j(u))},t(5,s=!1),[l,c,f,g,a,s,n,o,r,m,u,v,b]}class vt extends I{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}.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}.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)}.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-500)}.goa-checkbox--error .goa-checkbox-container,.goa-checkbox--error .goa-checkbox-container:hover{border:1px solid var(--goa-color-status-emergency);background-color:var(--color-white)}.goa-checkbox--error .goa-checkbox-container svg{fill:var(--goa-color-status-emergency)}</style>',S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},ir,tr,H,{name:0,text:1,value:2,checked:10,disabled:11,error:12,testid:3},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","text","value","checked","disabled","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name: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 checked(){return this.$$.ctx[10]}set checked(e){this.$$set({checked:e}),h()}get disabled(){return this.$$.ctx[11]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[12]}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",vt);function rr(i){let e,t,r,o,n,a,s,l,c;return{c(){e=_("div"),t=_("header"),r=_("div"),r.innerHTML='<slot name="title"></slot>',o=M(),n=_("div"),n.innerHTML='<slot name="actions"></slot>',s=M(),l=_("div"),l.innerHTML="<slot></slot>",this.c=p,d(r,"class","title"),d(n,"class","actions"),d(t,"class",a="heading--"+i[1]),d(l,"class","content"),d(e,"class",c="goa-container goa-container--"+i[0])},m(f,u){w(f,e,u),y(e,t),y(t,r),y(t,o),y(t,n),y(e,s),y(e,l)},p(f,[u]){u&2&&a!==(a="heading--"+f[1])&&d(t,"class",a),u&1&&c!==(c="goa-container goa-container--"+f[0])&&d(e,"class",c)},i:p,o:p,d(f){f&&x(e)}}}function or(i,e,t){let{variant:r="default"}=e,{headingsize:o="large"}=e;return i.$$set=n=>{"variant"in n&&t(0,r=n.variant),"headingsize"in n&&t(1,o=n.headingsize)},[r,o]}class yt extends I{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{box-sizing:border-box;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);padding-left:1.5rem;padding-right:1.5rem}.content{padding:1.5rem;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--default header{background-color:var(--color-gray-100);border-color:var(--color-gray-200);color:var(--color-black)}.goa-container--primary 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--warning 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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},or,rr,H,{variant:0,headingsize:1},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["variant","headingsize"]}get variant(){return this.$$.ctx[0]}set variant(e){this.$$set({variant:e}),h()}get headingsize(){return this.$$.ctx[1]}set headingsize(e){this.$$set({headingsize:e}),h()}}customElements.define("goa-container",yt);const se=[];function _t(i,e=p){let t;const r=new Set;function o(s){if(H(i,s)&&(i=s,t)){const l=!se.length;for(const c of r)c[1](),se.push(c,i);if(l){for(let c=0;c<se.length;c+=2)se[c][0](se[c+1]);se.length=0}}}function n(s){o(s(i))}function a(s,l=p){const c=[s,l];return r.add(c),r.size===1&&(t=e(o)||p),s(i),()=>{r.delete(c),r.size===0&&(t(),t=null)}}return{set:o,update:n,subscribe:a}}const ce={};class nr{constructor(){this.store=_t()}subscribe(e){this.store.subscribe(t=>{e(t)})}notify(e){this.store.update(()=>e)}}function Te(i){return ce[i]||(ce[i]=new nr),ce[i]}function pt(i){!ce[i]||delete ce[i]}const wt="init-response",kt="change",xt="select",De="filter";function zt(i){let e,t,r,o;return{c(){e=_("div"),d(e,"data-testid",t=`${i[0]}-dropdown-background`),d(e,"class","goa-dropdown-background")},m(n,a){w(n,e,a),r||(o=U(e,"click",i[14]),r=!0)},p(n,a){a&1&&t!==(t=`${n[0]}-dropdown-background`)&&d(e,"data-testid",t)},d(n){n&&x(e),r=!1,o()}}}function Et(i){let e,t,r,o,n,a,s;return{c(){e=_("div"),t=_("goa-input"),k(t,"error",i[12]),k(t,"disabled",i[4]),k(t,"leadingicon",i[1]),k(t,"placeholder",i[3]),k(t,"id",r=`${i[0]}-dropdown-input`),k(t,"name","search"),k(t,"readonly",""),k(t,"trailingicon","chevron-down"),k(t,"handletrailingiconclick",""),k(t,"type","text"),k(t,"value",o=i[7].join(", ")),d(e,"data-testid",n=`${i[0]}-dropdown`)},m(l,c){w(l,e,c),y(e,t),a||(s=U(t,"focus",i[13]),a=!0)},p(l,c){c&4096&&k(t,"error",l[12]),c&16&&k(t,"disabled",l[4]),c&2&&k(t,"leadingicon",l[1]),c&8&&k(t,"placeholder",l[3]),c&1&&r!==(r=`${l[0]}-dropdown-input`)&&k(t,"id",r),c&128&&o!==(o=l[7].join(", "))&&k(t,"value",o),c&1&&n!==(n=`${l[0]}-dropdown`)&&d(e,"data-testid",n)},d(l){l&&x(e),a=!1,s()}}}function Ct(i){let e,t,r,o,n,a=i[5]&&At(i);return{c(){e=_("div"),a&&a.c(),t=M(),r=_("ul"),o=_("slot"),d(r,"class","goa-dropdown-list"),d(r,"style",n=`overflow-y: auto; max-height: ${i[2]}px`),d(e,"class","menu")},m(s,l){w(s,e,l),a&&a.m(e,null),y(e,t),y(e,r),y(r,o)},p(s,l){s[5]?a?a.p(s,l):(a=At(s),a.c(),a.m(e,t)):a&&(a.d(1),a=null),l&4&&n!==(n=`overflow-y: auto; max-height: ${s[2]}px`)&&d(r,"style",n)},d(s){s&&x(e),a&&a.d()}}}function At(i){let e,t,r;return{c(){e=_("goa-input"),k(e,"id",t=`${i[0]}-dropdown-filter`),k(e,"focused",i[8]),k(e,"name","filter"),k(e,"placeholder","Filter"),k(e,"trailingicon",r=i[11].length>0?"close-circle":"search"),k(e,"handletrailingiconclick",""),k(e,"type","text"),k(e,"value",i[11])},m(o,n){w(o,e,n),i[19](e)},p(o,n){n&1&&t!==(t=`${o[0]}-dropdown-filter`)&&k(e,"id",t),n&256&&k(e,"focused",o[8]),n&2048&&r!==(r=o[11].length>0?"close-circle":"search")&&k(e,"trailingicon",r),n&2048&&k(e,"value",o[11])},d(o){o&&x(e),i[19](null)}}}function ar(i){let e,t,r,o,n=i[8]&&zt(i),a=(!i[8]||!i[5])&&Et(i),s=i[8]&&Ct(i);return{c(){e=_("div"),n&&n.c(),t=M(),r=_("div"),a&&a.c(),o=M(),s&&s.c(),this.c=p,d(e,"data-testid",i[6]),d(e,"class","goa-dropdown-box")},m(l,c){w(l,e,c),n&&n.m(e,null),y(e,t),y(e,r),a&&a.m(r,null),y(r,o),s&&s.m(r,null),i[20](e)},p(l,[c]){l[8]?n?n.p(l,c):(n=zt(l),n.c(),n.m(e,t)):n&&(n.d(1),n=null),!l[8]||!l[5]?a?a.p(l,c):(a=Et(l),a.c(),a.m(r,o)):a&&(a.d(1),a=null),l[8]?s?s.p(l,c):(s=Ct(l),s.c(),s.m(r,null)):s&&(s.d(1),s=null),c&64&&d(e,"data-testid",l[6])},i:p,o:p,d(l){l&&x(e),n&&n.d(),a&&a.d(),s&&s.d(),i[20](null)}}}const lr=300;function sr(i,e,t){let r,{name:o}=e,{values:n}=e,{leadingicon:a}=e,{maxheight:s=lr}=e,{placeholder:l=""}=e,{multiselect:c}=e,{disabled:f}=e,{filterable:u}=e,{error:v}=e,{testid:b}=e,g=[],m,E=!1,C,z,T="",B;Ce(async()=>{await it(),t(18,B=Te(o)),B.subscribe(A=>{switch(A==null?void 0:A.type){case wt:{const{label:fe}=A;c?t(7,g=[...g,fe]):t(7,g=[fe]);break}case xt:{const{label:fe,value:Fe}=A;A.selected?c?(t(7,g=[...g,fe]),m=[...m,Fe]):(t(7,g=[fe]),m=[Fe]):(t(7,g=g.filter(qe=>qe!==fe)),m=m.filter(qe=>qe!==Fe)),c||t(8,E=!1),C.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:m}}));break}}})}),Qe(()=>{pt(o)});let O=A=>{A.stopPropagation(),t(11,T=A.detail.value),B.notify({type:De,filter:T})},F=A=>{A.stopPropagation(),t(11,T=""),B.notify({type:De,filter:T}),z==null||z.focus()};async function ue(){f||(t(8,E=!0),await it(),z==null||z.addEventListener("_change",O),z==null||z.addEventListener("_trailingIconClick",F),z==null||z.focus())}function te(){t(8,E=!1),z==null||z.removeEventListener("_change",O),z==null||z.removeEventListener("_trailingIconClick",F)}function R(A){le[A?"unshift":"push"](()=>{z=A,t(10,z)})}function N(A){le[A?"unshift":"push"](()=>{C=A,t(9,C)})}return i.$$set=A=>{"name"in A&&t(0,o=A.name),"values"in A&&t(15,n=A.values),"leadingicon"in A&&t(1,a=A.leadingicon),"maxheight"in A&&t(2,s=A.maxheight),"placeholder"in A&&t(3,l=A.placeholder),"multiselect"in A&&t(16,c=A.multiselect),"disabled"in A&&t(4,f=A.disabled),"filterable"in A&&t(5,u=A.filterable),"error"in A&&t(17,v=A.error),"testid"in A&&t(6,b=A.testid)},i.$$.update=()=>{if(i.$$.dirty&131072&&t(12,r=v?"true":"false"),i.$$.dirty&360448&&n!==void 0){let A;typeof n=="string"?A=n?JSON.parse(n):[]:A=n,m=A,B==null||B.notify({type:kt,multiSelect:c,values:A})}},[o,a,s,l,f,u,b,g,E,C,z,T,r,ue,te,n,c,v,B,R,N]}class Mt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-dropdown-box{position:relative}.menu goa-input{position:relative}.goa-dropdown-background{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);box-shadow:var(--shadow-1);z-index:99}.goa-dropdown-list{scroll-behavior:smooth;scrollbar-width:thin}.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}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},sr,ar,H,{name:0,values:15,leadingicon:1,maxheight:2,placeholder:3,multiselect:16,disabled:4,filterable:5,error:17,testid:6},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","values","leadingicon","maxheight","placeholder","multiselect","disabled","filterable","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get values(){return this.$$.ctx[15]}set values(e){this.$$set({values:e}),h()}get leadingicon(){return this.$$.ctx[1]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get maxheight(){return this.$$.ctx[2]}set maxheight(e){this.$$set({maxheight:e}),h()}get placeholder(){return this.$$.ctx[3]}set placeholder(e){this.$$set({placeholder:e}),h()}get multiselect(){return this.$$.ctx[16]}set multiselect(e){this.$$set({multiselect:e}),h()}get disabled(){return this.$$.ctx[4]}set disabled(e){this.$$set({disabled:e}),h()}get filterable(){return this.$$.ctx[5]}set filterable(e){this.$$set({filterable:e}),h()}get error(){return this.$$.ctx[17]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[6]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-dropdown",Mt);function cr(i){let e,t=(i[2]||i[0])+"",r,o,n;return{c(){e=_("li"),this.c=p,d(e,"class","goa-dropdown-option"),d(e,"style",r=`display: ${i[4]?"none":"block"}`),d(e,"data-testid",i[1]),P(e,"goa-dropdown-option--disabled",i[5]),P(e,"goa-dropdown-option--selected",i[3])},m(a,s){w(a,e,s),e.innerHTML=t,o||(n=U(e,"click",i[6]),o=!0)},p(a,[s]){s&5&&t!==(t=(a[2]||a[0])+"")&&(e.innerHTML=t),s&16&&r!==(r=`display: ${a[4]?"none":"block"}`)&&d(e,"style",r),s&2&&d(e,"data-testid",a[1]),s&32&&P(e,"goa-dropdown-option--disabled",a[5]),s&8&&P(e,"goa-dropdown-option--selected",a[3])},i:p,o:p,d(a){a&&x(e),o=!1,n()}}}function dr(i,e,t){let r,o,n,{name:a=""}=e,{value:s=""}=e,{label:l=""}=e,{selected:c="false"}=e,{disabled:f="false"}=e,{hide:u="false"}=e,{testid:v}=e,b,g,m=!1;function E(z){if(z.length===0||!l.toLowerCase().includes(z.toLowerCase()))return l;t(2,b="");let T=0;return[...l.matchAll(new RegExp(z,"gi"))].forEach(B=>{t(2,b+=l.slice(T,B.index)+`<b>${B[0]}</b>`),T=B.index+B[0].length}),t(2,b+=l.slice(T)),b}function C(){t(3,r=!r),g.notify({type:xt,label:l,value:s,selected:r})}return Ce(()=>{g=Te(a),g.subscribe(z=>{var T;switch(z==null?void 0:z.type){case kt:{t(3,r=(T=z.values)===null||T===void 0?void 0:T.includes(s)),!m&&r&&g.notify({type:wt,label:l,value:s,selected:!0}),m=!0;break}case De:{const{filter:B}=z;if(!s&&!l)t(7,u="false");else{let O;switch(typeof s){case"string":O=(s==null?void 0:s.toLowerCase().includes(B))||(l==null?void 0:l.toLowerCase().includes(B));break;case"number":O=s===B||(l==null?void 0:l.toLowerCase().includes(B));break}t(7,u=Gi(!O))}t(2,b=E(B));break}}})}),i.$$set=z=>{"name"in z&&t(8,a=z.name),"value"in z&&t(9,s=z.value),"label"in z&&t(0,l=z.label),"selected"in z&&t(10,c=z.selected),"disabled"in z&&t(11,f=z.disabled),"hide"in z&&t(7,u=z.hide),"testid"in z&&t(1,v=z.testid)},i.$$.update=()=>{i.$$.dirty&1024&&t(3,r=j(c)),i.$$.dirty&2048&&t(5,o=j(f)),i.$$.dirty&128&&t(4,n=j(u))},[l,v,b,r,n,o,C,u,a,s,c,f]}class Rt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}li{font-family:var(--font-family)}.goa-dropdown-option{margin:0;padding:0.5rem;cursor:pointer;color:var(--color-black)}.goa-dropdown-option:hover{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--active);color:var(--color-white)}.goa-dropdown-option--selected:hover{background:var(--goa-color-interactive--hover);color:var(--color-white)}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},dr,cr,H,{name:8,value:9,label:0,selected:10,disabled:11,hide:7,testid:1},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","label","selected","disabled","hide","testid"]}get name(){return this.$$.ctx[8]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[9]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[0]}set label(e){this.$$set({label:e}),h()}get selected(){return this.$$.ctx[10]}set selected(e){this.$$set({selected:e}),h()}get disabled(){return this.$$.ctx[11]}set disabled(e){this.$$set({disabled:e}),h()}get hide(){return this.$$.ctx[7]}set hide(e){this.$$set({hide:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-dropdown-item",Rt);function ur(i){let e,t;return{c(){e=_("div"),t=_("slot"),this.c=p,d(e,"class","goa-flex-row"),D(e,"gap",i[0])},m(r,o){w(r,e,o),y(e,t)},p(r,[o]){o&1&&D(e,"gap",r[0])},i:p,o:p,d(r){r&&x(e)}}}function fr(i,e,t){let r,{gap:o=""}=e;return i.$$set=n=>{"gap"in n&&t(1,o=n.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=o==="small"?"1rem":o==="medium"?"2rem":o==="large"?"3rem":"0")},[r,o]}class Lt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-flex-row{margin-bottom:1rem;display:flex;flex-direction:column;flex-wrap:wrap;align-items:stretch}@media(min-width: 480px){.goa-flex-row{flex-direction:row}}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},fr,ur,H,{gap:1},null),e&&(e.target&&w(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",Lt);function Tt(i){let e,t,r,o=i[3]&&Ht();return{c(){e=_("label"),t=W(i[0]),r=M(),o&&o.c(),d(e,"for","")},m(n,a){w(n,e,a),y(e,t),y(e,r),o&&o.m(e,null)},p(n,a){a&1&&Z(t,n[0]),n[3]?o||(o=Ht(),o.c(),o.m(e,null)):o&&(o.d(1),o=null)},d(n){n&&x(e),o&&o.d()}}}function Ht(i){let e;return{c(){e=_("em"),e.textContent="(optional)"},m(t,r){w(t,e,r)},d(t){t&&x(e)}}}function It(i){let e,t;return{c(){e=_("div"),t=W(i[2]),d(e,"class","error-msg")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&4&&Z(t,r[2])},d(r){r&&x(e)}}}function Gt(i){let e,t;return{c(){e=_("div"),t=W(i[1]),d(e,"class","help-msg")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&2&&Z(t,r[1])},d(r){r&&x(e)}}}function gr(i){let e,t,r,o,n,a=i[0]&&Tt(i),s=i[2]&&It(i),l=i[1]&&Gt(i);return{c(){e=_("div"),a&&a.c(),t=M(),r=_("div"),r.innerHTML="<slot></slot>",o=M(),s&&s.c(),n=M(),l&&l.c(),this.c=p,d(r,"class","form-item-input"),d(e,"class","goa-form-item")},m(c,f){w(c,e,f),a&&a.m(e,null),y(e,t),y(e,r),y(e,o),s&&s.m(e,null),y(e,n),l&&l.m(e,null)},p(c,[f]){c[0]?a?a.p(c,f):(a=Tt(c),a.c(),a.m(e,t)):a&&(a.d(1),a=null),c[2]?s?s.p(c,f):(s=It(c),s.c(),s.m(e,n)):s&&(s.d(1),s=null),c[1]?l?l.p(c,f):(l=Gt(c),l.c(),l.m(e,null)):l&&(l.d(1),l=null)},i:p,o:p,d(c){c&&x(e),a&&a.d(),s&&s.d(),l&&l.d()}}}function hr(i,e,t){let r,{label:o=""}=e,{helptext:n=""}=e,{error:a=""}=e,{optional:s}=e;return i.$$set=l=>{"label"in l&&t(0,o=l.label),"helptext"in l&&t(1,n=l.helptext),"error"in l&&t(2,a=l.error),"optional"in l&&t(4,s=l.optional)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=j(s))},[o,n,a,r,s]}class St extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{flex:1 1 auto;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}label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},hr,gr,H,{label:0,helptext:1,error:2,optional:4},null),e&&(e.target&&w(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",St);function mr(i){let e,t,r,o,n,a,s,l;return{c(){e=_("div"),t=_("goa-page-block"),r=_("h1"),o=W(i[0]),n=M(),a=_("div"),a.innerHTML="<slot></slot>",s=M(),l=_("slot"),this.c=p,d(r,"role","heading"),d(a,"class","goa-hero-banner-content"),d(a,"role","note"),d(l,"name","actions"),d(e,"class","goa-hero"),d(e,"data-testid","background"),D(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]+")"),D(e,"background-size","cover"),D(e,"background-position","center"),D(e,"background-repeat","no-repeat")},m(c,f){w(c,e,f),y(e,t),y(t,r),y(r,o),y(t,n),y(t,a),y(t,s),y(t,l)},p(c,[f]){f&1&&Z(o,c[0]),f&2&&D(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&&x(e)}}}function br(i,e,t){let{title:r}=e,{backgroundurl:o}=e;return i.$$set=n=>{"title"in n&&t(0,r=n.title),"backgroundurl"in n&&t(1,o=n.backgroundurl)},[r,o]}class Bt extends I{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},br,mr,H,{title:0,backgroundurl:1},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["title","backgroundurl"]}get title(){return this.$$.ctx[0]}set title(e){this.$$set({title:e}),h()}get backgroundurl(){return this.$$.ctx[1]}set backgroundurl(e){this.$$set({backgroundurl:e}),h()}}customElements.define("goa-hero-banner",Bt);function Pt(i){let e,t,r;return{c(){e=_("ion-icon"),k(e,"style",t=`width: ${i[2]}; height: ${i[2]}`),k(e,"name",r=i[1]==="filled"?i[0]:`${i[0]}-${i[1]}`)},m(o,n){w(o,e,n)},p(o,n){n&4&&t!==(t=`width: ${o[2]}; height: ${o[2]}`)&&k(e,"style",t),n&3&&r!==(r=o[1]==="filled"?o[0]:`${o[0]}-${o[1]}`)&&k(e,"name",r)},d(o){o&&x(e)}}}function vr(i){let e,t,r,o=i[0]&&Pt(i);return{c(){e=_("div"),o&&o.c(),this.c=p,d(e,"class","goa-icon"),d(e,"data-testid",t=`icon-${i[0]}`),d(e,"style",r=`--size: ${i[2]}`),P(e,"inverted",i[3])},m(n,a){w(n,e,a),o&&o.m(e,null)},p(n,[a]){n[0]?o?o.p(n,a):(o=Pt(n),o.c(),o.m(e,null)):o&&(o.d(1),o=null),a&1&&t!==(t=`icon-${n[0]}`)&&d(e,"data-testid",t),a&4&&r!==(r=`--size: ${n[2]}`)&&d(e,"style",r),a&8&&P(e,"inverted",n[3])},i:p,o:p,d(n){n&&x(e),o&&o.d()}}}function yr(i,e,t){let r,o,{type:n}=e,{size:a="medium"}=e,{theme:s="outline"}=e,{inverted:l}=e;return i.$$set=c=>{"type"in c&&t(0,n=c.type),"size"in c&&t(4,a=c.size),"theme"in c&&t(1,s=c.theme),"inverted"in c&&t(5,l=c.inverted)},i.$$.update=()=>{i.$$.dirty&32&&t(3,r=j(l)),i.$$.dirty&16&&t(2,o={small:"1.1rem",medium:"1.5rem",large:"2rem"}[a])},[n,s,o,r,a,l]}class jt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}:host,.goa-icon{display:inline-flex;align-items:center}.goa-icon,.goa-icon *{box-sizing:border-box}.goa-icon{width:var(--size);height:var(--size)}.inverted{color:#fff;fill:#fff}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},yr,vr,H,{type:0,size:4,theme:1,inverted:5},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","inverted"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[4]}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[5]}set inverted(e){this.$$set({inverted:e}),h()}}customElements.define("goa-icon",jt);function _r(i){let e,t,r,o;return{c(){e=_("button"),t=_("goa-icon"),this.c=p,k(t,"type",i[0]),k(t,"size",i[1]),k(t,"theme",i[2]),k(t,"inverted",i[5]),D(e,"--size",i[6]),d(e,"title",i[3]),e.disabled=i[7],d(e,"class",i[8]),d(e,"data-testid",i[4])},m(n,a){w(n,e,a),y(e,t),r||(o=U(e,"click",pr),r=!0)},p(n,[a]){a&1&&k(t,"type",n[0]),a&2&&k(t,"size",n[1]),a&4&&k(t,"theme",n[2]),a&32&&k(t,"inverted",n[5]),a&64&&D(e,"--size",n[6]),a&8&&d(e,"title",n[3]),a&128&&(e.disabled=n[7]),a&256&&d(e,"class",n[8]),a&16&&d(e,"data-testid",n[4])},i:p,o:p,d(n){n&&x(e),r=!1,o()}}}function pr(i){i.target.dispatchEvent(new CustomEvent("_click",{composed:!0,detail:{event:i}}))}function wr(i,e,t){let r,o,n,a,{type:s}=e,{size:l="medium"}=e,{theme:c="outline"}=e,{variant:f="color"}=e,{title:u=""}=e,{testId:v=""}=e,{disabled:b}=e,{inverted:g}=e;return i.$$set=m=>{"type"in m&&t(0,s=m.type),"size"in m&&t(1,l=m.size),"theme"in m&&t(2,c=m.theme),"variant"in m&&t(9,f=m.variant),"title"in m&&t(3,u=m.title),"testId"in m&&t(4,v=m.testId),"disabled"in m&&t(10,b=m.disabled),"inverted"in m&&t(11,g=m.inverted)},i.$$.update=()=>{i.$$.dirty&2048&&t(5,n=j(g)),i.$$.dirty&544&&t(8,r=`goa-icon-button goa-icon-button--${f} ${n?"goa-icon-button--inverted":""}`),i.$$.dirty&1024&&t(7,o=j(b)),i.$$.dirty&2&&t(6,a={small:"1rem",medium:"1.5rem",large:"2rem"}[l])},[s,l,c,u,v,n,a,o,r,f,b,g]}class Dt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}.goa-icon-button,.goa-icon-button *{box-sizing:border-box}.goa-icon-button{display:inline-flex;align-items:center;background:transparent;cursor:pointer;padding:0;border:none}.goa-icon-button--color{border-radius:0.5rem;padding:calc(var(--size) / 4)}.goa-icon-button--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}.goa-icon-button--color:active,.goa-icon-button--nocolor:active{transform:scale(0.9)}.goa-icon-button--color:hover{background-color:var(--goa-color-primary-light)}.goa-icon-button--color.goa-icon-button--inverted:hover{background-color:var(--goa-color-primary-dark)}.goa-icon-button:disabled{color:var(--color-gray-200);fill:var(--color-gray-200);transform:none;cursor:default}.goa-icon-button:disabled:hover{background-color:transparent}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},wr,_r,H,{type:0,size:1,theme:2,variant:9,title:3,testId:4,disabled:10,inverted:11},null),e&&(e.target&&w(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",Dt);function Ot(i){let e,t;return{c(){e=_("div"),t=_("goa-icon"),k(t,"data-testid","leading-icon"),k(t,"type",i[4]),d(e,"class","goa-input-leading-icon")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&16&&k(t,"type",r[4])},d(r){r&&x(e)}}}function Nt(i){let e,t;return{c(){e=_("div"),t=_("goa-icon"),k(t,"data-testid","trailing-icon"),k(t,"size","medium"),k(t,"type",i[5]),d(e,"class","goa-input-trailing-icon")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&32&&k(t,"type",r[5])},d(r){r&&x(e)}}}function Ft(i){let e,t,r,o;return{c(){e=_("div"),t=_("goa-icon-button"),k(t,"disabled",i[10]),k(t,"variant","nocolor"),k(t,"size","medium"),k(t,"type",i[5]),k(t,"data-testid","trailing-icon-button"),d(e,"class","goa-input-trailing-icon")},m(n,a){w(n,e,a),y(e,t),r||(o=U(t,"click",xr),r=!0)},p(n,a){a&1024&&k(t,"disabled",n[10]),a&32&&k(t,"type",n[5])},d(n){n&&x(e),r=!1,o()}}}function kr(i){let e,t,r,o,n,a,s,l,c,f,u=i[4]&&Ot(i),v=i[5]&&!i[13]&&Nt(i),b=i[5]&&i[13]&&Ft(i);return{c(){e=_("div"),u&&u.c(),t=M(),r=_("input"),n=M(),v&&v.c(),a=M(),b&&b.c(),this.c=p,d(r,"class",o=`input--${i[6]}`),r.readOnly=i[12],r.disabled=i[10],d(r,"data-testid",i[7]),d(r,"name",i[1]),d(r,"type",i[0]),r.value=i[2],d(r,"placeholder",i[3]),d(e,"style",s=`width: ${i[8]};`),d(e,"class",l=`
|
|
7
7
|
goa-input ${i[10]?"goa-input--disabled":""}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
goa-input ${g[10]?"goa-input--disabled":""}
|
|
12
12
|
variant--${g[6]}
|
|
13
13
|
type--${g[0]}
|
|
14
|
-
`)&&d(e,"class",l),m&3137&&P(e,"error",g[11])},i:p,o:p,d(g){g&&x(e),u&&u.d(),i[21](null),v&&v.d(),b&&b.d(),c=!1,f()}}}function xr(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function zr(i,e,t){let r,o,n,a,s,{type:l="text"}=e,{name:c=""}=e,{value:f=""}=e,{placeholder:u=""}=e,{leadingicon:v=null}=e,{trailingicon:b=null}=e,{variant:g="goa"}=e,{disabled:m="false"}=e,{handletrailingiconclick:E="false"}=e,{focused:C="false"}=e,{readonly:z="false"}=e,{error:T="false"}=e,{testid:B=""}=e,{width:O="100%"}=e,F;function ue(R){R.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:c,value:R.target.value}})),R.stopPropagation()}function te(R){le[R?"unshift":"push"](()=>{F=R,t(9,F)})}return i.$$set=R=>{"type"in R&&t(0,l=R.type),"name"in R&&t(1,c=R.name),"value"in R&&t(2,f=R.value),"placeholder"in R&&t(3,u=R.placeholder),"leadingicon"in R&&t(4,v=R.leadingicon),"trailingicon"in R&&t(5,b=R.trailingicon),"variant"in R&&t(6,g=R.variant),"disabled"in R&&t(15,m=R.disabled),"handletrailingiconclick"in R&&t(16,E=R.handletrailingiconclick),"focused"in R&&t(17,C=R.focused),"readonly"in R&&t(18,z=R.readonly),"error"in R&&t(19,T=R.error),"testid"in R&&t(7,B=R.testid),"width"in R&&t(8,O=R.width)},i.$$.update=()=>{i.$$.dirty&65536&&t(13,r=j(E)),i.$$.dirty&131072&&t(20,o=j(C)),i.$$.dirty&262144&&t(12,n=j(z)),i.$$.dirty&524288&&t(11,a=j(T)),i.$$.dirty&32768&&t(10,s=j(m)),i.$$.dirty&1049088&&o&&F&&setTimeout(()=>F.focus(),1)},[l,c,f,u,v,b,g,B,O,F,s,a,n,r,ue,m,E,C,z,T,o,te]}class qt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.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:3px;background:white;color:var(--color-black, #ccc);padding:var(--input-padding, 0.5rem) 0.5rem;display:inline-flex;align-items:center}.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
|
|
14
|
+
`)&&d(e,"class",l),m&3137&&P(e,"error",g[11])},i:p,o:p,d(g){g&&x(e),u&&u.d(),i[21](null),v&&v.d(),b&&b.d(),c=!1,f()}}}function xr(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function zr(i,e,t){let r,o,n,a,s,{type:l="text"}=e,{name:c=""}=e,{value:f=""}=e,{placeholder:u=""}=e,{leadingicon:v=null}=e,{trailingicon:b=null}=e,{variant:g="goa"}=e,{disabled:m="false"}=e,{handletrailingiconclick:E="false"}=e,{focused:C="false"}=e,{readonly:z="false"}=e,{error:T="false"}=e,{testid:B=""}=e,{width:O="100%"}=e,F;function ue(R){R.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:c,value:R.target.value}})),R.stopPropagation()}function te(R){le[R?"unshift":"push"](()=>{F=R,t(9,F)})}return i.$$set=R=>{"type"in R&&t(0,l=R.type),"name"in R&&t(1,c=R.name),"value"in R&&t(2,f=R.value),"placeholder"in R&&t(3,u=R.placeholder),"leadingicon"in R&&t(4,v=R.leadingicon),"trailingicon"in R&&t(5,b=R.trailingicon),"variant"in R&&t(6,g=R.variant),"disabled"in R&&t(15,m=R.disabled),"handletrailingiconclick"in R&&t(16,E=R.handletrailingiconclick),"focused"in R&&t(17,C=R.focused),"readonly"in R&&t(18,z=R.readonly),"error"in R&&t(19,T=R.error),"testid"in R&&t(7,B=R.testid),"width"in R&&t(8,O=R.width)},i.$$.update=()=>{i.$$.dirty&65536&&t(13,r=j(E)),i.$$.dirty&131072&&t(20,o=j(C)),i.$$.dirty&262144&&t(12,n=j(z)),i.$$.dirty&524288&&t(11,a=j(T)),i.$$.dirty&32768&&t(10,s=j(m)),i.$$.dirty&1049088&&o&&F&&setTimeout(()=>F.focus(),1)},[l,c,f,u,v,b,g,B,O,F,s,a,n,r,ue,m,E,C,z,T,o,te]}class qt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.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:3px;background:white;color:var(--color-black, #ccc);padding:var(--input-padding, 0.5rem) 0.5rem;display:inline-flex;align-items:center}.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 input[readonly]{cursor:pointer}.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{line-height:18px}.goa-input-trailing-icon{display:flex;align-items:center}.goa-input-trailing-icon>.goa-icon-button{margin-right:-0.5rem}input{display:block;width:100%;font-size:var(--input-font-size)}.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);color:var(--goa-color-text-secondary);cursor:default;box-shadow:none}.goa-input--disabled input:hover{cursor:default !important}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}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-status-emergency-dark)}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},zr,kr,H,{type:0,name:1,value:2,placeholder:3,leadingicon:4,trailingicon:5,variant:6,disabled:15,handletrailingiconclick:16,focused:17,readonly:18,error:19,testid:7,width:8},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","name","value","placeholder","leadingicon","trailingicon","variant","disabled","handletrailingiconclick","focused","readonly","error","testid","width"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get name(){return this.$$.ctx[1]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[2]}set value(e){this.$$set({value:e}),h()}get placeholder(){return this.$$.ctx[3]}set placeholder(e){this.$$set({placeholder:e}),h()}get leadingicon(){return this.$$.ctx[4]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[5]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get variant(){return this.$$.ctx[6]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[15]}set disabled(e){this.$$set({disabled:e}),h()}get handletrailingiconclick(){return this.$$.ctx[16]}set handletrailingiconclick(e){this.$$set({handletrailingiconclick:e}),h()}get focused(){return this.$$.ctx[17]}set focused(e){this.$$set({focused:e}),h()}get readonly(){return this.$$.ctx[18]}set readonly(e){this.$$set({readonly:e}),h()}get error(){return this.$$.ctx[19]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[7]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[8]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-input",qt);function Er(i){const e=i-1;return e*e*e+1}function Cr(i){return Math.pow(i-1,3)*(1-i)+1}function de(i,{delay:e=0,duration:t=400,easing:r=ge}={}){const o=+getComputedStyle(i).opacity;return{delay:e,duration:t,easing:r,css:n=>`opacity: ${n*o}`}}function Wt(i,{delay:e=0,duration:t=400,easing:r=Er,x:o=0,y:n=0,opacity:a=0}={}){const s=getComputedStyle(i),l=+s.opacity,c=s.transform==="none"?"":s.transform,f=l*(1-a);return{delay:e,duration:t,easing:r,css:(u,v)=>`
|
|
15
15
|
transform: ${c} translate(${(1-u)*o}px, ${(1-u)*n}px);
|
|
16
16
|
opacity: ${l-f*v}`}}function Vt(i,e){function t(){const n=o();document.body.style.overflow="hidden",document.body.style.paddingRight=n+"px"}function r(){setTimeout(()=>{document.body.style.overflow="",document.body.style.paddingRight="0"},500)}function o(){if(document.body.clientHeight<=document.documentElement.clientHeight)return 0;const n=document.createElement("div");n.style.visibility="hidden",n.style.overflow="scroll",document.body.appendChild(n);const a=document.createElement("div");n.appendChild(a);const s=n.offsetWidth-a.offsetWidth;return n.parentNode.removeChild(n),s}return e.enable&&t(),{update(){e.enable?t():r()},destroy(){r()}}}function Zt(i){let e,t,r,o,n,a,s,l,c,f,u,v,b,g,m,E,C,z,T,B,O=i[0]&&Ut(i),F=i[4]&&Xt(i);function ue(N,A){return N[5]?Mr:Ar}let te=ue(i),R=te(i);return{c(){e=_("div"),t=_("div"),r=M(),o=_("div"),O&&O.c(),n=M(),F&&F.c(),a=M(),s=_("div"),R.c(),l=M(),c=_("slot"),f=M(),u=_("div"),u.innerHTML='<slot name="actions"></slot>',d(t,"data-testid","modal-overlay"),d(t,"class","modal-overlay"),d(s,"data-testid","modal-content"),d(s,"class","modal-content"),d(u,"data-testid","modal-actions"),d(u,"class","modal-actions"),d(o,"class","modal-pane"),d(e,"data-testid","modal"),d(e,"class","modal"),d(e,"style",g="--scroll-offset: "+i[3]+"px; "+(i[1]&&`--width: ${i[1]};`)+";")},m(N,A){w(N,e,A),y(e,t),y(e,r),y(e,o),O&&O.m(o,null),y(o,n),F&&F.m(o,null),y(o,a),y(o,s),R.m(s,null),y(s,l),y(s,c),y(o,f),y(o,u),z=!0,T||(B=[U(t,"click",i[6]),Ue(m=Vt.call(null,e,{enable:i[2]}))],T=!0)},p(N,A){N[0]?O?O.p(N,A):(O=Ut(N),O.c(),O.m(o,n)):O&&(O.d(1),O=null),N[4]?F?F.p(N,A):(F=Xt(N),F.c(),F.m(o,a)):F&&(F.d(1),F=null),te!==(te=ue(N))&&(R.d(1),R=te(N),R&&(R.c(),R.m(s,l))),(!z||A&10&&g!==(g="--scroll-offset: "+N[3]+"px; "+(N[1]&&`--width: ${N[1]};`)+";"))&&d(e,"style",g),m&&ie(m.update)&&A&4&&m.update.call(null,{enable:N[2]})},i(N){z||(X(()=>{b&&b.end(1),v=rt(o,Wt,{duration:200,y:200}),v.start()}),X(()=>{C&&C.end(1),E=rt(e,de,{duration:200}),E.start()}),z=!0)},o(N){v&&v.invalidate(),b=ot(o,Wt,{delay:200,duration:200,y:-100}),E&&E.invalidate(),C=ot(e,de,{delay:200,duration:200}),z=!1},d(N){N&&x(e),O&&O.d(),F&&F.d(),R.d(),N&&b&&b.end(),N&&C&&C.end(),T=!1,Y(B)}}}function Ut(i){let e,t;return{c(){e=_("div"),t=W(i[0]),d(e,"data-testid","modal-title"),d(e,"class","modal-title")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&1&&Z(t,r[0])},d(r){r&&x(e)}}}function Xt(i){let e,t,r,o;return{c(){e=_("div"),t=_("goa-icon-button"),k(t,"testid","modal-close-button"),k(t,"type","close"),d(e,"class","modal-close")},m(n,a){w(n,e,a),y(e,t),r||(o=U(t,"click",i[6]),r=!0)},p,d(n){n&&x(e),r=!1,o()}}}function Ar(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",D(e,"margin","1.75rem")},m(t,r){w(t,e,r)},d(t){t&&x(e)}}}function Mr(i){let e;return{c(){e=_("goa-scrollable"),e.innerHTML="<slot></slot>",k(e,"direction","vertical"),k(e,"height","50"),k(e,"hpadding","1.75")},m(t,r){w(t,e,r)},d(t){t&&x(e)}}}function Rr(i){let e,t,r=i[2]&&Zt(i);return{c(){r&&r.c(),e=ae(),this.c=p},m(o,n){r&&r.m(o,n),w(o,e,n),t=!0},p(o,[n]){o[2]?r?(r.p(o,n),n&4&&q(r,1)):(r=Zt(o),r.c(),q(r,1),r.m(e.parentNode,e)):r&&(ye(),V(r,1,1,()=>{r=null}),_e())},i(o){t||(q(r),t=!0)},o(o){V(r),t=!1},d(o){r&&r.d(o),o&&x(e)}}}function Lr(i,e,t){let r,o,n,{title:a}=e,{closable:s}=e,{scrollable:l}=e,{open:c}=e,{width:f}=e,u=0;function v(b){!r||(b.target.dispatchEvent(new CustomEvent("_close",{composed:!0})),b.stopPropagation())}return i.$$set=b=>{"title"in b&&t(0,a=b.title),"closable"in b&&t(7,s=b.closable),"scrollable"in b&&t(8,l=b.scrollable),"open"in b&&t(9,c=b.open),"width"in b&&t(1,f=b.width)},i.$$.update=()=>{i.$$.dirty&128&&t(4,r=j(s)),i.$$.dirty&256&&t(5,o=j(l)),i.$$.dirty&512&&t(2,n=j(c)),i.$$.dirty&4&&n&&t(3,u=window.pageYOffset)},[a,f,n,u,r,o,v,s,l,c]}class Jt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.modal{font-family:var(--font-family);position:absolute;top:var(--scroll-offset, 0);left: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:var(--width, 60ch);margin:1rem;box-shadow:var(--shadow-2);border-radius:4px;max-height:90%}@media(min-width: 640px){.modal-pane{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Lr,Rr,H,{title:0,closable:7,scrollable:8,open:9,width:1},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["title","closable","scrollable","open","width"]}get title(){return this.$$.ctx[0]}set title(e){this.$$set({title:e}),h()}get closable(){return this.$$.ctx[7]}set closable(e){this.$$set({closable:e}),h()}get scrollable(){return this.$$.ctx[8]}set scrollable(e){this.$$set({scrollable:e}),h()}get open(){return this.$$.ctx[9]}set open(e){this.$$set({open:e}),h()}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-modal",Jt);function Kt(i){let e,t,r,o,n,a,s,l,c,f,u,v,b;return{c(){e=_("div"),t=_("div"),r=_("goa-icon"),o=M(),n=_("div"),n.innerHTML="<slot></slot>",a=M(),s=_("div"),l=_("goa-icon-button"),k(r,"type",i[2]),k(r,"inverted",""),d(t,"class","icon"),d(n,"class","content"),k(l,"type","close"),k(l,"inverted",""),d(s,"class","close"),d(e,"class",c="notification "+i[0])},m(g,m){w(g,e,m),y(e,t),y(t,r),y(e,o),y(e,n),y(e,a),y(e,s),y(s,l),u=!0,v||(b=U(l,"click",i[3]),v=!0)},p(g,m){(!u||m&4)&&k(r,"type",g[2]),(!u||m&1&&c!==(c="notification "+g[0]))&&d(e,"class",c)},i(g){u||(X(()=>{f||(f=Le(e,de,{},!0)),f.run(1)}),u=!0)},o(g){f||(f=Le(e,de,{},!1)),f.run(0),u=!1},d(g){g&&x(e),g&&f&&f.end(),v=!1,b()}}}function Tr(i){let e,t,r=i[1]&&Kt(i);return{c(){r&&r.c(),e=ae(),this.c=p},m(o,n){r&&r.m(o,n),w(o,e,n),t=!0},p(o,[n]){o[1]?r?(r.p(o,n),n&2&&q(r,1)):(r=Kt(o),r.c(),q(r,1),r.m(e.parentNode,e)):r&&(ye(),V(r,1,1,()=>{r=null}),_e())},i(o){t||(q(r),t=!0)},o(o){V(r),t=!1},d(o){r&&r.d(o),o&&x(e)}}}function Hr(i,e,t){let r,{type:o}=e,n=!0;function a(){t(1,n=!1)}return i.$$set=s=>{"type"in s&&t(0,o=s.type)},i.$$.update=()=>{i.$$.dirty&1&&t(2,r=o==="emergency"?"warning":o==="caution"?"alert-circle":o==="information"?"information-circle":"calendar")},[o,n,r,a]}class Yt extends I{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Hr,Tr,H,{type:0},null),e&&(e.target&&w(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",Yt);function Ir(i){let e;return{c(){e=_("div"),e.innerHTML="<slot></slot>",this.c=p,d(e,"class","layout")},m(t,r){w(t,e,r)},p,i:p,o:p,d(t){t&&x(e)}}}class Qt extends I{constructor(e){super();this.shadowRoot.innerHTML="<style>@media(min-width: 768px){}.layout{max-width:768px;margin:0 auto;padding:2rem}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},null,Ir,H,{},null),e&&e.target&&w(e.target,this,e.anchor)}}customElements.define("goa-page-layout",Qt);function $t(i){let e,t,r,o;const n=[Sr,Gr],a=[];function s(l,c){return l[6]?0:l[5]?1:-1}return~(e=s(i))&&(t=a[e]=n[e](i)),{c(){t&&t.c(),r=ae()},m(l,c){~e&&a[e].m(l,c),w(l,r,c),o=!0},p(l,c){let f=e;e=s(l),e===f?~e&&a[e].p(l,c):(t&&(ye(),V(a[f],1,1,()=>{a[f]=null}),_e()),~e?(t=a[e],t?t.p(l,c):(t=a[e]=n[e](l),t.c()),q(t,1),t.m(r.parentNode,r)):t=null)},i(l){o||(q(t),o=!0)},o(l){V(t),o=!1},d(l){~e&&a[e].d(l),l&&x(r)}}}function Gr(i){let e,t,r,o,n,a=i[1]&&ei(i);return{c(){e=_("div"),t=_("goa-spinner"),o=M(),a&&a.c(),k(t,"type",i[0]),k(t,"size",i[4]),k(t,"progress",r=i[2]||0),d(e,"class",n="spinner-"+i[4]),P(e,"inline",i[5])},m(s,l){w(s,e,l),y(e,t),y(e,o),a&&a.m(e,null)},p(s,l){l&1&&k(t,"type",s[0]),l&16&&k(t,"size",s[4]),l&4&&r!==(r=s[2]||0)&&k(t,"progress",r),s[1]?a?a.p(s,l):(a=ei(s),a.c(),a.m(e,null)):a&&(a.d(1),a=null),l&16&&n!==(n="spinner-"+s[4])&&d(e,"class",n),l&48&&P(e,"inline",s[5])},i:p,o:p,d(s){s&&x(e),a&&a.d()}}}function Sr(i){let e,t,r,o,n,a,s,l,c=i[1]&&ti(i);return{c(){e=_("div"),t=_("goa-spinner"),o=M(),c&&c.c(),k(t,"type",i[0]),k(t,"size",i[4]),k(t,"progress",r=i[2]||0),P(e,"fullscreen",i[6])},m(f,u){w(f,e,u),y(e,t),y(e,o),c&&c.m(e,null),a=!0,s||(l=Ue(Vt.call(null,e,{enable:!0})),s=!0)},p(f,u){(!a||u&1)&&k(t,"type",f[0]),(!a||u&16)&&k(t,"size",f[4]),(!a||u&4&&r!==(r=f[2]||0))&&k(t,"progress",r),f[1]?c?c.p(f,u):(c=ti(f),c.c(),c.m(e,null)):c&&(c.d(1),c=null),u&64&&P(e,"fullscreen",f[6])},i(f){a||(X(()=>{n||(n=Le(e,de,{duration:300},!0)),n.run(1)}),a=!0)},o(f){n||(n=Le(e,de,{duration:300},!1)),n.run(0),a=!1},d(f){f&&x(e),c&&c.d(),f&&n&&n.end(),s=!1,l()}}}function ei(i){let e,t;return{c(){e=_("div"),t=W(i[1]),d(e,"class","message")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&2&&Z(t,r[1])},d(r){r&&x(e)}}}function ti(i){let e,t;return{c(){e=_("div"),t=W(i[1]),d(e,"class","message")},m(r,o){w(r,e,o),y(e,t)},p(r,o){o&2&&Z(t,r[1])},d(r){r&&x(e)}}}function Br(i){let e,t,r=i[3]&&$t(i);return{c(){r&&r.c(),e=ae(),this.c=p},m(o,n){r&&r.m(o,n),w(o,e,n),t=!0},p(o,[n]){o[3]?r?(r.p(o,n),n&8&&q(r,1)):(r=$t(o),r.c(),q(r,1),r.m(e.parentNode,e)):r&&(ye(),V(r,1,1,()=>{r=null}),_e())},i(o){t||(q(r),t=!0)},o(o){V(r),t=!1},d(o){r&&r.d(o),o&&x(e)}}}function Pr(i,e,t){let r,o,n,a,s,{type:l}=e,{variant:c}=e,{size:f}=e,{message:u=""}=e,{progress:v=0}=e,{visible:b="false"}=e;return i.$$set=g=>{"type"in g&&t(0,l=g.type),"variant"in g&&t(7,c=g.variant),"size"in g&&t(8,f=g.size),"message"in g&&t(1,u=g.message),"progress"in g&&t(2,v=g.progress),"visible"in g&&t(9,b=g.visible)},i.$$.update=()=>{i.$$.dirty&512&&t(10,r=j(b)),i.$$.dirty&128&&t(6,o=c==="fullscreen"),i.$$.dirty&128&&t(5,n=c==="inline"),i.$$.dirty&256&&t(4,a=f==="small"?"large":"xlarge"),i.$$.dirty&1281&&t(3,s=l&&r&&f)},[l,u,v,s,a,n,o,c,f,b,r]}class ii extends I{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>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Pr,Br,H,{type:0,variant:7,size:8,message:1,progress:2,visible:9},null),e&&(e.target&&w(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","variant","size","message","progress","visible"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get variant(){return this.$$.ctx[7]}set variant(e){this.$$set({variant:e}),h()}get size(){return this.$$.ctx[8]}set size(e){this.$$set({size:e}),h()}get message(){return this.$$.ctx[1]}set message(e){this.$$set({message:e}),h()}get progress(){return this.$$.ctx[2]}set progress(e){this.$$set({progress:e}),h()}get visible(){return this.$$.ctx[9]}set visible(e){this.$$set({visible:e}),h()}}customElements.define("goa-circular-progress",ii);const Oe="prop-change",ri="option-change";function jr(i){let e,t,r;return{c(){e=_("div"),t=_("slot"),this.c=p,d(e,"class",r=`goa-radio-group--${i[0]}`),d(e,"data-testid",i[1])},m(o,n){w(o,e,n),y(e,t),i[10](e)},p(o,[n]){n&1&&r!==(r=`goa-radio-group--${o[0]}`)&&d(e,"class",r),n&2&&d(e,"data-testid",o[1])},i:p,o:p,d(o){o&&x(e),i[10](null)}}}function Dr(i,e,t){let r,{name:o}=e,{value:n}=e,{orientation:a="vertical"}=e,{disabled:s="false"}=e,{error:l="false"}=e,{testid:c=""}=e,f,u,v;Ce(()=>{t(8,u=Te(o)),u.subscribe(g=>{switch(g==null?void 0:g.type){case ri:{const m=g;u.notify({type:Oe,value:m.value,disabled:m.disabled,error:m.error}),v.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:g.value}}))}}})}),Qe(()=>{pt(o)});function b(g){le[g?"unshift":"push"](()=>{v=g,t(2,v)})}return i.$$set=g=>{"name"in g&&t(3,o=g.name),"value"in g&&t(4,n=g.value),"orientation"in g&&t(0,a=g.orientation),"disabled"in g&&t(5,s=g.disabled),"error"in g&&t(6,l=g.error),"testid"in g&&t(1,c=g.testid)},i.$$.update=()=>{i.$$.dirty&32&&t(9,r=j(s)),i.$$.dirty&64&&t(7,f=j(l)),i.$$.dirty&912&&(u==null||u.notify({type:Oe,value:n,disabled:r,error:f}))},[a,c,v,o,n,s,l,f,u,r,b]}class oi extends I{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-flex;flex-direction:column}</style>",S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Dr,jr,H,{name:3,value:4,orientation:0,disabled:5,error:6,testid:1},null),e&&(e.target&&w(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[3]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[4]}set value(e){this.$$set({value:e}),h()}get orientation(){return this.$$.ctx[0]}set orientation(e){this.$$set({orientation:e}),h()}get disabled(){return this.$$.ctx[5]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[6]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-radio-group",oi);function Or(i){let e,t,r,o,n,a,s,l=(i[1]||i[0])+"",c,f,u,v;return{c(){e=_("label"),t=_("input"),r=M(),o=_("div"),n=M(),a=_("span"),s=_("slot"),c=W(l),this.c=p,d(t,"type","radio"),d(t,"name",i[2]),t.value=i[0],t.checked=i[4],t.disabled=i[3],d(o,"class","goa-radio-icon"),d(a,"class","goa-radio-label"),d(e,"data-testid",f="radio-item-"+i[0]),d(e,"class","goa-radio"),P(e,"goa-radio--disabled",i[3]),P(e,"goa-radio--error",i[5])},m(b,g){w(b,e,g),y(e,t),y(e,r),y(e,o),y(e,n),y(e,a),y(a,s),y(s,c),u||(v=U(t,"change",i[6]),u=!0)},p(b,[g]){g&4&&d(t,"name",b[2]),g&1&&(t.value=b[0]),g&16&&(t.checked=b[4]),g&8&&(t.disabled=b[3]),g&3&&l!==(l=(b[1]||b[0])+"")&&Z(c,l),g&1&&f!==(f="radio-item-"+b[0])&&d(e,"data-testid",f),g&8&&P(e,"goa-radio--disabled",b[3]),g&32&&P(e,"goa-radio--error",b[5])},i:p,o:p,d(b){b&&x(e),u=!1,v()}}}function Nr(i,e,t){let{value:r}=e,{label:o}=e,{name:n}=e,a=!1,s=!1,l=!1,c;Ce(()=>{c=Te(n),c.subscribe(u=>{switch(u==null?void 0:u.type){case Oe:{const v=u;t(4,s=v.value===r),t(3,a=v.disabled),t(5,l=v.error)}}})});function f(u){t(4,s=!s),s&&c.notify({type:ri,checked:s,disabled:a,value:r})}return i.$$set=u=>{"value"in u&&t(0,r=u.value),"label"in u&&t(1,o=u.label),"name"in u&&t(2,n=u.name)},[r,o,n,a,s,l,f]}class ni extends I{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}label.goa-radio{--goa-radio-outline-width:3px;--goa-radio-diameter:1.5rem;--goa-radio-border-width:1px;--goa-radio-border-width--checked:7px;box-sizing:border-box;display:inline-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}.goa-radio input[type="radio"]:hover~.goa-radio-icon{border-color:var(--goa-color-interactive--hover)}.goa-radio input[type="radio"]:focus~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--highlight)}.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}.goa-radio:focus>input:not(:disabled)~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--highlight)}.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>',S(this,{target:this.shadowRoot,props:G(this.attributes),customElement:!0},Nr,Or,H,{value:0,label:1,name:2},null),e&&(e.target&&w(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",ni);function Fr(i){let e,t,r;return{c(){e=_("div"),t=_("slot"),this.c=p,d(e,"class","goa-scrollable"),d(e,"style",r=`
|
|
17
17
|
--max-height: ${i[3]};
|