@abgov/web-components 1.0.0-alpha.110 → 1.0.0-alpha.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/web-components",
3
- "version": "1.0.0-alpha.110",
3
+ "version": "1.0.0-alpha.112",
4
4
  "description": "Government of Alberta - UI Web components",
5
5
  "bugs": {
6
6
  "url": "https://github.com/GovAlta/ui-components/issues"
@@ -1039,7 +1039,7 @@ function instance$A($$self, $$props, $$invalidate) {
1039
1039
  class AppHeader extends SvelteElement {
1040
1040
  constructor(options) {
1041
1041
  super();
1042
- this.shadowRoot.innerHTML = `<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>`;
1042
+ this.shadowRoot.innerHTML = `<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:1.5rem 1.125rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>`;
1043
1043
 
1044
1044
  init(
1045
1045
  this,
@@ -6458,7 +6458,7 @@ function create_fragment$h(ctx) {
6458
6458
  goa_icon = element("goa-icon");
6459
6459
  this.c = noop;
6460
6460
  set_custom_element_data(goa_icon, "title", /*title*/ ctx[3]);
6461
- set_custom_element_data(goa_icon, "type", /*type*/ ctx[0]);
6461
+ set_custom_element_data(goa_icon, "type", /*icon*/ ctx[0]);
6462
6462
  set_custom_element_data(goa_icon, "size", /*size*/ ctx[1]);
6463
6463
  set_custom_element_data(goa_icon, "theme", /*theme*/ ctx[2]);
6464
6464
  set_custom_element_data(goa_icon, "inverted", /*isInverted*/ ctx[5]);
@@ -6482,8 +6482,8 @@ function create_fragment$h(ctx) {
6482
6482
  set_custom_element_data(goa_icon, "title", /*title*/ ctx[3]);
6483
6483
  }
6484
6484
 
6485
- if (dirty & /*type*/ 1) {
6486
- set_custom_element_data(goa_icon, "type", /*type*/ ctx[0]);
6485
+ if (dirty & /*icon*/ 1) {
6486
+ set_custom_element_data(goa_icon, "type", /*icon*/ ctx[0]);
6487
6487
  }
6488
6488
 
6489
6489
  if (dirty & /*size*/ 2) {
@@ -6537,7 +6537,7 @@ function instance$f($$self, $$props, $$invalidate) {
6537
6537
  let isDisabled;
6538
6538
  let isInverted;
6539
6539
  let _size;
6540
- let { type } = $$props;
6540
+ let { icon } = $$props;
6541
6541
  let { size = "medium" } = $$props;
6542
6542
  let { theme = "outline" } = $$props;
6543
6543
  let { variant = "color" } = $$props;
@@ -6547,7 +6547,7 @@ function instance$f($$self, $$props, $$invalidate) {
6547
6547
  let { inverted } = $$props;
6548
6548
 
6549
6549
  $$self.$$set = $$props => {
6550
- if ('type' in $$props) $$invalidate(0, type = $$props.type);
6550
+ if ('icon' in $$props) $$invalidate(0, icon = $$props.icon);
6551
6551
  if ('size' in $$props) $$invalidate(1, size = $$props.size);
6552
6552
  if ('theme' in $$props) $$invalidate(2, theme = $$props.theme);
6553
6553
  if ('variant' in $$props) $$invalidate(9, variant = $$props.variant);
@@ -6581,7 +6581,7 @@ function instance$f($$self, $$props, $$invalidate) {
6581
6581
  };
6582
6582
 
6583
6583
  return [
6584
- type,
6584
+ icon,
6585
6585
  size,
6586
6586
  theme,
6587
6587
  title,
@@ -6599,7 +6599,7 @@ function instance$f($$self, $$props, $$invalidate) {
6599
6599
  class IconButton extends SvelteElement {
6600
6600
  constructor(options) {
6601
6601
  super();
6602
- this.shadowRoot.innerHTML = `<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;justify-content:center;background:transparent;cursor:pointer;border:none}.color{border-radius:0.5rem;padding:calc(var(--size) / 4)}.color{border-radius:0.5rem;color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.color:active,.nocolor:active{transform:scale(0.9);border:none}.color:hover{background-color:var(--goa-color-primary-light)}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{color:var(--color-gray-200);fill:var(--color-gray-200);transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>`;
6602
+ this.shadowRoot.innerHTML = `<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;box-sizing:border-box;justify-content:center;background:transparent;cursor:pointer;border:none;padding:0 0.75rem}.color{border-radius:0.5rem;padding:calc(var(--size) / 4);color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.nocolor{border-radius:0.5rem;padding:calc(var(--size) / 4)}button:hover{background-color:var(--color-gray-100);border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);outline:none}button:focus,button:active{background-color:var(--color-gray-100);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}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{pointer-events:none;opacity:0.5;transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>`;
6603
6603
 
6604
6604
  init(
6605
6605
  this,
@@ -6612,7 +6612,7 @@ class IconButton extends SvelteElement {
6612
6612
  create_fragment$h,
6613
6613
  safe_not_equal,
6614
6614
  {
6615
- type: 0,
6615
+ icon: 0,
6616
6616
  size: 1,
6617
6617
  theme: 2,
6618
6618
  variant: 9,
@@ -6638,7 +6638,7 @@ class IconButton extends SvelteElement {
6638
6638
 
6639
6639
  static get observedAttributes() {
6640
6640
  return [
6641
- "type",
6641
+ "icon",
6642
6642
  "size",
6643
6643
  "theme",
6644
6644
  "variant",
@@ -6649,12 +6649,12 @@ class IconButton extends SvelteElement {
6649
6649
  ];
6650
6650
  }
6651
6651
 
6652
- get type() {
6652
+ get icon() {
6653
6653
  return this.$$.ctx[0];
6654
6654
  }
6655
6655
 
6656
- set type(type) {
6657
- this.$$set({ type });
6656
+ set icon(icon) {
6657
+ this.$$set({ icon });
6658
6658
  flush();
6659
6659
  }
6660
6660
 
@@ -7093,7 +7093,7 @@ function create_if_block_4(ctx) {
7093
7093
  set_custom_element_data(goa_icon_button, "disabled", /*isDisabled*/ ctx[19]);
7094
7094
  set_custom_element_data(goa_icon_button, "variant", "nocolor");
7095
7095
  set_custom_element_data(goa_icon_button, "size", "medium");
7096
- set_custom_element_data(goa_icon_button, "type", /*trailingicon*/ ctx[6]);
7096
+ set_custom_element_data(goa_icon_button, "icon", /*trailingicon*/ ctx[6]);
7097
7097
  set_custom_element_data(goa_icon_button, "data-testid", "trailing-icon-button");
7098
7098
  },
7099
7099
  m(target, anchor) {
@@ -7110,7 +7110,7 @@ function create_if_block_4(ctx) {
7110
7110
  }
7111
7111
 
7112
7112
  if (dirty[0] & /*trailingicon*/ 64) {
7113
- set_custom_element_data(goa_icon_button, "type", /*trailingicon*/ ctx[6]);
7113
+ set_custom_element_data(goa_icon_button, "icon", /*trailingicon*/ ctx[6]);
7114
7114
  }
7115
7115
  },
7116
7116
  d(detaching) {
@@ -8531,7 +8531,7 @@ function create_if_block_2$2(ctx) {
8531
8531
  div = element("div");
8532
8532
  goa_icon_button = element("goa-icon-button");
8533
8533
  set_custom_element_data(goa_icon_button, "data-testid", "modal-close-button");
8534
- set_custom_element_data(goa_icon_button, "type", "close");
8534
+ set_custom_element_data(goa_icon_button, "icon", "close");
8535
8535
  attr(div, "class", "modal-close");
8536
8536
  },
8537
8537
  m(target, anchor) {
@@ -8844,7 +8844,7 @@ function create_if_block$4(ctx) {
8844
8844
  set_custom_element_data(goa_icon, "inverted", "");
8845
8845
  attr(div0, "class", "icon");
8846
8846
  attr(div1, "class", "content");
8847
- set_custom_element_data(goa_icon_button, "type", "close");
8847
+ set_custom_element_data(goa_icon_button, "icon", "close");
8848
8848
  set_custom_element_data(goa_icon_button, "inverted", "");
8849
8849
  attr(div2, "class", "close");
8850
8850
  attr(div3, "class", div3_class_value = "notification " + /*type*/ ctx[0]);
@@ -10045,7 +10045,7 @@ function create_if_block$3(ctx) {
10045
10045
  create_component(skeleton2.$$.fragment);
10046
10046
  attr(div0, "class", "card-content");
10047
10047
  attr(div1, "class", div1_class_value = "card card-" + /*size*/ ctx[1]);
10048
- set_style(div1, "--width", /*width*/ ctx[0] + "px");
10048
+ set_style(div1, "--max-width", /*maxwidth*/ ctx[0]);
10049
10049
  },
10050
10050
  m(target, anchor) {
10051
10051
  insert(target, div1, anchor);
@@ -10072,8 +10072,8 @@ function create_if_block$3(ctx) {
10072
10072
  attr(div1, "class", div1_class_value);
10073
10073
  }
10074
10074
 
10075
- if (!current || dirty & /*width*/ 1) {
10076
- set_style(div1, "--width", /*width*/ ctx[0] + "px");
10075
+ if (!current || dirty & /*maxwidth*/ 1) {
10076
+ set_style(div1, "--max-width", /*maxwidth*/ ctx[0]);
10077
10077
  }
10078
10078
  },
10079
10079
  i(local) {
@@ -10213,25 +10213,25 @@ function create_fragment$7(ctx) {
10213
10213
  }
10214
10214
 
10215
10215
  function instance$5($$self, $$props, $$invalidate) {
10216
- let { width = 320 } = $$props;
10216
+ let { maxwidth } = $$props;
10217
10217
  let { size = 1 } = $$props;
10218
10218
  let { linecount = 3 } = $$props;
10219
10219
  let { type } = $$props;
10220
10220
 
10221
10221
  $$self.$$set = $$props => {
10222
- if ('width' in $$props) $$invalidate(0, width = $$props.width);
10222
+ if ('maxwidth' in $$props) $$invalidate(0, maxwidth = $$props.maxwidth);
10223
10223
  if ('size' in $$props) $$invalidate(1, size = $$props.size);
10224
10224
  if ('linecount' in $$props) $$invalidate(2, linecount = $$props.linecount);
10225
10225
  if ('type' in $$props) $$invalidate(3, type = $$props.type);
10226
10226
  };
10227
10227
 
10228
- return [width, size, linecount, type];
10228
+ return [maxwidth, size, linecount, type];
10229
10229
  }
10230
10230
 
10231
10231
  class Skeleton extends SvelteElement {
10232
10232
  constructor(options) {
10233
10233
  super();
10234
- this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 320px){.card{width:var(--width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>`;
10234
+ this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 480px){.card{max-width:var(--max-width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>`;
10235
10235
 
10236
10236
  init(
10237
10237
  this,
@@ -10243,7 +10243,12 @@ class Skeleton extends SvelteElement {
10243
10243
  instance$5,
10244
10244
  create_fragment$7,
10245
10245
  safe_not_equal,
10246
- { width: 0, size: 1, linecount: 2, type: 3 },
10246
+ {
10247
+ maxwidth: 0,
10248
+ size: 1,
10249
+ linecount: 2,
10250
+ type: 3
10251
+ },
10247
10252
  null
10248
10253
  );
10249
10254
 
@@ -10260,15 +10265,15 @@ class Skeleton extends SvelteElement {
10260
10265
  }
10261
10266
 
10262
10267
  static get observedAttributes() {
10263
- return ["width", "size", "linecount", "type"];
10268
+ return ["maxwidth", "size", "linecount", "type"];
10264
10269
  }
10265
10270
 
10266
- get width() {
10271
+ get maxwidth() {
10267
10272
  return this.$$.ctx[0];
10268
10273
  }
10269
10274
 
10270
- set width(width) {
10271
- this.$$set({ width });
10275
+ set maxwidth(maxwidth) {
10276
+ this.$$set({ maxwidth });
10272
10277
  flush();
10273
10278
  }
10274
10279
 
@@ -11246,7 +11251,7 @@ function create_fragment$4(ctx) {
11246
11251
  class OneColumnLayout extends SvelteElement {
11247
11252
  constructor(options) {
11248
11253
  super();
11249
- this.shadowRoot.innerHTML = `<style>.page{height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>`;
11254
+ this.shadowRoot.innerHTML = `<style>.page{min-height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>`;
11250
11255
 
11251
11256
  init(
11252
11257
  this,
@@ -11348,7 +11353,7 @@ function instance$2($$self, $$props, $$invalidate) {
11348
11353
  class TwoColumnLayout extends SvelteElement {
11349
11354
  constructor(options) {
11350
11355
  super();
11351
- this.shadowRoot.innerHTML = `<style>*{box-sizing:border-box}.page{height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>`;
11356
+ this.shadowRoot.innerHTML = `<style>*{box-sizing:border-box}.page{min-height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>`;
11352
11357
 
11353
11358
  init(
11354
11359
  this,
@@ -1,11 +1,11 @@
1
- (function(w){typeof define=="function"&&define.amd?define(w):w()})(function(){"use strict";function w(){}const ke=i=>i;function Je(i,e){for(const t in e)i[t]=e[t];return i}function Ve(i){return i()}function Qe(){return Object.create(null)}function $(i){i.forEach(Ve)}function ue(i){return typeof i=="function"}function N(i,e){return i!=i?e==e:i!==e||i&&typeof i=="object"||typeof i=="function"}let Me;function Le(i,e){return Me||(Me=document.createElement("a")),Me.href=e,i===Me.href}function gi(i){return Object.keys(i).length===0}function mi(i,...e){if(i==null)return w;const t=i.subscribe(...e);return t.unsubscribe?()=>t.unsubscribe():t}function bi(i,e,t){i.$$.on_destroy.push(mi(e,t))}function $e(i){return i&&ue(i.destroy)?i.destroy:w}const et=typeof window!="undefined";let Te=et?()=>window.performance.now():()=>Date.now(),We=et?i=>requestAnimationFrame(i):w;const be=new Set;function tt(i){be.forEach(e=>{e.c(i)||(be.delete(e),e.f())}),be.size!==0&&We(tt)}function Re(i){let e;return be.size===0&&We(tt),{promise:new Promise(t=>{be.add(e={c:i,f:t})}),abort(){be.delete(e)}}}function g(i,e){i.appendChild(e)}function it(i){if(!i)return document;const e=i.getRootNode?i.getRootNode():i.ownerDocument;return e&&e.host?e:i.ownerDocument}function vi(i){const e=m("style");return pi(it(i),e),e.sheet}function pi(i,e){g(i.head||i,e)}function v(i,e,t){i.insertBefore(e,t||null)}function E(i){i.parentNode.removeChild(i)}function Ae(i,e){for(let t=0;t<i.length;t+=1)i[t]&&i[t].d(e)}function m(i){return document.createElement(i)}function fe(i){return document.createElementNS("http://www.w3.org/2000/svg",i)}function F(i){return document.createTextNode(i)}function H(){return F(" ")}function ie(){return F("")}function U(i,e,t,r){return i.addEventListener(e,t,r),()=>i.removeEventListener(e,t,r)}function u(i,e,t){t==null?i.removeAttribute(e):i.getAttribute(e)!==t&&i.setAttribute(e,t)}function C(i,e,t){e in i?i[e]=typeof i[e]=="boolean"&&t===""?!0:t:u(i,e,t)}function wi(i){return Array.from(i.childNodes)}function q(i,e){e=""+e,i.wholeText!==e&&(i.data=e)}function V(i,e,t,r){t===null?i.style.removeProperty(e):i.style.setProperty(e,t,r?"important":"")}function B(i,e,t){i.classList[t?"add":"remove"](e)}function yi(i,e,{bubbles:t=!1,cancelable:r=!1}={}){const n=document.createEvent("CustomEvent");return n.initCustomEvent(i,t,r,e),n}function j(i){const e={};for(const t of i)e[t.name]=t.value;return e}const He=new Map;let Ie=0;function _i(i){let e=5381,t=i.length;for(;t--;)e=(e<<5)-e^i.charCodeAt(t);return e>>>0}function ki(i,e){const t={stylesheet:vi(e),rules:{}};return He.set(i,t),t}function Se(i,e,t,r,n,o,a,l=0){const s=16.666/r;let c=`{
1
+ (function(w){typeof define=="function"&&define.amd?define(w):w()})(function(){"use strict";function w(){}const ke=i=>i;function Je(i,e){for(const t in e)i[t]=e[t];return i}function Ve(i){return i()}function Qe(){return Object.create(null)}function $(i){i.forEach(Ve)}function ue(i){return typeof i=="function"}function N(i,e){return i!=i?e==e:i!==e||i&&typeof i=="object"||typeof i=="function"}let Me;function Le(i,e){return Me||(Me=document.createElement("a")),Me.href=e,i===Me.href}function gi(i){return Object.keys(i).length===0}function mi(i,...e){if(i==null)return w;const t=i.subscribe(...e);return t.unsubscribe?()=>t.unsubscribe():t}function bi(i,e,t){i.$$.on_destroy.push(mi(e,t))}function $e(i){return i&&ue(i.destroy)?i.destroy:w}const et=typeof window!="undefined";let Te=et?()=>window.performance.now():()=>Date.now(),We=et?i=>requestAnimationFrame(i):w;const be=new Set;function tt(i){be.forEach(e=>{e.c(i)||(be.delete(e),e.f())}),be.size!==0&&We(tt)}function Re(i){let e;return be.size===0&&We(tt),{promise:new Promise(t=>{be.add(e={c:i,f:t})}),abort(){be.delete(e)}}}function g(i,e){i.appendChild(e)}function it(i){if(!i)return document;const e=i.getRootNode?i.getRootNode():i.ownerDocument;return e&&e.host?e:i.ownerDocument}function vi(i){const e=m("style");return pi(it(i),e),e.sheet}function pi(i,e){g(i.head||i,e)}function v(i,e,t){i.insertBefore(e,t||null)}function E(i){i.parentNode.removeChild(i)}function Ae(i,e){for(let t=0;t<i.length;t+=1)i[t]&&i[t].d(e)}function m(i){return document.createElement(i)}function fe(i){return document.createElementNS("http://www.w3.org/2000/svg",i)}function F(i){return document.createTextNode(i)}function H(){return F(" ")}function ie(){return F("")}function U(i,e,t,r){return i.addEventListener(e,t,r),()=>i.removeEventListener(e,t,r)}function u(i,e,t){t==null?i.removeAttribute(e):i.getAttribute(e)!==t&&i.setAttribute(e,t)}function C(i,e,t){e in i?i[e]=typeof i[e]=="boolean"&&t===""?!0:t:u(i,e,t)}function wi(i){return Array.from(i.childNodes)}function q(i,e){e=""+e,i.wholeText!==e&&(i.data=e)}function V(i,e,t,r){t===null?i.style.removeProperty(e):i.style.setProperty(e,t,r?"important":"")}function B(i,e,t){i.classList[t?"add":"remove"](e)}function _i(i,e,{bubbles:t=!1,cancelable:r=!1}={}){const n=document.createEvent("CustomEvent");return n.initCustomEvent(i,t,r,e),n}function j(i){const e={};for(const t of i)e[t.name]=t.value;return e}const He=new Map;let Ie=0;function yi(i){let e=5381,t=i.length;for(;t--;)e=(e<<5)-e^i.charCodeAt(t);return e>>>0}function ki(i,e){const t={stylesheet:vi(e),rules:{}};return He.set(i,t),t}function Se(i,e,t,r,n,o,a,l=0){const s=16.666/r;let c=`{
2
2
  `;for(let L=0;L<=1;L+=s){const x=e+(t-e)*o(L);c+=L*100+`%{${a(x,1-x)}}
3
3
  `}const d=c+`100% {${a(t,1-t)}}
4
- }`,f=`__svelte_${_i(d)}_${l}`,b=it(i),{stylesheet:y,rules:p}=He.get(b)||ki(b,i);p[f]||(p[f]=!0,y.insertRule(`@keyframes ${f} ${d}`,y.cssRules.length));const _=i.style.animation||"";return i.style.animation=`${_?`${_}, `:""}${f} ${r}ms linear ${n}ms 1 both`,Ie+=1,f}function De(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?o=>o.indexOf(e)<0:o=>o.indexOf("__svelte")===-1),n=t.length-r.length;n&&(i.style.animation=r.join(", "),Ie-=n,Ie||xi())}function xi(){We(()=>{Ie||(He.forEach(i=>{const{stylesheet:e}=i;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.rules={}}),He.clear())})}let xe;function Ee(i){xe=i}function rt(){if(!xe)throw new Error("Function called outside component initialization");return xe}function Q(i){rt().$$.on_mount.push(i)}function nt(i){rt().$$.on_destroy.push(i)}const Ce=[],ee=[],Be=[],ot=[],at=Promise.resolve();let Ue=!1;function lt(){Ue||(Ue=!0,at.then(h))}function Ne(){return lt(),at}function re(i){Be.push(i)}const Ze=new Set;let Oe=0;function h(){const i=xe;do{for(;Oe<Ce.length;){const e=Ce[Oe];Oe++,Ee(e),Ei(e.$$)}for(Ee(null),Ce.length=0,Oe=0;ee.length;)ee.pop()();for(let e=0;e<Be.length;e+=1){const t=Be[e];Ze.has(t)||(Ze.add(t),t())}Be.length=0}while(Ce.length);for(;ot.length;)ot.pop()();Ue=!1,Ze.clear(),Ee(i)}function Ei(i){if(i.fragment!==null){i.update(),$(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(re)}}let ze;function Ke(){return ze||(ze=Promise.resolve(),ze.then(()=>{ze=null})),ze}function he(i,e,t){i.dispatchEvent(yi(`${e?"intro":"outro"}${t}`))}const je=new Set;let ne;function ve(){ne={r:0,c:[],p:ne}}function pe(){ne.r||$(ne.c),ne=ne.p}function W(i,e){i&&i.i&&(je.delete(i),i.i(e))}function Z(i,e,t,r){if(i&&i.o){if(je.has(i))return;je.add(i),ne.c.push(()=>{je.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}else r&&r()}const Xe={duration:0};function st(i,e,t){let r=e(i,t),n=!1,o,a,l=0;function s(){o&&De(i,o)}function c(){const{delay:f=0,duration:b=300,easing:y=ke,tick:p=w,css:_}=r||Xe;_&&(o=Se(i,0,1,b,f,y,_,l++)),p(0,1);const L=Te()+f,x=L+b;a&&a.abort(),n=!0,re(()=>he(i,!0,"start")),a=Re(M=>{if(n){if(M>=x)return p(1,0),he(i,!0,"end"),s(),n=!1;if(M>=L){const z=y((M-L)/b);p(z,1-z)}}return n})}let d=!1;return{start(){d||(d=!0,De(i),ue(r)?(r=r(),Ke().then(c)):c())},invalidate(){d=!1},end(){n&&(s(),n=!1)}}}function ct(i,e,t){let r=e(i,t),n=!0,o;const a=ne;a.r+=1;function l(){const{delay:s=0,duration:c=300,easing:d=ke,tick:f=w,css:b}=r||Xe;b&&(o=Se(i,1,0,c,s,d,b));const y=Te()+s,p=y+c;re(()=>he(i,!1,"start")),Re(_=>{if(n){if(_>=p)return f(0,1),he(i,!1,"end"),--a.r||$(a.c),!1;if(_>=y){const L=d((_-y)/c);f(1-L,L)}}return n})}return ue(r)?Ke().then(()=>{r=r(),l()}):l(),{end(s){s&&r.tick&&r.tick(1,0),n&&(o&&De(i,o),n=!1)}}}function Pe(i,e,t,r){let n=e(i,t),o=r?0:1,a=null,l=null,s=null;function c(){s&&De(i,s)}function d(b,y){const p=b.b-o;return y*=Math.abs(p),{a:o,b:b.b,d:p,duration:y,start:b.start,end:b.start+y,group:b.group}}function f(b){const{delay:y=0,duration:p=300,easing:_=ke,tick:L=w,css:x}=n||Xe,M={start:Te()+y,b};b||(M.group=ne,ne.r+=1),a||l?l=M:(x&&(c(),s=Se(i,o,b,p,y,_,x)),b&&L(0,1),a=d(M,p),re(()=>he(i,b,"start")),Re(z=>{if(l&&z>l.start&&(a=d(l,p),l=null,he(i,a.b,"start"),x&&(c(),s=Se(i,o,a.b,a.duration,0,_,n.css))),a){if(z>=a.end)L(o=a.b,1-o),he(i,a.b,"end"),l||(a.b?c():--a.group.r||$(a.group.c)),a=null;else if(z>=a.start){const k=z-a.start;o=a.a+a.d*_(k/a.duration),L(o,1-o)}}return!!(a||l)}))}return{run(b){ue(n)?Ke().then(()=>{n=n(),f(b)}):f(b)},end(){c(),a=l=null}}}function Ci(i,e){i.d(1),e.delete(i.key)}function zi(i,e,t,r,n,o,a,l,s,c,d,f){let b=i.length,y=o.length,p=b;const _={};for(;p--;)_[i[p].key]=p;const L=[],x=new Map,M=new Map;for(p=y;p--;){const R=f(n,o,p),T=t(R);let D=a.get(T);D?r&&D.p(R,e):(D=c(T,R),D.c()),x.set(T,L[p]=D),T in _&&M.set(T,Math.abs(p-_[T]))}const z=new Set,k=new Set;function A(R){W(R,1),R.m(l,d),a.set(R.key,R),d=R.first,y--}for(;b&&y;){const R=L[y-1],T=i[b-1],D=R.key,X=T.key;R===T?(d=R.first,b--,y--):x.has(X)?!a.has(D)||z.has(D)?A(R):k.has(X)?b--:M.get(D)>M.get(X)?(k.add(D),A(R)):(z.add(X),b--):(s(T,a),b--)}for(;b--;){const R=i[b];x.has(R.key)||s(R,a)}for(;y;)A(L[y-1]);return L}function ge(i){i&&i.c()}function se(i,e,t,r){const{fragment:n,on_mount:o,on_destroy:a,after_update:l}=i.$$;n&&n.m(e,t),r||re(()=>{const s=o.map(Ve).filter(ue);a?a.push(...s):$(s),i.$$.on_mount=[]}),l.forEach(re)}function ce(i,e){const t=i.$$;t.fragment!==null&&($(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Mi(i,e){i.$$.dirty[0]===-1&&(Ce.push(i),lt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function P(i,e,t,r,n,o,a,l=[-1]){const s=xe;Ee(i);const c=i.$$={fragment:null,ctx:null,props:o,update:w,not_equal:n,bound:Qe(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(s?s.$$.context:[])),callbacks:Qe(),dirty:l,skip_bound:!1,root:e.target||s.$$.root};a&&a(c.root);let d=!1;if(c.ctx=t?t(i,e.props||{},(f,b,...y)=>{const p=y.length?y[0]:b;return c.ctx&&n(c.ctx[f],c.ctx[f]=p)&&(!c.skip_bound&&c.bound[f]&&c.bound[f](p),d&&Mi(i,f)),b}):[],c.update(),d=!0,$(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const f=wi(e.target);c.fragment&&c.fragment.l(f),f.forEach(E)}else c.fragment&&c.fragment.c();e.intro&&W(i.$$.fragment),se(i,e.target,e.anchor,e.customElement),h()}Ee(s)}let O;typeof HTMLElement=="function"&&(O=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(Ve).filter(ue);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){$(this.$$.on_disconnect)}$destroy(){ce(this,1),this.$destroy=w}$on(i,e){const t=this.$$.callbacks[i]||(this.$$.callbacks[i]=[]);return t.push(e),()=>{const r=t.indexOf(e);r!==-1&&t.splice(r,1)}}$set(i){this.$$set&&!gi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0])},d(d){d&&E(e)}}}function Ti(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("a"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"href",i[1]),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0]),f&2&&u(e,"href",d[1])},d(d){d&&E(e)}}}function Ri(i){let e,t,r,n,o;function a(c,d){return c[1]?Ti:Li}let l=a(i),s=l(i);return{c(){e=m("div"),t=m("div"),s.c(),r=H(),n=m("div"),n.innerHTML="<slot></slot>",this.c=w,u(t,"class","content"),u(e,"class","app-header"),u(e,"data-testid",i[2]),u(e,"style",o=`--max-content-width: ${i[3]||"100%"}`)},m(c,d){v(c,e,d),g(e,t),s.m(t,null),g(t,r),g(t,n)},p(c,[d]){l===(l=a(c))&&s?s.p(c,d):(s.d(1),s=l(c),s&&(s.c(),s.m(t,r))),d&4&&u(e,"data-testid",c[2]),d&8&&o!==(o=`--max-content-width: ${c[3]||"100%"}`)&&u(e,"style",o)},i:w,o:w,d(c){c&&E(e),s.d()}}}function Ai(i,e,t){let{heading:r=""}=e,{url:n=""}=e,{testid:o=""}=e,{maxcontentwidth:a=""}=e;return i.$$set=l=>{"heading"in l&&t(0,r=l.heading),"url"in l&&t(1,n=l.url),"testid"in l&&t(2,o=l.testid),"maxcontentwidth"in l&&t(3,a=l.maxcontentwidth)},[r,n,o,a]}class Hi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ai,Ri,N,{heading:0,url:1,testid:2,maxcontentwidth:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","url","testid","maxcontentwidth"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get url(){return this.$$.ctx[1]}set url(e){this.$$set({url:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}get maxcontentwidth(){return this.$$.ctx[3]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-header",Hi);function G(i){return i==="false"?!1:i===""?!0:!!i}function Ii(i){return i?"true":"false"}function Si(i){let e;return{c(){e=m("div"),V(e,"height","1.2rem"),V(e,"margin-left","-0.25rem")},m(t,r){v(t,e,r)},p:w,d(t){t&&E(e)}}}function Di(i){let e;return{c(){e=m("goa-icon"),C(e,"type",i[4]),C(e,"size","small")},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4])},d(t){t&&E(e)}}}function dt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","goa-badge-content")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&E(e)}}}function Bi(i){let e,t,r;function n(s,c){return s[3]?Di:Si}let o=n(i),a=o(i),l=i[2]&&dt(i);return{c(){e=m("div"),a.c(),t=H(),l&&l.c(),this.c=w,u(e,"data-testid",i[1]),u(e,"data-type","goa-badge"),u(e,"class",r="goa-badge badge-"+i[0]),B(e,"icon-only",i[3]&&!i[2])},m(s,c){v(s,e,c),a.m(e,null),g(e,t),l&&l.m(e,null)},p(s,[c]){o===(o=n(s))&&a?a.p(s,c):(a.d(1),a=o(s),a&&(a.c(),a.m(e,t))),s[2]?l?l.p(s,c):(l=dt(s),l.c(),l.m(e,null)):l&&(l.d(1),l=null),c&2&&u(e,"data-testid",s[1]),c&1&&r!==(r="goa-badge badge-"+s[0])&&u(e,"class",r),c&13&&B(e,"icon-only",s[3]&&!s[2])},i:w,o:w,d(s){s&&E(e),a.d(),l&&l.d()}}}function Ni(i,e,t){let r,n,{type:o}=e,{testid:a=""}=e,{icon:l="false"}=e,{content:s=""}=e;return Q(()=>{!r&&!s&&console.warn("GoABadge must have either then content or icon property set")}),i.$$set=c=>{"type"in c&&t(0,o=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,l=c.icon),"content"in c&&t(2,s=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(3,r=G(l)),i.$$.dirty&1&&t(4,n={success:"checkmark-circle",important:"alert-circle",information:"information-circle",emergency:"warning",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[o])},[o,a,s,r,n,l]}class Oi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;align-items:center;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular);margin:0.25rem}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm);padding-bottom:var(--font-valign-fix)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--goa-color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-important{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.goa-badge.badge-emergency{background-color:var(--goa-color-status-emergency);color:var(--goa-color-text-light)}.goa-badge.badge-dark{background-color:var(--color-black);color:var(--goa-color-text-light)}.goa-badge.badge-midtone{background-color:var(--color-gray-600);color:var(--goa-color-text-light)}.goa-badge.badge-light{background-color:var(--color-white);color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ni,Bi,N,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","testid","icon","content"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}get icon(){return this.$$.ctx[5]}set icon(e){this.$$set({icon:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-badge",Oi);function ji(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,V(e,"--alignment","flex-"+i[1]),V(e,"--gap-size",i[0]==="small"?"0.5rem":"1.25rem")},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&2&&V(e,"--alignment","flex-"+r[1]),n&1&&V(e,"--gap-size",r[0]==="small"?"0.5rem":"1.25rem")},i:w,o:w,d(r){r&&E(e)}}}function Pi(i,e,t){let{gap:r="medium"}=e,{alignment:n}=e;return i.$$set=o=>{"gap"in o&&t(0,r=o.gap),"alignment"in o&&t(1,n=o.alignment)},[r,n]}class Fi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Pi,ji,N,{gap:0,alignment:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap","alignment"]}get gap(){return this.$$.ctx[0]}set gap(e){this.$$set({gap:e}),h()}get alignment(){return this.$$.ctx[1]}set alignment(e){this.$$set({alignment:e}),h()}}customElements.define("goa-button-group",Fi);function Gi(i){let e,t,r,n,o=i[3]&&ut(i),a=i[4]&&ft(i);return{c(){o&&o.c(),e=H(),t=m("slot"),r=H(),a&&a.c(),n=ie(),u(t,"class","text")},m(l,s){o&&o.m(l,s),v(l,e,s),v(l,t,s),v(l,r,s),a&&a.m(l,s),v(l,n,s)},p(l,s){l[3]?o?o.p(l,s):(o=ut(l),o.c(),o.m(e.parentNode,e)):o&&(o.d(1),o=null),l[4]?a?a.p(l,s):(a=ft(l),a.c(),a.m(n.parentNode,n)):a&&(a.d(1),a=null)},d(l){o&&o.d(l),l&&E(e),l&&E(t),l&&E(r),a&&a.d(l),l&&E(n)}}}function qi(i){let e,t,r;return{c(){e=m("slot"),t=H(),r=m("goa-icon"),u(e,"class","text"),C(r,"id","trailing-icon"),C(r,"type","arrow-forward"),C(r,"inverted","true")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},p:w,d(n){n&&E(e),n&&E(t),n&&E(r)}}}function ut(i){let e;return{c(){e=m("goa-icon"),C(e,"id","leading-icon"),C(e,"type",i[3]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&8&&C(e,"type",t[3]),r&64&&C(e,"inverted",t[6])},d(t){t&&E(e)}}}function ft(i){let e;return{c(){e=m("goa-icon"),C(e,"id","trailing-icon"),C(e,"type",i[4]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4]),r&64&&C(e,"inverted",t[6])},d(t){t&&E(e)}}}function Vi(i){let e,t,r,n;function o(s,c){return s[0]==="start"?qi:Gi}let a=o(i),l=a(i);return{c(){e=m("button"),l.c(),this.c=w,u(e,"class",t=""+(i[0]+" "+i[1]+" "+i[2])),e.disabled=i[7],u(e,"data-testid",i[5]),B(e,"leading",i[3]),B(e,"trailing",i[4]||i[0]==="start")},m(s,c){v(s,e,c),l.m(e,null),r||(n=U(e,"click",Wi),r=!0)},p(s,[c]){a===(a=o(s))&&l?l.p(s,c):(l.d(1),l=a(s),l&&(l.c(),l.m(e,null))),c&7&&t!==(t=""+(s[0]+" "+s[1]+" "+s[2]))&&u(e,"class",t),c&128&&(e.disabled=s[7]),c&32&&u(e,"data-testid",s[5]),c&15&&B(e,"leading",s[3]),c&23&&B(e,"trailing",s[4]||s[0]==="start")},i:w,o:w,d(s){s&&E(e),l.d(),r=!1,n()}}}function Wi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Ui(i,e,t){let r,n;const o=["primary","submit","secondary","tertiary","start"],a=["normal","compact"],l=["normal","destructive"];function s(M){return o.includes(M)}function c(M){return a.includes(M)}function d(M){return l.includes(M)}let{type:f="primary"}=e,{size:b="normal"}=e,{variant:y="normal"}=e,{disabled:p="false"}=e,{leadingicon:_=null}=e,{trailingicon:L=null}=e,{testid:x=""}=e;return Q(()=>{if(!s(f))throw"Invalid button type";if(!c(b))throw"Invalid button size";if(!d(y))throw"Invalid button variant"}),i.$$set=M=>{"type"in M&&t(0,f=M.type),"size"in M&&t(1,b=M.size),"variant"in M&&t(2,y=M.variant),"disabled"in M&&t(8,p=M.disabled),"leadingicon"in M&&t(3,_=M.leadingicon),"trailingicon"in M&&t(4,L=M.trailingicon),"testid"in M&&t(5,x=M.testid)},i.$$.update=()=>{i.$$.dirty&256&&t(7,r=G(p)),i.$$.dirty&1&&t(6,n=f==="primary"||f==="start")},[f,b,y,_,L,x,n,r,p]}class Zi extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-family:var(--font-family);font-size:var(--fs-lg);font-weight:400;height:var(--button-height);letter-spacing:0.5px;line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
4
+ }`,f=`__svelte_${yi(d)}_${l}`,b=it(i),{stylesheet:_,rules:p}=He.get(b)||ki(b,i);p[f]||(p[f]=!0,_.insertRule(`@keyframes ${f} ${d}`,_.cssRules.length));const y=i.style.animation||"";return i.style.animation=`${y?`${y}, `:""}${f} ${r}ms linear ${n}ms 1 both`,Ie+=1,f}function De(i,e){const t=(i.style.animation||"").split(", "),r=t.filter(e?o=>o.indexOf(e)<0:o=>o.indexOf("__svelte")===-1),n=t.length-r.length;n&&(i.style.animation=r.join(", "),Ie-=n,Ie||xi())}function xi(){We(()=>{Ie||(He.forEach(i=>{const{stylesheet:e}=i;let t=e.cssRules.length;for(;t--;)e.deleteRule(t);i.rules={}}),He.clear())})}let xe;function Ee(i){xe=i}function rt(){if(!xe)throw new Error("Function called outside component initialization");return xe}function Q(i){rt().$$.on_mount.push(i)}function nt(i){rt().$$.on_destroy.push(i)}const Ce=[],ee=[],Be=[],ot=[],at=Promise.resolve();let Ue=!1;function lt(){Ue||(Ue=!0,at.then(h))}function Ne(){return lt(),at}function re(i){Be.push(i)}const Ze=new Set;let Oe=0;function h(){const i=xe;do{for(;Oe<Ce.length;){const e=Ce[Oe];Oe++,Ee(e),Ei(e.$$)}for(Ee(null),Ce.length=0,Oe=0;ee.length;)ee.pop()();for(let e=0;e<Be.length;e+=1){const t=Be[e];Ze.has(t)||(Ze.add(t),t())}Be.length=0}while(Ce.length);for(;ot.length;)ot.pop()();Ue=!1,Ze.clear(),Ee(i)}function Ei(i){if(i.fragment!==null){i.update(),$(i.before_update);const e=i.dirty;i.dirty=[-1],i.fragment&&i.fragment.p(i.ctx,e),i.after_update.forEach(re)}}let ze;function Ke(){return ze||(ze=Promise.resolve(),ze.then(()=>{ze=null})),ze}function he(i,e,t){i.dispatchEvent(_i(`${e?"intro":"outro"}${t}`))}const je=new Set;let ne;function ve(){ne={r:0,c:[],p:ne}}function pe(){ne.r||$(ne.c),ne=ne.p}function W(i,e){i&&i.i&&(je.delete(i),i.i(e))}function Z(i,e,t,r){if(i&&i.o){if(je.has(i))return;je.add(i),ne.c.push(()=>{je.delete(i),r&&(t&&i.d(1),r())}),i.o(e)}else r&&r()}const Xe={duration:0};function st(i,e,t){let r=e(i,t),n=!1,o,a,l=0;function s(){o&&De(i,o)}function c(){const{delay:f=0,duration:b=300,easing:_=ke,tick:p=w,css:y}=r||Xe;y&&(o=Se(i,0,1,b,f,_,y,l++)),p(0,1);const L=Te()+f,x=L+b;a&&a.abort(),n=!0,re(()=>he(i,!0,"start")),a=Re(M=>{if(n){if(M>=x)return p(1,0),he(i,!0,"end"),s(),n=!1;if(M>=L){const z=_((M-L)/b);p(z,1-z)}}return n})}let d=!1;return{start(){d||(d=!0,De(i),ue(r)?(r=r(),Ke().then(c)):c())},invalidate(){d=!1},end(){n&&(s(),n=!1)}}}function ct(i,e,t){let r=e(i,t),n=!0,o;const a=ne;a.r+=1;function l(){const{delay:s=0,duration:c=300,easing:d=ke,tick:f=w,css:b}=r||Xe;b&&(o=Se(i,1,0,c,s,d,b));const _=Te()+s,p=_+c;re(()=>he(i,!1,"start")),Re(y=>{if(n){if(y>=p)return f(0,1),he(i,!1,"end"),--a.r||$(a.c),!1;if(y>=_){const L=d((y-_)/c);f(1-L,L)}}return n})}return ue(r)?Ke().then(()=>{r=r(),l()}):l(),{end(s){s&&r.tick&&r.tick(1,0),n&&(o&&De(i,o),n=!1)}}}function Pe(i,e,t,r){let n=e(i,t),o=r?0:1,a=null,l=null,s=null;function c(){s&&De(i,s)}function d(b,_){const p=b.b-o;return _*=Math.abs(p),{a:o,b:b.b,d:p,duration:_,start:b.start,end:b.start+_,group:b.group}}function f(b){const{delay:_=0,duration:p=300,easing:y=ke,tick:L=w,css:x}=n||Xe,M={start:Te()+_,b};b||(M.group=ne,ne.r+=1),a||l?l=M:(x&&(c(),s=Se(i,o,b,p,_,y,x)),b&&L(0,1),a=d(M,p),re(()=>he(i,b,"start")),Re(z=>{if(l&&z>l.start&&(a=d(l,p),l=null,he(i,a.b,"start"),x&&(c(),s=Se(i,o,a.b,a.duration,0,y,n.css))),a){if(z>=a.end)L(o=a.b,1-o),he(i,a.b,"end"),l||(a.b?c():--a.group.r||$(a.group.c)),a=null;else if(z>=a.start){const k=z-a.start;o=a.a+a.d*y(k/a.duration),L(o,1-o)}}return!!(a||l)}))}return{run(b){ue(n)?Ke().then(()=>{n=n(),f(b)}):f(b)},end(){c(),a=l=null}}}function Ci(i,e){i.d(1),e.delete(i.key)}function zi(i,e,t,r,n,o,a,l,s,c,d,f){let b=i.length,_=o.length,p=b;const y={};for(;p--;)y[i[p].key]=p;const L=[],x=new Map,M=new Map;for(p=_;p--;){const R=f(n,o,p),T=t(R);let D=a.get(T);D?r&&D.p(R,e):(D=c(T,R),D.c()),x.set(T,L[p]=D),T in y&&M.set(T,Math.abs(p-y[T]))}const z=new Set,k=new Set;function A(R){W(R,1),R.m(l,d),a.set(R.key,R),d=R.first,_--}for(;b&&_;){const R=L[_-1],T=i[b-1],D=R.key,X=T.key;R===T?(d=R.first,b--,_--):x.has(X)?!a.has(D)||z.has(D)?A(R):k.has(X)?b--:M.get(D)>M.get(X)?(k.add(D),A(R)):(z.add(X),b--):(s(T,a),b--)}for(;b--;){const R=i[b];x.has(R.key)||s(R,a)}for(;_;)A(L[_-1]);return L}function ge(i){i&&i.c()}function se(i,e,t,r){const{fragment:n,on_mount:o,on_destroy:a,after_update:l}=i.$$;n&&n.m(e,t),r||re(()=>{const s=o.map(Ve).filter(ue);a?a.push(...s):$(s),i.$$.on_mount=[]}),l.forEach(re)}function ce(i,e){const t=i.$$;t.fragment!==null&&($(t.on_destroy),t.fragment&&t.fragment.d(e),t.on_destroy=t.fragment=null,t.ctx=[])}function Mi(i,e){i.$$.dirty[0]===-1&&(Ce.push(i),lt(),i.$$.dirty.fill(0)),i.$$.dirty[e/31|0]|=1<<e%31}function P(i,e,t,r,n,o,a,l=[-1]){const s=xe;Ee(i);const c=i.$$={fragment:null,ctx:null,props:o,update:w,not_equal:n,bound:Qe(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(s?s.$$.context:[])),callbacks:Qe(),dirty:l,skip_bound:!1,root:e.target||s.$$.root};a&&a(c.root);let d=!1;if(c.ctx=t?t(i,e.props||{},(f,b,..._)=>{const p=_.length?_[0]:b;return c.ctx&&n(c.ctx[f],c.ctx[f]=p)&&(!c.skip_bound&&c.bound[f]&&c.bound[f](p),d&&Mi(i,f)),b}):[],c.update(),d=!0,$(c.before_update),c.fragment=r?r(c.ctx):!1,e.target){if(e.hydrate){const f=wi(e.target);c.fragment&&c.fragment.l(f),f.forEach(E)}else c.fragment&&c.fragment.c();e.intro&&W(i.$$.fragment),se(i,e.target,e.anchor,e.customElement),h()}Ee(s)}let O;typeof HTMLElement=="function"&&(O=class extends HTMLElement{constructor(){super();this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:i}=this.$$;this.$$.on_disconnect=i.map(Ve).filter(ue);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(i,e,t){this[i]=t}disconnectedCallback(){$(this.$$.on_disconnect)}$destroy(){ce(this,1),this.$destroy=w}$on(i,e){const t=this.$$.callbacks[i]||(this.$$.callbacks[i]=[]);return t.push(e),()=>{const r=t.indexOf(e);r!==-1&&t.splice(r,1)}}$set(i){this.$$set&&!gi(i)&&(this.$$.skip_bound=!0,this.$$set(i),this.$$.skip_bound=!1)}});function Li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0])},d(d){d&&E(e)}}}function Ti(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("a"),t=m("img"),n=H(),o=m("img"),l=H(),s=m("span"),c=F(i[0]),u(t,"alt","GoA Logo"),u(t,"class","image-mobile"),Le(t.src,r="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bfill:%2300aad2;%7D.c%7Bclip-path:url(%23a);%7D.d%7Bfill:%23fff;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='14' height='14' transform='translate(-0.345 -0.21)'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(0 -0.135)'%3E%3Ccircle class='b' cx='8' cy='8' r='8' transform='translate(0 0.135)'/%3E%3Cg transform='translate(1.345 1.344)'%3E%3Cg class='c' transform='translate(0 0)'%3E%3Cpath class='d' d='M12.612,13.636a16.24,16.24,0,0,1-1.86-.822,13.436,13.436,0,0,0,1.6-.708,11.312,11.312,0,0,0,.264,1.53M16.032,7.3c-.266-.034-.128.091-.2.442a5.465,5.465,0,0,1-2.8,3.338,16.141,16.141,0,0,1,.249-4.84c.275-1,.6-.813.2-1.022-.427-.22-.887.071-1.258.813A27.247,27.247,0,0,1,7.4,13.522a2.141,2.141,0,0,1-2.918.461c-.206-.174-.282.095-.026.37a2.412,2.412,0,0,0,3.387-.082A32.715,32.715,0,0,0,12.219,7.51a23.541,23.541,0,0,0,.063,3.971,11.464,11.464,0,0,1-1.964.749c-.388.1-.628.26-.635.439-.007.2.253.363.63.541.67.318,2.633,1.246,3.117,1.527.414.24.616.053.739-.207.16-.338-.279-.533-.7-.661a13.175,13.175,0,0,1-.382-2.179,7.143,7.143,0,0,0,2.547-2.454,4.7,4.7,0,0,0,.4-1.133,2.125,2.125,0,0,0,.048-.742s-.007-.054-.048-.059' transform='translate(-3.51 -3.943)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")||u(t,"src",r),u(o,"alt","GoA Logo"),u(o,"class","image-desktop"),Le(o.src,a="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='149.351' height='42' viewBox='0 0 149.351 42'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='149.351' height='42'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class='b'%3E%3Crect class='c' width='13.555' height='13.555' transform='translate(135.796 21.524)'/%3E%3Cpath class='d' d='M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83' transform='translate(-0.038 0.124)'/%3E%3C/g%3E%3C/svg%3E")||u(o,"src",a),u(s,"class","title"),u(e,"href",i[1]),u(e,"class","app-link")},m(d,f){v(d,e,f),g(e,t),g(e,n),g(e,o),g(e,l),g(e,s),g(s,c)},p(d,f){f&1&&q(c,d[0]),f&2&&u(e,"href",d[1])},d(d){d&&E(e)}}}function Ri(i){let e,t,r,n,o;function a(c,d){return c[1]?Ti:Li}let l=a(i),s=l(i);return{c(){e=m("div"),t=m("div"),s.c(),r=H(),n=m("div"),n.innerHTML="<slot></slot>",this.c=w,u(t,"class","content"),u(e,"class","app-header"),u(e,"data-testid",i[2]),u(e,"style",o=`--max-content-width: ${i[3]||"100%"}`)},m(c,d){v(c,e,d),g(e,t),s.m(t,null),g(t,r),g(t,n)},p(c,[d]){l===(l=a(c))&&s?s.p(c,d):(s.d(1),s=l(c),s&&(s.c(),s.m(t,r))),d&4&&u(e,"data-testid",c[2]),d&8&&o!==(o=`--max-content-width: ${c[3]||"100%"}`)&&u(e,"style",o)},i:w,o:w,d(c){c&&E(e),s.d()}}}function Ai(i,e,t){let{heading:r=""}=e,{url:n=""}=e,{testid:o=""}=e,{maxcontentwidth:a=""}=e;return i.$$set=l=>{"heading"in l&&t(0,r=l.heading),"url"in l&&t(1,n=l.url),"testid"in l&&t(2,o=l.testid),"maxcontentwidth"in l&&t(3,a=l.maxcontentwidth)},[r,n,o,a]}class Hi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box;font-family:var(--font-family)}.app-header{margin:0 auto;border-bottom:1px solid var(--color-gray-100)}@media(max-width: 640px){.app-header{padding:1rem 1rem}}.content{margin:0 auto;width:min(var(--max-content-width), 100%);display:flex;align-items:center;justify-content:space-between}@media(min-width: 640px){.content{padding:1.5rem 1.125rem}}.app-link{display:flex;align-items:center;text-decoration:none;color:inherit}.title{margin-left:0.5rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.image-desktop{display:none}.image-mobile{display:block}@media(min-width: 640px){.image-desktop{display:block}.image-mobile{display:none}.title{margin-left:1.75rem}.image-desktop{display:block}.image-mobile{display:none}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ai,Ri,N,{heading:0,url:1,testid:2,maxcontentwidth:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","url","testid","maxcontentwidth"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get url(){return this.$$.ctx[1]}set url(e){this.$$set({url:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}get maxcontentwidth(){return this.$$.ctx[3]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-header",Hi);function G(i){return i==="false"?!1:i===""?!0:!!i}function Ii(i){return i?"true":"false"}function Si(i){let e;return{c(){e=m("div"),V(e,"height","1.2rem"),V(e,"margin-left","-0.25rem")},m(t,r){v(t,e,r)},p:w,d(t){t&&E(e)}}}function Di(i){let e;return{c(){e=m("goa-icon"),C(e,"type",i[4]),C(e,"size","small")},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4])},d(t){t&&E(e)}}}function dt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","goa-badge-content")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&E(e)}}}function Bi(i){let e,t,r;function n(s,c){return s[3]?Di:Si}let o=n(i),a=o(i),l=i[2]&&dt(i);return{c(){e=m("div"),a.c(),t=H(),l&&l.c(),this.c=w,u(e,"data-testid",i[1]),u(e,"data-type","goa-badge"),u(e,"class",r="goa-badge badge-"+i[0]),B(e,"icon-only",i[3]&&!i[2])},m(s,c){v(s,e,c),a.m(e,null),g(e,t),l&&l.m(e,null)},p(s,[c]){o===(o=n(s))&&a?a.p(s,c):(a.d(1),a=o(s),a&&(a.c(),a.m(e,t))),s[2]?l?l.p(s,c):(l=dt(s),l.c(),l.m(e,null)):l&&(l.d(1),l=null),c&2&&u(e,"data-testid",s[1]),c&1&&r!==(r="goa-badge badge-"+s[0])&&u(e,"class",r),c&13&&B(e,"icon-only",s[3]&&!s[2])},i:w,o:w,d(s){s&&E(e),a.d(),l&&l.d()}}}function Ni(i,e,t){let r,n,{type:o}=e,{testid:a=""}=e,{icon:l="false"}=e,{content:s=""}=e;return Q(()=>{!r&&!s&&console.warn("GoABadge must have either then content or icon property set")}),i.$$set=c=>{"type"in c&&t(0,o=c.type),"testid"in c&&t(1,a=c.testid),"icon"in c&&t(5,l=c.icon),"content"in c&&t(2,s=c.content)},i.$$.update=()=>{i.$$.dirty&32&&t(3,r=G(l)),i.$$.dirty&1&&t(4,n={success:"checkmark-circle",important:"alert-circle",information:"information-circle",emergency:"warning",dark:"information-circle",midtone:"information-circle",light:"information-circle"}[o])},[o,a,s,r,n,l]}class Oi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-badge{display:inline-flex;align-items:center;border-radius:0.25rem;padding:3px 0.5rem;gap:0.25rem;font-weight:var(--fw-regular);margin:0.25rem}.icon-only{padding:0.25rem}.goa-badge-content{text-transform:capitalize;font-size:var(--fs-sm);line-height:var(--lh-sm);padding-bottom:var(--font-valign-fix)}.goa-badge.badge-information{background-color:var(--color-gray-100);color:var(--goa-color-status-info)}.goa-badge.badge-success{background-color:var(--goa-color-status-success);color:var(--goa-color-text-light)}.goa-badge.badge-important{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.goa-badge.badge-emergency{background-color:var(--goa-color-status-emergency);color:var(--goa-color-text-light)}.goa-badge.badge-dark{background-color:var(--color-black);color:var(--goa-color-text-light)}.goa-badge.badge-midtone{background-color:var(--color-gray-600);color:var(--goa-color-text-light)}.goa-badge.badge-light{background-color:var(--color-white);color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ni,Bi,N,{type:0,testid:1,icon:5,content:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","testid","icon","content"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}get icon(){return this.$$.ctx[5]}set icon(e){this.$$set({icon:e}),h()}get content(){return this.$$.ctx[2]}set content(e){this.$$set({content:e}),h()}}customElements.define("goa-badge",Oi);function ji(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,V(e,"--alignment","flex-"+i[1]),V(e,"--gap-size",i[0]==="small"?"0.5rem":"1.25rem")},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&2&&V(e,"--alignment","flex-"+r[1]),n&1&&V(e,"--gap-size",r[0]==="small"?"0.5rem":"1.25rem")},i:w,o:w,d(r){r&&E(e)}}}function Pi(i,e,t){let{gap:r="medium"}=e,{alignment:n}=e;return i.$$set=o=>{"gap"in o&&t(0,r=o.gap),"alignment"in o&&t(1,n=o.alignment)},[r,n]}class Fi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Pi,ji,N,{gap:0,alignment:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap","alignment"]}get gap(){return this.$$.ctx[0]}set gap(e){this.$$set({gap:e}),h()}get alignment(){return this.$$.ctx[1]}set alignment(e){this.$$set({alignment:e}),h()}}customElements.define("goa-button-group",Fi);function Gi(i){let e,t,r,n,o=i[3]&&ut(i),a=i[4]&&ft(i);return{c(){o&&o.c(),e=H(),t=m("slot"),r=H(),a&&a.c(),n=ie(),u(t,"class","text")},m(l,s){o&&o.m(l,s),v(l,e,s),v(l,t,s),v(l,r,s),a&&a.m(l,s),v(l,n,s)},p(l,s){l[3]?o?o.p(l,s):(o=ut(l),o.c(),o.m(e.parentNode,e)):o&&(o.d(1),o=null),l[4]?a?a.p(l,s):(a=ft(l),a.c(),a.m(n.parentNode,n)):a&&(a.d(1),a=null)},d(l){o&&o.d(l),l&&E(e),l&&E(t),l&&E(r),a&&a.d(l),l&&E(n)}}}function qi(i){let e,t,r;return{c(){e=m("slot"),t=H(),r=m("goa-icon"),u(e,"class","text"),C(r,"id","trailing-icon"),C(r,"type","arrow-forward"),C(r,"inverted","true")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},p:w,d(n){n&&E(e),n&&E(t),n&&E(r)}}}function ut(i){let e;return{c(){e=m("goa-icon"),C(e,"id","leading-icon"),C(e,"type",i[3]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&8&&C(e,"type",t[3]),r&64&&C(e,"inverted",t[6])},d(t){t&&E(e)}}}function ft(i){let e;return{c(){e=m("goa-icon"),C(e,"id","trailing-icon"),C(e,"type",i[4]),C(e,"inverted",i[6])},m(t,r){v(t,e,r)},p(t,r){r&16&&C(e,"type",t[4]),r&64&&C(e,"inverted",t[6])},d(t){t&&E(e)}}}function Vi(i){let e,t,r,n;function o(s,c){return s[0]==="start"?qi:Gi}let a=o(i),l=a(i);return{c(){e=m("button"),l.c(),this.c=w,u(e,"class",t=""+(i[0]+" "+i[1]+" "+i[2])),e.disabled=i[7],u(e,"data-testid",i[5]),B(e,"leading",i[3]),B(e,"trailing",i[4]||i[0]==="start")},m(s,c){v(s,e,c),l.m(e,null),r||(n=U(e,"click",Wi),r=!0)},p(s,[c]){a===(a=o(s))&&l?l.p(s,c):(l.d(1),l=a(s),l&&(l.c(),l.m(e,null))),c&7&&t!==(t=""+(s[0]+" "+s[1]+" "+s[2]))&&u(e,"class",t),c&128&&(e.disabled=s[7]),c&32&&u(e,"data-testid",s[5]),c&15&&B(e,"leading",s[3]),c&23&&B(e,"trailing",s[4]||s[0]==="start")},i:w,o:w,d(s){s&&E(e),l.d(),r=!1,n()}}}function Wi(i){this.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),i.stopPropagation()}function Ui(i,e,t){let r,n;const o=["primary","submit","secondary","tertiary","start"],a=["normal","compact"],l=["normal","destructive"];function s(M){return o.includes(M)}function c(M){return a.includes(M)}function d(M){return l.includes(M)}let{type:f="primary"}=e,{size:b="normal"}=e,{variant:_="normal"}=e,{disabled:p="false"}=e,{leadingicon:y=null}=e,{trailingicon:L=null}=e,{testid:x=""}=e;return Q(()=>{if(!s(f))throw"Invalid button type";if(!c(b))throw"Invalid button size";if(!d(_))throw"Invalid button variant"}),i.$$set=M=>{"type"in M&&t(0,f=M.type),"size"in M&&t(1,b=M.size),"variant"in M&&t(2,_=M.variant),"disabled"in M&&t(8,p=M.disabled),"leadingicon"in M&&t(3,y=M.leadingicon),"trailingicon"in M&&t(4,L=M.trailingicon),"testid"in M&&t(5,x=M.testid)},i.$$.update=()=>{i.$$.dirty&256&&t(7,r=G(p)),i.$$.dirty&1&&t(6,n=f==="primary"||f==="start")},[f,b,_,y,L,x,n,r,p]}class Zi extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive);box-sizing:border-box;cursor:pointer;font-family:var(--font-family);font-size:var(--fs-lg);font-weight:400;height:var(--button-height);letter-spacing:0.5px;line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
5
5
  border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--fs-base)}button.start{height:var(--button-height-tall);font-weight:var(--fw-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive);background-color:var(--goa-color-interactive);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive--hover);background-color:var(--goa-color-interactive--hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);border-color:var(--goa-color-interactive--active);background-color:var(--goa-color-interactive--active);outline:none}button.secondary{border:2px solid var(--goa-color-interactive);background-color:var(--color-white);color:var(--goa-color-interactive)}button.secondary:hover{border-color:var(--goa-color-interactive--hover);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);background-color:var(--color-gray-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive);text-decoration:underline}button.tertiary:hover{border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);background-color:var(--color-gray-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--color-gray-100);background-color:var(--color-gray-100);color:var(--goa-color-interactive--active);box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.submit.destructive,.primary.destructive{color:var(--color-white);background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark)}.secondary.destructive{color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);background-color:var(--color-white)}.secondary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive{color:var(--goa-color-status-emergency);border-color:var(--color-gray-200);background-color:var(--color-white)}.tertiary.destructive:hover{border-color:var(--goa-color-status-emergency-dark);color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-status-emergency-dark);border-color:var(--goa-color-status-emergency-dark);background-color:var(--color-white)}</style>`,P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ui,Vi,N,{type:0,size:1,variant:2,disabled:8,leadingicon:3,trailingicon:4,testid:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","variant","disabled","leadingicon","trailingicon","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get variant(){return this.$$.ctx[2]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[8]}set disabled(e){this.$$set({disabled:e}),h()}get leadingicon(){return this.$$.ctx[3]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[4]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-button",Zi);function ht(i){let e,t;return{c(){e=m("h3"),t=F(i[1])},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&E(e)}}}function Ki(i){let e,t,r,n,o,a,l,s,c,d=i[1]&&ht(i);return{c(){e=m("div"),t=m("span"),r=m("goa-icon"),a=H(),l=m("span"),d&&d.c(),s=H(),c=m("slot"),this.c=w,C(r,"type",i[3]),C(r,"inverted",n=i[0]==="important"?"false":"true"),u(t,"class",o="icon "+i[0]),u(l,"class","content"),u(e,"class","notification"),u(e,"data-testid",i[2])},m(f,b){v(f,e,b),g(e,t),g(t,r),g(e,a),g(e,l),d&&d.m(l,null),g(l,s),g(l,c)},p(f,[b]){b&8&&C(r,"type",f[3]),b&1&&n!==(n=f[0]==="important"?"false":"true")&&C(r,"inverted",n),b&1&&o!==(o="icon "+f[0])&&u(t,"class",o),f[1]?d?d.p(f,b):(d=ht(f),d.c(),d.m(l,s)):d&&(d.d(1),d=null),b&4&&u(e,"data-testid",f[2])},i:w,o:w,d(f){f&&E(e),d&&d.d()}}}function Xi(i,e,t){let r,{type:n}=e,{heading:o=""}=e,{testid:a=""}=e;return i.$$set=l=>{"type"in l&&t(0,n=l.type),"heading"in l&&t(1,o=l.heading),"testid"in l&&t(2,a=l.testid)},i.$$.update=()=>{i.$$.dirty&1&&t(3,r=n==="emergency"?"warning":n==="important"?"alert-circle":n==="information"?"information-circle":n==="success"?"checkmark-circle":n==="event"?"calendar":"")},[n,o,a,r]}class Yi extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{display:flex;align-items:stretch;border-radius:3px;overflow:hidden;margin-bottom:1.75rem}h3{font-size:var(--fs-xl);line-height:var(--lh-base);font-weight:var(--fw-regular);margin-top:0}.emergency{background-color:var(--goa-color-status-emergency)}.important{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info)}.event{background-color:var(--goa-color-status-info)}.success{background-color:var(--goa-color-status-success)}.icon{flex:0 0 3rem;text-align:center;padding-top:1.75rem}.content{flex:1 1 auto;background-color:var(--color-gray-100);padding:1.75rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Xi,Ki,N,{type:0,heading:1,testid:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","heading","testid"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get heading(){return this.$$.ctx[1]}set heading(e){this.$$set({heading:e}),h()}get testid(){return this.$$.ctx[2]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-callout",Yi);function Ji(i){let e;return{c(){e=m("goa-card-content"),e.innerHTML='<goa-button-group alignment="end"><slot></slot></goa-button-group>',this.c=w},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&E(e)}}}class Qi extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},null,Ji,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-actions",Qi);function $i(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=w,u(e,"class","card-content")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&E(e)}}}class er extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-content{padding:1rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},null,$i,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-content",er);function tr(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",this.c=w,u(e,"class","card-group")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&E(e)}}}class ir extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card-group{display:flex;flex-wrap:wrap;justify-content:space-around;gap:1rem;width:100%}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},null,tr,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-card-group",ir);function rr(i){let e;return{c(){e=m("div"),this.c=w,u(e,"class","card-image"),V(e,"background-image","url("+i[0]+")"),V(e,"height",i[1]),V(e,"background-size","cover"),V(e,"background-position","center")},m(t,r){v(t,e,r)},p(t,[r]){r&1&&V(e,"background-image","url("+t[0]+")"),r&2&&V(e,"height",t[1])},i:w,o:w,d(t){t&&E(e)}}}function nr(i,e,t){let{src:r}=e,{height:n="100%"}=e;return i.$$set=o=>{"src"in o&&t(0,r=o.src),"height"in o&&t(1,n=o.height)},[r,n]}class or extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},nr,rr,N,{src:0,height:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["src","height"]}get src(){return this.$$.ctx[0]}set src(e){this.$$set({src:e}),h()}get height(){return this.$$.ctx[1]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-card-image",or);function ar(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"data-testid",i[2]),u(e,"class","card"),u(e,"style",r="--width: "+i[1]+"px; "+(i[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${i[0]});`)+"")},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&4&&u(e,"data-testid",n[2]),o&3&&r!==(r="--width: "+n[1]+"px; "+(n[0]===0?"border: 1px solid var(--color-gray-200);":`box-shadow: var(--shadow-${n[0]});`)+"")&&u(e,"style",r)},i:w,o:w,d(n){n&&E(e)}}}function lr(i,e,t){let{elevation:r=0}=e,{width:n=320}=e,{testId:o=""}=e;return i.$$set=a=>{"elevation"in a&&t(0,r=a.elevation),"width"in a&&t(1,n=a.width),"testId"in a&&t(2,o=a.testId)},[r,n,o]}class sr extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.card{display:flex;flex-direction:column;background-color:var(--color-white);border-radius:4px;overflow:hidden;width:100%}@media(min-width: 320px){.card{width:var(--width);margin:0 auto
6
- }}</style>`,P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},lr,ar,N,{elevation:0,width:1,testId:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["elevation","width","testId"]}get elevation(){return this.$$.ctx[0]}set elevation(e){this.$$set({elevation:e}),h()}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get testId(){return this.$$.ctx[2]}set testId(e){this.$$set({testId:e}),h()}}customElements.define("goa-card",sr);function cr(i){let e,t;return{c(){e=fe("svg"),t=fe("path"),u(t,"d","M5.09,9.64,1.27,5.82,0,7.09l5.09,5.09L16,1.27,14.73,0Z"),u(e,"id","checkmark"),u(e,"data-testid","checkmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 16 12.18")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&E(e)}}}function dr(i){let e,t;return{c(){e=fe("svg"),t=fe("rect"),u(t,"width","15"),u(t,"height","2"),u(e,"id","dashmark"),u(e,"data-testid","dashmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 15 2")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&E(e)}}}function ur(i){let e,t,r,n,o,a,l,s,c,d,f;function b(_,L){if(_[5])return dr;if(_[4])return cr}let y=b(i),p=y&&y(i);return{c(){e=m("label"),t=m("div"),r=m("input"),o=H(),p&&p.c(),a=H(),l=m("div"),s=m("slot"),c=F(i[1]),this.c=w,u(r,"id",i[0]),u(r,"data-testid",i[3]),u(r,"name",i[0]),r.checked=i[4],r.disabled=i[7],u(r,"type","checkbox"),r.value=n=`${i[2]}`,u(t,"class","goa-checkbox-container"),B(t,"goa-checkbox--selected",i[4]),u(l,"class","goa-checkbox-text"),u(l,"data-testid","text"),u(e,"for",i[0]),u(e,"class","goa-checkbox"),B(e,"goa-checkbox--disabled",i[7]),B(e,"goa-checkbox--error",i[6])},m(_,L){v(_,e,L),g(e,t),g(t,r),g(t,o),p&&p.m(t,null),g(e,a),g(e,l),g(l,s),g(s,c),d||(f=U(r,"change",i[8]),d=!0)},p(_,[L]){L&1&&u(r,"id",_[0]),L&8&&u(r,"data-testid",_[3]),L&1&&u(r,"name",_[0]),L&16&&(r.checked=_[4]),L&128&&(r.disabled=_[7]),L&4&&n!==(n=`${_[2]}`)&&(r.value=n),y!==(y=b(_))&&(p&&p.d(1),p=y&&y(_),p&&(p.c(),p.m(t,null))),L&16&&B(t,"goa-checkbox--selected",_[4]),L&2&&q(c,_[1]),L&1&&u(e,"for",_[0]),L&128&&B(e,"goa-checkbox--disabled",_[7]),L&64&&B(e,"goa-checkbox--error",_[6])},i:w,o:w,d(_){_&&E(e),p&&p.d(),d=!1,f()}}}function fr(i,e,t){let r,n,o,a,{name:l}=e,{checked:s}=e,{text:c=""}=e,{value:d=""}=e,{disabled:f}=e,{error:b}=e,{testid:y=""}=e;function p(_){const L=!o,x=L?`${d||"checked"}`:"";t(9,s=Ii(L)),_.target.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:l,checked:L,value:x}}))}return i.$$set=_=>{"name"in _&&t(0,l=_.name),"checked"in _&&t(9,s=_.checked),"text"in _&&t(1,c=_.text),"value"in _&&t(2,d=_.value),"disabled"in _&&t(10,f=_.disabled),"error"in _&&t(11,b=_.error),"testid"in _&&t(3,y=_.testid)},i.$$.update=()=>{i.$$.dirty&1024&&t(7,r=G(f)),i.$$.dirty&2048&&t(6,n=G(b)),i.$$.dirty&512&&t(4,o=G(s))},t(5,a=!1),[l,c,d,y,o,a,n,r,p,s,f,b]}class hr extends O{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family);display:block}.goa-checkbox{display:inline-flex;align-items:center;min-height:calc(3rem - 4px);cursor:pointer}.goa-checkbox input[type="checkbox"]{opacity:0;position:absolute;cursor:pointer}.goa-checkbox--disabled{opacity:40%}.goa-checkbox-container{box-sizing:border-box;border:1px solid var(--color-gray-600);border-radius:2px;background-color:var(--color-white);height:1.5rem;width:1.5rem;display:flex;justify-content:center;padding:3px;flex:0 0 auto}.goa-checkbox-container svg{fill:var(--color-white)}.goa-checkbox-container.goa-checkbox--selected{background-color:var(--goa-color-interactive)}.goa-checkbox-container.goa-checkbox--selected:hover{background-color:var(--goa-color-interactive--hover)}.goa-checkbox-container:hover{border:1px solid var(--goa-color-interactive--hover)}.goa-checkbox-container:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.goa-checkbox-text{padding-left:0.5rem;user-select:none;font-weight:var(--fw-regular)}.goa-checkbox--disabled .goa-checkbox-container,.goa-checkbox--disabled .goa-checkbox-container:hover{border:1px solid var(--color-gray-400)}.goa-checkbox--error .goa-checkbox-container,.goa-checkbox--error .goa-checkbox-container:hover{border:1px solid var(--goa-color-status-emergency);box-shadow:inset 0 0 0 1px var(--goa-color-status-emergency);background-color:var(--color-white)}.goa-checkbox--error .goa-checkbox-container svg{fill:var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},fr,ur,N,{name:0,checked:9,text:1,value:2,disabled:10,error:11,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","checked","text","value","disabled","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get checked(){return this.$$.ctx[9]}set checked(e){this.$$set({checked:e}),h()}get text(){return this.$$.ctx[1]}set text(e){this.$$set({text:e}),h()}get value(){return this.$$.ctx[2]}set value(e){this.$$set({value:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[11]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-checkbox",hr);function gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","leading-icon"),C(e,"size","medium"),C(e,"type",i[0])},m(t,r){v(t,e,r)},p(t,r){r&1&&C(e,"type",t[0])},d(t){t&&E(e)}}}function mt(i){let e,t,r;return{c(){e=m("goa-icon"),C(e,"class","delete-icon"),C(e,"size","medium"),C(e,"theme","filled"),C(e,"type","close-circle"),C(e,"fillcolor",t=i[5]?"var(--goa-color-status-emergency)":i[4]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)"),C(e,"opacity",r=i[5]?i[4]?1:.5:1)},m(n,o){v(n,e,o)},p(n,o){o&48&&t!==(t=n[5]?"var(--goa-color-status-emergency)":n[4]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)")&&C(e,"fillcolor",t),o&48&&r!==(r=n[5]?n[4]?1:.5:1)&&C(e,"opacity",r)},d(n){n&&E(e)}}}function gr(i){let e,t,r,n,o,a,l,s=i[0]&&gt(i),c=i[6]&&mt(i);return{c(){e=m("div"),s&&s.c(),t=H(),r=m("div"),n=F(i[1]),o=H(),c&&c.c(),this.c=w,u(r,"class","text"),u(e,"data-testid","chip"),u(e,"class","chip"),u(e,"tabindex","0"),B(e,"deletable",i[6]),B(e,"error",i[5]),B(e,"variant",i[2])},m(d,f){v(d,e,f),s&&s.m(e,null),g(e,t),g(e,r),g(r,n),g(e,o),c&&c.m(e,null),i[10](e),a||(l=[U(e,"click",i[11]),U(e,"mouseover",i[12]),U(e,"mouseout",i[13]),U(e,"focus",i[14]),U(e,"blur",i[15])],a=!0)},p(d,[f]){d[0]?s?s.p(d,f):(s=gt(d),s.c(),s.m(e,t)):s&&(s.d(1),s=null),f&2&&q(n,d[1]),d[6]?c?c.p(d,f):(c=mt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null),f&64&&B(e,"deletable",d[6]),f&32&&B(e,"error",d[5]),f&4&&B(e,"variant",d[2])},i:w,o:w,d(d){d&&E(e),s&&s.d(),c&&c.d(),i[10](null),a=!1,$(l)}}}function mr(i,e,t){let{leadingicon:r=null}=e,{error:n="false"}=e,{deletable:o="false"}=e,{content:a}=e,{variant:l}=e,s,c=!1,d,f;function b(z){s.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),z.stopPropagation()}function y(z){ee[z?"unshift":"push"](()=>{s=z,t(3,s)})}const p=z=>f&&b(z),_=()=>t(4,c=!0),L=()=>t(4,c=!1),x=()=>t(4,c=!1),M=()=>t(4,c=!1);return i.$$set=z=>{"leadingicon"in z&&t(0,r=z.leadingicon),"error"in z&&t(8,n=z.error),"deletable"in z&&t(9,o=z.deletable),"content"in z&&t(1,a=z.content),"variant"in z&&t(2,l=z.variant)},i.$$.update=()=>{i.$$.dirty&256&&t(5,d=G(n)),i.$$.dirty&512&&t(6,f=G(o))},[r,a,l,s,c,d,f,b,n,o,y,p,_,L,x,M]}class br extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.leading-icon{margin-left:-0.25rem}.chip{vertical-align:middle;align-items:center;background-color:var(--color-white);border-radius:99px;border:1px solid #949494;box-sizing:border-box;color:var(--goa-color-text);display:inline-flex;flex-direction:row;font-size:var(--chip-font-size);font-weight:var(--fw-regular);gap:0.25rem;height:2rem;justify-content:center;margin:0.25rem;padding:0 0.75rem;cursor:default}.text{padding-bottom:var(--font-valign-fix)}.chip:focus{outline:2px solid var(--goa-color-interactive--focus);background-color:var(--color-white)}.chip:hover{background-color:var(--color-gray-200)}.deletable{cursor:pointer}.delete-icon{margin-right:-0.25rem}.error,.error:hover{background-color:var(--goa-color-status-emergency-light)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},mr,gr,N,{leadingicon:0,error:8,deletable:9,content:1,variant:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["leadingicon","error","deletable","content","variant"]}get leadingicon(){return this.$$.ctx[0]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get deletable(){return this.$$.ctx[9]}set deletable(e){this.$$set({deletable:e}),h()}get content(){return this.$$.ctx[1]}set content(e){this.$$set({content:e}),h()}get variant(){return this.$$.ctx[2]}set variant(e){this.$$set({variant:e}),h()}}customElements.define("goa-chip",br);function vr(i){const e=i-1;return e*e*e+1}function pr(i){return Math.pow(i-1,3)*(1-i)+1}function we(i,{delay:e=0,duration:t=400,easing:r=ke}={}){const n=+getComputedStyle(i).opacity;return{delay:e,duration:t,easing:r,css:o=>`opacity: ${o*n}`}}function bt(i,{delay:e=0,duration:t=400,easing:r=vr,x:n=0,y:o=0,opacity:a=0}={}){const l=getComputedStyle(i),s=+l.opacity,c=l.transform==="none"?"":l.transform,d=s*(1-a);return{delay:e,duration:t,easing:r,css:(f,b)=>`
6
+ }}</style>`,P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},lr,ar,N,{elevation:0,width:1,testId:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["elevation","width","testId"]}get elevation(){return this.$$.ctx[0]}set elevation(e){this.$$set({elevation:e}),h()}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get testId(){return this.$$.ctx[2]}set testId(e){this.$$set({testId:e}),h()}}customElements.define("goa-card",sr);function cr(i){let e,t;return{c(){e=fe("svg"),t=fe("path"),u(t,"d","M5.09,9.64,1.27,5.82,0,7.09l5.09,5.09L16,1.27,14.73,0Z"),u(e,"id","checkmark"),u(e,"data-testid","checkmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 16 12.18")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&E(e)}}}function dr(i){let e,t;return{c(){e=fe("svg"),t=fe("rect"),u(t,"width","15"),u(t,"height","2"),u(e,"id","dashmark"),u(e,"data-testid","dashmark"),u(e,"xmlns","http://www.w3.org/2000/svg"),u(e,"viewBox","0 0 15 2")},m(r,n){v(r,e,n),g(e,t)},d(r){r&&E(e)}}}function ur(i){let e,t,r,n,o,a,l,s,c,d,f;function b(y,L){if(y[5])return dr;if(y[4])return cr}let _=b(i),p=_&&_(i);return{c(){e=m("label"),t=m("div"),r=m("input"),o=H(),p&&p.c(),a=H(),l=m("div"),s=m("slot"),c=F(i[1]),this.c=w,u(r,"id",i[0]),u(r,"data-testid",i[3]),u(r,"name",i[0]),r.checked=i[4],r.disabled=i[7],u(r,"type","checkbox"),r.value=n=`${i[2]}`,u(t,"class","goa-checkbox-container"),B(t,"goa-checkbox--selected",i[4]),u(l,"class","goa-checkbox-text"),u(l,"data-testid","text"),u(e,"for",i[0]),u(e,"class","goa-checkbox"),B(e,"goa-checkbox--disabled",i[7]),B(e,"goa-checkbox--error",i[6])},m(y,L){v(y,e,L),g(e,t),g(t,r),g(t,o),p&&p.m(t,null),g(e,a),g(e,l),g(l,s),g(s,c),d||(f=U(r,"change",i[8]),d=!0)},p(y,[L]){L&1&&u(r,"id",y[0]),L&8&&u(r,"data-testid",y[3]),L&1&&u(r,"name",y[0]),L&16&&(r.checked=y[4]),L&128&&(r.disabled=y[7]),L&4&&n!==(n=`${y[2]}`)&&(r.value=n),_!==(_=b(y))&&(p&&p.d(1),p=_&&_(y),p&&(p.c(),p.m(t,null))),L&16&&B(t,"goa-checkbox--selected",y[4]),L&2&&q(c,y[1]),L&1&&u(e,"for",y[0]),L&128&&B(e,"goa-checkbox--disabled",y[7]),L&64&&B(e,"goa-checkbox--error",y[6])},i:w,o:w,d(y){y&&E(e),p&&p.d(),d=!1,f()}}}function fr(i,e,t){let r,n,o,a,{name:l}=e,{checked:s}=e,{text:c=""}=e,{value:d=""}=e,{disabled:f}=e,{error:b}=e,{testid:_=""}=e;function p(y){const L=!o,x=L?`${d||"checked"}`:"";t(9,s=Ii(L)),y.target.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:l,checked:L,value:x}}))}return i.$$set=y=>{"name"in y&&t(0,l=y.name),"checked"in y&&t(9,s=y.checked),"text"in y&&t(1,c=y.text),"value"in y&&t(2,d=y.value),"disabled"in y&&t(10,f=y.disabled),"error"in y&&t(11,b=y.error),"testid"in y&&t(3,_=y.testid)},i.$$.update=()=>{i.$$.dirty&1024&&t(7,r=G(f)),i.$$.dirty&2048&&t(6,n=G(b)),i.$$.dirty&512&&t(4,o=G(s))},t(5,a=!1),[l,c,d,_,o,a,n,r,p,s,f,b]}class hr extends O{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family);display:block}.goa-checkbox{display:inline-flex;align-items:center;min-height:calc(3rem - 4px);cursor:pointer}.goa-checkbox input[type="checkbox"]{opacity:0;position:absolute;cursor:pointer}.goa-checkbox--disabled{opacity:40%}.goa-checkbox-container{box-sizing:border-box;border:1px solid var(--color-gray-600);border-radius:2px;background-color:var(--color-white);height:1.5rem;width:1.5rem;display:flex;justify-content:center;padding:3px;flex:0 0 auto}.goa-checkbox-container svg{fill:var(--color-white)}.goa-checkbox-container.goa-checkbox--selected{background-color:var(--goa-color-interactive)}.goa-checkbox-container.goa-checkbox--selected:hover{background-color:var(--goa-color-interactive--hover)}.goa-checkbox-container:hover{border:1px solid var(--goa-color-interactive--hover)}.goa-checkbox-container:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus);outline:none}.goa-checkbox-text{padding-left:0.5rem;user-select:none;font-weight:var(--fw-regular)}.goa-checkbox--disabled .goa-checkbox-container,.goa-checkbox--disabled .goa-checkbox-container:hover{border:1px solid var(--color-gray-400)}.goa-checkbox--error .goa-checkbox-container,.goa-checkbox--error .goa-checkbox-container:hover{border:1px solid var(--goa-color-status-emergency);box-shadow:inset 0 0 0 1px var(--goa-color-status-emergency);background-color:var(--color-white)}.goa-checkbox--error .goa-checkbox-container svg{fill:var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},fr,ur,N,{name:0,checked:9,text:1,value:2,disabled:10,error:11,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","checked","text","value","disabled","error","testid"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get checked(){return this.$$.ctx[9]}set checked(e){this.$$set({checked:e}),h()}get text(){return this.$$.ctx[1]}set text(e){this.$$set({text:e}),h()}get value(){return this.$$.ctx[2]}set value(e){this.$$set({value:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[11]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-checkbox",hr);function gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","leading-icon"),C(e,"size","medium"),C(e,"type",i[0])},m(t,r){v(t,e,r)},p(t,r){r&1&&C(e,"type",t[0])},d(t){t&&E(e)}}}function mt(i){let e,t,r;return{c(){e=m("goa-icon"),C(e,"class","delete-icon"),C(e,"size","medium"),C(e,"theme","filled"),C(e,"type","close-circle"),C(e,"fillcolor",t=i[5]?"var(--goa-color-status-emergency)":i[4]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)"),C(e,"opacity",r=i[5]?i[4]?1:.5:1)},m(n,o){v(n,e,o)},p(n,o){o&48&&t!==(t=n[5]?"var(--goa-color-status-emergency)":n[4]?"var(--goa-color-interactive--hover)":"var(--color-gray-600)")&&C(e,"fillcolor",t),o&48&&r!==(r=n[5]?n[4]?1:.5:1)&&C(e,"opacity",r)},d(n){n&&E(e)}}}function gr(i){let e,t,r,n,o,a,l,s=i[0]&&gt(i),c=i[6]&&mt(i);return{c(){e=m("div"),s&&s.c(),t=H(),r=m("div"),n=F(i[1]),o=H(),c&&c.c(),this.c=w,u(r,"class","text"),u(e,"data-testid","chip"),u(e,"class","chip"),u(e,"tabindex","0"),B(e,"deletable",i[6]),B(e,"error",i[5]),B(e,"variant",i[2])},m(d,f){v(d,e,f),s&&s.m(e,null),g(e,t),g(e,r),g(r,n),g(e,o),c&&c.m(e,null),i[10](e),a||(l=[U(e,"click",i[11]),U(e,"mouseover",i[12]),U(e,"mouseout",i[13]),U(e,"focus",i[14]),U(e,"blur",i[15])],a=!0)},p(d,[f]){d[0]?s?s.p(d,f):(s=gt(d),s.c(),s.m(e,t)):s&&(s.d(1),s=null),f&2&&q(n,d[1]),d[6]?c?c.p(d,f):(c=mt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null),f&64&&B(e,"deletable",d[6]),f&32&&B(e,"error",d[5]),f&4&&B(e,"variant",d[2])},i:w,o:w,d(d){d&&E(e),s&&s.d(),c&&c.d(),i[10](null),a=!1,$(l)}}}function mr(i,e,t){let{leadingicon:r=null}=e,{error:n="false"}=e,{deletable:o="false"}=e,{content:a}=e,{variant:l}=e,s,c=!1,d,f;function b(z){s.dispatchEvent(new CustomEvent("_click",{composed:!0,bubbles:!0})),z.stopPropagation()}function _(z){ee[z?"unshift":"push"](()=>{s=z,t(3,s)})}const p=z=>f&&b(z),y=()=>t(4,c=!0),L=()=>t(4,c=!1),x=()=>t(4,c=!1),M=()=>t(4,c=!1);return i.$$set=z=>{"leadingicon"in z&&t(0,r=z.leadingicon),"error"in z&&t(8,n=z.error),"deletable"in z&&t(9,o=z.deletable),"content"in z&&t(1,a=z.content),"variant"in z&&t(2,l=z.variant)},i.$$.update=()=>{i.$$.dirty&256&&t(5,d=G(n)),i.$$.dirty&512&&t(6,f=G(o))},[r,a,l,s,c,d,f,b,n,o,_,p,y,L,x,M]}class br extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.leading-icon{margin-left:-0.25rem}.chip{vertical-align:middle;align-items:center;background-color:var(--color-white);border-radius:99px;border:1px solid #949494;box-sizing:border-box;color:var(--goa-color-text);display:inline-flex;flex-direction:row;font-size:var(--chip-font-size);font-weight:var(--fw-regular);gap:0.25rem;height:2rem;justify-content:center;margin:0.25rem;padding:0 0.75rem;cursor:default}.text{padding-bottom:var(--font-valign-fix)}.chip:focus{outline:2px solid var(--goa-color-interactive--focus);background-color:var(--color-white)}.chip:hover{background-color:var(--color-gray-200)}.deletable{cursor:pointer}.delete-icon{margin-right:-0.25rem}.error,.error:hover{background-color:var(--goa-color-status-emergency-light)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},mr,gr,N,{leadingicon:0,error:8,deletable:9,content:1,variant:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["leadingicon","error","deletable","content","variant"]}get leadingicon(){return this.$$.ctx[0]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get deletable(){return this.$$.ctx[9]}set deletable(e){this.$$set({deletable:e}),h()}get content(){return this.$$.ctx[1]}set content(e){this.$$set({content:e}),h()}get variant(){return this.$$.ctx[2]}set variant(e){this.$$set({variant:e}),h()}}customElements.define("goa-chip",br);function vr(i){const e=i-1;return e*e*e+1}function pr(i){return Math.pow(i-1,3)*(1-i)+1}function we(i,{delay:e=0,duration:t=400,easing:r=ke}={}){const n=+getComputedStyle(i).opacity;return{delay:e,duration:t,easing:r,css:o=>`opacity: ${o*n}`}}function bt(i,{delay:e=0,duration:t=400,easing:r=vr,x:n=0,y:o=0,opacity:a=0}={}){const l=getComputedStyle(i),s=+l.opacity,c=l.transform==="none"?"":l.transform,d=s*(1-a);return{delay:e,duration:t,easing:r,css:(f,b)=>`
7
7
  transform: ${c} translate(${(1-f)*n}px, ${(1-f)*o}px);
8
- opacity: ${s-d*b}`}}function vt(i,e){let t=!1;function r(){if(!n())return;const l=a();l>0&&(t=!0,document.body.style.overflow="hidden",document.body.style.paddingRight=l+"px")}function n(){return document.body.style.overflow!=="hidden"}function o(){!t||(t=!1,setTimeout(()=>{document.body.style.overflow="",document.body.style.paddingRight="0"},200))}function a(){if(document.body.clientHeight<=document.documentElement.clientHeight)return 0;const l=document.createElement("div");l.style.visibility="hidden",l.style.overflow="scroll",document.body.appendChild(l);const s=document.createElement("div");l.appendChild(s);const c=l.offsetWidth-s.offsetWidth;return l.parentNode.removeChild(l),c}return e.enable&&r(),{update(){e.enable||o()},destroy(){o()}}}function pt(i){let e,t,r,n;const o=[yr,wr],a=[];function l(s,c){return s[3]?0:s[4]?1:-1}return~(e=l(i))&&(t=a[e]=o[e](i)),{c(){t&&t.c(),r=ie()},m(s,c){~e&&a[e].m(s,c),v(s,r,c),n=!0},p(s,c){let d=e;e=l(s),e===d?~e&&a[e].p(s,c):(t&&(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe()),~e?(t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r)):t=null)},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){~e&&a[e].d(s),s&&E(r)}}}function wr(i){let e,t,r,n,o=i[0]&&wt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),o&&o.c(),C(t,"size",i[2]),C(t,"progress",i[1]),u(e,"class",n="spinner-"+i[2]),B(e,"inline",i[4])},m(a,l){v(a,e,l),g(e,t),g(e,r),o&&o.m(e,null)},p(a,l){l&4&&C(t,"size",a[2]),l&2&&C(t,"progress",a[1]),a[0]?o?o.p(a,l):(o=wt(a),o.c(),o.m(e,null)):o&&(o.d(1),o=null),l&4&&n!==(n="spinner-"+a[2])&&u(e,"class",n),l&20&&B(e,"inline",a[4])},i:w,o:w,d(a){a&&E(e),o&&o.d()}}}function yr(i){let e,t,r,n,o,a,l,s=i[0]&&yt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),s&&s.c(),C(t,"size",i[2]),C(t,"progress",i[1]),B(e,"fullscreen",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r),s&&s.m(e,null),o=!0,a||(l=$e(vt.call(null,e,{enable:!0})),a=!0)},p(c,d){(!o||d&4)&&C(t,"size",c[2]),(!o||d&2)&&C(t,"progress",c[1]),c[0]?s?s.p(c,d):(s=yt(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&8&&B(e,"fullscreen",c[3])},i(c){o||(re(()=>{n||(n=Pe(e,we,{duration:300},!0)),n.run(1)}),o=!0)},o(c){n||(n=Pe(e,we,{duration:300},!1)),n.run(0),o=!1},d(c){c&&E(e),s&&s.d(),c&&n&&n.end(),a=!1,l()}}}function wt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function yt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function _r(i){let e,t,r=i[5]&&pt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=pt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function kr(i,e,t){let r,{variant:n="inline"}=e,{size:o="large"}=e,{message:a=""}=e,{progress:l=-1}=e,{visible:s="false"}=e,c,d,f;return Q(async()=>{t(2,c=o==="small"?"large":"xlarge"),t(3,d=n==="fullscreen"),t(4,f=n==="inline")}),i.$$set=b=>{"variant"in b&&t(6,n=b.variant),"size"in b&&t(7,o=b.size),"message"in b&&t(0,a=b.message),"progress"in b&&t(1,l=b.progress),"visible"in b&&t(8,s=b.visible)},i.$$.update=()=>{i.$$.dirty&256&&t(5,r=G(s))},[a,l,c,d,f,r,n,o,s]}class xr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.fullscreen{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:rgba(255, 255, 255, 0.9)}.inline{margin:3.5rem;display:inline-flex;flex-direction:column;align-items:center;justify-content:center}.spinner-large .message{margin-top:1.5rem;font-size:1.2rem}.spinner-xlarge .message{margin-top:2rem;font-size:1.5rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},kr,_r,N,{variant:6,size:7,message:0,progress:1,visible:8},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["variant","size","message","progress","visible"]}get variant(){return this.$$.ctx[6]}set variant(e){this.$$set({variant:e}),h()}get size(){return this.$$.ctx[7]}set size(e){this.$$set({size:e}),h()}get message(){return this.$$.ctx[0]}set message(e){this.$$set({message:e}),h()}get progress(){return this.$$.ctx[1]}set progress(e){this.$$set({progress:e}),h()}get visible(){return this.$$.ctx[8]}set visible(e){this.$$set({visible:e}),h()}}customElements.define("goa-circular-progress",xr);function Er(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("header"),r=m("div"),r.innerHTML='<slot name="title"></slot>',n=H(),o=m("div"),o.innerHTML='<slot name="actions"></slot>',l=H(),s=m("div"),s.innerHTML="<slot></slot>",this.c=w,u(r,"class","title"),u(o,"class","actions"),u(t,"class",a="heading--"+i[1]),u(s,"class","content"),u(e,"class",c=`
8
+ opacity: ${s-d*b}`}}function vt(i,e){let t=!1;function r(){if(!n())return;const l=a();l>0&&(t=!0,document.body.style.overflow="hidden",document.body.style.paddingRight=l+"px")}function n(){return document.body.style.overflow!=="hidden"}function o(){!t||(t=!1,setTimeout(()=>{document.body.style.overflow="",document.body.style.paddingRight="0"},200))}function a(){if(document.body.clientHeight<=document.documentElement.clientHeight)return 0;const l=document.createElement("div");l.style.visibility="hidden",l.style.overflow="scroll",document.body.appendChild(l);const s=document.createElement("div");l.appendChild(s);const c=l.offsetWidth-s.offsetWidth;return l.parentNode.removeChild(l),c}return e.enable&&r(),{update(){e.enable||o()},destroy(){o()}}}function pt(i){let e,t,r,n;const o=[_r,wr],a=[];function l(s,c){return s[3]?0:s[4]?1:-1}return~(e=l(i))&&(t=a[e]=o[e](i)),{c(){t&&t.c(),r=ie()},m(s,c){~e&&a[e].m(s,c),v(s,r,c),n=!0},p(s,c){let d=e;e=l(s),e===d?~e&&a[e].p(s,c):(t&&(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe()),~e?(t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r)):t=null)},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){~e&&a[e].d(s),s&&E(r)}}}function wr(i){let e,t,r,n,o=i[0]&&wt(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),o&&o.c(),C(t,"size",i[2]),C(t,"progress",i[1]),u(e,"class",n="spinner-"+i[2]),B(e,"inline",i[4])},m(a,l){v(a,e,l),g(e,t),g(e,r),o&&o.m(e,null)},p(a,l){l&4&&C(t,"size",a[2]),l&2&&C(t,"progress",a[1]),a[0]?o?o.p(a,l):(o=wt(a),o.c(),o.m(e,null)):o&&(o.d(1),o=null),l&4&&n!==(n="spinner-"+a[2])&&u(e,"class",n),l&20&&B(e,"inline",a[4])},i:w,o:w,d(a){a&&E(e),o&&o.d()}}}function _r(i){let e,t,r,n,o,a,l,s=i[0]&&_t(i);return{c(){e=m("div"),t=m("goa-spinner"),r=H(),s&&s.c(),C(t,"size",i[2]),C(t,"progress",i[1]),B(e,"fullscreen",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r),s&&s.m(e,null),o=!0,a||(l=$e(vt.call(null,e,{enable:!0})),a=!0)},p(c,d){(!o||d&4)&&C(t,"size",c[2]),(!o||d&2)&&C(t,"progress",c[1]),c[0]?s?s.p(c,d):(s=_t(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&8&&B(e,"fullscreen",c[3])},i(c){o||(re(()=>{n||(n=Pe(e,we,{duration:300},!0)),n.run(1)}),o=!0)},o(c){n||(n=Pe(e,we,{duration:300},!1)),n.run(0),o=!1},d(c){c&&E(e),s&&s.d(),c&&n&&n.end(),a=!1,l()}}}function wt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function _t(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"class","message")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function yr(i){let e,t,r=i[5]&&pt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=pt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function kr(i,e,t){let r,{variant:n="inline"}=e,{size:o="large"}=e,{message:a=""}=e,{progress:l=-1}=e,{visible:s="false"}=e,c,d,f;return Q(async()=>{t(2,c=o==="small"?"large":"xlarge"),t(3,d=n==="fullscreen"),t(4,f=n==="inline")}),i.$$set=b=>{"variant"in b&&t(6,n=b.variant),"size"in b&&t(7,o=b.size),"message"in b&&t(0,a=b.message),"progress"in b&&t(1,l=b.progress),"visible"in b&&t(8,s=b.visible)},i.$$.update=()=>{i.$$.dirty&256&&t(5,r=G(s))},[a,l,c,d,f,r,n,o,s]}class xr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.fullscreen{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:rgba(255, 255, 255, 0.9)}.inline{margin:3.5rem;display:inline-flex;flex-direction:column;align-items:center;justify-content:center}.spinner-large .message{margin-top:1.5rem;font-size:1.2rem}.spinner-xlarge .message{margin-top:2rem;font-size:1.5rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},kr,yr,N,{variant:6,size:7,message:0,progress:1,visible:8},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["variant","size","message","progress","visible"]}get variant(){return this.$$.ctx[6]}set variant(e){this.$$set({variant:e}),h()}get size(){return this.$$.ctx[7]}set size(e){this.$$set({size:e}),h()}get message(){return this.$$.ctx[0]}set message(e){this.$$set({message:e}),h()}get progress(){return this.$$.ctx[1]}set progress(e){this.$$set({progress:e}),h()}get visible(){return this.$$.ctx[8]}set visible(e){this.$$set({visible:e}),h()}}customElements.define("goa-circular-progress",xr);function Er(i){let e,t,r,n,o,a,l,s,c;return{c(){e=m("div"),t=m("header"),r=m("div"),r.innerHTML='<slot name="title"></slot>',n=H(),o=m("div"),o.innerHTML='<slot name="actions"></slot>',l=H(),s=m("div"),s.innerHTML="<slot></slot>",this.c=w,u(r,"class","title"),u(o,"class","actions"),u(t,"class",a="heading--"+i[1]),u(s,"class","content"),u(e,"class",c=`
9
9
  goa-container
10
10
  goa-container--${i[0]}
11
11
  padding--${i[2]}
@@ -15,14 +15,14 @@
15
15
  goa-container--${d[0]}
16
16
  padding--${d[2]}
17
17
  accent--${d[1]}
18
- `)&&u(e,"class",c)},i:w,o:w,d(d){d&&E(e)}}}function Cr(i,e,t){let{type:r="interactive"}=e,{accent:n="filled"}=e,{padding:o="relaxed"}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"accent"in a&&t(1,n=a.accent),"padding"in a&&t(2,o=a.padding)},[r,n,o]}class zr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);font-size:var(--fs-base)}.goa-container{margin-bottom:1rem;box-sizing:border-box}.goa-container *{box-sizing:border-box}header{display:flex;align-items:center;justify-content:space-between;font-weight:700;font-size:var(--fs-base);border-width:1px;border-style:solid;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content{border-bottom:1px solid var(--color-gray-200);border-left:1px solid var(--color-gray-200);border-right:1px solid var(--color-gray-200);border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.goa-container--non-interactive.accent--filled .content{border-color:var(--color-gray-200);background-color:var(--color-gray-100)}.goa-container--important.accent--filled .content{border-color:var(--goa-color-status-warning);background-color:var(--goa-color-status-warning-50)}.goa-container--error.accent--filled .content{border-color:var(--goa-color-status-emergency);background-color:var(--goa-color-status-emergency-50)}.goa-container--success.accent--filled .content{border-color:var(--goa-color-status-success);background-color:var(--goa-color-status-success-50)}.goa-container--info.accent--filled .content{border-color:var(--goa-color-status-info);background-color:var(--goa-color-status-info-50)}.title,.actions{padding:0.5rem 0}.padding--relaxed header{padding:0 1.5rem}.padding--relaxed .content{padding:1.5rem}.padding--compact header,.padding--compact .content{padding:0 1rem}.padding--compact header{padding:0 1rem}.padding--compact .content{padding:1rem}@media screen and (max-width: 480px){.padding--relaxed header{padding:0 1rem}.padding--relaxed .content{padding:1rem}}.goa-container--non-interactive header{background-color:var(--color-gray-100);border-color:var(--color-gray-200);color:var(--color-black)}.goa-container--interactive header{background-color:var(--goa-color-brand);border-color:var(--goa-color-brand);color:var(--color-white)}.goa-container--info header{background-color:var(--goa-color-status-info);border-color:var(--goa-color-status-info);color:var(--color-white)}.goa-container--error header{background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);color:var(--color-white)}.goa-container--success header{background-color:var(--goa-color-status-success);border-color:var(--goa-color-status-success);color:var(--color-white)}.goa-container--important header{background-color:var(--goa-color-status-warning);border-color:var(--goa-color-status-warning);color:var(--color-white)}.heading--thick{padding:0.5rem 1.5rem;max-height:3rem;min-height:1rem}.heading--thick .title{line-height:2rem}.heading--thin{height:0.5rem}.heading--filled{display:none}.heading--filled~.content{border-top:1px solid var(--color-gray-200);border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.heading--thin .title,.heading--thin .actions{display:none}.actions{display:flex;align-items:center}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Cr,Er,N,{type:0,accent:1,padding:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","accent","padding"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get accent(){return this.$$.ctx[1]}set accent(e){this.$$set({accent:e}),h()}get padding(){return this.$$.ctx[2]}set padding(e){this.$$set({padding:e}),h()}}customElements.define("goa-container",zr);const ye=[];function _t(i,e=w){let t;const r=new Set;function n(l){if(N(i,l)&&(i=l,t)){const s=!ye.length;for(const c of r)c[1](),ye.push(c,i);if(s){for(let c=0;c<ye.length;c+=2)ye[c][0](ye[c+1]);ye.length=0}}}function o(l){n(l(i))}function a(l,s=w){const c=[l,s];return r.add(c),r.size===1&&(t=e(n)||w),l(i),()=>{r.delete(c),r.size===0&&(t(),t=null)}}return{set:n,update:o,subscribe:a}}const Fe={};class Mr{constructor(){this.store=_t()}subscribe(e){this.store.subscribe(t=>{e(t)})}notify(e){this.store.update(()=>e)}}function kt(i){const e=new Mr;return Fe[i]=e,e}function xt(i){return Fe[i]}function Et(i){!Fe[i]||delete Fe[i]}const Ct="bind";function zt(i,e,t){const r=i.slice();return r[39]=e[t],r[41]=t,r}function Mt(i){let e,t,r,n;return{c(){e=m("div"),u(e,"data-testid",t=`${i[0]}-dropdown-background`),u(e,"class","goa-dropdown-background")},m(o,a){v(o,e,a),r||(n=U(e,"click",i[18]),r=!0)},p(o,a){a[0]&1&&t!==(t=`${o[0]}-dropdown-background`)&&u(e,"data-testid",t)},d(o){o&&E(e),r=!1,n()}}}function Lt(i){let e,t=(i[39].label||i[39].value)+"",r,n,o,a,l,s,c,d,f;function b(){return i[22](i[39])}return{c(){e=m("li"),r=F(t),u(e,"id",n=i[39].label),u(e,"role","option"),u(e,"aria-label",o=i[39].label||i[39].value),u(e,"aria-selected",a=i[9].includes(i[39].value)?"true":"false"),u(e,"class","goa-dropdown-option"),u(e,"data-testid",l=`${i[39].value}-dropdown-item`),u(e,"data-index",s=i[41]),u(e,"style",c="display: block"),B(e,"goa-dropdown-option--disabled",!1),B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},m(y,p){v(y,e,p),g(e,r),d||(f=U(e,"click",b),d=!0)},p(y,p){i=y,p[0]&1024&&t!==(t=(i[39].label||i[39].value)+"")&&q(r,t),p[0]&1024&&n!==(n=i[39].label)&&u(e,"id",n),p[0]&1024&&o!==(o=i[39].label||i[39].value)&&u(e,"aria-label",o),p[0]&1536&&a!==(a=i[9].includes(i[39].value)?"true":"false")&&u(e,"aria-selected",a),p[0]&1024&&l!==(l=`${i[39].value}-dropdown-item`)&&u(e,"data-testid",l),p[0]&8192&&B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),p[0]&1536&&B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},d(y){y&&E(e),d=!1,f()}}}function Lr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,L=i[12]&&Mt(i),x=i[10],M=[];for(let z=0;z<x.length;z+=1)M[z]=Lt(zt(i,x,z));return{c(){e=m("div"),L&&L.c(),t=H(),r=m("div"),n=m("goa-input"),s=H(),c=m("ul");for(let z=0;z<M.length;z+=1)M[z].c();d=H(),f=m("slot"),this.c=w,C(n,"error",i[8]),C(n,"disabled",i[7]),C(n,"leadingicon",i[2]),C(n,"placeholder",i[4]),C(n,"width","100%"),C(n,"id",o=`${i[0]}-dropdown-input`),C(n,"role","combobox"),C(n,"aria-label",a=i[1]||i[0]),C(n,"aria-expanded",i[12]),C(n,"aria-controls","menu"),C(n,"readonly",""),C(n,"trailingicon","chevron-down"),C(n,"type","text"),C(n,"value",i[11]),u(r,"data-testid",l=`${i[0]}-dropdown`),u(c,"id","menu"),u(c,"role","listbox"),u(c,"aria-activedescendant",i[11]),u(c,"data-testid","dropdown-menu"),u(c,"tabindex","0"),u(c,"class","goa-dropdown-list"),u(c,"style",b=`overflow-y: auto; max-height: ${i[3]}`),B(c,"dropdown-active",i[12]),u(e,"data-testid",i[5]),u(e,"class","goa-dropdown-box"),u(e,"style",y=`--width: ${i[6]||i[14]}`)},m(z,k){v(z,e,k),L&&L.m(e,null),g(e,t),g(e,r),g(r,n),g(e,s),g(e,c);for(let A=0;A<M.length;A+=1)M[A].m(c,null);g(c,d),g(c,f),i[23](c),i[24](e),p||(_=U(n,"click",i[17]),p=!0)},p(z,k){if(z[12]?L?L.p(z,k):(L=Mt(z),L.c(),L.m(e,t)):L&&(L.d(1),L=null),k[0]&256&&C(n,"error",z[8]),k[0]&128&&C(n,"disabled",z[7]),k[0]&4&&C(n,"leadingicon",z[2]),k[0]&16&&C(n,"placeholder",z[4]),k[0]&1&&o!==(o=`${z[0]}-dropdown-input`)&&C(n,"id",o),k[0]&3&&a!==(a=z[1]||z[0])&&C(n,"aria-label",a),k[0]&4096&&C(n,"aria-expanded",z[12]),k[0]&2048&&C(n,"value",z[11]),k[0]&1&&l!==(l=`${z[0]}-dropdown`)&&u(r,"data-testid",l),k[0]&534016){x=z[10];let A;for(A=0;A<x.length;A+=1){const R=zt(z,x,A);M[A]?M[A].p(R,k):(M[A]=Lt(R),M[A].c(),M[A].m(c,d))}for(;A<M.length;A+=1)M[A].d(1);M.length=x.length}k[0]&2048&&u(c,"aria-activedescendant",z[11]),k[0]&8&&b!==(b=`overflow-y: auto; max-height: ${z[3]}`)&&u(c,"style",b),k[0]&4096&&B(c,"dropdown-active",z[12]),k[0]&32&&u(e,"data-testid",z[5]),k[0]&16448&&y!==(y=`--width: ${z[6]||z[14]}`)&&u(e,"style",y)},i:w,o:w,d(z){z&&E(e),L&&L.d(),Ae(M,z),i[23](null),i[24](null),p=!1,_()}}}const Tr="276px";function Rr(i,e,t){let r,n,{name:o}=e,{arialabel:a=""}=e,{value:l=""}=e,{leadingicon:s=null}=e,{maxheight:c=Tr}=e,{placeholder:d=""}=e,{testid:f=""}=e,{width:b=""}=e,{disabled:y="false"}=e,{error:p="false"}=e,{multiselect:_="false"}=e,L=[],x=[],M="",z=!1,k=0,A=0,R,T,D,X;Q(()=>{const I=10;let te=0;const ae=setInterval(async()=>{te++,o&&T&&(Y(),J(),Ge(),clearInterval(ae)),te>I&&(console.error("goa-dropdown: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(ae))},10)}),nt(()=>{K(),Et(o)});function Y(){T.addEventListener("focus",S,!0),T.addEventListener("blur",ui,!0)}function K(){T.removeEventListener("focus",S,!0),T.removeEventListener("blur",ui,!0)}function J(){let I;try{I=JSON.parse(l||"[]")}catch{I=[l]}t(9,L=(typeof I=="object"?I:[I]).map(ae=>`${ae}`))}function Ge(){X=kt(o),X.subscribe(I=>{switch(I==null?void 0:I.type){case Ct:{const te=I,ae=L.includes(te.value);t(10,x=[...x,Object.assign(Object.assign({},te),{selected:ae})]),ae&&t(11,M=te.label),!b&&A<te.label.length&&(A=te.label.length,t(14,R=`${Math.max(20,A+12)}ch`)),oe();break}}})}async function _e(){r||z||(t(12,z=!0),await Ne(),D.addEventListener("blur",le),D.focus(),D.addEventListener("keydown",fi),D.addEventListener("mouseover",hi))}function le(){D.removeEventListener("blur",le),D.removeEventListener("keydown",fi),D.removeEventListener("mouseover",hi),oe(),t(12,z=!1)}function oe(){t(13,k=x.findIndex(I=>L.includes(I.value)))}function me(I,te,ae){r||(t(11,M=te),n?(L.push(I),T.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,values:L}}))):(t(9,L=[I]),T.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:L[0]}}))),ae&&le())}const qe=I=>{switch(I.key){case" ":_e(),I.preventDefault();break}};function S(){T.addEventListener("keydown",qe)}function ui(){T.removeEventListener("keydown",qe)}function fi(I){switch(I.key){case"ArrowUp":k>0&&(t(13,k--,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"ArrowDown":k<x.length-1&&(t(13,k++,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"Tab":case"Enter":le(),I.preventDefault();break;case"Escape":le(),I.preventDefault();break}}function hi(I){t(13,k=Number(I.target.dataset.index))}const yo=I=>me(I.value,I.label,!0);function _o(I){ee[I?"unshift":"push"](()=>{D=I,t(16,D)})}function ko(I){ee[I?"unshift":"push"](()=>{T=I,t(15,T)})}return i.$$set=I=>{"name"in I&&t(0,o=I.name),"arialabel"in I&&t(1,a=I.arialabel),"value"in I&&t(20,l=I.value),"leadingicon"in I&&t(2,s=I.leadingicon),"maxheight"in I&&t(3,c=I.maxheight),"placeholder"in I&&t(4,d=I.placeholder),"testid"in I&&t(5,f=I.testid),"width"in I&&t(6,b=I.width),"disabled"in I&&t(7,y=I.disabled),"error"in I&&t(8,p=I.error),"multiselect"in I&&t(21,_=I.multiselect)},i.$$.update=()=>{i.$$.dirty[0]&128&&(r=G(y)),i.$$.dirty[0]&2097152&&(n=G(_))},[o,a,s,c,d,f,b,y,p,L,x,M,z,k,R,T,D,_e,le,me,l,_,yo,_o,ko]}class Ar extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-dropdown-box{position:relative;cursor:pointer;display:inline-block;width:100%}@media(min-width: 640px){.goa-dropdown-box{width:var(--width)}}.goa-dropdown-background{cursor:default;position:fixed;z-index:98;inset:0}.goa-dropdown-list{position:absolute;left:0;right:0;padding:0;margin:0;margin-top:3px;list-style-type:none;background:var(--color-white);border-radius:var(--input-border-radius);outline:none;box-shadow:var(--shadow-1);z-index:99;scroll-behavior:smooth;scrollbar-width:thin;display:none}.dropdown-active{display:block}.goa-dropdown-list::-webkit-scrollbar{width:6px}.goa-dropdown-list::-webkit-scrollbar-track{background:#f1f1f1}.goa-dropdown-list::-webkit-scrollbar-thumb{background:#888}.goa-dropdown-list::-webkit-scrollbar-thumb:hover{background:#555}.goa-dropdown-option{margin:0;padding:0.5rem;cursor:pointer;color:var(--color-black);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.goa-dropdown-option--tabbed{background:var(--color-gray-100);color:var(--goa-color-interactive--hover)}.goa-dropdown-option--disabled{opacity:0.5;cursor:default}.goa-dropdown-option--disabled:hover{cursor:default;color:var(--color-gray-600)}.goa-dropdown-option--selected{background:var(--goa-color-interactive);color:var(--color-white)}.goa-dropdown-option--tabbed.goa-dropdown-option--selected,.goa-dropdown-option--selected:hover{background:var(--goa-color-interactive--hover);color:var(--color-white)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Rr,Lr,N,{name:0,arialabel:1,value:20,leadingicon:2,maxheight:3,placeholder:4,testid:5,width:6,disabled:7,error:8,multiselect:21},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","arialabel","value","leadingicon","maxheight","placeholder","testid","width","disabled","error","multiselect"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get arialabel(){return this.$$.ctx[1]}set arialabel(e){this.$$set({arialabel:e}),h()}get value(){return this.$$.ctx[20]}set value(e){this.$$set({value:e}),h()}get leadingicon(){return this.$$.ctx[2]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get maxheight(){return this.$$.ctx[3]}set maxheight(e){this.$$set({maxheight:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[6]}set width(e){this.$$set({width:e}),h()}get disabled(){return this.$$.ctx[7]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get multiselect(){return this.$$.ctx[21]}set multiselect(e){this.$$set({multiselect:e}),h()}}customElements.define("goa-dropdown",Ar);function Hr(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function Ir(i,e,t){let{name:r=""}=e,{value:n=""}=e,{label:o=""}=e,a;return Q(()=>{const l=setInterval(()=>{if(r&&n){if(a=xt(r),!a)return;a.notify({type:Ct,name:r,label:o,value:n}),clearInterval(l)}},10)}),i.$$set=l=>{"name"in l&&t(0,r=l.name),"value"in l&&t(1,n=l.value),"label"in l&&t(2,o=l.label)},[r,n,o]}class Sr extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ir,Hr,N,{name:0,value:1,label:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","label"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[2]}set label(e){this.$$set({label:e}),h()}}customElements.define("goa-dropdown-item",Sr);function Dr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-col"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&E(e)}}}function Br(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Nr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);margin-bottom:3rem}.goa-flex-col{display:flex;flex-direction:column;gap:var(--gap)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Br,Dr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-col",Nr);function Or(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-row"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&E(e)}}}function jr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Pr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-flex-row{display:flex;flex-direction:column;gap:var(--gap)}@media(min-width: 640px){.goa-flex-row{display:grid;grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));gap:var(--gap);margin-bottom:1rem}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},jr,Or,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-row",Pr);function Fr(i){let e;return{c(){e=m("div"),e.innerHTML=`<slot></slot>
18
+ `)&&u(e,"class",c)},i:w,o:w,d(d){d&&E(e)}}}function Cr(i,e,t){let{type:r="interactive"}=e,{accent:n="filled"}=e,{padding:o="relaxed"}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"accent"in a&&t(1,n=a.accent),"padding"in a&&t(2,o=a.padding)},[r,n,o]}class zr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);font-size:var(--fs-base)}.goa-container{margin-bottom:1rem;box-sizing:border-box}.goa-container *{box-sizing:border-box}header{display:flex;align-items:center;justify-content:space-between;font-weight:700;font-size:var(--fs-base);border-width:1px;border-style:solid;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content{border-bottom:1px solid var(--color-gray-200);border-left:1px solid var(--color-gray-200);border-right:1px solid var(--color-gray-200);border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.goa-container--non-interactive.accent--filled .content{border-color:var(--color-gray-200);background-color:var(--color-gray-100)}.goa-container--important.accent--filled .content{border-color:var(--goa-color-status-warning);background-color:var(--goa-color-status-warning-50)}.goa-container--error.accent--filled .content{border-color:var(--goa-color-status-emergency);background-color:var(--goa-color-status-emergency-50)}.goa-container--success.accent--filled .content{border-color:var(--goa-color-status-success);background-color:var(--goa-color-status-success-50)}.goa-container--info.accent--filled .content{border-color:var(--goa-color-status-info);background-color:var(--goa-color-status-info-50)}.title,.actions{padding:0.5rem 0}.padding--relaxed header{padding:0 1.5rem}.padding--relaxed .content{padding:1.5rem}.padding--compact header,.padding--compact .content{padding:0 1rem}.padding--compact header{padding:0 1rem}.padding--compact .content{padding:1rem}@media screen and (max-width: 480px){.padding--relaxed header{padding:0 1rem}.padding--relaxed .content{padding:1rem}}.goa-container--non-interactive header{background-color:var(--color-gray-100);border-color:var(--color-gray-200);color:var(--color-black)}.goa-container--interactive header{background-color:var(--goa-color-brand);border-color:var(--goa-color-brand);color:var(--color-white)}.goa-container--info header{background-color:var(--goa-color-status-info);border-color:var(--goa-color-status-info);color:var(--color-white)}.goa-container--error header{background-color:var(--goa-color-status-emergency);border-color:var(--goa-color-status-emergency);color:var(--color-white)}.goa-container--success header{background-color:var(--goa-color-status-success);border-color:var(--goa-color-status-success);color:var(--color-white)}.goa-container--important header{background-color:var(--goa-color-status-warning);border-color:var(--goa-color-status-warning);color:var(--color-white)}.heading--thick{padding:0.5rem 1.5rem;max-height:3rem;min-height:1rem}.heading--thick .title{line-height:2rem}.heading--thin{height:0.5rem}.heading--filled{display:none}.heading--filled~.content{border-top:1px solid var(--color-gray-200);border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.heading--thin .title,.heading--thin .actions{display:none}.actions{display:flex;align-items:center}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Cr,Er,N,{type:0,accent:1,padding:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","accent","padding"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get accent(){return this.$$.ctx[1]}set accent(e){this.$$set({accent:e}),h()}get padding(){return this.$$.ctx[2]}set padding(e){this.$$set({padding:e}),h()}}customElements.define("goa-container",zr);const _e=[];function yt(i,e=w){let t;const r=new Set;function n(l){if(N(i,l)&&(i=l,t)){const s=!_e.length;for(const c of r)c[1](),_e.push(c,i);if(s){for(let c=0;c<_e.length;c+=2)_e[c][0](_e[c+1]);_e.length=0}}}function o(l){n(l(i))}function a(l,s=w){const c=[l,s];return r.add(c),r.size===1&&(t=e(n)||w),l(i),()=>{r.delete(c),r.size===0&&(t(),t=null)}}return{set:n,update:o,subscribe:a}}const Fe={};class Mr{constructor(){this.store=yt()}subscribe(e){this.store.subscribe(t=>{e(t)})}notify(e){this.store.update(()=>e)}}function kt(i){const e=new Mr;return Fe[i]=e,e}function xt(i){return Fe[i]}function Et(i){!Fe[i]||delete Fe[i]}const Ct="bind";function zt(i,e,t){const r=i.slice();return r[39]=e[t],r[41]=t,r}function Mt(i){let e,t,r,n;return{c(){e=m("div"),u(e,"data-testid",t=`${i[0]}-dropdown-background`),u(e,"class","goa-dropdown-background")},m(o,a){v(o,e,a),r||(n=U(e,"click",i[18]),r=!0)},p(o,a){a[0]&1&&t!==(t=`${o[0]}-dropdown-background`)&&u(e,"data-testid",t)},d(o){o&&E(e),r=!1,n()}}}function Lt(i){let e,t=(i[39].label||i[39].value)+"",r,n,o,a,l,s,c,d,f;function b(){return i[22](i[39])}return{c(){e=m("li"),r=F(t),u(e,"id",n=i[39].label),u(e,"role","option"),u(e,"aria-label",o=i[39].label||i[39].value),u(e,"aria-selected",a=i[9].includes(i[39].value)?"true":"false"),u(e,"class","goa-dropdown-option"),u(e,"data-testid",l=`${i[39].value}-dropdown-item`),u(e,"data-index",s=i[41]),u(e,"style",c="display: block"),B(e,"goa-dropdown-option--disabled",!1),B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},m(_,p){v(_,e,p),g(e,r),d||(f=U(e,"click",b),d=!0)},p(_,p){i=_,p[0]&1024&&t!==(t=(i[39].label||i[39].value)+"")&&q(r,t),p[0]&1024&&n!==(n=i[39].label)&&u(e,"id",n),p[0]&1024&&o!==(o=i[39].label||i[39].value)&&u(e,"aria-label",o),p[0]&1536&&a!==(a=i[9].includes(i[39].value)?"true":"false")&&u(e,"aria-selected",a),p[0]&1024&&l!==(l=`${i[39].value}-dropdown-item`)&&u(e,"data-testid",l),p[0]&8192&&B(e,"goa-dropdown-option--tabbed",i[41]===i[13]),p[0]&1536&&B(e,"goa-dropdown-option--selected",i[9].includes(i[39].value))},d(_){_&&E(e),d=!1,f()}}}function Lr(i){let e,t,r,n,o,a,l,s,c,d,f,b,_,p,y,L=i[12]&&Mt(i),x=i[10],M=[];for(let z=0;z<x.length;z+=1)M[z]=Lt(zt(i,x,z));return{c(){e=m("div"),L&&L.c(),t=H(),r=m("div"),n=m("goa-input"),s=H(),c=m("ul");for(let z=0;z<M.length;z+=1)M[z].c();d=H(),f=m("slot"),this.c=w,C(n,"error",i[8]),C(n,"disabled",i[7]),C(n,"leadingicon",i[2]),C(n,"placeholder",i[4]),C(n,"width","100%"),C(n,"id",o=`${i[0]}-dropdown-input`),C(n,"role","combobox"),C(n,"aria-label",a=i[1]||i[0]),C(n,"aria-expanded",i[12]),C(n,"aria-controls","menu"),C(n,"readonly",""),C(n,"trailingicon","chevron-down"),C(n,"type","text"),C(n,"value",i[11]),u(r,"data-testid",l=`${i[0]}-dropdown`),u(c,"id","menu"),u(c,"role","listbox"),u(c,"aria-activedescendant",i[11]),u(c,"data-testid","dropdown-menu"),u(c,"tabindex","0"),u(c,"class","goa-dropdown-list"),u(c,"style",b=`overflow-y: auto; max-height: ${i[3]}`),B(c,"dropdown-active",i[12]),u(e,"data-testid",i[5]),u(e,"class","goa-dropdown-box"),u(e,"style",_=`--width: ${i[6]||i[14]}`)},m(z,k){v(z,e,k),L&&L.m(e,null),g(e,t),g(e,r),g(r,n),g(e,s),g(e,c);for(let A=0;A<M.length;A+=1)M[A].m(c,null);g(c,d),g(c,f),i[23](c),i[24](e),p||(y=U(n,"click",i[17]),p=!0)},p(z,k){if(z[12]?L?L.p(z,k):(L=Mt(z),L.c(),L.m(e,t)):L&&(L.d(1),L=null),k[0]&256&&C(n,"error",z[8]),k[0]&128&&C(n,"disabled",z[7]),k[0]&4&&C(n,"leadingicon",z[2]),k[0]&16&&C(n,"placeholder",z[4]),k[0]&1&&o!==(o=`${z[0]}-dropdown-input`)&&C(n,"id",o),k[0]&3&&a!==(a=z[1]||z[0])&&C(n,"aria-label",a),k[0]&4096&&C(n,"aria-expanded",z[12]),k[0]&2048&&C(n,"value",z[11]),k[0]&1&&l!==(l=`${z[0]}-dropdown`)&&u(r,"data-testid",l),k[0]&534016){x=z[10];let A;for(A=0;A<x.length;A+=1){const R=zt(z,x,A);M[A]?M[A].p(R,k):(M[A]=Lt(R),M[A].c(),M[A].m(c,d))}for(;A<M.length;A+=1)M[A].d(1);M.length=x.length}k[0]&2048&&u(c,"aria-activedescendant",z[11]),k[0]&8&&b!==(b=`overflow-y: auto; max-height: ${z[3]}`)&&u(c,"style",b),k[0]&4096&&B(c,"dropdown-active",z[12]),k[0]&32&&u(e,"data-testid",z[5]),k[0]&16448&&_!==(_=`--width: ${z[6]||z[14]}`)&&u(e,"style",_)},i:w,o:w,d(z){z&&E(e),L&&L.d(),Ae(M,z),i[23](null),i[24](null),p=!1,y()}}}const Tr="276px";function Rr(i,e,t){let r,n,{name:o}=e,{arialabel:a=""}=e,{value:l=""}=e,{leadingicon:s=null}=e,{maxheight:c=Tr}=e,{placeholder:d=""}=e,{testid:f=""}=e,{width:b=""}=e,{disabled:_="false"}=e,{error:p="false"}=e,{multiselect:y="false"}=e,L=[],x=[],M="",z=!1,k=0,A=0,R,T,D,X;Q(()=>{const I=10;let te=0;const ae=setInterval(async()=>{te++,o&&T&&(Y(),J(),Ge(),clearInterval(ae)),te>I&&(console.error("goa-dropdown: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(ae))},10)}),nt(()=>{K(),Et(o)});function Y(){T.addEventListener("focus",S,!0),T.addEventListener("blur",ui,!0)}function K(){T.removeEventListener("focus",S,!0),T.removeEventListener("blur",ui,!0)}function J(){let I;try{I=JSON.parse(l||"[]")}catch{I=[l]}t(9,L=(typeof I=="object"?I:[I]).map(ae=>`${ae}`))}function Ge(){X=kt(o),X.subscribe(I=>{switch(I==null?void 0:I.type){case Ct:{const te=I,ae=L.includes(te.value);t(10,x=[...x,Object.assign(Object.assign({},te),{selected:ae})]),ae&&t(11,M=te.label),!b&&A<te.label.length&&(A=te.label.length,t(14,R=`${Math.max(20,A+12)}ch`)),oe();break}}})}async function ye(){r||z||(t(12,z=!0),await Ne(),D.addEventListener("blur",le),D.focus(),D.addEventListener("keydown",fi),D.addEventListener("mouseover",hi))}function le(){D.removeEventListener("blur",le),D.removeEventListener("keydown",fi),D.removeEventListener("mouseover",hi),oe(),t(12,z=!1)}function oe(){t(13,k=x.findIndex(I=>L.includes(I.value)))}function me(I,te,ae){r||(t(11,M=te),n?(L.push(I),T.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,values:L}}))):(t(9,L=[I]),T.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:o,value:L[0]}}))),ae&&le())}const qe=I=>{switch(I.key){case" ":ye(),I.preventDefault();break}};function S(){T.addEventListener("keydown",qe)}function ui(){T.removeEventListener("keydown",qe)}function fi(I){switch(I.key){case"ArrowUp":k>0&&(t(13,k--,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"ArrowDown":k<x.length-1&&(t(13,k++,k),me(x[k].value,x[k].label,!1)),I.preventDefault();break;case"Tab":case"Enter":le(),I.preventDefault();break;case"Escape":le(),I.preventDefault();break}}function hi(I){t(13,k=Number(I.target.dataset.index))}const _o=I=>me(I.value,I.label,!0);function yo(I){ee[I?"unshift":"push"](()=>{D=I,t(16,D)})}function ko(I){ee[I?"unshift":"push"](()=>{T=I,t(15,T)})}return i.$$set=I=>{"name"in I&&t(0,o=I.name),"arialabel"in I&&t(1,a=I.arialabel),"value"in I&&t(20,l=I.value),"leadingicon"in I&&t(2,s=I.leadingicon),"maxheight"in I&&t(3,c=I.maxheight),"placeholder"in I&&t(4,d=I.placeholder),"testid"in I&&t(5,f=I.testid),"width"in I&&t(6,b=I.width),"disabled"in I&&t(7,_=I.disabled),"error"in I&&t(8,p=I.error),"multiselect"in I&&t(21,y=I.multiselect)},i.$$.update=()=>{i.$$.dirty[0]&128&&(r=G(_)),i.$$.dirty[0]&2097152&&(n=G(y))},[o,a,s,c,d,f,b,_,p,L,x,M,z,k,R,T,D,ye,le,me,l,y,_o,yo,ko]}class Ar extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-dropdown-box{position:relative;cursor:pointer;display:inline-block;width:100%}@media(min-width: 640px){.goa-dropdown-box{width:var(--width)}}.goa-dropdown-background{cursor:default;position:fixed;z-index:98;inset:0}.goa-dropdown-list{position:absolute;left:0;right:0;padding:0;margin:0;margin-top:3px;list-style-type:none;background:var(--color-white);border-radius:var(--input-border-radius);outline:none;box-shadow:var(--shadow-1);z-index:99;scroll-behavior:smooth;scrollbar-width:thin;display:none}.dropdown-active{display:block}.goa-dropdown-list::-webkit-scrollbar{width:6px}.goa-dropdown-list::-webkit-scrollbar-track{background:#f1f1f1}.goa-dropdown-list::-webkit-scrollbar-thumb{background:#888}.goa-dropdown-list::-webkit-scrollbar-thumb:hover{background:#555}.goa-dropdown-option{margin:0;padding:0.5rem;cursor:pointer;color:var(--color-black);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.goa-dropdown-option--tabbed{background:var(--color-gray-100);color:var(--goa-color-interactive--hover)}.goa-dropdown-option--disabled{opacity:0.5;cursor:default}.goa-dropdown-option--disabled:hover{cursor:default;color:var(--color-gray-600)}.goa-dropdown-option--selected{background:var(--goa-color-interactive);color:var(--color-white)}.goa-dropdown-option--tabbed.goa-dropdown-option--selected,.goa-dropdown-option--selected:hover{background:var(--goa-color-interactive--hover);color:var(--color-white)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Rr,Lr,N,{name:0,arialabel:1,value:20,leadingicon:2,maxheight:3,placeholder:4,testid:5,width:6,disabled:7,error:8,multiselect:21},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","arialabel","value","leadingicon","maxheight","placeholder","testid","width","disabled","error","multiselect"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get arialabel(){return this.$$.ctx[1]}set arialabel(e){this.$$set({arialabel:e}),h()}get value(){return this.$$.ctx[20]}set value(e){this.$$set({value:e}),h()}get leadingicon(){return this.$$.ctx[2]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get maxheight(){return this.$$.ctx[3]}set maxheight(e){this.$$set({maxheight:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get testid(){return this.$$.ctx[5]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[6]}set width(e){this.$$set({width:e}),h()}get disabled(){return this.$$.ctx[7]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[8]}set error(e){this.$$set({error:e}),h()}get multiselect(){return this.$$.ctx[21]}set multiselect(e){this.$$set({multiselect:e}),h()}}customElements.define("goa-dropdown",Ar);function Hr(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function Ir(i,e,t){let{name:r=""}=e,{value:n=""}=e,{label:o=""}=e,a;return Q(()=>{const l=setInterval(()=>{if(r&&n){if(a=xt(r),!a)return;a.notify({type:Ct,name:r,label:o,value:n}),clearInterval(l)}},10)}),i.$$set=l=>{"name"in l&&t(0,r=l.name),"value"in l&&t(1,n=l.value),"label"in l&&t(2,o=l.label)},[r,n,o]}class Sr extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ir,Hr,N,{name:0,value:1,label:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","label"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[2]}set label(e){this.$$set({label:e}),h()}}customElements.define("goa-dropdown-item",Sr);function Dr(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-col"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&E(e)}}}function Br(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Nr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family);margin-bottom:3rem}.goa-flex-col{display:flex;flex-direction:column;gap:var(--gap)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Br,Dr,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-col",Nr);function Or(i){let e,t;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-flex-row"),V(e,"gap",i[0])},m(r,n){v(r,e,n),g(e,t)},p(r,[n]){n&1&&V(e,"gap",r[0])},i:w,o:w,d(r){r&&E(e)}}}function jr(i,e,t){let r,{gap:n=""}=e;return i.$$set=o=>{"gap"in o&&t(1,n=o.gap)},i.$$.update=()=>{i.$$.dirty&2&&t(0,r=n==="small"?"1rem":n==="medium"?"2rem":n==="large"?"3rem":"0")},[r,n]}class Pr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-flex-row{display:flex;flex-direction:column;gap:var(--gap)}@media(min-width: 640px){.goa-flex-row{display:grid;grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));gap:var(--gap);margin-bottom:1rem}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},jr,Or,N,{gap:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["gap"]}get gap(){return this.$$.ctx[1]}set gap(e){this.$$set({gap:e}),h()}}customElements.define("goa-flex-row",Pr);function Fr(i){let e;return{c(){e=m("div"),e.innerHTML=`<slot></slot>
19
19
 
20
- <span tabindex="0"></span>`,this.c=w},m(t,r){v(t,e,r),i[4](e)},p:w,i:w,o:w,d(t){t&&E(e),i[4](null)}}}function Gr(i){if(i.tabIndex>0||i.tabIndex===0&&i.getAttribute("tabIndex")!==null)return!0;if(i.disabled)return!1;switch(i.nodeName){case"A":return!!i.href&&i.rel!=="ignore";case"INPUT":return i.type!=="hidden"&&i.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}function qr(i,e,t){let r,{active:n}=e,o=!1,a,l,s=!1;function c(){document.removeEventListener("focus",M,!0)}function d(){document.addEventListener("focus",M,!0)}function f(k){if(!k)return!1;for(const A of k)if(x(A)||f(A.childNodes)||b(A)||y(A))return!0;return!1}function b(k){if(!(k instanceof HTMLSlotElement))return!1;if(f(k.assignedNodes()))return!0}function y(k){var A;if(!(k instanceof HTMLElement))return!1;if(f((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function p(k){if(!k)return!1;for(let A=k.length-1;A>=0;A--){let R=k[A];if(x(R)||p(R.childNodes)||_(R)||L(R))return!0}return!1}function _(k){if(!(k instanceof HTMLSlotElement))return!1;if(p(k.assignedNodes()))return!0}function L(k){var A;if(!(k instanceof HTMLElement))return!1;if(p((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function x(k){if(!Gr(k))return!1;try{o=!0,k.focus()}catch{}finally{o=!1}return document.activeElement===k}function M(k){var A;if(o)return;const R=(A=l.firstChild)===null||A===void 0?void 0:A.assignedElements();if(!(R==null?void 0:R.length))return;const T=R[0];if(k.composedPath().includes(T)){a=k.target;return}f(T.childNodes),a==document.activeElement&&p(T.childNodes),a=document.activeElement}function z(k){ee[k?"unshift":"push"](()=>{l=k,t(0,l)})}return i.$$set=k=>{"active"in k&&t(1,n=k.active)},i.$$.update=()=>{i.$$.dirty&2&&t(3,r=G(n)),i.$$.dirty&12&&(r&&!s&&(d(),t(2,s=!0)),!r&&s&&(c(),t(2,s=!1)))},[l,n,s,r,z]}class Vr extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},qr,Fr,N,{active:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["active"]}get active(){return this.$$.ctx[1]}set active(e){this.$$set({active:e}),h()}}customElements.define("goa-focus-trap",Vr);function Tt(i,e,t){const r=i.slice();return r[3]=e[t],r}function Rt(i){let e,t,r=i[3].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[3].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&2&&r!==(r=a[3].innerHTML+"")&&q(n,r),l&2&&o!==(o=a[3].href)&&u(t,"href",o)},d(a){a&&E(e)}}}function Wr(i){let e,t,r,n,o=i[1],a=[];for(let l=0;l<o.length;l+=1)a[l]=Rt(Tt(i,o,l));return{c(){e=m("section"),t=m("div"),t.innerHTML="<slot></slot>",r=H(),n=m("ul");for(let l=0;l<a.length;l+=1)a[l].c();this.c=w,u(t,"class","hidden")},m(l,s){v(l,e,s),g(e,t),g(e,r),g(e,n);for(let c=0;c<a.length;c+=1)a[c].m(n,null);i[2](e)},p(l,[s]){if(s&2){o=l[1];let c;for(c=0;c<o.length;c+=1){const d=Tt(l,o,c);a[c]?a[c].p(d,s):(a[c]=Rt(d),a[c].c(),a[c].m(n,null))}for(;c<a.length;c+=1)a[c].d(1);a.length=o.length}},i:w,o:w,d(l){l&&E(e),Ae(a,l),i[2](null)}}}function Ur(i,e,t){let r,n=[];Q(async()=>{if(await Ne(),t(1,n=r.querySelector("slot").assignedElements()),!n.map(l=>l.hasAttribute("href")).reduce((l,s)=>l&&s,!0)){t(1,n=[]),console.warn("GoAFooterMetaSection children must be anchor elements.");return}});function o(a){ee[a?"unshift":"push"](()=>{r=a,t(0,r)})}return[r,n,o]}class Zr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.hidden{display:none}ul{display:flex;flex-wrap:wrap;gap:1rem;padding-left:0}li{list-style-type:none}a{color:var(--goa-color-text);white-space:nowrap}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ur,Wr,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-app-footer-meta-section",Zr);function At(i,e,t){const r=i.slice();return r[5]=e[t],r}function Ht(i){let e,t,r,n;return{c(){e=m("div"),t=F(i[0]),r=H(),n=m("goa-divider"),u(e,"class","title"),C(n,"spacing","small")},m(o,a){v(o,e,a),g(e,t),v(o,r,a),v(o,n,a)},p(o,a){a&1&&q(t,o[0])},d(o){o&&E(e),o&&E(r),o&&E(n)}}}function It(i){let e,t,r=i[5].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[5].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&8&&r!==(r=a[5].innerHTML+"")&&q(n,r),l&8&&o!==(o=a[5].href)&&u(t,"href",o)},d(a){a&&E(e)}}}function Kr(i){let e,t,r,n,o,a,l=i[0]&&Ht(i),s=i[3],c=[];for(let d=0;d<s.length;d+=1)c[d]=It(At(i,s,d));return{c(){e=m("section"),l&&l.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),o=m("ul");for(let d=0;d<c.length;d+=1)c[d].c();this.c=w,u(r,"class","hidden"),u(o,"class","links"),u(o,"style",a=`
20
+ <span tabindex="0"></span>`,this.c=w},m(t,r){v(t,e,r),i[4](e)},p:w,i:w,o:w,d(t){t&&E(e),i[4](null)}}}function Gr(i){if(i.tabIndex>0||i.tabIndex===0&&i.getAttribute("tabIndex")!==null)return!0;if(i.disabled)return!1;switch(i.nodeName){case"A":return!!i.href&&i.rel!=="ignore";case"INPUT":return i.type!=="hidden"&&i.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}function qr(i,e,t){let r,{active:n}=e,o=!1,a,l,s=!1;function c(){document.removeEventListener("focus",M,!0)}function d(){document.addEventListener("focus",M,!0)}function f(k){if(!k)return!1;for(const A of k)if(x(A)||f(A.childNodes)||b(A)||_(A))return!0;return!1}function b(k){if(!(k instanceof HTMLSlotElement))return!1;if(f(k.assignedNodes()))return!0}function _(k){var A;if(!(k instanceof HTMLElement))return!1;if(f((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function p(k){if(!k)return!1;for(let A=k.length-1;A>=0;A--){let R=k[A];if(x(R)||p(R.childNodes)||y(R)||L(R))return!0}return!1}function y(k){if(!(k instanceof HTMLSlotElement))return!1;if(p(k.assignedNodes()))return!0}function L(k){var A;if(!(k instanceof HTMLElement))return!1;if(p((A=k.shadowRoot)===null||A===void 0?void 0:A.childNodes))return!0}function x(k){if(!Gr(k))return!1;try{o=!0,k.focus()}catch{}finally{o=!1}return document.activeElement===k}function M(k){var A;if(o)return;const R=(A=l.firstChild)===null||A===void 0?void 0:A.assignedElements();if(!(R==null?void 0:R.length))return;const T=R[0];if(k.composedPath().includes(T)){a=k.target;return}f(T.childNodes),a==document.activeElement&&p(T.childNodes),a=document.activeElement}function z(k){ee[k?"unshift":"push"](()=>{l=k,t(0,l)})}return i.$$set=k=>{"active"in k&&t(1,n=k.active)},i.$$.update=()=>{i.$$.dirty&2&&t(3,r=G(n)),i.$$.dirty&12&&(r&&!s&&(d(),t(2,s=!0)),!r&&s&&(c(),t(2,s=!1)))},[l,n,s,r,z]}class Vr extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},qr,Fr,N,{active:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["active"]}get active(){return this.$$.ctx[1]}set active(e){this.$$set({active:e}),h()}}customElements.define("goa-focus-trap",Vr);function Tt(i,e,t){const r=i.slice();return r[3]=e[t],r}function Rt(i){let e,t,r=i[3].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[3].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&2&&r!==(r=a[3].innerHTML+"")&&q(n,r),l&2&&o!==(o=a[3].href)&&u(t,"href",o)},d(a){a&&E(e)}}}function Wr(i){let e,t,r,n,o=i[1],a=[];for(let l=0;l<o.length;l+=1)a[l]=Rt(Tt(i,o,l));return{c(){e=m("section"),t=m("div"),t.innerHTML="<slot></slot>",r=H(),n=m("ul");for(let l=0;l<a.length;l+=1)a[l].c();this.c=w,u(t,"class","hidden")},m(l,s){v(l,e,s),g(e,t),g(e,r),g(e,n);for(let c=0;c<a.length;c+=1)a[c].m(n,null);i[2](e)},p(l,[s]){if(s&2){o=l[1];let c;for(c=0;c<o.length;c+=1){const d=Tt(l,o,c);a[c]?a[c].p(d,s):(a[c]=Rt(d),a[c].c(),a[c].m(n,null))}for(;c<a.length;c+=1)a[c].d(1);a.length=o.length}},i:w,o:w,d(l){l&&E(e),Ae(a,l),i[2](null)}}}function Ur(i,e,t){let r,n=[];Q(async()=>{if(await Ne(),t(1,n=r.querySelector("slot").assignedElements()),!n.map(l=>l.hasAttribute("href")).reduce((l,s)=>l&&s,!0)){t(1,n=[]),console.warn("GoAFooterMetaSection children must be anchor elements.");return}});function o(a){ee[a?"unshift":"push"](()=>{r=a,t(0,r)})}return[r,n,o]}class Zr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.hidden{display:none}ul{display:flex;flex-wrap:wrap;gap:1rem;padding-left:0}li{list-style-type:none}a{color:var(--goa-color-text);white-space:nowrap}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Ur,Wr,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-app-footer-meta-section",Zr);function At(i,e,t){const r=i.slice();return r[5]=e[t],r}function Ht(i){let e,t,r,n;return{c(){e=m("div"),t=F(i[0]),r=H(),n=m("goa-divider"),u(e,"class","title"),C(n,"spacing","small")},m(o,a){v(o,e,a),g(e,t),v(o,r,a),v(o,n,a)},p(o,a){a&1&&q(t,o[0])},d(o){o&&E(e),o&&E(r),o&&E(n)}}}function It(i){let e,t,r=i[5].innerHTML+"",n,o;return{c(){e=m("li"),t=m("a"),n=F(r),u(t,"href",o=i[5].href)},m(a,l){v(a,e,l),g(e,t),g(t,n)},p(a,l){l&8&&r!==(r=a[5].innerHTML+"")&&q(n,r),l&8&&o!==(o=a[5].href)&&u(t,"href",o)},d(a){a&&E(e)}}}function Kr(i){let e,t,r,n,o,a,l=i[0]&&Ht(i),s=i[3],c=[];for(let d=0;d<s.length;d+=1)c[d]=It(At(i,s,d));return{c(){e=m("section"),l&&l.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),o=m("ul");for(let d=0;d<c.length;d+=1)c[d].c();this.c=w,u(r,"class","hidden"),u(o,"class","links"),u(o,"style",a=`
21
21
  --narrow-display-type: ${Math.ceil(i[1]/2)>1?"block":"flex"};
22
22
  --narrow-column-count: ${Math.ceil(i[1]/2)};
23
23
  --wide-display-type: ${i[1]>1?"block":"flex"};
24
24
  --wide-column-count: ${i[1]};
25
- `)},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),g(e,r),g(e,n),g(e,o);for(let b=0;b<c.length;b+=1)c[b].m(o,null);i[4](e)},p(d,[f]){if(d[0]?l?l.p(d,f):(l=Ht(d),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&8){s=d[3];let b;for(b=0;b<s.length;b+=1){const y=At(d,s,b);c[b]?c[b].p(y,f):(c[b]=It(y),c[b].c(),c[b].m(o,null))}for(;b<c.length;b+=1)c[b].d(1);c.length=s.length}f&2&&a!==(a=`
25
+ `)},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),g(e,r),g(e,n),g(e,o);for(let b=0;b<c.length;b+=1)c[b].m(o,null);i[4](e)},p(d,[f]){if(d[0]?l?l.p(d,f):(l=Ht(d),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&8){s=d[3];let b;for(b=0;b<s.length;b+=1){const _=At(d,s,b);c[b]?c[b].p(_,f):(c[b]=It(_),c[b].c(),c[b].m(o,null))}for(;b<c.length;b+=1)c[b].d(1);c.length=s.length}f&2&&a!==(a=`
26
26
  --narrow-display-type: ${Math.ceil(d[1]/2)>1?"block":"flex"};
27
27
  --narrow-column-count: ${Math.ceil(d[1]/2)};
28
28
  --wide-display-type: ${d[1]>1?"block":"flex"};
@@ -31,7 +31,7 @@
31
31
  :host {
32
32
  flex-grow: ${n};
33
33
  }
34
- `,o.appendChild(c)});function l(s){ee[s?"unshift":"push"](()=>{o=s,t(2,o)})}return i.$$set=s=>{"heading"in s&&t(0,r=s.heading),"maxcolumncount"in s&&t(1,n=s.maxcolumncount)},[r,n,o,a,l]}class Yr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{flex:auto}.title{font-size:var(--fs-xl);line-height:var(--lh-lg)}.hidden{display:none}.links{display:block;list-style-type:none;padding-left:0}@media(min-width: 720px){.links{display:var(--narrow-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--narrow-column-count)}}@media(min-width: 1024px){.links{display:var(--wide-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--wide-column-count)}}li{padding:0.75rem 0}a{color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Xr,Kr,N,{heading:0,maxcolumncount:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","maxcolumncount"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get maxcolumncount(){return this.$$.ctx[1]}set maxcolumncount(e){this.$$set({maxcolumncount:e}),h()}}customElements.define("goa-app-footer-nav-section",Yr);function St(i){let e;return{c(){e=m("goa-divider"),C(e,"spacing","small")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Jr(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p=i[2]?.length&&St();return{c(){e=m("div"),t=m("div"),r=m("div"),r.innerHTML='<slot name="nav"></slot>',n=H(),p&&p.c(),o=H(),a=m("div"),l=m("div"),l.innerHTML='<slot name="meta"></slot>',s=H(),c=m("div"),d=m("a"),d.innerHTML='<img alt="GoA Logo" class="logo" src="data:image/svg+xml,%3Csvg xmlns=&#39;http://www.w3.org/2000/svg&#39; xmlns:xlink=&#39;http://www.w3.org/1999/xlink&#39; width=&#39;149.351&#39; height=&#39;42&#39; viewBox=&#39;0 0 149.351 42&#39;%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id=&#39;a&#39;%3E%3Crect class=&#39;a&#39; width=&#39;149.351&#39; height=&#39;42&#39;/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class=&#39;b&#39;%3E%3Crect class=&#39;c&#39; width=&#39;13.555&#39; height=&#39;13.555&#39; transform=&#39;translate(135.796 21.524)&#39;/%3E%3Cpath class=&#39;d&#39; d=&#39;M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83&#39; transform=&#39;translate(-0.038 0.124)&#39;/%3E%3C/g%3E%3C/svg%3E"/>',f=H(),b=m("a"),b.textContent=`\xA9 ${i[4]} Government of Alberta`,this.c=w,u(r,"class","nav-links"),u(l,"class","meta-links"),u(d,"href","https://alberta.ca"),u(b,"href","https://alberta.ca"),u(b,"class","goa-copyright"),u(c,"class","abgov"),B(c,"with-meta-links",i[3]?.length),u(a,"class","meta-section"),B(a,"with-meta-links",i[3]?.length),u(t,"class","content"),u(e,"class","app-footer"),u(e,"style",y=`--max-content-width: ${i[0]||"100%"}`)},m(_,L){v(_,e,L),g(e,t),g(t,r),g(t,n),p&&p.m(t,null),g(t,o),g(t,a),g(a,l),g(a,s),g(a,c),g(c,d),g(c,f),g(c,b),i[5](e)},p(_,[L]){_[2]?.length?p||(p=St(),p.c(),p.m(t,o)):p&&(p.d(1),p=null),L&8&&B(c,"with-meta-links",_[3]?.length),L&8&&B(a,"with-meta-links",_[3]?.length),L&1&&y!==(y=`--max-content-width: ${_[0]||"100%"}`)&&u(e,"style",y)},i:w,o:w,d(_){_&&E(e),p&&p.d(),i[5](null)}}}function Qr(i,e,t){let{maxcontentwidth:r=""}=e,n,o,a;const l=new Date().getFullYear();Q(async()=>{await Ne();const c=n.querySelector("slot[name=nav]"),d=n.querySelector("slot[name=meta]");t(2,o=c.assignedElements()),t(3,a=d.assignedElements())});function s(c){ee[c?"unshift":"push"](()=>{n=c,t(1,n)})}return i.$$set=c=>{"maxcontentwidth"in c&&t(0,r=c.maxcontentwidth)},[r,n,o,a,l,s]}class $r extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.app-footer{background-color:var(--color-gray-100);border-top:2px solid var(--color-gray-200);border-bottom:1rem solid var(--goa-color-brand)}.content{padding:2rem 1rem;margin:0 auto;width:min(var(--max-content-width), 100%)}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.meta-section{display:flex;flex-direction:column;padding:1rem 0}.meta-section.with-meta-links{gap:2rem;justify-content:space-between}.meta-links{display:none}.with-meta-links .meta-links{display:block}.nav-links{display:flex;flex-direction:column;gap:2rem}.abgov{display:flex;flex-direction:column;justify-content:space-between;width:100%}@media(min-width: 640px){.meta-section{flex-direction:row;gap:2rem}.nav-links{flex-direction:row}.abgov{align-items:center;flex-direction:row-reverse}}.abgov.with-meta-links{gap:1rem;flex-direction:column;width:unset}@media(min-width: 640px){.abgov.with-meta-links{align-items:flex-end}}.goa-copyright{white-space:nowrap}a{color:var(--goa-color-text-secondary)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Qr,Jr,N,{maxcontentwidth:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["maxcontentwidth"]}get maxcontentwidth(){return this.$$.ctx[0]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-footer",$r);function Dt(i){let e,t,r,n=i[3]&&Bt();return{c(){e=m("div"),t=F(i[0]),r=H(),n&&n.c(),u(e,"class","label")},m(o,a){v(o,e,a),g(e,t),g(e,r),n&&n.m(e,null)},p(o,a){a&1&&q(t,o[0]),o[3]?n||(n=Bt(),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(o){o&&E(e),n&&n.d()}}}function Bt(i){let e;return{c(){e=m("em"),e.textContent="(optional)"},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Nt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","error-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&E(e)}}}function Ot(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"class","help-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&E(e)}}}function en(i){let e,t,r,n,o,a=i[0]&&Dt(i),l=i[2]&&Nt(i),s=i[1]&&Ot(i);return{c(){e=m("div"),a&&a.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),l&&l.c(),o=H(),s&&s.c(),this.c=w,u(r,"class","form-item-input"),u(e,"class","goa-form-item")},m(c,d){v(c,e,d),a&&a.m(e,null),g(e,t),g(e,r),g(e,n),l&&l.m(e,null),g(e,o),s&&s.m(e,null)},p(c,[d]){c[0]?a?a.p(c,d):(a=Dt(c),a.c(),a.m(e,t)):a&&(a.d(1),a=null),c[2]?l?l.p(c,d):(l=Nt(c),l.c(),l.m(e,o)):l&&(l.d(1),l=null),c[1]?s?s.p(c,d):(s=Ot(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null)},i:w,o:w,d(c){c&&E(e),a&&a.d(),l&&l.d(),s&&s.d()}}}function tn(i,e,t){let r,{label:n=""}=e,{helptext:o=""}=e,{error:a=""}=e,{optional:l="false"}=e;return i.$$set=s=>{"label"in s&&t(0,n=s.label),"helptext"in s&&t(1,o=s.helptext),"error"in s&&t(2,a=s.error),"optional"in s&&t(4,l=s.optional)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(l))},[n,o,a,r,l]}class rn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0;overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis}.label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-sm);line-height:var(--lh-sm);font-style:normal}.form-item-input{margin-bottom:0.25rem}.help-msg{font-size:var(--fs-sm);color:var(--goa-color-text);margin-right:56px}.error-msg{font-size:var(--fs-sm);color:var(--goa-color-interactive--error);margin-bottom:0.25rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},tn,en,N,{label:0,helptext:1,error:2,optional:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["label","helptext","error","optional"]}get label(){return this.$$.ctx[0]}set label(e){this.$$set({label:e}),h()}get helptext(){return this.$$.ctx[1]}set helptext(e){this.$$set({helptext:e}),h()}get error(){return this.$$.ctx[2]}set error(e){this.$$set({error:e}),h()}get optional(){return this.$$.ctx[4]}set optional(e){this.$$set({optional:e}),h()}}customElements.define("goa-form-item",rn);function nn(i){let e,t,r,n,o,a,l,s;return{c(){e=m("div"),t=m("goa-page-block"),r=m("h1"),n=F(i[0]),o=H(),a=m("div"),a.innerHTML="<slot></slot>",l=H(),s=m("slot"),this.c=w,u(a,"class","goa-hero-banner-content"),u(a,"role","note"),u(s,"name","actions"),C(t,"width","full"),u(e,"class","goa-hero"),u(e,"data-testid","background"),V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+i[1]+")"),V(e,"background-size","cover"),V(e,"background-position","center"),V(e,"background-repeat","no-repeat")},m(c,d){v(c,e,d),g(e,t),g(t,r),g(r,n),g(t,o),g(t,a),g(t,l),g(t,s)},p(c,[d]){d&1&&q(n,c[0]),d&2&&V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+c[1]+")")},i:w,o:w,d(c){c&&E(e)}}}function on(i,e,t){let{heading:r}=e,{backgroundurl:n}=e;return i.$$set=o=>{"heading"in o&&t(0,r=o.heading),"backgroundurl"in o&&t(1,n=o.backgroundurl)},[r,n]}class an extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-hero{box-sizing:border-box;display:flex;justify-content:flex-end;flex-direction:column;min-height:600px;border-bottom:8px solid var(--goa-color-brand);color:var(--color-white);background-position:center center;width:100%;padding:3.5rem 0}h1{margin:0 0 1.75rem;padding:0;color:var(--color-white);font-size:var(--fs-3xl);line-height:var(--lh-2xl);font-weight:var(--fw-bold)}.goa-hero-banner-content{font-size:1.5rem;line-height:2rem;margin-bottom:1.75rem;color:#fff}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},on,nn,N,{heading:0,backgroundurl:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","backgroundurl"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get backgroundurl(){return this.$$.ctx[1]}set backgroundurl(e){this.$$set({backgroundurl:e}),h()}}customElements.define("goa-hero-banner",an);function ln(i){let e,t,r,n;return{c(){e=m("button"),t=m("goa-icon"),this.c=w,C(t,"title",i[3]),C(t,"type",i[0]),C(t,"size",i[1]),C(t,"theme",i[2]),C(t,"inverted",i[5]),V(e,"--size",i[6]),u(e,"title",i[3]),e.disabled=i[7],u(e,"class",i[8]),u(e,"data-testid",i[4])},m(o,a){v(o,e,a),g(e,t),r||(n=U(e,"click",sn),r=!0)},p(o,[a]){a&8&&C(t,"title",o[3]),a&1&&C(t,"type",o[0]),a&2&&C(t,"size",o[1]),a&4&&C(t,"theme",o[2]),a&32&&C(t,"inverted",o[5]),a&64&&V(e,"--size",o[6]),a&8&&u(e,"title",o[3]),a&128&&(e.disabled=o[7]),a&256&&u(e,"class",o[8]),a&16&&u(e,"data-testid",o[4])},i:w,o:w,d(o){o&&E(e),r=!1,n()}}}function sn(i){i.target.dispatchEvent(new CustomEvent("_click",{composed:!0,detail:{event:i}}))}function cn(i,e,t){let r,n,o,a,{type:l}=e,{size:s="medium"}=e,{theme:c="outline"}=e,{variant:d="color"}=e,{title:f=""}=e,{testId:b=""}=e,{disabled:y}=e,{inverted:p}=e;return i.$$set=_=>{"type"in _&&t(0,l=_.type),"size"in _&&t(1,s=_.size),"theme"in _&&t(2,c=_.theme),"variant"in _&&t(9,d=_.variant),"title"in _&&t(3,f=_.title),"testId"in _&&t(4,b=_.testId),"disabled"in _&&t(10,y=_.disabled),"inverted"in _&&t(11,p=_.inverted)},i.$$.update=()=>{i.$$.dirty&2048&&t(5,o=G(p)),i.$$.dirty&544&&t(8,r=`${d} ${o?"inverted":""}`),i.$$.dirty&1024&&t(7,n=G(y)),i.$$.dirty&2&&t(6,a={small:"1rem",medium:"1.5rem",large:"2rem"}[s])},[l,s,c,f,b,o,a,n,r,d,y,p]}class dn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;justify-content:center;background:transparent;cursor:pointer;border:none}.color{border-radius:0.5rem;padding:calc(var(--size) / 4)}.color{border-radius:0.5rem;color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.color:active,.nocolor:active{transform:scale(0.9);border:none}.color:hover{background-color:var(--goa-color-primary-light)}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{color:var(--color-gray-200);fill:var(--color-gray-200);transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},cn,ln,N,{type:0,size:1,theme:2,variant:9,title:3,testId:4,disabled:10,inverted:11},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","variant","title","testId","disabled","inverted"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[2]}set theme(e){this.$$set({theme:e}),h()}get variant(){return this.$$.ctx[9]}set variant(e){this.$$set({variant:e}),h()}get title(){return this.$$.ctx[3]}set title(e){this.$$set({title:e}),h()}get testId(){return this.$$.ctx[4]}set testId(e){this.$$set({testId:e}),h()}get disabled(){return this.$$.ctx[10]}set disabled(e){this.$$set({disabled:e}),h()}get inverted(){return this.$$.ctx[11]}set inverted(e){this.$$set({inverted:e}),h()}}customElements.define("goa-icon-button",dn);function jt(i){let e,t;return{c(){e=m("ion-icon"),C(e,"name",t=i[1]==="filled"||i[0].indexOf("logo")===0?i[0]:`${i[0]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&3&&t!==(t=r[1]==="filled"||r[0].indexOf("logo")===0?r[0]:`${r[0]}-${r[1]}`)&&C(e,"name",t)},d(r){r&&E(e)}}}function un(i){let e,t,r,n=i[0]&&jt(i);return{c(){e=m("div"),n&&n.c(),this.c=w,u(e,"class","goa-icon"),u(e,"data-testid",t=`icon-${i[0]}`),u(e,"title",i[5]),u(e,"style",r=`
34
+ `,o.appendChild(c)});function l(s){ee[s?"unshift":"push"](()=>{o=s,t(2,o)})}return i.$$set=s=>{"heading"in s&&t(0,r=s.heading),"maxcolumncount"in s&&t(1,n=s.maxcolumncount)},[r,n,o,a,l]}class Yr extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{flex:auto}.title{font-size:var(--fs-xl);line-height:var(--lh-lg)}.hidden{display:none}.links{display:block;list-style-type:none;padding-left:0}@media(min-width: 720px){.links{display:var(--narrow-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--narrow-column-count)}}@media(min-width: 1024px){.links{display:var(--wide-display-type);list-style-type:none;padding-left:0;flex-direction:column;column-count:var(--wide-column-count)}}li{padding:0.75rem 0}a{color:var(--goa-color-text)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Xr,Kr,N,{heading:0,maxcolumncount:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","maxcolumncount"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get maxcolumncount(){return this.$$.ctx[1]}set maxcolumncount(e){this.$$set({maxcolumncount:e}),h()}}customElements.define("goa-app-footer-nav-section",Yr);function St(i){let e;return{c(){e=m("goa-divider"),C(e,"spacing","small")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Jr(i){let e,t,r,n,o,a,l,s,c,d,f,b,_,p=i[2]?.length&&St();return{c(){e=m("div"),t=m("div"),r=m("div"),r.innerHTML='<slot name="nav"></slot>',n=H(),p&&p.c(),o=H(),a=m("div"),l=m("div"),l.innerHTML='<slot name="meta"></slot>',s=H(),c=m("div"),d=m("a"),d.innerHTML='<img alt="GoA Logo" class="logo" src="data:image/svg+xml,%3Csvg xmlns=&#39;http://www.w3.org/2000/svg&#39; xmlns:xlink=&#39;http://www.w3.org/1999/xlink&#39; width=&#39;149.351&#39; height=&#39;42&#39; viewBox=&#39;0 0 149.351 42&#39;%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D.b%7Bclip-path:url(%23a);%7D.c%7Bfill:%2300aad2;%7D.d%7Bfill:%235f6a72;%7D%3C/style%3E%3CclipPath id=&#39;a&#39;%3E%3Crect class=&#39;a&#39; width=&#39;149.351&#39; height=&#39;42&#39;/%3E%3C/clipPath%3E%3C/defs%3E%3Cg class=&#39;b&#39;%3E%3Crect class=&#39;c&#39; width=&#39;13.555&#39; height=&#39;13.555&#39; transform=&#39;translate(135.796 21.524)&#39;/%3E%3Cpath class=&#39;d&#39; d=&#39;M63.082,33.088c-1.383.138-2.835.277-4.357.346.553-4.357,2.835-10.373,5.671-9.405,1.66.553.761,5.671-1.314,9.059m-3.527,2.974a3.761,3.761,0,0,1-1.245,0,.851.851,0,0,0,.346-.692v-.553c.761,0,1.936-.138,3.389-.277a4.327,4.327,0,0,1-2.49,1.521M76.844,25.688c1.8-1.66,2.7-1.521,2.9-1.106.484.968-1.591,4.357-5.671,6.224a10.328,10.328,0,0,1,2.766-5.118m66.736,1.66c-.207-3.389-3.181-3.942-3.6-2.974-.138.346,1.106.207,1.106,2.628,0,3.942-4.011,9.129-9.129,9.129-5.532,0-6.985-4.357-7.261-6.432-.207-1.452.138-3.458-2.351-3.181-1.729.207-3.25,3.527-5.463,6.362-1.867,2.42-2.7,2.213-2.282.138.553-2.628,2.7-8.714,5.187-9.129,1.176-.207,1.591,1.8,2.075.553s.069-4.011-2.559-4.011c-1.8,0-3.942,1.936-5.74,4.08-1.521,1.936-9.336,13.416-12.656,10.927-1.521-1.176-1.383-5.878-.415-11.411,3.873-1.521,7.123-1.037,8.921-.138.9.415,1.037.346.622-.622-.553-1.452-3.665-3.734-8.575-2.7-.138,0-.207.069-.346.069.415-1.8.83-3.665,1.383-5.463.484-1.66,1.8-4.5-1.729-4.979-1.106-.207-.622.346-1.037,1.867-.692,2.766-1.521,6.362-2.144,10.028a19.745,19.745,0,0,0-7.538,8.091,38.59,38.59,0,0,0,.9-4.772,1.589,1.589,0,0,0-1.245-1.729c-.761-.207-1.729.138-2.628,1.452-2.144,3.043-4.841,7.815-8.99,9.82-2.974,1.452-4.288,0-4.357-2.282a9.869,9.869,0,0,0,1.521-.553c5.394-2.351,7.192-5.947,5.878-8.16-1.314-2.075-4.979-1.452-7.953,1.66a11.175,11.175,0,0,0-2.7,6.5c-1.245.277-2.628.484-4.219.692,2.49-4.08,2.282-9.613-1.383-10.581-4.288-1.106-6.432,3.043-7.331,6.5.346-3.873.9-7.745,1.591-11.549.346-1.66,1.452-4.5-2.075-4.979-1.106-.207-.968.346-.9,1.867.138,2.075-2.144,14.454-.968,19.848-1.521.484-2.144,1.66-.207,2.835,1.383.83,4.357,1.106,7.331-.346a9.3,9.3,0,0,0,2.766-2.144c1.8-.207,3.665-.553,5.394-.83.277,2.42,1.867,4.219,5.463,3.873,5.118-.484,9.682-6.777,11.411-9.82-.346,3.25-2.42,10.373,1.176,10.028,1.383-.138.83-.346.9-1.591.346-4.288,3.873-7.953,7.4-10.166-.622,5.256-.415,9.958,2.006,11.411,4.426,2.766,10.581-4.5,14.039-8.921-1.729,3.942-2.7,8.921-.138,9.682,3.043.9,5.463-4.219,8.3-8.091.346,2.766,2.213,7.607,9.682,7.607,8.022-.069,13.071-4.91,12.863-10.1m-108.3,8.645A66.439,66.439,0,0,1,27.4,32.534a59.168,59.168,0,0,0,6.777-2.974,54.453,54.453,0,0,0,1.106,6.432m20.4,3.873c-.069-.207-.622.069-1.106,0-1.452-.207-3.389-2.213-3.942-5.463-1.037-5.878-.415-11.687,1.314-20.332.346-1.66,1.452-4.5-2.075-5.048-1.106-.138-.553.415-.83,1.867C47.66,17.32,42.4,21.954,37.149,25.066,36.6,17.735,36.8,9.505,38.186,4.526c1.176-4.219,2.559-3.458.83-4.357s-3.734.277-5.325,3.458S24.839,23.89,13.221,35.439C7.273,41.317,1.879,38.274.842,37.375c-.9-.761-1.176.415-.138,1.591,4.772,5.256,11.826,2.282,14.384-.277,7.054-7.054,15.283-22.268,18.6-28.7a98.251,98.251,0,0,0,.277,16.874,50.129,50.129,0,0,1-8.3,3.181c-1.66.415-2.7,1.106-2.7,1.867s1.106,1.521,2.7,2.282c2.835,1.383,11.2,5.256,13.209,6.5,1.729,1.037,2.628.207,3.112-.9.692-1.452-1.176-2.282-2.974-2.766a60.545,60.545,0,0,1-1.66-9.267c4.219-2.628,8.437-6.086,10.788-10.443C47.522,20.916,46,33.3,49.873,38.482a5.451,5.451,0,0,0,4.564,2.213c.968-.069,1.383-.692,1.245-.83&#39; transform=&#39;translate(-0.038 0.124)&#39;/%3E%3C/g%3E%3C/svg%3E"/>',f=H(),b=m("a"),b.textContent=`\xA9 ${i[4]} Government of Alberta`,this.c=w,u(r,"class","nav-links"),u(l,"class","meta-links"),u(d,"href","https://alberta.ca"),u(b,"href","https://alberta.ca"),u(b,"class","goa-copyright"),u(c,"class","abgov"),B(c,"with-meta-links",i[3]?.length),u(a,"class","meta-section"),B(a,"with-meta-links",i[3]?.length),u(t,"class","content"),u(e,"class","app-footer"),u(e,"style",_=`--max-content-width: ${i[0]||"100%"}`)},m(y,L){v(y,e,L),g(e,t),g(t,r),g(t,n),p&&p.m(t,null),g(t,o),g(t,a),g(a,l),g(a,s),g(a,c),g(c,d),g(c,f),g(c,b),i[5](e)},p(y,[L]){y[2]?.length?p||(p=St(),p.c(),p.m(t,o)):p&&(p.d(1),p=null),L&8&&B(c,"with-meta-links",y[3]?.length),L&8&&B(a,"with-meta-links",y[3]?.length),L&1&&_!==(_=`--max-content-width: ${y[0]||"100%"}`)&&u(e,"style",_)},i:w,o:w,d(y){y&&E(e),p&&p.d(),i[5](null)}}}function Qr(i,e,t){let{maxcontentwidth:r=""}=e,n,o,a;const l=new Date().getFullYear();Q(async()=>{await Ne();const c=n.querySelector("slot[name=nav]"),d=n.querySelector("slot[name=meta]");t(2,o=c.assignedElements()),t(3,a=d.assignedElements())});function s(c){ee[c?"unshift":"push"](()=>{n=c,t(1,n)})}return i.$$set=c=>{"maxcontentwidth"in c&&t(0,r=c.maxcontentwidth)},[r,n,o,a,l,s]}class $r extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.app-footer{background-color:var(--color-gray-100);border-top:2px solid var(--color-gray-200);border-bottom:1rem solid var(--goa-color-brand)}.content{padding:2rem 1rem;margin:0 auto;width:min(var(--max-content-width), 100%)}@media(min-width: 640px){.content{padding:2rem 1.5rem}}.meta-section{display:flex;flex-direction:column;padding:1rem 0}.meta-section.with-meta-links{gap:2rem;justify-content:space-between}.meta-links{display:none}.with-meta-links .meta-links{display:block}.nav-links{display:flex;flex-direction:column;gap:2rem}.abgov{display:flex;flex-direction:column;justify-content:space-between;width:100%}@media(min-width: 640px){.meta-section{flex-direction:row;gap:2rem}.nav-links{flex-direction:row}.abgov{align-items:center;flex-direction:row-reverse}}.abgov.with-meta-links{gap:1rem;flex-direction:column;width:unset}@media(min-width: 640px){.abgov.with-meta-links{align-items:flex-end}}.goa-copyright{white-space:nowrap}a{color:var(--goa-color-text-secondary)}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Qr,Jr,N,{maxcontentwidth:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["maxcontentwidth"]}get maxcontentwidth(){return this.$$.ctx[0]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-app-footer",$r);function Dt(i){let e,t,r,n=i[3]&&Bt();return{c(){e=m("div"),t=F(i[0]),r=H(),n&&n.c(),u(e,"class","label")},m(o,a){v(o,e,a),g(e,t),g(e,r),n&&n.m(e,null)},p(o,a){a&1&&q(t,o[0]),o[3]?n||(n=Bt(),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(o){o&&E(e),n&&n.d()}}}function Bt(i){let e;return{c(){e=m("em"),e.textContent="(optional)"},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Nt(i){let e,t;return{c(){e=m("div"),t=F(i[2]),u(e,"class","error-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&4&&q(t,r[2])},d(r){r&&E(e)}}}function Ot(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"class","help-msg")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&E(e)}}}function en(i){let e,t,r,n,o,a=i[0]&&Dt(i),l=i[2]&&Nt(i),s=i[1]&&Ot(i);return{c(){e=m("div"),a&&a.c(),t=H(),r=m("div"),r.innerHTML="<slot></slot>",n=H(),l&&l.c(),o=H(),s&&s.c(),this.c=w,u(r,"class","form-item-input"),u(e,"class","goa-form-item")},m(c,d){v(c,e,d),a&&a.m(e,null),g(e,t),g(e,r),g(e,n),l&&l.m(e,null),g(e,o),s&&s.m(e,null)},p(c,[d]){c[0]?a?a.p(c,d):(a=Dt(c),a.c(),a.m(e,t)):a&&(a.d(1),a=null),c[2]?l?l.p(c,d):(l=Nt(c),l.c(),l.m(e,o)):l&&(l.d(1),l=null),c[1]?s?s.p(c,d):(s=Ot(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null)},i:w,o:w,d(c){c&&E(e),a&&a.d(),l&&l.d(),s&&s.d()}}}function tn(i,e,t){let r,{label:n=""}=e,{helptext:o=""}=e,{error:a=""}=e,{optional:l="false"}=e;return i.$$set=s=>{"label"in s&&t(0,n=s.label),"helptext"in s&&t(1,o=s.helptext),"error"in s&&t(2,a=s.error),"optional"in s&&t(4,l=s.optional)},i.$$.update=()=>{i.$$.dirty&16&&t(3,r=G(l))},[n,o,a,r,l]}class rn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0;overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis}.label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-sm);line-height:var(--lh-sm);font-style:normal}.form-item-input{margin-bottom:0.25rem}.help-msg{font-size:var(--fs-sm);color:var(--goa-color-text);margin-right:56px}.error-msg{font-size:var(--fs-sm);color:var(--goa-color-interactive--error);margin-bottom:0.25rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},tn,en,N,{label:0,helptext:1,error:2,optional:4},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["label","helptext","error","optional"]}get label(){return this.$$.ctx[0]}set label(e){this.$$set({label:e}),h()}get helptext(){return this.$$.ctx[1]}set helptext(e){this.$$set({helptext:e}),h()}get error(){return this.$$.ctx[2]}set error(e){this.$$set({error:e}),h()}get optional(){return this.$$.ctx[4]}set optional(e){this.$$set({optional:e}),h()}}customElements.define("goa-form-item",rn);function nn(i){let e,t,r,n,o,a,l,s;return{c(){e=m("div"),t=m("goa-page-block"),r=m("h1"),n=F(i[0]),o=H(),a=m("div"),a.innerHTML="<slot></slot>",l=H(),s=m("slot"),this.c=w,u(a,"class","goa-hero-banner-content"),u(a,"role","note"),u(s,"name","actions"),C(t,"width","full"),u(e,"class","goa-hero"),u(e,"data-testid","background"),V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+i[1]+")"),V(e,"background-size","cover"),V(e,"background-position","center"),V(e,"background-repeat","no-repeat")},m(c,d){v(c,e,d),g(e,t),g(t,r),g(r,n),g(t,o),g(t,a),g(t,l),g(t,s)},p(c,[d]){d&1&&q(n,c[0]),d&2&&V(e,"background-image","linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0.6) 100%), url("+c[1]+")")},i:w,o:w,d(c){c&&E(e)}}}function on(i,e,t){let{heading:r}=e,{backgroundurl:n}=e;return i.$$set=o=>{"heading"in o&&t(0,r=o.heading),"backgroundurl"in o&&t(1,n=o.backgroundurl)},[r,n]}class an extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-hero{box-sizing:border-box;display:flex;justify-content:flex-end;flex-direction:column;min-height:600px;border-bottom:8px solid var(--goa-color-brand);color:var(--color-white);background-position:center center;width:100%;padding:3.5rem 0}h1{margin:0 0 1.75rem;padding:0;color:var(--color-white);font-size:var(--fs-3xl);line-height:var(--lh-2xl);font-weight:var(--fw-bold)}.goa-hero-banner-content{font-size:1.5rem;line-height:2rem;margin-bottom:1.75rem;color:#fff}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},on,nn,N,{heading:0,backgroundurl:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","backgroundurl"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get backgroundurl(){return this.$$.ctx[1]}set backgroundurl(e){this.$$set({backgroundurl:e}),h()}}customElements.define("goa-hero-banner",an);function ln(i){let e,t,r,n;return{c(){e=m("button"),t=m("goa-icon"),this.c=w,C(t,"title",i[3]),C(t,"type",i[0]),C(t,"size",i[1]),C(t,"theme",i[2]),C(t,"inverted",i[5]),V(e,"--size",i[6]),u(e,"title",i[3]),e.disabled=i[7],u(e,"class",i[8]),u(e,"data-testid",i[4])},m(o,a){v(o,e,a),g(e,t),r||(n=U(e,"click",sn),r=!0)},p(o,[a]){a&8&&C(t,"title",o[3]),a&1&&C(t,"type",o[0]),a&2&&C(t,"size",o[1]),a&4&&C(t,"theme",o[2]),a&32&&C(t,"inverted",o[5]),a&64&&V(e,"--size",o[6]),a&8&&u(e,"title",o[3]),a&128&&(e.disabled=o[7]),a&256&&u(e,"class",o[8]),a&16&&u(e,"data-testid",o[4])},i:w,o:w,d(o){o&&E(e),r=!1,n()}}}function sn(i){i.target.dispatchEvent(new CustomEvent("_click",{composed:!0,detail:{event:i}}))}function cn(i,e,t){let r,n,o,a,{icon:l}=e,{size:s="medium"}=e,{theme:c="outline"}=e,{variant:d="color"}=e,{title:f=""}=e,{testId:b=""}=e,{disabled:_}=e,{inverted:p}=e;return i.$$set=y=>{"icon"in y&&t(0,l=y.icon),"size"in y&&t(1,s=y.size),"theme"in y&&t(2,c=y.theme),"variant"in y&&t(9,d=y.variant),"title"in y&&t(3,f=y.title),"testId"in y&&t(4,b=y.testId),"disabled"in y&&t(10,_=y.disabled),"inverted"in y&&t(11,p=y.inverted)},i.$$.update=()=>{i.$$.dirty&2048&&t(5,o=G(p)),i.$$.dirty&544&&t(8,r=`${d} ${o?"inverted":""}`),i.$$.dirty&1024&&t(7,n=G(_)),i.$$.dirty&2&&t(6,a={small:"1rem",medium:"1.5rem",large:"2rem"}[s])},[l,s,c,f,b,o,a,n,r,d,_,p]}class dn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center;box-sizing:border-box;font-family:var(--font-family)}button,button *{box-sizing:border-box}button{display:inline-flex;align-items:center;box-sizing:border-box;justify-content:center;background:transparent;cursor:pointer;border:none;padding:0 0.75rem}.color{border-radius:0.5rem;padding:calc(var(--size) / 4);color:var(--goa-color-interactive);fill:var(--goa-color-interactive);cursor:pointer;transition:background-color 100ms ease-in, transform 100ms ease-in}.nocolor{border-radius:0.5rem;padding:calc(var(--size) / 4)}button:hover{background-color:var(--color-gray-100);border-color:var(--color-gray-100);color:var(--goa-color-interactive--hover);outline:none}button:focus,button:active{background-color:var(--color-gray-100);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}.color.inverted:hover{background-color:var(--goa-color-primary-dark)}button:disabled{pointer-events:none;opacity:0.5;transform:none;cursor:default}button:disabled:hover{background-color:transparent}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},cn,ln,N,{icon:0,size:1,theme:2,variant:9,title:3,testId:4,disabled:10,inverted:11},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["icon","size","theme","variant","title","testId","disabled","inverted"]}get icon(){return this.$$.ctx[0]}set icon(e){this.$$set({icon: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",dn);function jt(i){let e,t;return{c(){e=m("ion-icon"),C(e,"name",t=i[1]==="filled"||i[0].indexOf("logo")===0?i[0]:`${i[0]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&3&&t!==(t=r[1]==="filled"||r[0].indexOf("logo")===0?r[0]:`${r[0]}-${r[1]}`)&&C(e,"name",t)},d(r){r&&E(e)}}}function un(i){let e,t,r,n=i[0]&&jt(i);return{c(){e=m("div"),n&&n.c(),this.c=w,u(e,"class","goa-icon"),u(e,"data-testid",t=`icon-${i[0]}`),u(e,"title",i[5]),u(e,"style",r=`
35
35
  --size: ${i[6]};
36
36
  --fill-color: ${i[2]};
37
37
  --hover-color: ${i[3]};
@@ -41,23 +41,23 @@
41
41
  --fill-color: ${o[2]};
42
42
  --hover-color: ${o[3]};
43
43
  --opacity: ${o[4]};
44
- `)&&u(e,"style",r),a&128&&B(e,"inverted",o[7])},i:w,o:w,d(o){o&&E(e),n&&n.d()}}}function fn(i,e,t){let r,n,{type:o}=e,{size:a="medium"}=e,{theme:l="outline"}=e,{inverted:s="false"}=e,{fillcolor:c=""}=e,{hovercolor:d=""}=e,{opacity:f=1}=e,{title:b=""}=e;return i.$$set=y=>{"type"in y&&t(0,o=y.type),"size"in y&&t(8,a=y.size),"theme"in y&&t(1,l=y.theme),"inverted"in y&&t(9,s=y.inverted),"fillcolor"in y&&t(2,c=y.fillcolor),"hovercolor"in y&&t(3,d=y.hovercolor),"opacity"in y&&t(4,f=y.opacity),"title"in y&&t(5,b=y.title)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(s)),i.$$.dirty&256&&t(6,n={small:"1.25rem",medium:"1.5rem",large:"2rem"}[a])},[o,l,c,d,f,b,n,r,a,s]}class hn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center}ion-icon{pointer-events:none;width:100%;height:100%}.goa-icon{width:var(--size);height:var(--size);fill:var(--fill-color);color:var(--fill-color);opacity:var(--opacity);display:inline-flex;align-items:center;justify-content:center}.goa-icon:hover ion-icon{fill:var(--hover-color);color:var(--hover-color)}.inverted{color:#fff;fill:#fff}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},fn,un,N,{type:0,size:8,theme:1,inverted:9,fillcolor:2,hovercolor:3,opacity:4,title:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","inverted","fillcolor","hovercolor","opacity","title"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[8]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[1]}set theme(e){this.$$set({theme:e}),h()}get inverted(){return this.$$.ctx[9]}set inverted(e){this.$$set({inverted:e}),h()}get fillcolor(){return this.$$.ctx[2]}set fillcolor(e){this.$$set({fillcolor:e}),h()}get hovercolor(){return this.$$.ctx[3]}set hovercolor(e){this.$$set({hovercolor:e}),h()}get opacity(){return this.$$.ctx[4]}set opacity(e){this.$$set({opacity:e}),h()}get title(){return this.$$.ctx[5]}set title(e){this.$$set({title:e}),h()}}customElements.define("goa-icon",hn);function Pt(i){let e,t;return{c(){e=m("div"),t=F(i[14]),u(e,"class","prefix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&16384&&q(t,r[14])},d(r){r&&E(e)}}}function Ft(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-leading-icon"),C(e,"data-testid","leading-icon"),C(e,"type",i[5])},m(t,r){v(t,e,r)},p(t,r){r[0]&32&&C(e,"type",t[5])},d(t){t&&E(e)}}}function Gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-trailing-icon"),C(e,"data-testid","trailing-icon"),C(e,"size","medium"),C(e,"type",i[6])},m(t,r){v(t,e,r)},p(t,r){r[0]&64&&C(e,"type",t[6])},d(t){t&&E(e)}}}function qt(i){let e,t,r;return{c(){e=m("goa-icon-button"),C(e,"disabled",i[19]),C(e,"variant","nocolor"),C(e,"size","medium"),C(e,"type",i[6]),C(e,"data-testid","trailing-icon-button")},m(n,o){v(n,e,o),t||(r=U(e,"click",vn),t=!0)},p(n,o){o[0]&524288&&C(e,"disabled",n[19]),o[0]&64&&C(e,"type",n[6])},d(n){n&&E(e),t=!1,r()}}}function Vt(i){let e,t;return{c(){e=m("span"),t=F(i[15]),u(e,"class","suffix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&32768&&q(t,r[15])},d(r){r&&E(e)}}}function Wt(i){let e;function t(o,a){if(o[16]>0)return mn;if(o[0].length>0)return gn}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&E(e)}}}function gn(i){let e,t=i[0].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o[0]&1&&t!==(t=n[0].length+"")&&q(r,t)},d(n){n&&E(e)}}}function mn(i){let e,t=i[0].length+"",r,n=`/${i[16]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[0].length>i[16])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l[0]&1&&t!==(t=a[0].length+"")&&q(r,t),l[0]&65536&&n!==(n=`/${a[16]}`)&&q(o,n),l[0]&65537&&B(e,"counter-error",a[0].length>a[16])},d(a){a&&E(e)}}}function bn(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,L,x=i[14]&&Pt(i),M=i[5]&&Ft(i),z=i[6]&&!i[22]&&Gt(i),k=i[6]&&i[22]&&qt(i),A=i[15]&&Vt(i),R=i[18]&&Wt(i);return{c(){e=m("div"),t=m("div"),x&&x.c(),r=H(),M&&M.c(),n=H(),o=m("input"),c=H(),z&&z.c(),d=H(),k&&k.c(),f=H(),A&&A.c(),y=H(),R&&R.c(),this.c=w,u(o,"class",a=`input--${i[7]}`),u(o,"style",l=`--search-icon-offset: ${i[6]?"-0.5rem":"0"}`),o.readOnly=i[21],o.disabled=i[19],u(o,"data-testid",i[8]),u(o,"autocapitalize",i[3]),u(o,"name",i[2]),u(o,"type",i[1]),o.value=i[0],u(o,"placeholder",i[4]),u(o,"min",i[11]),u(o,"max",i[12]),u(o,"step",i[13]),u(o,"role","textbox"),u(o,"aria-label",s=i[10]||i[2]),u(t,"class",b=`
44
+ `)&&u(e,"style",r),a&128&&B(e,"inverted",o[7])},i:w,o:w,d(o){o&&E(e),n&&n.d()}}}function fn(i,e,t){let r,n,{type:o}=e,{size:a="medium"}=e,{theme:l="outline"}=e,{inverted:s="false"}=e,{fillcolor:c=""}=e,{hovercolor:d=""}=e,{opacity:f=1}=e,{title:b=""}=e;return i.$$set=_=>{"type"in _&&t(0,o=_.type),"size"in _&&t(8,a=_.size),"theme"in _&&t(1,l=_.theme),"inverted"in _&&t(9,s=_.inverted),"fillcolor"in _&&t(2,c=_.fillcolor),"hovercolor"in _&&t(3,d=_.hovercolor),"opacity"in _&&t(4,f=_.opacity),"title"in _&&t(5,b=_.title)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(s)),i.$$.dirty&256&&t(6,n={small:"1.25rem",medium:"1.5rem",large:"2rem"}[a])},[o,l,c,d,f,b,n,r,a,s]}class hn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{display:inline-flex;align-items:center}ion-icon{pointer-events:none;width:100%;height:100%}.goa-icon{width:var(--size);height:var(--size);fill:var(--fill-color);color:var(--fill-color);opacity:var(--opacity);display:inline-flex;align-items:center;justify-content:center}.goa-icon:hover ion-icon{fill:var(--hover-color);color:var(--hover-color)}.inverted{color:#fff;fill:#fff}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},fn,un,N,{type:0,size:8,theme:1,inverted:9,fillcolor:2,hovercolor:3,opacity:4,title:5},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","size","theme","inverted","fillcolor","hovercolor","opacity","title"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get size(){return this.$$.ctx[8]}set size(e){this.$$set({size:e}),h()}get theme(){return this.$$.ctx[1]}set theme(e){this.$$set({theme:e}),h()}get inverted(){return this.$$.ctx[9]}set inverted(e){this.$$set({inverted:e}),h()}get fillcolor(){return this.$$.ctx[2]}set fillcolor(e){this.$$set({fillcolor:e}),h()}get hovercolor(){return this.$$.ctx[3]}set hovercolor(e){this.$$set({hovercolor:e}),h()}get opacity(){return this.$$.ctx[4]}set opacity(e){this.$$set({opacity:e}),h()}get title(){return this.$$.ctx[5]}set title(e){this.$$set({title:e}),h()}}customElements.define("goa-icon",hn);function Pt(i){let e,t;return{c(){e=m("div"),t=F(i[14]),u(e,"class","prefix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&16384&&q(t,r[14])},d(r){r&&E(e)}}}function Ft(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-leading-icon"),C(e,"data-testid","leading-icon"),C(e,"type",i[5])},m(t,r){v(t,e,r)},p(t,r){r[0]&32&&C(e,"type",t[5])},d(t){t&&E(e)}}}function Gt(i){let e;return{c(){e=m("goa-icon"),C(e,"class","goa-input-trailing-icon"),C(e,"data-testid","trailing-icon"),C(e,"size","medium"),C(e,"type",i[6])},m(t,r){v(t,e,r)},p(t,r){r[0]&64&&C(e,"type",t[6])},d(t){t&&E(e)}}}function qt(i){let e,t,r;return{c(){e=m("goa-icon-button"),C(e,"disabled",i[19]),C(e,"variant","nocolor"),C(e,"size","medium"),C(e,"icon",i[6]),C(e,"data-testid","trailing-icon-button")},m(n,o){v(n,e,o),t||(r=U(e,"click",vn),t=!0)},p(n,o){o[0]&524288&&C(e,"disabled",n[19]),o[0]&64&&C(e,"icon",n[6])},d(n){n&&E(e),t=!1,r()}}}function Vt(i){let e,t;return{c(){e=m("span"),t=F(i[15]),u(e,"class","suffix")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n[0]&32768&&q(t,r[15])},d(r){r&&E(e)}}}function Wt(i){let e;function t(o,a){if(o[16]>0)return mn;if(o[0].length>0)return gn}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&E(e)}}}function gn(i){let e,t=i[0].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o[0]&1&&t!==(t=n[0].length+"")&&q(r,t)},d(n){n&&E(e)}}}function mn(i){let e,t=i[0].length+"",r,n=`/${i[16]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[0].length>i[16])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l[0]&1&&t!==(t=a[0].length+"")&&q(r,t),l[0]&65536&&n!==(n=`/${a[16]}`)&&q(o,n),l[0]&65537&&B(e,"counter-error",a[0].length>a[16])},d(a){a&&E(e)}}}function bn(i){let e,t,r,n,o,a,l,s,c,d,f,b,_,p,y,L,x=i[14]&&Pt(i),M=i[5]&&Ft(i),z=i[6]&&!i[22]&&Gt(i),k=i[6]&&i[22]&&qt(i),A=i[15]&&Vt(i),R=i[18]&&Wt(i);return{c(){e=m("div"),t=m("div"),x&&x.c(),r=H(),M&&M.c(),n=H(),o=m("input"),c=H(),z&&z.c(),d=H(),k&&k.c(),f=H(),A&&A.c(),_=H(),R&&R.c(),this.c=w,u(o,"class",a=`input--${i[7]}`),u(o,"style",l=`--search-icon-offset: ${i[6]?"-0.5rem":"0"}`),o.readOnly=i[21],o.disabled=i[19],u(o,"data-testid",i[8]),u(o,"autocapitalize",i[3]),u(o,"name",i[2]),u(o,"type",i[1]),o.value=i[0],u(o,"placeholder",i[4]),u(o,"min",i[11]),u(o,"max",i[12]),u(o,"step",i[13]),u(o,"role","textbox"),u(o,"aria-label",s=i[10]||i[2]),u(t,"class",b=`
45
45
  goa-input
46
46
  ${i[19]?"goa-input--disabled":""}
47
47
  variant--${i[7]}
48
48
  type--${i[1]}
49
49
  `),B(t,"error",i[20]),u(e,"class","container"),u(e,"style",p=`
50
50
  --width: ${i[9]};
51
- `)},m(T,D){v(T,e,D),g(e,t),x&&x.m(t,null),g(t,r),M&&M.m(t,null),g(t,n),g(t,o),i[31](o),g(t,c),z&&z.m(t,null),g(t,d),k&&k.m(t,null),g(t,f),A&&A.m(t,null),g(e,y),R&&R.m(e,null),_||(L=[U(o,"keyup",i[23]),U(o,"change",i[23])],_=!0)},p(T,D){T[14]?x?x.p(T,D):(x=Pt(T),x.c(),x.m(t,r)):x&&(x.d(1),x=null),T[5]?M?M.p(T,D):(M=Ft(T),M.c(),M.m(t,n)):M&&(M.d(1),M=null),D[0]&128&&a!==(a=`input--${T[7]}`)&&u(o,"class",a),D[0]&64&&l!==(l=`--search-icon-offset: ${T[6]?"-0.5rem":"0"}`)&&u(o,"style",l),D[0]&2097152&&(o.readOnly=T[21]),D[0]&524288&&(o.disabled=T[19]),D[0]&256&&u(o,"data-testid",T[8]),D[0]&8&&u(o,"autocapitalize",T[3]),D[0]&4&&u(o,"name",T[2]),D[0]&2&&u(o,"type",T[1]),D[0]&1&&o.value!==T[0]&&(o.value=T[0]),D[0]&16&&u(o,"placeholder",T[4]),D[0]&2048&&u(o,"min",T[11]),D[0]&4096&&u(o,"max",T[12]),D[0]&8192&&u(o,"step",T[13]),D[0]&1028&&s!==(s=T[10]||T[2])&&u(o,"aria-label",s),T[6]&&!T[22]?z?z.p(T,D):(z=Gt(T),z.c(),z.m(t,d)):z&&(z.d(1),z=null),T[6]&&T[22]?k?k.p(T,D):(k=qt(T),k.c(),k.m(t,f)):k&&(k.d(1),k=null),T[15]?A?A.p(T,D):(A=Vt(T),A.c(),A.m(t,null)):A&&(A.d(1),A=null),D[0]&524418&&b!==(b=`
51
+ `)},m(T,D){v(T,e,D),g(e,t),x&&x.m(t,null),g(t,r),M&&M.m(t,null),g(t,n),g(t,o),i[31](o),g(t,c),z&&z.m(t,null),g(t,d),k&&k.m(t,null),g(t,f),A&&A.m(t,null),g(e,_),R&&R.m(e,null),y||(L=[U(o,"keyup",i[23]),U(o,"change",i[23])],y=!0)},p(T,D){T[14]?x?x.p(T,D):(x=Pt(T),x.c(),x.m(t,r)):x&&(x.d(1),x=null),T[5]?M?M.p(T,D):(M=Ft(T),M.c(),M.m(t,n)):M&&(M.d(1),M=null),D[0]&128&&a!==(a=`input--${T[7]}`)&&u(o,"class",a),D[0]&64&&l!==(l=`--search-icon-offset: ${T[6]?"-0.5rem":"0"}`)&&u(o,"style",l),D[0]&2097152&&(o.readOnly=T[21]),D[0]&524288&&(o.disabled=T[19]),D[0]&256&&u(o,"data-testid",T[8]),D[0]&8&&u(o,"autocapitalize",T[3]),D[0]&4&&u(o,"name",T[2]),D[0]&2&&u(o,"type",T[1]),D[0]&1&&o.value!==T[0]&&(o.value=T[0]),D[0]&16&&u(o,"placeholder",T[4]),D[0]&2048&&u(o,"min",T[11]),D[0]&4096&&u(o,"max",T[12]),D[0]&8192&&u(o,"step",T[13]),D[0]&1028&&s!==(s=T[10]||T[2])&&u(o,"aria-label",s),T[6]&&!T[22]?z?z.p(T,D):(z=Gt(T),z.c(),z.m(t,d)):z&&(z.d(1),z=null),T[6]&&T[22]?k?k.p(T,D):(k=qt(T),k.c(),k.m(t,f)):k&&(k.d(1),k=null),T[15]?A?A.p(T,D):(A=Vt(T),A.c(),A.m(t,null)):A&&(A.d(1),A=null),D[0]&524418&&b!==(b=`
52
52
  goa-input
53
53
  ${T[19]?"goa-input--disabled":""}
54
54
  variant--${T[7]}
55
55
  type--${T[1]}
56
56
  `)&&u(t,"class",b),D[0]&1572994&&B(t,"error",T[20]),T[18]?R?R.p(T,D):(R=Wt(T),R.c(),R.m(e,null)):R&&(R.d(1),R=null),D[0]&512&&p!==(p=`
57
57
  --width: ${T[9]};
58
- `)&&u(e,"style",p)},i:w,o:w,d(T){T&&E(e),x&&x.d(),M&&M.d(),i[31](null),z&&z.d(),k&&k.d(),A&&A.d(),R&&R.d(),_=!1,$(L)}}}function vn(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function pn(i,e,t){let r,n,o,a,l,s,{type:c="text"}=e,{name:d=""}=e,{value:f=""}=e,{autocapitalize:b="off"}=e,{placeholder:y=""}=e,{leadingicon:p=null}=e,{trailingicon:_=null}=e,{variant:L="goa"}=e,{disabled:x="false"}=e,{handletrailingiconclick:M="false"}=e,{focused:z="false"}=e,{readonly:k="false"}=e,{error:A="false"}=e,{testid:R=""}=e,{width:T="30ch"}=e,{arialabel:D=null}=e,{min:X=null}=e,{max:Y=null}=e,{step:K=null}=e,{prefix:J=""}=e,{suffix:Ge=""}=e,{showcounter:_e="false"}=e,{maxcharcount:le=0}=e,oe;function me(S){S.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:d,value:S.target.value}})),t(0,f=S.target.value)}function qe(S){ee[S?"unshift":"push"](()=>{oe=S,t(17,oe)})}return i.$$set=S=>{"type"in S&&t(1,c=S.type),"name"in S&&t(2,d=S.name),"value"in S&&t(0,f=S.value),"autocapitalize"in S&&t(3,b=S.autocapitalize),"placeholder"in S&&t(4,y=S.placeholder),"leadingicon"in S&&t(5,p=S.leadingicon),"trailingicon"in S&&t(6,_=S.trailingicon),"variant"in S&&t(7,L=S.variant),"disabled"in S&&t(24,x=S.disabled),"handletrailingiconclick"in S&&t(25,M=S.handletrailingiconclick),"focused"in S&&t(26,z=S.focused),"readonly"in S&&t(27,k=S.readonly),"error"in S&&t(28,A=S.error),"testid"in S&&t(8,R=S.testid),"width"in S&&t(9,T=S.width),"arialabel"in S&&t(10,D=S.arialabel),"min"in S&&t(11,X=S.min),"max"in S&&t(12,Y=S.max),"step"in S&&t(13,K=S.step),"prefix"in S&&t(14,J=S.prefix),"suffix"in S&&t(15,Ge=S.suffix),"showcounter"in S&&t(29,_e=S.showcounter),"maxcharcount"in S&&t(16,le=S.maxcharcount)},i.$$.update=()=>{i.$$.dirty[0]&33554432&&t(22,r=G(M)),i.$$.dirty[0]&67108864&&t(30,n=G(z)),i.$$.dirty[0]&134217728&&t(21,o=G(k)),i.$$.dirty[0]&268435456&&t(20,a=G(A)),i.$$.dirty[0]&16777216&&t(19,l=G(x)),i.$$.dirty[0]&536870912&&t(18,s=G(_e)),i.$$.dirty[0]&1073872896&&n&&oe&&setTimeout(()=>oe.focus(),1),i.$$.dirty[0]&131074&&oe&&c==="search"&&oe.addEventListener("search",S=>{me(S)})},[f,c,d,b,y,p,_,L,R,T,D,X,Y,K,J,Ge,le,oe,s,l,a,o,r,me,x,M,z,k,A,_e,n,qe]}class wn extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box}.container{position:relative;width:100%}@media(min-width: 640px){.container{width:var(--width)}}.goa-input,.goa-input *{box-sizing:border-box}.goa-input{box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:var(--input-border-radius);background:white;display:inline-flex;align-items:stretch;vertical-align:middle;min-width:100%}.goa-input:hover{border-color:var(--goa-color-interactive--hover)}.goa-input:active,.goa-input:focus,.goa-input:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-input.type--range{border:none}.goa-input.type--range:active,.goa-input.type--range:focus,.goa-input.type--range:focus-within{box-shadow:none}.goa-input-leading-icon{margin-left:0.5rem}.goa-input-trailing-icon{margin-right:0.5rem}input{display:inline-block;color:var(--goa-color-text);font-size:var(--input-font-size);padding:var(--input-padding);line-height:calc(40px - calc(var(--input-padding) * 2));background-color:transparent;width:0;flex:1 1 auto}input[type=text],input[type=date],input[type="datetime-local"],input[type=number]{font-family:var(--font-family)}input[readonly]{cursor:pointer}.goa-input-leading-icon+input{padding-left:0.5rem}input,input:focus,input:hover,input:active{outline:none;border:none}.goa-input--disabled,.goa-input--disabled:hover,.goa-input--disabled:active,.goa-input--disabled:focus{background-color:var(--color-gray-100);border-color:var(--color-gray-200);cursor:default;box-shadow:none}.goa-input--disabled input,.goa-input--disabled input:hover,.goa-input--disabled input:active,.goa-input--disabled input:focus{color:var(--goa-color-text-secondary)}.goa-input--disabled input:hover{cursor:default !important}.prefix,.suffix{background-color:var(--color-gray-100);padding:0 0.75rem;display:flex;align-items:center}.prefix{border-top-left-radius:var(--input-border-radius);border-bottom-left-radius:var(--input-border-radius);border-right:1px solid var(--color-gray-600)}.suffix{border-top-right-radius:var(--input-border-radius);border-bottom-right-radius:var(--input-border-radius);border-left:1px solid var(--color-gray-600)}input.input--goa{display:block;border:none;flex:1 1 auto}.variant--bare{border:none}.variant--bare:focus,.variant--bare:active,.variant--bare:focus-within{box-shadow:none}.counter{position:absolute;padding-top:0.25rem;right:0;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button{position:relative;right:var(--search-icon-offset);cursor:pointer;-webkit-appearance:none;height:1.2rem;width:1.2rem;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23333" d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"/></svg>')
58
+ `)&&u(e,"style",p)},i:w,o:w,d(T){T&&E(e),x&&x.d(),M&&M.d(),i[31](null),z&&z.d(),k&&k.d(),A&&A.d(),R&&R.d(),y=!1,$(L)}}}function vn(){this.dispatchEvent(new CustomEvent("_trailingIconClick",{composed:!0}))}function pn(i,e,t){let r,n,o,a,l,s,{type:c="text"}=e,{name:d=""}=e,{value:f=""}=e,{autocapitalize:b="off"}=e,{placeholder:_=""}=e,{leadingicon:p=null}=e,{trailingicon:y=null}=e,{variant:L="goa"}=e,{disabled:x="false"}=e,{handletrailingiconclick:M="false"}=e,{focused:z="false"}=e,{readonly:k="false"}=e,{error:A="false"}=e,{testid:R=""}=e,{width:T="30ch"}=e,{arialabel:D=null}=e,{min:X=null}=e,{max:Y=null}=e,{step:K=null}=e,{prefix:J=""}=e,{suffix:Ge=""}=e,{showcounter:ye="false"}=e,{maxcharcount:le=0}=e,oe;function me(S){S.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{name:d,value:S.target.value}})),t(0,f=S.target.value)}function qe(S){ee[S?"unshift":"push"](()=>{oe=S,t(17,oe)})}return i.$$set=S=>{"type"in S&&t(1,c=S.type),"name"in S&&t(2,d=S.name),"value"in S&&t(0,f=S.value),"autocapitalize"in S&&t(3,b=S.autocapitalize),"placeholder"in S&&t(4,_=S.placeholder),"leadingicon"in S&&t(5,p=S.leadingicon),"trailingicon"in S&&t(6,y=S.trailingicon),"variant"in S&&t(7,L=S.variant),"disabled"in S&&t(24,x=S.disabled),"handletrailingiconclick"in S&&t(25,M=S.handletrailingiconclick),"focused"in S&&t(26,z=S.focused),"readonly"in S&&t(27,k=S.readonly),"error"in S&&t(28,A=S.error),"testid"in S&&t(8,R=S.testid),"width"in S&&t(9,T=S.width),"arialabel"in S&&t(10,D=S.arialabel),"min"in S&&t(11,X=S.min),"max"in S&&t(12,Y=S.max),"step"in S&&t(13,K=S.step),"prefix"in S&&t(14,J=S.prefix),"suffix"in S&&t(15,Ge=S.suffix),"showcounter"in S&&t(29,ye=S.showcounter),"maxcharcount"in S&&t(16,le=S.maxcharcount)},i.$$.update=()=>{i.$$.dirty[0]&33554432&&t(22,r=G(M)),i.$$.dirty[0]&67108864&&t(30,n=G(z)),i.$$.dirty[0]&134217728&&t(21,o=G(k)),i.$$.dirty[0]&268435456&&t(20,a=G(A)),i.$$.dirty[0]&16777216&&t(19,l=G(x)),i.$$.dirty[0]&536870912&&t(18,s=G(ye)),i.$$.dirty[0]&1073872896&&n&&oe&&setTimeout(()=>oe.focus(),1),i.$$.dirty[0]&131074&&oe&&c==="search"&&oe.addEventListener("search",S=>{me(S)})},[f,c,d,b,_,p,y,L,R,T,D,X,Y,K,J,Ge,le,oe,s,l,a,o,r,me,x,M,z,k,A,ye,n,qe]}class wn extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box}.container{position:relative;width:100%}@media(min-width: 640px){.container{width:var(--width)}}.goa-input,.goa-input *{box-sizing:border-box}.goa-input{box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:var(--input-border-radius);background:white;display:inline-flex;align-items:stretch;vertical-align:middle;min-width:100%}.goa-input:hover{border-color:var(--goa-color-interactive--hover)}.goa-input:active,.goa-input:focus,.goa-input:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-input.type--range{border:none}.goa-input.type--range:active,.goa-input.type--range:focus,.goa-input.type--range:focus-within{box-shadow:none}.goa-input-leading-icon{margin-left:0.5rem}.goa-input-trailing-icon{margin-right:0.5rem}input{display:inline-block;color:var(--goa-color-text);font-size:var(--input-font-size);padding:var(--input-padding);line-height:calc(40px - calc(var(--input-padding) * 2));background-color:transparent;width:0;flex:1 1 auto}input[type=text],input[type=date],input[type="datetime-local"],input[type=number]{font-family:var(--font-family)}input[readonly]{cursor:pointer}.goa-input-leading-icon+input{padding-left:0.5rem}input,input:focus,input:hover,input:active{outline:none;border:none}.goa-input--disabled,.goa-input--disabled:hover,.goa-input--disabled:active,.goa-input--disabled:focus{background-color:var(--color-gray-100);border-color:var(--color-gray-200);cursor:default;box-shadow:none}.goa-input--disabled input,.goa-input--disabled input:hover,.goa-input--disabled input:active,.goa-input--disabled input:focus{color:var(--goa-color-text-secondary)}.goa-input--disabled input:hover{cursor:default !important}.prefix,.suffix{background-color:var(--color-gray-100);padding:0 0.75rem;display:flex;align-items:center}.prefix{border-top-left-radius:var(--input-border-radius);border-bottom-left-radius:var(--input-border-radius);border-right:1px solid var(--color-gray-600)}.suffix{border-top-right-radius:var(--input-border-radius);border-bottom-right-radius:var(--input-border-radius);border-left:1px solid var(--color-gray-600)}input.input--goa{display:block;border:none;flex:1 1 auto}.variant--bare{border:none}.variant--bare:focus,.variant--bare:active,.variant--bare:focus-within{box-shadow:none}.counter{position:absolute;padding-top:0.25rem;right:0;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)}.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button{position:relative;right:var(--search-icon-offset);cursor:pointer;-webkit-appearance:none;height:1.2rem;width:1.2rem;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23333" d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"/></svg>')
59
59
  center center no-repeat}</style>`,P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},pn,bn,N,{type:1,name:2,value:0,autocapitalize:3,placeholder:4,leadingicon:5,trailingicon:6,variant:7,disabled:24,handletrailingiconclick:25,focused:26,readonly:27,error:28,testid:8,width:9,arialabel:10,min:11,max:12,step:13,prefix:14,suffix:15,showcounter:29,maxcharcount:16},null,[-1,-1]),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","name","value","autocapitalize","placeholder","leadingicon","trailingicon","variant","disabled","handletrailingiconclick","focused","readonly","error","testid","width","arialabel","min","max","step","prefix","suffix","showcounter","maxcharcount"]}get type(){return this.$$.ctx[1]}set type(e){this.$$set({type:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get autocapitalize(){return this.$$.ctx[3]}set autocapitalize(e){this.$$set({autocapitalize:e}),h()}get placeholder(){return this.$$.ctx[4]}set placeholder(e){this.$$set({placeholder:e}),h()}get leadingicon(){return this.$$.ctx[5]}set leadingicon(e){this.$$set({leadingicon:e}),h()}get trailingicon(){return this.$$.ctx[6]}set trailingicon(e){this.$$set({trailingicon:e}),h()}get variant(){return this.$$.ctx[7]}set variant(e){this.$$set({variant:e}),h()}get disabled(){return this.$$.ctx[24]}set disabled(e){this.$$set({disabled:e}),h()}get handletrailingiconclick(){return this.$$.ctx[25]}set handletrailingiconclick(e){this.$$set({handletrailingiconclick:e}),h()}get focused(){return this.$$.ctx[26]}set focused(e){this.$$set({focused:e}),h()}get readonly(){return this.$$.ctx[27]}set readonly(e){this.$$set({readonly:e}),h()}get error(){return this.$$.ctx[28]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[8]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[9]}set width(e){this.$$set({width:e}),h()}get arialabel(){return this.$$.ctx[10]}set arialabel(e){this.$$set({arialabel:e}),h()}get min(){return this.$$.ctx[11]}set min(e){this.$$set({min:e}),h()}get max(){return this.$$.ctx[12]}set max(e){this.$$set({max:e}),h()}get step(){return this.$$.ctx[13]}set step(e){this.$$set({step:e}),h()}get prefix(){return this.$$.ctx[14]}set prefix(e){this.$$set({prefix:e}),h()}get suffix(){return this.$$.ctx[15]}set suffix(e){this.$$set({suffix:e}),h()}get showcounter(){return this.$$.ctx[29]}set showcounter(e){this.$$set({showcounter:e}),h()}get maxcharcount(){return this.$$.ctx[16]}set maxcharcount(e){this.$$set({maxcharcount:e}),h()}}customElements.define("goa-input",wn);function Ut(i){let e,t,r;return{c(){e=m("div"),e.innerHTML='<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 26C20.1797 26 26 20.1797 26 13C26 5.8203 20.1797 0 13 0C5.8203 0 0 5.8203 0 13C0 20.1797 5.8203 26 13 26Z" fill="#00AAD2"></path><path d="M16.9764 17.7174C15.942 17.3358 14.9325 16.8896 13.9539 16.3817C14.8446 16.0551 15.7131 15.6708 16.5539 15.2312C16.6398 16.0688 16.7831 16.8995 16.9829 17.7174H16.9764ZM22.5339 7.42143C22.1016 7.36618 22.3259 7.56931 22.2089 8.13968C21.863 9.3075 21.2806 10.3917 20.4978 11.3248C19.7151 12.258 18.7487 13.0201 17.6589 13.5639C17.3972 10.9368 17.5336 8.28529 18.0635 5.69893C18.5104 4.07393 19.0385 4.3778 18.3885 4.03818C17.6946 3.68068 16.9471 4.15356 16.3443 5.35931C14.4174 9.81946 11.7695 13.932 8.50689 17.5322C7.96404 18.2422 7.16875 18.7161 6.28592 18.8556C5.40309 18.9951 4.50044 18.7894 3.76514 18.2813C3.43039 17.9986 3.30689 18.4357 3.72289 18.8826C4.47366 19.5882 5.47211 19.9699 6.50216 19.945C7.53222 19.92 8.51102 19.4905 9.22677 18.7493C12.0405 15.3939 14.429 11.7038 16.3378 7.76268C16.1901 9.91268 16.2243 12.0713 16.4401 14.2156C15.4158 14.7181 14.3475 15.1256 13.2486 15.4327C12.6181 15.5952 12.2281 15.8552 12.2168 16.1461C12.2054 16.4711 12.6279 16.7359 13.2405 17.0252C14.3293 17.5419 17.5191 19.0499 18.3056 19.5066C18.9784 19.8966 19.3066 19.5927 19.5065 19.1702C19.7665 18.6209 19.0531 18.3041 18.369 18.0961C18.0632 16.9353 17.8555 15.7508 17.7483 14.5552C19.4404 13.5939 20.8636 12.2226 21.8871 10.5674C22.1817 9.98406 22.4001 9.36529 22.5371 8.7263C22.6338 8.3321 22.6602 7.92393 22.6151 7.52056C22.6151 7.52056 22.6038 7.43281 22.5371 7.42468" fill="white"></path></svg>',t=H(),r=m("div"),r.innerHTML='An official site of the <a href="https://www.alberta.ca/index.aspx">Alberta Government</a>',u(e,"class","service-type service-type--live"),u(r,"data-testid","type"),u(r,"class","site-text")},m(n,o){v(n,e,o),v(n,t,o),v(n,r,o)},d(n){n&&E(e),n&&E(t),n&&E(r)}}}function Zt(i){let e,t=Yt(i[0])+"",r,n,o,a,l,s,c,d=i[2]&&Kt(i);return{c(){e=m("div"),r=F(t),o=H(),a=m("div"),l=F("This is a new "),s=m("a"),s.textContent="Alberta Government",c=F(` service
60
- `),d&&d.c(),u(e,"data-testid","type"),u(e,"class",n="service-type service-type--"+i[0].toLowerCase()),u(s,"href","https://www.alberta.ca/index.aspx"),u(a,"data-testid","site-text"),u(a,"class","site-text")},m(f,b){v(f,e,b),g(e,r),v(f,o,b),v(f,a,b),g(a,l),g(a,s),g(a,c),d&&d.m(a,null)},p(f,b){b&1&&t!==(t=Yt(f[0])+"")&&q(r,t),b&1&&n!==(n="service-type service-type--"+f[0].toLowerCase())&&u(e,"class",n),f[2]?d?d.p(f,b):(d=Kt(f),d.c(),d.m(a,null)):d&&(d.d(1),d=null)},d(f){f&&E(e),f&&E(o),f&&E(a),d&&d.d()}}}function Kt(i){let e,t,r,n;return{c(){e=m("span"),t=F("\u2014 help us improve it by giving "),r=m("a"),n=F("feedback"),u(r,"href",i[2]),u(e,"data-testid","feedback")},m(o,a){v(o,e,a),g(e,t),g(e,r),g(r,n)},p(o,a){a&4&&u(r,"href",o[2])},d(o){o&&E(e)}}}function Xt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"data-testid","version"),u(e,"class","version")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&E(e)}}}function yn(i){let e,t,r=["alpha","beta"].includes(i[0]),n,o,a,l=i[0]==="live"&&Ut(),s=r&&Zt(i),c=i[1]&&Xt(i);return{c(){e=m("header"),l&&l.c(),t=H(),s&&s.c(),n=H(),o=m("div"),a=H(),c&&c.c(),this.c=w,u(o,"class","spacer"),u(e,"class","goa-official-site-header")},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),s&&s.m(e,null),g(e,n),g(e,o),g(e,a),c&&c.m(e,null)},p(d,[f]){d[0]==="live"?l||(l=Ut(),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&1&&(r=["alpha","beta"].includes(d[0])),r?s?s.p(d,f):(s=Zt(d),s.c(),s.m(e,n)):s&&(s.d(1),s=null),d[1]?c?c.p(d,f):(c=Xt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null)},i:w,o:w,d(d){d&&E(e),l&&l.d(),s&&s.d(),c&&c.d()}}}function Yt(i){return!i||i&&i.length===0?"":i[0].toUpperCase()+i.slice(1)}function _n(i,e,t){let{type:r}=e,{version:n}=e,{feedbackurl:o}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"version"in a&&t(1,n=a.version),"feedbackurl"in a&&t(2,o=a.feedbackurl)},[r,n,o]}class kn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}a{color:var(--goa-color-interactive);cursor:pointer}a:hover{color:var(--goa-color-interactive--hover)}a:focus{outline-width:thin;outline-style:solid;outline-color:var(--goa-color-interactive--hover);outline-offset:0px}.goa-official-site-header{display:flex;font-size:var(--fs-sm);background-color:var(--color-gray-100);align-items:center;justify-content:space-between;padding:0.5rem 1.5rem}@media(max-width: 640px){.goa-official-site-header{padding:0.5rem 1rem;align-items:start}}.spacer{flex:1 1 auto}.version{color:var(--goa-color-text-secondary);padding-left:1rem;line-height:1.25rem}.service-type{font-weight:bold;padding:0.25rem;display:flex;margin-right:1rem;line-height:initial}.service-type--alpha{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.service-type--beta{background-color:var(--goa-color-brand);color:var(--goa-color-text-light)}.service-type--live{padding:0}.site-text{color:var(--goa-color-text);line-height:1.25rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},_n,yn,N,{type:0,version:1,feedbackurl:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","version","feedbackurl"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get version(){return this.$$.ctx[1]}set version(e){this.$$set({version:e}),h()}get feedbackurl(){return this.$$.ctx[2]}set feedbackurl(e){this.$$set({feedbackurl:e}),h()}}customElements.define("goa-microsite-header",kn);function Jt(i){let e,t,r,n,o,a,l,s,c,d,f,b,y,p,_,L,x,M,z,k,A,R=i[0]&&Qt(i),T=i[3]&&$t(i);function D(K,J){return K[6]?En:xn}let X=D(i),Y=X(i);return{c(){e=m("goa-focus-trap"),t=m("div"),r=m("div"),n=H(),o=m("div"),R&&R.c(),a=H(),T&&T.c(),l=H(),s=m("div"),Y.c(),c=H(),d=m("slot"),f=H(),b=m("div"),b.innerHTML='<slot name="actions"></slot>',u(r,"data-testid","modal-overlay"),u(r,"class","modal-overlay"),u(s,"data-testid","modal-content"),u(s,"class","modal-content"),u(b,"data-testid","modal-actions"),u(b,"class","modal-actions"),u(o,"class","modal-pane"),u(t,"data-testid","modal"),u(t,"class","modal"),u(t,"style",_=""+((i[2]&&`--width: ${i[2]};`)+";")),C(e,"active",i[1])},m(K,J){v(K,e,J),g(e,t),g(t,r),g(t,n),g(t,o),R&&R.m(o,null),g(o,a),T&&T.m(o,null),g(o,l),g(o,s),Y.m(s,null),g(s,c),g(s,d),g(o,f),g(o,b),z=!0,k||(A=[U(r,"click",i[7]),$e(L=vt.call(null,t,{enable:i[5]}))],k=!0)},p(K,J){i=K,i[0]?R?R.p(i,J):(R=Qt(i),R.c(),R.m(o,a)):R&&(R.d(1),R=null),i[3]?T?T.p(i,J):(T=$t(i),T.c(),T.m(o,l)):T&&(T.d(1),T=null),X!==(X=D(i))&&(Y.d(1),Y=X(i),Y&&(Y.c(),Y.m(s,c))),(!z||J&4&&_!==(_=""+((i[2]&&`--width: ${i[2]};`)+";")))&&u(t,"style",_),L&&ue(L.update)&&J&32&&L.update.call(null,{enable:i[5]}),(!z||J&2)&&C(e,"active",i[1])},i(K){z||(re(()=>{p&&p.end(1),y=st(o,bt,{duration:i[4],y:200}),y.start()}),re(()=>{M&&M.end(1),x=st(t,we,{duration:i[4]}),x.start()}),z=!0)},o(K){y&&y.invalidate(),p=ct(o,bt,{delay:i[4],duration:i[4],y:-100}),x&&x.invalidate(),M=ct(t,we,{delay:i[4],duration:i[4]}),z=!1},d(K){K&&E(e),R&&R.d(),T&&T.d(),Y.d(),K&&p&&p.end(),K&&M&&M.end(),k=!1,$(A)}}}function Qt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"data-testid","modal-title"),u(e,"class","modal-title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function $t(i){let e,t,r,n;return{c(){e=m("div"),t=m("goa-icon-button"),C(t,"data-testid","modal-close-button"),C(t,"type","close"),u(e,"class","modal-close")},m(o,a){v(o,e,a),g(e,t),r||(n=U(t,"click",i[7]),r=!0)},p:w,d(o){o&&E(e),r=!1,n()}}}function xn(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",V(e,"margin","1.75rem")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function En(i){let e;return{c(){e=m("goa-scrollable"),e.innerHTML="<slot></slot>",C(e,"direction","vertical"),C(e,"height","50"),C(e,"hpadding","1.75")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Cn(i){let e,t,r=i[5]&&Jt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=Jt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function zn(i,e,t){let r,n,o,a,{heading:l}=e,{closable:s}=e,{scrollable:c}=e,{open:d}=e,{transition:f="none"}=e,{width:b}=e;function y(p){!r||(p.target.dispatchEvent(new CustomEvent("_close",{composed:!0})),p.stopPropagation())}return i.$$set=p=>{"heading"in p&&t(0,l=p.heading),"closable"in p&&t(8,s=p.closable),"scrollable"in p&&t(9,c=p.scrollable),"open"in p&&t(1,d=p.open),"transition"in p&&t(10,f=p.transition),"width"in p&&t(2,b=p.width)},i.$$.update=()=>{i.$$.dirty&256&&t(3,r=G(s)),i.$$.dirty&512&&t(6,n=G(c)),i.$$.dirty&2&&t(5,o=G(d)),i.$$.dirty&1024&&t(4,a=f==="none"?0:f==="slow"?400:200)},[l,d,b,r,a,o,n,y,s,c,f]}class Mn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.modal{font-family:var(--font-family);position:fixed;inset:0;display:flex;align-items:center;justify-content:center;height:100vh;width:100%;z-index:100}.modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.2);z-index:1000}.modal-pane{position:relative;background-color:#fff;z-index:1001;width:90%;margin:1rem;box-shadow:var(--shadow-2);border-radius:4px;max-height:90%}@media(min-width: 640px){.modal-pane{width:var(--width, 60ch);max-height:80%}}.modal-actions{text-align:right;padding:0 1.75rem;margin:1.75rem 0;flex:1 1 auto}.modal-close{position:absolute;top:1rem;right:1rem}.modal-title{font-size:var(--fs-xl);padding-bottom:1rem;padding:0 1.75rem;margin:1.75rem 0;margin-right:40px;flex:0 0 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},zn,Cn,N,{heading:0,closable:8,scrollable:9,open:1,transition:10,width:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","closable","scrollable","open","transition","width"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get closable(){return this.$$.ctx[8]}set closable(e){this.$$set({closable:e}),h()}get scrollable(){return this.$$.ctx[9]}set scrollable(e){this.$$set({scrollable:e}),h()}get open(){return this.$$.ctx[1]}set open(e){this.$$set({open:e}),h()}get transition(){return this.$$.ctx[10]}set transition(e){this.$$set({transition:e}),h()}get width(){return this.$$.ctx[2]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-modal",Mn);function ei(i){let e,t,r,n,o,a,l,s,c,d,f,b,y;return{c(){e=m("div"),t=m("div"),r=m("goa-icon"),n=H(),o=m("div"),o.innerHTML="<slot></slot>",a=H(),l=m("div"),s=m("goa-icon-button"),C(r,"type",i[2]),C(r,"inverted",""),u(t,"class","icon"),u(o,"class","content"),C(s,"type","close"),C(s,"inverted",""),u(l,"class","close"),u(e,"class",c="notification "+i[0])},m(p,_){v(p,e,_),g(e,t),g(t,r),g(e,n),g(e,o),g(e,a),g(e,l),g(l,s),f=!0,b||(y=U(s,"click",i[3]),b=!0)},p(p,_){(!f||_&4)&&C(r,"type",p[2]),(!f||_&1&&c!==(c="notification "+p[0]))&&u(e,"class",c)},i(p){f||(re(()=>{d||(d=Pe(e,we,{},!0)),d.run(1)}),f=!0)},o(p){d||(d=Pe(e,we,{},!1)),d.run(0),f=!1},d(p){p&&E(e),p&&d&&d.end(),b=!1,y()}}}function Ln(i){let e,t,r=i[1]&&ei(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[1]?r?(r.p(n,o),o&2&&W(r,1)):(r=ei(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function Tn(i,e,t){let r,{type:n}=e,o=!0;function a(){t(1,o=!1)}return i.$$set=l=>{"type"in l&&t(0,n=l.type)},i.$$.update=()=>{i.$$.dirty&1&&t(2,r=n==="emergency"?"warning":n==="caution"?"alert-circle":n==="information"?"information-circle":"calendar")},[n,o,r,a]}class Rn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{padding:1.5rem;display:flex;align-items:center;gap:1rem;border-radius:3px}.emergency{background-color:var(--goa-color-status-emergency);color:var(--color-white)}.caution{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info);color:var(--color-white)}.event{background-color:var(--goa-color-status-success);color:var(--color-white)}.icon{flex:0 0 auto;align-self:flex-start}.content{flex:1 1 auto}.close{flex:0 0 auto;align-self:flex-start}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Tn,Ln,N,{type:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-notification",Rn);const An=/^[1-9]+[0-9]*(px|em|rem|ch|vh|vw|%)$/;function Hn(i){return An.test(i)}function In(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","page-content"),u(e,"style",r=`--max-width: ${i[0]}`)},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&1&&r!==(r=`--max-width: ${n[0]}`)&&u(e,"style",r)},i:w,o:w,d(n){n&&E(e)}}}function Sn(i,e,t){const r={full:"100%"};let{width:n}=e,{_width:o}=e;function a(l){return!!(["full"].includes(n)||Hn(l))}return Q(()=>{if(!a(n))throw"Invalid PageBlock width";t(0,o=r[n]||n)}),i.$$set=l=>{"width"in l&&t(1,n=l.width),"_width"in l&&t(0,o=l._width)},[o,n]}class Dn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--max-width);margin:0 auto;padding:0 1.75rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Sn,In,N,{width:1,_width:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","_width"]}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get _width(){return this.$$.ctx[0]}set _width(e){this.$$set({_width:e}),h()}}customElements.define("goa-page-block",Dn);const ti="bind";function ii(i,e,t){const r=i.slice();return r[14]=e[t],r}function ri(i,e){let t,r,n,o,a,l,s,c,d=(e[14].label||e[14].value)+"",f,b,y,p,_;function L(){return e[11](e[14])}return{key:i,first:null,c(){t=m("label"),r=m("input"),a=H(),l=m("div"),s=H(),c=m("span"),f=F(d),b=H(),u(r,"type","radio"),u(r,"name",e[1]),r.value=n=e[14].value,r.disabled=e[7],r.checked=o=e[14].value===e[0],u(l,"class","goa-radio-icon"),u(c,"class","goa-radio-label"),u(t,"data-testid",y="radio-option-"+e[14].value),u(t,"class","goa-radio"),B(t,"goa-radio--disabled",e[7]),B(t,"goa-radio--error",e[5]),this.first=t},m(x,M){v(x,t,M),g(t,r),g(t,a),g(t,l),g(t,s),g(t,c),g(c,f),g(t,b),p||(_=U(r,"change",L),p=!0)},p(x,M){e=x,M&2&&u(r,"name",e[1]),M&16&&n!==(n=e[14].value)&&(r.value=n),M&128&&(r.disabled=e[7]),M&17&&o!==(o=e[14].value===e[0])&&(r.checked=o),M&16&&d!==(d=(e[14].label||e[14].value)+"")&&q(f,d),M&16&&y!==(y="radio-option-"+e[14].value)&&u(t,"data-testid",y),M&128&&B(t,"goa-radio--disabled",e[7]),M&32&&B(t,"goa-radio--error",e[5])},d(x){x&&E(t),p=!1,_()}}}function Bn(i){let e,t,r,n=[],o=new Map,a,l=i[4];const s=c=>c[14].value;for(let c=0;c<l.length;c+=1){let d=ii(i,l,c),f=s(d);o.set(f,n[c]=ri(f,d))}return{c(){e=m("div"),t=m("slot"),r=H();for(let c=0;c<n.length;c+=1)n[c].c();this.c=w,u(e,"class",a=`goa-radio-group--${i[2]}`),u(e,"data-testid",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r);for(let f=0;f<n.length;f+=1)n[f].m(e,null);i[12](e)},p(c,[d]){d&435&&(l=c[4],n=zi(n,d,s,1,c,l,o,e,Ci,ri,null,ii)),d&4&&a!==(a=`goa-radio-group--${c[2]}`)&&u(e,"class",a),d&8&&u(e,"data-testid",c[3])},i:w,o:w,d(c){c&&E(e);for(let d=0;d<n.length;d+=1)n[d].d();i[12](null)}}}function Nn(i,e,t){let r,{name:n}=e,{value:o}=e,{orientation:a="vertical"}=e,{disabled:l="false"}=e,{error:s="false"}=e,{testid:c=""}=e,d=[],f,b,y;Q(()=>{const x=10;let M=0;const z=setInterval(async()=>{M++,n&&(b=kt(n),b.subscribe(k=>{switch(k==null?void 0:k.type){case ti:t(4,d=[...d,k])}}),clearInterval(z)),M>x&&(console.error("goa-radio: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(z))},10)});function p(x){x!==o&&(t(0,o=x),y.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:n,value:o}})))}nt(()=>{Et(n)});const _=x=>p(x.value);function L(x){ee[x?"unshift":"push"](()=>{y=x,t(6,y)})}return i.$$set=x=>{"name"in x&&t(1,n=x.name),"value"in x&&t(0,o=x.value),"orientation"in x&&t(2,a=x.orientation),"disabled"in x&&t(9,l=x.disabled),"error"in x&&t(10,s=x.error),"testid"in x&&t(3,c=x.testid)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(l)),i.$$.dirty&1024&&t(5,f=G(s))},[o,n,a,c,d,f,y,r,p,l,s,_,L]}class On extends O{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-radio-group--horizontal{display:flex;flex-direction:row}.goa-radio-group--vertical{display:inline-block}label.goa-radio{--goa-radio-outline-width:3px;--goa-radio-diameter:1.5rem;--goa-radio-border-width:1px;--goa-radio-border-width--checked:7px;display:inline-block;box-sizing:border-box;display:flex;align-items:center;min-height:3rem}.goa-radio:hover{cursor:pointer}.goa-radio *,.goa-radio *:before,.goa-radio *:after{box-sizing:border-box}.goa-radio input[type="radio"]{width:0;height:0;margin:0;opacity:0}input[type="radio"]:hover~.goa-radio-icon{border-color:var(--goa-color-interactive--hover)}input[type="radio"]:focus~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio-label{padding:0.5rem;font-weight:var(--fw-regular)}.goa-radio-icon{display:inline-block;height:var(--goa-radio-diameter);width:var(--goa-radio-diameter);border-radius:50%;background-color:#fff;transition:box-shadow 100ms ease-in-out;flex:0 0 auto}.goa-radio:focus>input:not(:disabled)~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio--disabled{opacity:0.4}.goa-radio--disabled:hover{cursor:default}input[type="radio"]:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}input[type="radio"]:not(:checked)~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}.goa-radio--error input[type="radio"]:checked~.goa-radio-icon{border:7px solid var(--goa-color-status-emergency)}.goa-radio--error input[type="radio"]:not(:checked)~.goa-radio-icon{border:2px solid var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Nn,Bn,N,{name:1,value:0,orientation:2,disabled:9,error:10,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","orientation","disabled","error","testid"]}get name(){return this.$$.ctx[1]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get orientation(){return this.$$.ctx[2]}set orientation(e){this.$$set({orientation:e}),h()}get disabled(){return this.$$.ctx[9]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[10]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-radio-group",On);function jn(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function Pn(i,e,t){let{value:r}=e,{label:n}=e,{name:o}=e,a;return Q(()=>{const l=10;let s=0;const c=setInterval(()=>{if(s++,o){if(a=xt(o),!a)return;a.notify({type:ti,value:r,label:n}),clearInterval(c)}s>l&&(console.error("goa-radio-item: missing the required `name` attribute. It must match the parent's name attribute."),clearInterval(c))},10)}),i.$$set=l=>{"value"in l&&t(0,r=l.value),"label"in l&&t(1,n=l.label),"name"in l&&t(2,o=l.name)},[r,n,o]}class Fn extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Pn,jn,N,{value:0,label:1,name:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["value","label","name"]}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[1]}set label(e){this.$$set({label:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}}customElements.define("goa-radio-item",Fn);function Gn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-scrollable"),u(e,"style",r=`
60
+ `),d&&d.c(),u(e,"data-testid","type"),u(e,"class",n="service-type service-type--"+i[0].toLowerCase()),u(s,"href","https://www.alberta.ca/index.aspx"),u(a,"data-testid","site-text"),u(a,"class","site-text")},m(f,b){v(f,e,b),g(e,r),v(f,o,b),v(f,a,b),g(a,l),g(a,s),g(a,c),d&&d.m(a,null)},p(f,b){b&1&&t!==(t=Yt(f[0])+"")&&q(r,t),b&1&&n!==(n="service-type service-type--"+f[0].toLowerCase())&&u(e,"class",n),f[2]?d?d.p(f,b):(d=Kt(f),d.c(),d.m(a,null)):d&&(d.d(1),d=null)},d(f){f&&E(e),f&&E(o),f&&E(a),d&&d.d()}}}function Kt(i){let e,t,r,n;return{c(){e=m("span"),t=F("\u2014 help us improve it by giving "),r=m("a"),n=F("feedback"),u(r,"href",i[2]),u(e,"data-testid","feedback")},m(o,a){v(o,e,a),g(e,t),g(e,r),g(r,n)},p(o,a){a&4&&u(r,"href",o[2])},d(o){o&&E(e)}}}function Xt(i){let e,t;return{c(){e=m("div"),t=F(i[1]),u(e,"data-testid","version"),u(e,"class","version")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&2&&q(t,r[1])},d(r){r&&E(e)}}}function _n(i){let e,t,r=["alpha","beta"].includes(i[0]),n,o,a,l=i[0]==="live"&&Ut(),s=r&&Zt(i),c=i[1]&&Xt(i);return{c(){e=m("header"),l&&l.c(),t=H(),s&&s.c(),n=H(),o=m("div"),a=H(),c&&c.c(),this.c=w,u(o,"class","spacer"),u(e,"class","goa-official-site-header")},m(d,f){v(d,e,f),l&&l.m(e,null),g(e,t),s&&s.m(e,null),g(e,n),g(e,o),g(e,a),c&&c.m(e,null)},p(d,[f]){d[0]==="live"?l||(l=Ut(),l.c(),l.m(e,t)):l&&(l.d(1),l=null),f&1&&(r=["alpha","beta"].includes(d[0])),r?s?s.p(d,f):(s=Zt(d),s.c(),s.m(e,n)):s&&(s.d(1),s=null),d[1]?c?c.p(d,f):(c=Xt(d),c.c(),c.m(e,null)):c&&(c.d(1),c=null)},i:w,o:w,d(d){d&&E(e),l&&l.d(),s&&s.d(),c&&c.d()}}}function Yt(i){return!i||i&&i.length===0?"":i[0].toUpperCase()+i.slice(1)}function yn(i,e,t){let{type:r}=e,{version:n}=e,{feedbackurl:o}=e;return i.$$set=a=>{"type"in a&&t(0,r=a.type),"version"in a&&t(1,n=a.version),"feedbackurl"in a&&t(2,o=a.feedbackurl)},[r,n,o]}class kn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}a{color:var(--goa-color-interactive);cursor:pointer}a:hover{color:var(--goa-color-interactive--hover)}a:focus{outline-width:thin;outline-style:solid;outline-color:var(--goa-color-interactive--hover);outline-offset:0px}.goa-official-site-header{display:flex;font-size:var(--fs-sm);background-color:var(--color-gray-100);align-items:center;justify-content:space-between;padding:0.5rem 1.5rem}@media(max-width: 640px){.goa-official-site-header{padding:0.5rem 1rem;align-items:start}}.spacer{flex:1 1 auto}.version{color:var(--goa-color-text-secondary);padding-left:1rem;line-height:1.25rem}.service-type{font-weight:bold;padding:0.25rem;display:flex;margin-right:1rem;line-height:initial}.service-type--alpha{background-color:var(--goa-color-status-warning);color:var(--goa-color-text)}.service-type--beta{background-color:var(--goa-color-brand);color:var(--goa-color-text-light)}.service-type--live{padding:0}.site-text{color:var(--goa-color-text);line-height:1.25rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},yn,_n,N,{type:0,version:1,feedbackurl:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type","version","feedbackurl"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}get version(){return this.$$.ctx[1]}set version(e){this.$$set({version:e}),h()}get feedbackurl(){return this.$$.ctx[2]}set feedbackurl(e){this.$$set({feedbackurl:e}),h()}}customElements.define("goa-microsite-header",kn);function Jt(i){let e,t,r,n,o,a,l,s,c,d,f,b,_,p,y,L,x,M,z,k,A,R=i[0]&&Qt(i),T=i[3]&&$t(i);function D(K,J){return K[6]?En:xn}let X=D(i),Y=X(i);return{c(){e=m("goa-focus-trap"),t=m("div"),r=m("div"),n=H(),o=m("div"),R&&R.c(),a=H(),T&&T.c(),l=H(),s=m("div"),Y.c(),c=H(),d=m("slot"),f=H(),b=m("div"),b.innerHTML='<slot name="actions"></slot>',u(r,"data-testid","modal-overlay"),u(r,"class","modal-overlay"),u(s,"data-testid","modal-content"),u(s,"class","modal-content"),u(b,"data-testid","modal-actions"),u(b,"class","modal-actions"),u(o,"class","modal-pane"),u(t,"data-testid","modal"),u(t,"class","modal"),u(t,"style",y=""+((i[2]&&`--width: ${i[2]};`)+";")),C(e,"active",i[1])},m(K,J){v(K,e,J),g(e,t),g(t,r),g(t,n),g(t,o),R&&R.m(o,null),g(o,a),T&&T.m(o,null),g(o,l),g(o,s),Y.m(s,null),g(s,c),g(s,d),g(o,f),g(o,b),z=!0,k||(A=[U(r,"click",i[7]),$e(L=vt.call(null,t,{enable:i[5]}))],k=!0)},p(K,J){i=K,i[0]?R?R.p(i,J):(R=Qt(i),R.c(),R.m(o,a)):R&&(R.d(1),R=null),i[3]?T?T.p(i,J):(T=$t(i),T.c(),T.m(o,l)):T&&(T.d(1),T=null),X!==(X=D(i))&&(Y.d(1),Y=X(i),Y&&(Y.c(),Y.m(s,c))),(!z||J&4&&y!==(y=""+((i[2]&&`--width: ${i[2]};`)+";")))&&u(t,"style",y),L&&ue(L.update)&&J&32&&L.update.call(null,{enable:i[5]}),(!z||J&2)&&C(e,"active",i[1])},i(K){z||(re(()=>{p&&p.end(1),_=st(o,bt,{duration:i[4],y:200}),_.start()}),re(()=>{M&&M.end(1),x=st(t,we,{duration:i[4]}),x.start()}),z=!0)},o(K){_&&_.invalidate(),p=ct(o,bt,{delay:i[4],duration:i[4],y:-100}),x&&x.invalidate(),M=ct(t,we,{delay:i[4],duration:i[4]}),z=!1},d(K){K&&E(e),R&&R.d(),T&&T.d(),Y.d(),K&&p&&p.end(),K&&M&&M.end(),k=!1,$(A)}}}function Qt(i){let e,t;return{c(){e=m("div"),t=F(i[0]),u(e,"data-testid","modal-title"),u(e,"class","modal-title")},m(r,n){v(r,e,n),g(e,t)},p(r,n){n&1&&q(t,r[0])},d(r){r&&E(e)}}}function $t(i){let e,t,r,n;return{c(){e=m("div"),t=m("goa-icon-button"),C(t,"data-testid","modal-close-button"),C(t,"icon","close"),u(e,"class","modal-close")},m(o,a){v(o,e,a),g(e,t),r||(n=U(t,"click",i[7]),r=!0)},p:w,d(o){o&&E(e),r=!1,n()}}}function xn(i){let e;return{c(){e=m("div"),e.innerHTML="<slot></slot>",V(e,"margin","1.75rem")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function En(i){let e;return{c(){e=m("goa-scrollable"),e.innerHTML="<slot></slot>",C(e,"direction","vertical"),C(e,"height","50"),C(e,"hpadding","1.75")},m(t,r){v(t,e,r)},d(t){t&&E(e)}}}function Cn(i){let e,t,r=i[5]&&Jt(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[5]?r?(r.p(n,o),o&32&&W(r,1)):(r=Jt(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function zn(i,e,t){let r,n,o,a,{heading:l}=e,{closable:s}=e,{scrollable:c}=e,{open:d}=e,{transition:f="none"}=e,{width:b}=e;function _(p){!r||(p.target.dispatchEvent(new CustomEvent("_close",{composed:!0})),p.stopPropagation())}return i.$$set=p=>{"heading"in p&&t(0,l=p.heading),"closable"in p&&t(8,s=p.closable),"scrollable"in p&&t(9,c=p.scrollable),"open"in p&&t(1,d=p.open),"transition"in p&&t(10,f=p.transition),"width"in p&&t(2,b=p.width)},i.$$.update=()=>{i.$$.dirty&256&&t(3,r=G(s)),i.$$.dirty&512&&t(6,n=G(c)),i.$$.dirty&2&&t(5,o=G(d)),i.$$.dirty&1024&&t(4,a=f==="none"?0:f==="slow"?400:200)},[l,d,b,r,a,o,n,_,s,c,f]}class Mn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.modal{font-family:var(--font-family);position:fixed;inset:0;display:flex;align-items:center;justify-content:center;height:100vh;width:100%;z-index:100}.modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.2);z-index:1000}.modal-pane{position:relative;background-color:#fff;z-index:1001;width:90%;margin:1rem;box-shadow:var(--shadow-2);border-radius:4px;max-height:90%}@media(min-width: 640px){.modal-pane{width:var(--width, 60ch);max-height:80%}}.modal-actions{text-align:right;padding:0 1.75rem;margin:1.75rem 0;flex:1 1 auto}.modal-close{position:absolute;top:1rem;right:1rem}.modal-title{font-size:var(--fs-xl);padding-bottom:1rem;padding:0 1.75rem;margin:1.75rem 0;margin-right:40px;flex:0 0 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},zn,Cn,N,{heading:0,closable:8,scrollable:9,open:1,transition:10,width:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["heading","closable","scrollable","open","transition","width"]}get heading(){return this.$$.ctx[0]}set heading(e){this.$$set({heading:e}),h()}get closable(){return this.$$.ctx[8]}set closable(e){this.$$set({closable:e}),h()}get scrollable(){return this.$$.ctx[9]}set scrollable(e){this.$$set({scrollable:e}),h()}get open(){return this.$$.ctx[1]}set open(e){this.$$set({open:e}),h()}get transition(){return this.$$.ctx[10]}set transition(e){this.$$set({transition:e}),h()}get width(){return this.$$.ctx[2]}set width(e){this.$$set({width:e}),h()}}customElements.define("goa-modal",Mn);function ei(i){let e,t,r,n,o,a,l,s,c,d,f,b,_;return{c(){e=m("div"),t=m("div"),r=m("goa-icon"),n=H(),o=m("div"),o.innerHTML="<slot></slot>",a=H(),l=m("div"),s=m("goa-icon-button"),C(r,"type",i[2]),C(r,"inverted",""),u(t,"class","icon"),u(o,"class","content"),C(s,"icon","close"),C(s,"inverted",""),u(l,"class","close"),u(e,"class",c="notification "+i[0])},m(p,y){v(p,e,y),g(e,t),g(t,r),g(e,n),g(e,o),g(e,a),g(e,l),g(l,s),f=!0,b||(_=U(s,"click",i[3]),b=!0)},p(p,y){(!f||y&4)&&C(r,"type",p[2]),(!f||y&1&&c!==(c="notification "+p[0]))&&u(e,"class",c)},i(p){f||(re(()=>{d||(d=Pe(e,we,{},!0)),d.run(1)}),f=!0)},o(p){d||(d=Pe(e,we,{},!1)),d.run(0),f=!1},d(p){p&&E(e),p&&d&&d.end(),b=!1,_()}}}function Ln(i){let e,t,r=i[1]&&ei(i);return{c(){r&&r.c(),e=ie(),this.c=w},m(n,o){r&&r.m(n,o),v(n,e,o),t=!0},p(n,[o]){n[1]?r?(r.p(n,o),o&2&&W(r,1)):(r=ei(n),r.c(),W(r,1),r.m(e.parentNode,e)):r&&(ve(),Z(r,1,1,()=>{r=null}),pe())},i(n){t||(W(r),t=!0)},o(n){Z(r),t=!1},d(n){r&&r.d(n),n&&E(e)}}}function Tn(i,e,t){let r,{type:n}=e,o=!0;function a(){t(1,o=!1)}return i.$$set=l=>{"type"in l&&t(0,n=l.type)},i.$$.update=()=>{i.$$.dirty&1&&t(2,r=n==="emergency"?"warning":n==="caution"?"alert-circle":n==="information"?"information-circle":"calendar")},[n,o,r,a]}class Rn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.notification{padding:1.5rem;display:flex;align-items:center;gap:1rem;border-radius:3px}.emergency{background-color:var(--goa-color-status-emergency);color:var(--color-white)}.caution{background-color:var(--goa-color-status-warning)}.information{background-color:var(--goa-color-status-info);color:var(--color-white)}.event{background-color:var(--goa-color-status-success);color:var(--color-white)}.icon{flex:0 0 auto;align-self:flex-start}.content{flex:1 1 auto}.close{flex:0 0 auto;align-self:flex-start}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Tn,Ln,N,{type:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["type"]}get type(){return this.$$.ctx[0]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-notification",Rn);const An=/^[1-9]+[0-9]*(px|em|rem|ch|vh|vw|%)$/;function Hn(i){return An.test(i)}function In(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","page-content"),u(e,"style",r=`--max-width: ${i[0]}`)},m(n,o){v(n,e,o),g(e,t)},p(n,[o]){o&1&&r!==(r=`--max-width: ${n[0]}`)&&u(e,"style",r)},i:w,o:w,d(n){n&&E(e)}}}function Sn(i,e,t){const r={full:"100%"};let{width:n}=e,{_width:o}=e;function a(l){return!!(["full"].includes(n)||Hn(l))}return Q(()=>{if(!a(n))throw"Invalid PageBlock width";t(0,o=r[n]||n)}),i.$$set=l=>{"width"in l&&t(1,n=l.width),"_width"in l&&t(0,o=l._width)},[o,n]}class Dn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}.page-content{max-width:var(--max-width);margin:0 auto;padding:0 1.75rem}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Sn,In,N,{width:1,_width:0},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","_width"]}get width(){return this.$$.ctx[1]}set width(e){this.$$set({width:e}),h()}get _width(){return this.$$.ctx[0]}set _width(e){this.$$set({_width:e}),h()}}customElements.define("goa-page-block",Dn);const ti="bind";function ii(i,e,t){const r=i.slice();return r[14]=e[t],r}function ri(i,e){let t,r,n,o,a,l,s,c,d=(e[14].label||e[14].value)+"",f,b,_,p,y;function L(){return e[11](e[14])}return{key:i,first:null,c(){t=m("label"),r=m("input"),a=H(),l=m("div"),s=H(),c=m("span"),f=F(d),b=H(),u(r,"type","radio"),u(r,"name",e[1]),r.value=n=e[14].value,r.disabled=e[7],r.checked=o=e[14].value===e[0],u(l,"class","goa-radio-icon"),u(c,"class","goa-radio-label"),u(t,"data-testid",_="radio-option-"+e[14].value),u(t,"class","goa-radio"),B(t,"goa-radio--disabled",e[7]),B(t,"goa-radio--error",e[5]),this.first=t},m(x,M){v(x,t,M),g(t,r),g(t,a),g(t,l),g(t,s),g(t,c),g(c,f),g(t,b),p||(y=U(r,"change",L),p=!0)},p(x,M){e=x,M&2&&u(r,"name",e[1]),M&16&&n!==(n=e[14].value)&&(r.value=n),M&128&&(r.disabled=e[7]),M&17&&o!==(o=e[14].value===e[0])&&(r.checked=o),M&16&&d!==(d=(e[14].label||e[14].value)+"")&&q(f,d),M&16&&_!==(_="radio-option-"+e[14].value)&&u(t,"data-testid",_),M&128&&B(t,"goa-radio--disabled",e[7]),M&32&&B(t,"goa-radio--error",e[5])},d(x){x&&E(t),p=!1,y()}}}function Bn(i){let e,t,r,n=[],o=new Map,a,l=i[4];const s=c=>c[14].value;for(let c=0;c<l.length;c+=1){let d=ii(i,l,c),f=s(d);o.set(f,n[c]=ri(f,d))}return{c(){e=m("div"),t=m("slot"),r=H();for(let c=0;c<n.length;c+=1)n[c].c();this.c=w,u(e,"class",a=`goa-radio-group--${i[2]}`),u(e,"data-testid",i[3])},m(c,d){v(c,e,d),g(e,t),g(e,r);for(let f=0;f<n.length;f+=1)n[f].m(e,null);i[12](e)},p(c,[d]){d&435&&(l=c[4],n=zi(n,d,s,1,c,l,o,e,Ci,ri,null,ii)),d&4&&a!==(a=`goa-radio-group--${c[2]}`)&&u(e,"class",a),d&8&&u(e,"data-testid",c[3])},i:w,o:w,d(c){c&&E(e);for(let d=0;d<n.length;d+=1)n[d].d();i[12](null)}}}function Nn(i,e,t){let r,{name:n}=e,{value:o}=e,{orientation:a="vertical"}=e,{disabled:l="false"}=e,{error:s="false"}=e,{testid:c=""}=e,d=[],f,b,_;Q(()=>{const x=10;let M=0;const z=setInterval(async()=>{M++,n&&(b=kt(n),b.subscribe(k=>{switch(k==null?void 0:k.type){case ti:t(4,d=[...d,k])}}),clearInterval(z)),M>x&&(console.error("goa-radio: missing the required `name` attribute. It must match the children's name attribute."),clearInterval(z))},10)});function p(x){x!==o&&(t(0,o=x),_.dispatchEvent(new CustomEvent("_change",{composed:!0,detail:{name:n,value:o}})))}nt(()=>{Et(n)});const y=x=>p(x.value);function L(x){ee[x?"unshift":"push"](()=>{_=x,t(6,_)})}return i.$$set=x=>{"name"in x&&t(1,n=x.name),"value"in x&&t(0,o=x.value),"orientation"in x&&t(2,a=x.orientation),"disabled"in x&&t(9,l=x.disabled),"error"in x&&t(10,s=x.error),"testid"in x&&t(3,c=x.testid)},i.$$.update=()=>{i.$$.dirty&512&&t(7,r=G(l)),i.$$.dirty&1024&&t(5,f=G(s))},[o,n,a,c,d,f,_,r,p,l,s,y,L]}class On extends O{constructor(e){super();this.shadowRoot.innerHTML='<style>:host{box-sizing:border-box;font-family:var(--font-family)}.goa-radio-group--horizontal{display:flex;flex-direction:row}.goa-radio-group--vertical{display:inline-block}label.goa-radio{--goa-radio-outline-width:3px;--goa-radio-diameter:1.5rem;--goa-radio-border-width:1px;--goa-radio-border-width--checked:7px;display:inline-block;box-sizing:border-box;display:flex;align-items:center;min-height:3rem}.goa-radio:hover{cursor:pointer}.goa-radio *,.goa-radio *:before,.goa-radio *:after{box-sizing:border-box}.goa-radio input[type="radio"]{width:0;height:0;margin:0;opacity:0}input[type="radio"]:hover~.goa-radio-icon{border-color:var(--goa-color-interactive--hover)}input[type="radio"]:focus~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio-label{padding:0.5rem;font-weight:var(--fw-regular)}.goa-radio-icon{display:inline-block;height:var(--goa-radio-diameter);width:var(--goa-radio-diameter);border-radius:50%;background-color:#fff;transition:box-shadow 100ms ease-in-out;flex:0 0 auto}.goa-radio:focus>input:not(:disabled)~.goa-radio-icon{box-shadow:0 0 0 var(--goa-radio-outline-width) var(--goa-color-interactive--focus)}.goa-radio--disabled{opacity:0.4}.goa-radio--disabled:hover{cursor:default}input[type="radio"]:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}input[type="radio"]:not(:checked)~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled~.goa-radio-icon{border:var(--goa-radio-border-width) solid var(--color-gray-600)}input[type="radio"]:disabled:checked~.goa-radio-icon{border:var(--goa-radio-border-width--checked) solid var(--goa-color-interactive--active)}.goa-radio--error input[type="radio"]:checked~.goa-radio-icon{border:7px solid var(--goa-color-status-emergency)}.goa-radio--error input[type="radio"]:not(:checked)~.goa-radio-icon{border:2px solid var(--goa-color-status-emergency)}</style>',P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Nn,Bn,N,{name:1,value:0,orientation:2,disabled:9,error:10,testid:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","orientation","disabled","error","testid"]}get name(){return this.$$.ctx[1]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get orientation(){return this.$$.ctx[2]}set orientation(e){this.$$set({orientation:e}),h()}get disabled(){return this.$$.ctx[9]}set disabled(e){this.$$set({disabled:e}),h()}get error(){return this.$$.ctx[10]}set error(e){this.$$set({error:e}),h()}get testid(){return this.$$.ctx[3]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-radio-group",On);function jn(i){return{c(){this.c=w},m:w,p:w,i:w,o:w,d:w}}function Pn(i,e,t){let{value:r}=e,{label:n}=e,{name:o}=e,a;return Q(()=>{const l=10;let s=0;const c=setInterval(()=>{if(s++,o){if(a=xt(o),!a)return;a.notify({type:ti,value:r,label:n}),clearInterval(c)}s>l&&(console.error("goa-radio-item: missing the required `name` attribute. It must match the parent's name attribute."),clearInterval(c))},10)}),i.$$set=l=>{"value"in l&&t(0,r=l.value),"label"in l&&t(1,n=l.label),"name"in l&&t(2,o=l.name)},[r,n,o]}class Fn extends O{constructor(e){super();P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Pn,jn,N,{value:0,label:1,name:2},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["value","label","name"]}get value(){return this.$$.ctx[0]}set value(e){this.$$set({value:e}),h()}get label(){return this.$$.ctx[1]}set label(e){this.$$set({label:e}),h()}get name(){return this.$$.ctx[2]}set name(e){this.$$set({name:e}),h()}}customElements.define("goa-radio-item",Fn);function Gn(i){let e,t,r;return{c(){e=m("div"),t=m("slot"),this.c=w,u(e,"class","goa-scrollable"),u(e,"style",r=`
61
61
  --max-height: ${i[3]};
62
62
  overflow-y: ${i[0]==="vertical"?"auto":"hidden"};
63
63
  overflow-x: ${i[0]==="horizontal"?"auto":"hidden"};
@@ -69,16 +69,16 @@
69
69
  overflow-x: ${n[0]==="horizontal"?"auto":"hidden"};
70
70
  margin: ${n[2]}rem 0;
71
71
  padding: 0 ${n[1]}rem;
72
- `)&&u(e,"style",r)},i:w,o:w,d(n){n&&E(e)}}}function qn(i,e,t){let{direction:r="vertical"}=e,{hpadding:n=0}=e,{vpadding:o=0}=e,{height:a=0}=e;return i.$$set=l=>{"direction"in l&&t(0,r=l.direction),"hpadding"in l&&t(1,n=l.hpadding),"vpadding"in l&&t(2,o=l.vpadding),"height"in l&&t(3,a=l.height)},[r,n,o,a]}class Vn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.goa-scrollable{scroll-behavior:smooth;max-height:calc(100vh * var(--max-height, 100) / 100)}.goa-scrollable::-webkit-scrollbar{width:6px}.goa-scrollable::-webkit-scrollbar-track{background:#f1f1f1}.goa-scrollable::-webkit-scrollbar-thumb{background:#888}.goa-scrollable::-webkit-scrollbar-thumb:hover{background:#555}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},qn,Gn,N,{direction:0,hpadding:1,vpadding:2,height:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["direction","hpadding","vpadding","height"]}get direction(){return this.$$.ctx[0]}set direction(e){this.$$set({direction:e}),h()}get hpadding(){return this.$$.ctx[1]}set hpadding(e){this.$$set({hpadding:e}),h()}get vpadding(){return this.$$.ctx[2]}set vpadding(e){this.$$set({vpadding:e}),h()}get height(){return this.$$.ctx[3]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-scrollable",Vn);function ni(i,e,t){const r=i.slice();return r[4]=e[t],r}function Wn(i){let e,t;return{c(){e=m("div"),u(e,"class",t="skeleton "+i[3]+` ${i[3]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&10&&t!==(t="skeleton "+r[3]+` ${r[3]}-${r[1]}`)&&u(e,"class",t)},i:w,o:w,d(r){r&&E(e)}}}function Un(i){let e,t,r=Array(i[2]),n=[];for(let a=0;a<r.length;a+=1)n[a]=oi(ni(i,r,a));const o=a=>Z(n[a],1,1,()=>{n[a]=null});return{c(){for(let a=0;a<n.length;a+=1)n[a].c();e=ie()},m(a,l){for(let s=0;s<n.length;s+=1)n[s].m(a,l);v(a,e,l),t=!0},p(a,l){if(l&6){r=Array(a[2]);let s;for(s=0;s<r.length;s+=1){const c=ni(a,r,s);n[s]?(n[s].p(c,l),W(n[s],1)):(n[s]=oi(c),n[s].c(),W(n[s],1),n[s].m(e.parentNode,e))}for(ve(),s=r.length;s<n.length;s+=1)o(s);pe()}},i(a){if(!t){for(let l=0;l<r.length;l+=1)W(n[l]);t=!0}},o(a){n=n.filter(Boolean);for(let l=0;l<n.length;l+=1)Z(n[l]);t=!1},d(a){Ae(n,a),a&&E(e)}}}function Zn(i){let e,t,r,n,o,a,l,s,c,d;return r=new de({props:{type:"avatar",size:i[1]}}),a=new de({props:{type:"title",size:i[1]}}),s=new de({props:{type:"text-small",size:i[1]}}),{c(){e=m("div"),t=m("div"),ge(r.$$.fragment),n=H(),o=m("div"),ge(a.$$.fragment),l=H(),ge(s.$$.fragment),u(t,"class","profile-avatar"),u(o,"class","profile-name"),u(e,"class",c="profile profile-"+i[1])},m(f,b){v(f,e,b),g(e,t),se(r,t,null),g(e,n),g(e,o),se(a,o,null),g(o,l),se(s,o,null),d=!0},p(f,b){const y={};b&2&&(y.size=f[1]),r.$set(y);const p={};b&2&&(p.size=f[1]),a.$set(p);const _={};b&2&&(_.size=f[1]),s.$set(_),(!d||b&2&&c!==(c="profile profile-"+f[1]))&&u(e,"class",c)},i(f){d||(W(r.$$.fragment,f),W(a.$$.fragment,f),W(s.$$.fragment,f),d=!0)},o(f){Z(r.$$.fragment,f),Z(a.$$.fragment,f),Z(s.$$.fragment,f),d=!1},d(f){f&&E(e),ce(r),ce(a),ce(s)}}}function Kn(i){let e,t,r,n,o,a,l,s,c;return t=new de({props:{type:"image",size:i[1]}}),o=new de({props:{type:"header",size:i[1]}}),l=new de({props:{type:"lines",size:i[1],count:3}}),{c(){e=m("div"),ge(t.$$.fragment),r=H(),n=m("div"),ge(o.$$.fragment),a=H(),ge(l.$$.fragment),u(n,"class","card-content"),u(e,"class",s="card card-"+i[1]),V(e,"--width",i[0]+"px")},m(d,f){v(d,e,f),se(t,e,null),g(e,r),g(e,n),se(o,n,null),g(n,a),se(l,n,null),c=!0},p(d,f){const b={};f&2&&(b.size=d[1]),t.$set(b);const y={};f&2&&(y.size=d[1]),o.$set(y);const p={};f&2&&(p.size=d[1]),l.$set(p),(!c||f&2&&s!==(s="card card-"+d[1]))&&u(e,"class",s),(!c||f&1)&&V(e,"--width",d[0]+"px")},i(d){c||(W(t.$$.fragment,d),W(o.$$.fragment,d),W(l.$$.fragment,d),c=!0)},o(d){Z(t.$$.fragment,d),Z(o.$$.fragment,d),Z(l.$$.fragment,d),c=!1},d(d){d&&E(e),ce(t),ce(o),ce(l)}}}function oi(i){let e,t;return e=new de({props:{type:"text",size:i[1],count:i[2]}}),{c(){ge(e.$$.fragment)},m(r,n){se(e,r,n),t=!0},p(r,n){const o={};n&2&&(o.size=r[1]),n&4&&(o.count=r[2]),e.$set(o)},i(r){t||(W(e.$$.fragment,r),t=!0)},o(r){Z(e.$$.fragment,r),t=!1},d(r){ce(e,r)}}}function Xn(i){let e,t,r,n;const o=[Kn,Zn,Un,Wn],a=[];function l(s,c){return s[3]==="card"?0:s[3]==="profile"?1:s[3]==="lines"?2:3}return e=l(i),t=a[e]=o[e](i),{c(){t.c(),r=ie(),this.c=w},m(s,c){a[e].m(s,c),v(s,r,c),n=!0},p(s,[c]){let d=e;e=l(s),e===d?a[e].p(s,c):(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe(),t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r))},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){a[e].d(s),s&&E(r)}}}function Yn(i,e,t){let{width:r=320}=e,{size:n=1}=e,{linecount:o=3}=e,{type:a}=e;return i.$$set=l=>{"width"in l&&t(0,r=l.width),"size"in l&&t(1,n=l.size),"linecount"in l&&t(2,o=l.linecount),"type"in l&&t(3,a=l.type)},[r,n,o,a]}class de extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 320px){.card{width:var(--width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Yn,Xn,N,{width:0,size:1,linecount:2,type:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["width","size","linecount","type"]}get width(){return this.$$.ctx[0]}set width(e){this.$$set({width:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get linecount(){return this.$$.ctx[2]}set linecount(e){this.$$set({linecount:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-skeleton",de);function ai(i){return Object.prototype.toString.call(i)==="[object Date]"}function Ye(i,e){if(i===e||i!==i)return()=>i;const t=typeof i;if(t!==typeof e||Array.isArray(i)!==Array.isArray(e))throw new Error("Cannot interpolate values of different type");if(Array.isArray(i)){const r=e.map((n,o)=>Ye(i[o],n));return n=>r.map(o=>o(n))}if(t==="object"){if(!i||!e)throw new Error("Object cannot be null");if(ai(i)&&ai(e)){i=i.getTime(),e=e.getTime();const o=e-i;return a=>new Date(i+a*o)}const r=Object.keys(e),n={};return r.forEach(o=>{n[o]=Ye(i[o],e[o])}),o=>{const a={};return r.forEach(l=>{a[l]=n[l](o)}),a}}if(t==="number"){const r=e-i;return n=>i+n*r}throw new Error(`Cannot interpolate ${t} values`)}function Jn(i,e={}){const t=_t(i);let r,n=i;function o(a,l){if(i==null)return t.set(i=a),Promise.resolve();n=a;let s=r,c=!1,{delay:d=0,duration:f=400,easing:b=ke,interpolate:y=Ye}=Je(Je({},e),l);if(f===0)return s&&(s.abort(),s=null),t.set(i=n),Promise.resolve();const p=Te()+d;let _;return r=Re(L=>{if(L<p)return!0;c||(_=y(i,a),typeof f=="function"&&(f=f(i,a)),c=!0),s&&(s.abort(),s=null);const x=L-p;return x>f?(t.set(i=a),!1):(t.set(i=_(b(x/f))),!0)}),r.promise}return{set:o,update:(a,l)=>o(a(n,i),l),subscribe:t.subscribe}}function li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=fe("svg"),t=fe("circle"),o=fe("path"),u(t,"cx",i[3]),u(t,"cy",i[3]),u(t,"stroke",r=i[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)"),u(t,"stroke-width",i[4]),u(t,"r",n=i[3]-i[4]/2),u(o,"d",a=i[9](i[7])),u(o,"stroke-width",i[4]),u(o,"stroke",l=i[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)"),u(o,"stroke-linecap","round"),u(e,"class",s=`spinner-${i[2]}`),u(e,"fill","none"),u(e,"viewBox",c="0 0 "+i[5]+" "+i[5]),u(e,"width",i[5]),u(e,"height",i[5]),u(e,"data-testid",i[1]),u(e,"xmlns","http://www.w3.org/2000/svg")},m(d,f){v(d,e,f),g(e,t),g(e,o)},p(d,f){f&8&&u(t,"cx",d[3]),f&8&&u(t,"cy",d[3]),f&1&&r!==(r=d[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)")&&u(t,"stroke",r),f&16&&u(t,"stroke-width",d[4]),f&24&&n!==(n=d[3]-d[4]/2)&&u(t,"r",n),f&128&&a!==(a=d[9](d[7]))&&u(o,"d",a),f&16&&u(o,"stroke-width",d[4]),f&1&&l!==(l=d[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)")&&u(o,"stroke",l),f&4&&s!==(s=`spinner-${d[2]}`)&&u(e,"class",s),f&32&&c!==(c="0 0 "+d[5]+" "+d[5])&&u(e,"viewBox",c),f&32&&u(e,"width",d[5]),f&32&&u(e,"height",d[5]),f&2&&u(e,"data-testid",d[1])},d(d){d&&E(e)}}}function Qn(i){let e,t=i[6]&&li(i);return{c(){t&&t.c(),e=ie(),this.c=w},m(r,n){t&&t.m(r,n),v(r,e,n)},p(r,[n]){r[6]?t?t.p(r,n):(t=li(r),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},i:w,o:w,d(r){t&&t.d(r),r&&E(e)}}}function $n(i,e,t){let r,n,o,a,l,s,{size:c}=e,{invert:d=!1}=e,{progress:f=-1}=e,{testid:b=""}=e,y="infinite";const p=Jn(0,{duration:500,easing:pr});bi(i,p,x=>t(7,s=x));function _(x){const M=o+a*Math.cos(x),z=o+a*Math.sin(x);return M+" "+z}function L(x){switch(y){case"progress":{const M=_(-Math.PI/2),z=_(-Math.PI/2+2*Math.PI*(x/100)),k=x%100<50?0:1;return`M ${M} A ${a} ${a} 0 ${k} 1 ${z}`}case"infinite":{const M=_(Math.PI*1.5),z=_(0);return`M ${M} A ${a} ${a} 0 1 0 ${z}`}}}return i.$$set=x=>{"size"in x&&t(10,c=x.size),"invert"in x&&t(0,d=x.invert),"progress"in x&&t(11,f=x.progress),"testid"in x&&t(1,b=x.testid)},i.$$.update=()=>{if(i.$$.dirty&2048){const x=parseFloat(f+"");x>=0&&(p.set(x||1),t(2,y="progress"))}i.$$.dirty&1024&&t(5,r=c&&{small:16,medium:32,large:64,xlarge:100}[c]),i.$$.dirty&1024&&t(4,n=c&&{small:2,medium:4,large:7,xlarge:9}[c]),i.$$.dirty&32&&t(3,o=r/2),i.$$.dirty&24&&t(12,a=o-n/2),i.$$.dirty&6148&&t(6,l=y==="infinite"?a:a&&f)},[d,b,y,o,n,r,l,s,p,L,c,f,a]}class eo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes rotate{100%{transform:rotate(360deg)}}.spinner-infinite{animation:rotate 2s linear infinite}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},$n,Qn,N,{size:10,invert:0,progress:11,testid:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["size","invert","progress","testid"]}get size(){return this.$$.ctx[10]}set size(e){this.$$set({size:e}),h()}get invert(){return this.$$.ctx[0]}set invert(e){this.$$set({invert:e}),h()}get progress(){return this.$$.ctx[11]}set progress(e){this.$$set({progress:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-spinner",eo);function si(i){let e;function t(o,a){if(o[7]>0)return io;if(o[1].length>0)return to}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&E(e)}}}function to(i){let e,t=i[1].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o&2&&t!==(t=n[1].length+"")&&q(r,t)},d(n){n&&E(e)}}}function io(i){let e,t=i[1].length+"",r,n=`/${i[7]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[1].length>i[7])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l&2&&t!==(t=a[1].length+"")&&q(r,t),l&128&&n!==(n=`/${a[7]}`)&&q(o,n),l&130&&B(e,"counter-error",a[1].length>a[7])},d(a){a&&E(e)}}}function ro(i){let e,t,r,n,o,a,l,s=i[9]&&si(i);return{c(){e=m("div"),t=m("textarea"),n=H(),s&&s.c(),this.c=w,u(t,"name",i[0]),u(t,"placeholder",i[2]),t.value=i[1],u(t,"rows",i[3]),u(t,"aria-label",r=i[6]||i[0]),u(t,"class","goa-textarea"),t.disabled=i[8],t.readOnly=i[10],u(t,"data-testid",i[4]),B(t,"error",i[11]),u(e,"class","container"),u(e,"style",o=`
72
+ `)&&u(e,"style",r)},i:w,o:w,d(n){n&&E(e)}}}function qn(i,e,t){let{direction:r="vertical"}=e,{hpadding:n=0}=e,{vpadding:o=0}=e,{height:a=0}=e;return i.$$set=l=>{"direction"in l&&t(0,r=l.direction),"hpadding"in l&&t(1,n=l.hpadding),"vpadding"in l&&t(2,o=l.vpadding),"height"in l&&t(3,a=l.height)},[r,n,o,a]}class Vn extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.goa-scrollable{scroll-behavior:smooth;max-height:calc(100vh * var(--max-height, 100) / 100)}.goa-scrollable::-webkit-scrollbar{width:6px}.goa-scrollable::-webkit-scrollbar-track{background:#f1f1f1}.goa-scrollable::-webkit-scrollbar-thumb{background:#888}.goa-scrollable::-webkit-scrollbar-thumb:hover{background:#555}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},qn,Gn,N,{direction:0,hpadding:1,vpadding:2,height:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["direction","hpadding","vpadding","height"]}get direction(){return this.$$.ctx[0]}set direction(e){this.$$set({direction:e}),h()}get hpadding(){return this.$$.ctx[1]}set hpadding(e){this.$$set({hpadding:e}),h()}get vpadding(){return this.$$.ctx[2]}set vpadding(e){this.$$set({vpadding:e}),h()}get height(){return this.$$.ctx[3]}set height(e){this.$$set({height:e}),h()}}customElements.define("goa-scrollable",Vn);function ni(i,e,t){const r=i.slice();return r[4]=e[t],r}function Wn(i){let e,t;return{c(){e=m("div"),u(e,"class",t="skeleton "+i[3]+` ${i[3]}-${i[1]}`)},m(r,n){v(r,e,n)},p(r,n){n&10&&t!==(t="skeleton "+r[3]+` ${r[3]}-${r[1]}`)&&u(e,"class",t)},i:w,o:w,d(r){r&&E(e)}}}function Un(i){let e,t,r=Array(i[2]),n=[];for(let a=0;a<r.length;a+=1)n[a]=oi(ni(i,r,a));const o=a=>Z(n[a],1,1,()=>{n[a]=null});return{c(){for(let a=0;a<n.length;a+=1)n[a].c();e=ie()},m(a,l){for(let s=0;s<n.length;s+=1)n[s].m(a,l);v(a,e,l),t=!0},p(a,l){if(l&6){r=Array(a[2]);let s;for(s=0;s<r.length;s+=1){const c=ni(a,r,s);n[s]?(n[s].p(c,l),W(n[s],1)):(n[s]=oi(c),n[s].c(),W(n[s],1),n[s].m(e.parentNode,e))}for(ve(),s=r.length;s<n.length;s+=1)o(s);pe()}},i(a){if(!t){for(let l=0;l<r.length;l+=1)W(n[l]);t=!0}},o(a){n=n.filter(Boolean);for(let l=0;l<n.length;l+=1)Z(n[l]);t=!1},d(a){Ae(n,a),a&&E(e)}}}function Zn(i){let e,t,r,n,o,a,l,s,c,d;return r=new de({props:{type:"avatar",size:i[1]}}),a=new de({props:{type:"title",size:i[1]}}),s=new de({props:{type:"text-small",size:i[1]}}),{c(){e=m("div"),t=m("div"),ge(r.$$.fragment),n=H(),o=m("div"),ge(a.$$.fragment),l=H(),ge(s.$$.fragment),u(t,"class","profile-avatar"),u(o,"class","profile-name"),u(e,"class",c="profile profile-"+i[1])},m(f,b){v(f,e,b),g(e,t),se(r,t,null),g(e,n),g(e,o),se(a,o,null),g(o,l),se(s,o,null),d=!0},p(f,b){const _={};b&2&&(_.size=f[1]),r.$set(_);const p={};b&2&&(p.size=f[1]),a.$set(p);const y={};b&2&&(y.size=f[1]),s.$set(y),(!d||b&2&&c!==(c="profile profile-"+f[1]))&&u(e,"class",c)},i(f){d||(W(r.$$.fragment,f),W(a.$$.fragment,f),W(s.$$.fragment,f),d=!0)},o(f){Z(r.$$.fragment,f),Z(a.$$.fragment,f),Z(s.$$.fragment,f),d=!1},d(f){f&&E(e),ce(r),ce(a),ce(s)}}}function Kn(i){let e,t,r,n,o,a,l,s,c;return t=new de({props:{type:"image",size:i[1]}}),o=new de({props:{type:"header",size:i[1]}}),l=new de({props:{type:"lines",size:i[1],count:3}}),{c(){e=m("div"),ge(t.$$.fragment),r=H(),n=m("div"),ge(o.$$.fragment),a=H(),ge(l.$$.fragment),u(n,"class","card-content"),u(e,"class",s="card card-"+i[1]),V(e,"--max-width",i[0])},m(d,f){v(d,e,f),se(t,e,null),g(e,r),g(e,n),se(o,n,null),g(n,a),se(l,n,null),c=!0},p(d,f){const b={};f&2&&(b.size=d[1]),t.$set(b);const _={};f&2&&(_.size=d[1]),o.$set(_);const p={};f&2&&(p.size=d[1]),l.$set(p),(!c||f&2&&s!==(s="card card-"+d[1]))&&u(e,"class",s),(!c||f&1)&&V(e,"--max-width",d[0])},i(d){c||(W(t.$$.fragment,d),W(o.$$.fragment,d),W(l.$$.fragment,d),c=!0)},o(d){Z(t.$$.fragment,d),Z(o.$$.fragment,d),Z(l.$$.fragment,d),c=!1},d(d){d&&E(e),ce(t),ce(o),ce(l)}}}function oi(i){let e,t;return e=new de({props:{type:"text",size:i[1],count:i[2]}}),{c(){ge(e.$$.fragment)},m(r,n){se(e,r,n),t=!0},p(r,n){const o={};n&2&&(o.size=r[1]),n&4&&(o.count=r[2]),e.$set(o)},i(r){t||(W(e.$$.fragment,r),t=!0)},o(r){Z(e.$$.fragment,r),t=!1},d(r){ce(e,r)}}}function Xn(i){let e,t,r,n;const o=[Kn,Zn,Un,Wn],a=[];function l(s,c){return s[3]==="card"?0:s[3]==="profile"?1:s[3]==="lines"?2:3}return e=l(i),t=a[e]=o[e](i),{c(){t.c(),r=ie(),this.c=w},m(s,c){a[e].m(s,c),v(s,r,c),n=!0},p(s,[c]){let d=e;e=l(s),e===d?a[e].p(s,c):(ve(),Z(a[d],1,1,()=>{a[d]=null}),pe(),t=a[e],t?t.p(s,c):(t=a[e]=o[e](s),t.c()),W(t,1),t.m(r.parentNode,r))},i(s){n||(W(t),n=!0)},o(s){Z(t),n=!1},d(s){a[e].d(s),s&&E(r)}}}function Yn(i,e,t){let{maxwidth:r}=e,{size:n=1}=e,{linecount:o=3}=e,{type:a}=e;return i.$$set=l=>{"maxwidth"in l&&t(0,r=l.maxwidth),"size"in l&&t(1,n=l.size),"linecount"in l&&t(2,o=l.linecount),"type"in l&&t(3,a=l.type)},[r,n,o,a]}class de extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes pulse{0%{opacity:0.5}50%{opacity:1}100%{opacity:0.5}}.skeleton{background-color:var(--color-gray-100);animation:pulse 2s infinite ease-in-out;overflow:hidden;margin:10px 0}.image,.image-1{background-color:var(--color-gray-100);flex:1 1 100px;height:100px;margin:0}.image-2{height:140px}.image-3{height:200px}.image-4{height:300px}.text,.text-1,.text-2,.text-3,.text-4{width:100%;height:.75rem;border-radius:0.25rem;margin:6px 0}.title,.title-1,.title-2{width:100%;height:.75rem;border-radius:0.25rem}.title-3{height:.8rem}.title-4{height:1rem}.text-small,.text-small-1{width:30%;height:6px;border-radius:2px}.text-small-2{width:40%;height:8px;border-radius:2px}.text-small-3{width:50%;height:10px;border-radius:3px}.text-small-4{width:70%;height:12px;border-radius:4px}.paragraph{width:100%;height:70px;border-radius:4px}.header,.header-1{width:50%;height:18px;margin:12px 0;border-radius:0.25rem}.header-2{width:60%;height:20px;margin:14px 0;border-radius:0.25rem}.header-3{width:70%;height:22px;margin:16px 0;border-radius:0.25rem}.header-4{width:80%;height:24px;margin:18px 0;border-radius:0.3rem}.avatar{display:inline-block}.avatar,.avatar-1{width:40px;height:40px;border-radius:50%}.avatar-2{width:60px;height:60px;border-radius:50%}.avatar-3{width:80px;height:80px;border-radius:50%}.avatar-4{width:120px;height:120px;border-radius:50%}.thumbnail{display:inline-block}.thumbnail,.thumbnail-1{width:40px;height:40px;border-radius:4px}.thumbnail-2{width:60px;height:60px;border-radius:4px}.thumbnail-3{width:80px;height:80px;border-radius:4px}.thumbnail-4{width:120px;height:120px;border-radius:4px}.card{display:inline-block}.card,.card-1,.card-2,.card-3,.card-4{border:1px solid var(--color-gray-100);border-radius:4px}.card{width:100%}@media(min-width: 480px){.card{max-width:var(--max-width)}}.card-content{flex:1 1 auto;padding:1rem}.profile{display:flex;flex-direction:row;align-items:center}.profile-1{max-width:280px;gap:1rem}.profile-2{max-width:360px;gap:1rem}.profile-3{max-width:480px;gap:1rem}.profile-4{max-width:560px;gap:1rem}.profile .profile-avatar{flex-shrink:0}.profile .profile-name{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},Yn,Xn,N,{maxwidth:0,size:1,linecount:2,type:3},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["maxwidth","size","linecount","type"]}get maxwidth(){return this.$$.ctx[0]}set maxwidth(e){this.$$set({maxwidth:e}),h()}get size(){return this.$$.ctx[1]}set size(e){this.$$set({size:e}),h()}get linecount(){return this.$$.ctx[2]}set linecount(e){this.$$set({linecount:e}),h()}get type(){return this.$$.ctx[3]}set type(e){this.$$set({type:e}),h()}}customElements.define("goa-skeleton",de);function ai(i){return Object.prototype.toString.call(i)==="[object Date]"}function Ye(i,e){if(i===e||i!==i)return()=>i;const t=typeof i;if(t!==typeof e||Array.isArray(i)!==Array.isArray(e))throw new Error("Cannot interpolate values of different type");if(Array.isArray(i)){const r=e.map((n,o)=>Ye(i[o],n));return n=>r.map(o=>o(n))}if(t==="object"){if(!i||!e)throw new Error("Object cannot be null");if(ai(i)&&ai(e)){i=i.getTime(),e=e.getTime();const o=e-i;return a=>new Date(i+a*o)}const r=Object.keys(e),n={};return r.forEach(o=>{n[o]=Ye(i[o],e[o])}),o=>{const a={};return r.forEach(l=>{a[l]=n[l](o)}),a}}if(t==="number"){const r=e-i;return n=>i+n*r}throw new Error(`Cannot interpolate ${t} values`)}function Jn(i,e={}){const t=yt(i);let r,n=i;function o(a,l){if(i==null)return t.set(i=a),Promise.resolve();n=a;let s=r,c=!1,{delay:d=0,duration:f=400,easing:b=ke,interpolate:_=Ye}=Je(Je({},e),l);if(f===0)return s&&(s.abort(),s=null),t.set(i=n),Promise.resolve();const p=Te()+d;let y;return r=Re(L=>{if(L<p)return!0;c||(y=_(i,a),typeof f=="function"&&(f=f(i,a)),c=!0),s&&(s.abort(),s=null);const x=L-p;return x>f?(t.set(i=a),!1):(t.set(i=y(b(x/f))),!0)}),r.promise}return{set:o,update:(a,l)=>o(a(n,i),l),subscribe:t.subscribe}}function li(i){let e,t,r,n,o,a,l,s,c;return{c(){e=fe("svg"),t=fe("circle"),o=fe("path"),u(t,"cx",i[3]),u(t,"cy",i[3]),u(t,"stroke",r=i[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)"),u(t,"stroke-width",i[4]),u(t,"r",n=i[3]-i[4]/2),u(o,"d",a=i[9](i[7])),u(o,"stroke-width",i[4]),u(o,"stroke",l=i[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)"),u(o,"stroke-linecap","round"),u(e,"class",s=`spinner-${i[2]}`),u(e,"fill","none"),u(e,"viewBox",c="0 0 "+i[5]+" "+i[5]),u(e,"width",i[5]),u(e,"height",i[5]),u(e,"data-testid",i[1]),u(e,"xmlns","http://www.w3.org/2000/svg")},m(d,f){v(d,e,f),g(e,t),g(e,o)},p(d,f){f&8&&u(t,"cx",d[3]),f&8&&u(t,"cy",d[3]),f&1&&r!==(r=d[0]?"var(--goa-color-primary-dark)":"var(--goa-color-brand-light)")&&u(t,"stroke",r),f&16&&u(t,"stroke-width",d[4]),f&24&&n!==(n=d[3]-d[4]/2)&&u(t,"r",n),f&128&&a!==(a=d[9](d[7]))&&u(o,"d",a),f&16&&u(o,"stroke-width",d[4]),f&1&&l!==(l=d[0]?"var(--goa-color-brand-light)":"var(--goa-color-primary)")&&u(o,"stroke",l),f&4&&s!==(s=`spinner-${d[2]}`)&&u(e,"class",s),f&32&&c!==(c="0 0 "+d[5]+" "+d[5])&&u(e,"viewBox",c),f&32&&u(e,"width",d[5]),f&32&&u(e,"height",d[5]),f&2&&u(e,"data-testid",d[1])},d(d){d&&E(e)}}}function Qn(i){let e,t=i[6]&&li(i);return{c(){t&&t.c(),e=ie(),this.c=w},m(r,n){t&&t.m(r,n),v(r,e,n)},p(r,[n]){r[6]?t?t.p(r,n):(t=li(r),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},i:w,o:w,d(r){t&&t.d(r),r&&E(e)}}}function $n(i,e,t){let r,n,o,a,l,s,{size:c}=e,{invert:d=!1}=e,{progress:f=-1}=e,{testid:b=""}=e,_="infinite";const p=Jn(0,{duration:500,easing:pr});bi(i,p,x=>t(7,s=x));function y(x){const M=o+a*Math.cos(x),z=o+a*Math.sin(x);return M+" "+z}function L(x){switch(_){case"progress":{const M=y(-Math.PI/2),z=y(-Math.PI/2+2*Math.PI*(x/100)),k=x%100<50?0:1;return`M ${M} A ${a} ${a} 0 ${k} 1 ${z}`}case"infinite":{const M=y(Math.PI*1.5),z=y(0);return`M ${M} A ${a} ${a} 0 1 0 ${z}`}}}return i.$$set=x=>{"size"in x&&t(10,c=x.size),"invert"in x&&t(0,d=x.invert),"progress"in x&&t(11,f=x.progress),"testid"in x&&t(1,b=x.testid)},i.$$.update=()=>{if(i.$$.dirty&2048){const x=parseFloat(f+"");x>=0&&(p.set(x||1),t(2,_="progress"))}i.$$.dirty&1024&&t(5,r=c&&{small:16,medium:32,large:64,xlarge:100}[c]),i.$$.dirty&1024&&t(4,n=c&&{small:2,medium:4,large:7,xlarge:9}[c]),i.$$.dirty&32&&t(3,o=r/2),i.$$.dirty&24&&t(12,a=o-n/2),i.$$.dirty&6148&&t(6,l=_==="infinite"?a:a&&f)},[d,b,_,o,n,r,l,s,p,L,c,f,a]}class eo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>:host{box-sizing:border-box;font-family:var(--font-family)}@keyframes rotate{100%{transform:rotate(360deg)}}.spinner-infinite{animation:rotate 2s linear infinite}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},$n,Qn,N,{size:10,invert:0,progress:11,testid:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["size","invert","progress","testid"]}get size(){return this.$$.ctx[10]}set size(e){this.$$set({size:e}),h()}get invert(){return this.$$.ctx[0]}set invert(e){this.$$set({invert:e}),h()}get progress(){return this.$$.ctx[11]}set progress(e){this.$$set({progress:e}),h()}get testid(){return this.$$.ctx[1]}set testid(e){this.$$set({testid:e}),h()}}customElements.define("goa-spinner",eo);function si(i){let e;function t(o,a){if(o[7]>0)return io;if(o[1].length>0)return to}let r=t(i),n=r&&r(i);return{c(){n&&n.c(),e=ie()},m(o,a){n&&n.m(o,a),v(o,e,a)},p(o,a){r===(r=t(o))&&n?n.p(o,a):(n&&n.d(1),n=r&&r(o),n&&(n.c(),n.m(e.parentNode,e)))},d(o){n&&n.d(o),o&&E(e)}}}function to(i){let e,t=i[1].length+"",r;return{c(){e=m("div"),r=F(t),u(e,"class","counter")},m(n,o){v(n,e,o),g(e,r)},p(n,o){o&2&&t!==(t=n[1].length+"")&&q(r,t)},d(n){n&&E(e)}}}function io(i){let e,t=i[1].length+"",r,n=`/${i[7]}`,o;return{c(){e=m("div"),r=F(t),o=F(n),u(e,"class","counter"),B(e,"counter-error",i[1].length>i[7])},m(a,l){v(a,e,l),g(e,r),g(e,o)},p(a,l){l&2&&t!==(t=a[1].length+"")&&q(r,t),l&128&&n!==(n=`/${a[7]}`)&&q(o,n),l&130&&B(e,"counter-error",a[1].length>a[7])},d(a){a&&E(e)}}}function ro(i){let e,t,r,n,o,a,l,s=i[9]&&si(i);return{c(){e=m("div"),t=m("textarea"),n=H(),s&&s.c(),this.c=w,u(t,"name",i[0]),u(t,"placeholder",i[2]),t.value=i[1],u(t,"rows",i[3]),u(t,"aria-label",r=i[6]||i[0]),u(t,"class","goa-textarea"),t.disabled=i[8],t.readOnly=i[10],u(t,"data-testid",i[4]),B(t,"error",i[11]),u(e,"class","container"),u(e,"style",o=`
73
73
  --width: ${i[5]};
74
74
  `)},m(c,d){v(c,e,d),g(e,t),g(e,n),s&&s.m(e,null),a||(l=U(t,"keyup",i[12]),a=!0)},p(c,[d]){d&1&&u(t,"name",c[0]),d&4&&u(t,"placeholder",c[2]),d&2&&(t.value=c[1]),d&8&&u(t,"rows",c[3]),d&65&&r!==(r=c[6]||c[0])&&u(t,"aria-label",r),d&256&&(t.disabled=c[8]),d&1024&&(t.readOnly=c[10]),d&16&&u(t,"data-testid",c[4]),d&2048&&B(t,"error",c[11]),c[9]?s?s.p(c,d):(s=si(c),s.c(),s.m(e,null)):s&&(s.d(1),s=null),d&32&&o!==(o=`
75
75
  --width: ${c[5]};
76
- `)&&u(e,"style",o)},i:w,o:w,d(c){c&&E(e),s&&s.d(),a=!1,l()}}}function no(i,e,t){let r,n,o,a,{name:l}=e,{value:s=""}=e,{placeholder:c=""}=e,{rows:d=3}=e,{testid:f=""}=e,{width:b="60ch"}=e,{error:y="false"}=e,{readonly:p="false"}=e,{disabled:_="false"}=e,{arialabel:L=""}=e,{showcounter:x="false"}=e,{maxcharcount:M=0}=e;function z(k){const R=k.target.value;n||(k.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{event:k,name:l,value:R}})),k.stopPropagation())}return i.$$set=k=>{"name"in k&&t(0,l=k.name),"value"in k&&t(1,s=k.value),"placeholder"in k&&t(2,c=k.placeholder),"rows"in k&&t(3,d=k.rows),"testid"in k&&t(4,f=k.testid),"width"in k&&t(5,b=k.width),"error"in k&&t(13,y=k.error),"readonly"in k&&t(14,p=k.readonly),"disabled"in k&&t(15,_=k.disabled),"arialabel"in k&&t(6,L=k.arialabel),"showcounter"in k&&t(16,x=k.showcounter),"maxcharcount"in k&&t(7,M=k.maxcharcount)},i.$$.update=()=>{i.$$.dirty&8192&&t(11,r=G(y)),i.$$.dirty&32768&&t(8,n=G(_)),i.$$.dirty&16384&&t(10,o=G(p)),i.$$.dirty&65536&&t(9,a=G(x))},[l,s,c,d,f,b,L,M,n,a,o,r,z,y,p,_,x]}class oo extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.container{position:relative;width:100%}@media(min-width: 640px){.container{max-width:var(--width)}}.goa-textarea{display:block;width:100%;box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:3px;background:var(--color-white);color:var(--color-black, #ccc);padding:var(--textarea-padding-vertical, 0.5rem) var(--textarea-padding-horizontal, 0.5rem);font-size:var(--input-font-size);font-family:var(--font-family);min-width:100%}@media(min-width: 640px){.goa-textarea{min-width:0;width:var(--width)}}.goa-textarea[readonly]{cursor:pointer}.goa-textarea:hover{border-color:var(--goa-color-interactive--hover)}.goa-textarea:active,.goa-textarea:focus,.goa-textarea:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-textarea:disabled{border-color:var(--color-gray-200)}.goa-textarea:disabled:hover{border-color:var(--color-gray-200)}.goa-textarea:disabled:focus,.goa-textarea:disabled:active{box-shadow:none}.counter{position:absolute;right:0;padding-top:0.25rem;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)
76
+ `)&&u(e,"style",o)},i:w,o:w,d(c){c&&E(e),s&&s.d(),a=!1,l()}}}function no(i,e,t){let r,n,o,a,{name:l}=e,{value:s=""}=e,{placeholder:c=""}=e,{rows:d=3}=e,{testid:f=""}=e,{width:b="60ch"}=e,{error:_="false"}=e,{readonly:p="false"}=e,{disabled:y="false"}=e,{arialabel:L=""}=e,{showcounter:x="false"}=e,{maxcharcount:M=0}=e;function z(k){const R=k.target.value;n||(k.target.dispatchEvent(new CustomEvent("_change",{composed:!0,bubbles:!1,cancelable:!0,detail:{event:k,name:l,value:R}})),k.stopPropagation())}return i.$$set=k=>{"name"in k&&t(0,l=k.name),"value"in k&&t(1,s=k.value),"placeholder"in k&&t(2,c=k.placeholder),"rows"in k&&t(3,d=k.rows),"testid"in k&&t(4,f=k.testid),"width"in k&&t(5,b=k.width),"error"in k&&t(13,_=k.error),"readonly"in k&&t(14,p=k.readonly),"disabled"in k&&t(15,y=k.disabled),"arialabel"in k&&t(6,L=k.arialabel),"showcounter"in k&&t(16,x=k.showcounter),"maxcharcount"in k&&t(7,M=k.maxcharcount)},i.$$.update=()=>{i.$$.dirty&8192&&t(11,r=G(_)),i.$$.dirty&32768&&t(8,n=G(y)),i.$$.dirty&16384&&t(10,o=G(p)),i.$$.dirty&65536&&t(9,a=G(x))},[l,s,c,d,f,b,L,M,n,a,o,r,z,_,p,y,x]}class oo extends O{constructor(e){super();this.shadowRoot.innerHTML=`<style>:host{box-sizing:border-box;font-family:var(--font-family)}.container{position:relative;width:100%}@media(min-width: 640px){.container{max-width:var(--width)}}.goa-textarea{display:block;width:100%;box-sizing:border-box;outline:none;transition:box-shadow 0.1s ease-in;border:1px solid var(--color-gray-600);border-radius:3px;background:var(--color-white);color:var(--color-black, #ccc);padding:var(--textarea-padding-vertical, 0.5rem) var(--textarea-padding-horizontal, 0.5rem);font-size:var(--input-font-size);font-family:var(--font-family);min-width:100%}@media(min-width: 640px){.goa-textarea{min-width:0;width:var(--width)}}.goa-textarea[readonly]{cursor:pointer}.goa-textarea:hover{border-color:var(--goa-color-interactive--hover)}.goa-textarea:active,.goa-textarea:focus,.goa-textarea:focus-within{box-shadow:0 0 0 3px var(--goa-color-interactive--focus)}.goa-textarea:disabled{border-color:var(--color-gray-200)}.goa-textarea:disabled:hover{border-color:var(--color-gray-200)}.goa-textarea:disabled:focus,.goa-textarea:disabled:active{box-shadow:none}.counter{position:absolute;right:0;padding-top:0.25rem;font-size:var(--fs-sm)}.counter-error{color:var(--goa-color-interactive--error)
77
77
  }.error:hover,.error:focus,.error{border:2px solid var(--goa-color-interactive--error)}</style>`,P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},no,ro,N,{name:0,value:1,placeholder:2,rows:3,testid:4,width:5,error:13,readonly:14,disabled:15,arialabel:6,showcounter:16,maxcharcount:7},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["name","value","placeholder","rows","testid","width","error","readonly","disabled","arialabel","showcounter","maxcharcount"]}get name(){return this.$$.ctx[0]}set name(e){this.$$set({name:e}),h()}get value(){return this.$$.ctx[1]}set value(e){this.$$set({value:e}),h()}get placeholder(){return this.$$.ctx[2]}set placeholder(e){this.$$set({placeholder:e}),h()}get rows(){return this.$$.ctx[3]}set rows(e){this.$$set({rows:e}),h()}get testid(){return this.$$.ctx[4]}set testid(e){this.$$set({testid:e}),h()}get width(){return this.$$.ctx[5]}set width(e){this.$$set({width:e}),h()}get error(){return this.$$.ctx[13]}set error(e){this.$$set({error:e}),h()}get readonly(){return this.$$.ctx[14]}set readonly(e){this.$$set({readonly:e}),h()}get disabled(){return this.$$.ctx[15]}set disabled(e){this.$$set({disabled:e}),h()}get arialabel(){return this.$$.ctx[6]}set arialabel(e){this.$$set({arialabel:e}),h()}get showcounter(){return this.$$.ctx[16]}set showcounter(e){this.$$set({showcounter:e}),h()}get maxcharcount(){return this.$$.ctx[7]}set maxcharcount(e){this.$$set({maxcharcount:e}),h()}}customElements.define("goa-textarea",oo);function ao(i){let e;return{c(){e=m("div"),e.innerHTML=`<section class="header"><slot name="header"></slot></section>
78
78
 
79
79
  <main><slot></slot></main>
80
80
 
81
- <section class="footer"><slot name="footer"></slot></section>`,this.c=w,u(e,"class","page")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&E(e)}}}class lo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.page{height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},null,ao,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-one-column-layout",lo);function so(i){let e,t,r,n,o,a,l;return{c(){e=m("div"),t=m("header"),t.innerHTML='<slot name="header"></slot>',r=H(),n=m("section"),n.innerHTML=`<nav class="nav"><slot name="nav"></slot></nav>
81
+ <section class="footer"><slot name="footer"></slot></section>`,this.c=w,u(e,"class","page")},m(t,r){v(t,e,r)},p:w,i:w,o:w,d(t){t&&E(e)}}}class lo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>.page{min-height:100vh;display:flex;flex-direction:column}.header,.footer{flex:0 0 auto}main{flex:1 1 auto}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},null,ao,N,{},null),e&&e.target&&v(e.target,this,e.anchor)}}customElements.define("goa-one-column-layout",lo);function so(i){let e,t,r,n,o,a,l;return{c(){e=m("div"),t=m("header"),t.innerHTML='<slot name="header"></slot>',r=H(),n=m("section"),n.innerHTML=`<nav class="nav"><slot name="nav"></slot></nav>
82
82
 
83
83
  <main><slot></slot></main>`,o=H(),a=m("footer"),a.innerHTML='<slot name="footer"></slot>',this.c=w,u(t,"class","header"),u(n,"class","content"),u(a,"class","footer"),u(e,"class","page"),u(e,"style",l=`
84
84
  --max-content-width: ${i[1]||"100%"};
@@ -86,7 +86,7 @@
86
86
  `)},m(s,c){v(s,e,c),g(e,t),g(e,r),g(e,n),g(e,o),g(e,a)},p(s,[c]){c&3&&l!==(l=`
87
87
  --max-content-width: ${s[1]||"100%"};
88
88
  --nav-column-width: ${s[0]||"var(--layout-nav-column-width)"};
89
- `)&&u(e,"style",l)},i:w,o:w,d(s){s&&E(e)}}}function co(i,e,t){let{navcolumnwidth:r=""}=e,{maxcontentwidth:n=""}=e;return i.$$set=o=>{"navcolumnwidth"in o&&t(0,r=o.navcolumnwidth),"maxcontentwidth"in o&&t(1,n=o.maxcontentwidth)},[r,n]}class uo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.page{height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},co,so,N,{navcolumnwidth:0,maxcontentwidth:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["navcolumnwidth","maxcontentwidth"]}get navcolumnwidth(){return this.$$.ctx[0]}set navcolumnwidth(e){this.$$set({navcolumnwidth:e}),h()}get maxcontentwidth(){return this.$$.ctx[1]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-two-column-layout",uo);function fo(i){let e;return{c(){e=m("div"),e.innerHTML=`<header class="header"><slot name="header"></slot></header>
89
+ `)&&u(e,"style",l)},i:w,o:w,d(s){s&&E(e)}}}function co(i,e,t){let{navcolumnwidth:r=""}=e,{maxcontentwidth:n=""}=e;return i.$$set=o=>{"navcolumnwidth"in o&&t(0,r=o.navcolumnwidth),"maxcontentwidth"in o&&t(1,n=o.maxcontentwidth)},[r,n]}class uo extends O{constructor(e){super();this.shadowRoot.innerHTML="<style>*{box-sizing:border-box}.page{min-height:100vh;display:flex;flex-direction:column;position:relative}.content{flex:1 1 auto;position:relative;display:flex;flex-direction:column;gap:2rem}.header,.footer{flex:0 0 auto}main{flex:1 1 auto;padding:0 1rem}.nav{padding:0 1rem;transition:transform 200ms ease-in-out;background-color:var(--color-white)}.nav>*{display:block;padding:0.5rem 0}@media(min-width: 640px){.page{gap:2rem}.content{display:flex;flex-direction:row;justify-content:center;width:min(var(--max-content-width), 100vw);margin:0 auto}.nav{padding:0 2rem}main{padding-right:2rem}}@media(min-width: 1300px){main{padding-right:4.5rem}}@media(min-width: 640px){.nav{transform:translateX(0);flex:0 0 var(--nav-column-width)}}</style>",P(this,{target:this.shadowRoot,props:j(this.attributes),customElement:!0},co,so,N,{navcolumnwidth:0,maxcontentwidth:1},null),e&&(e.target&&v(e.target,this,e.anchor),e.props&&(this.$set(e.props),h()))}static get observedAttributes(){return["navcolumnwidth","maxcontentwidth"]}get navcolumnwidth(){return this.$$.ctx[0]}set navcolumnwidth(e){this.$$set({navcolumnwidth:e}),h()}get maxcontentwidth(){return this.$$.ctx[1]}set maxcontentwidth(e){this.$$set({maxcontentwidth:e}),h()}}customElements.define("goa-two-column-layout",uo);function fo(i){let e;return{c(){e=m("div"),e.innerHTML=`<header class="header"><slot name="header"></slot></header>
90
90
 
91
91
  <nav class="nav"><slot name="nav"></slot></nav>
92
92