@aurodesignsystem/auro-formkit 5.9.0 → 5.9.1

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.
Files changed (54) hide show
  1. package/CHANGELOG.md +4 -7
  2. package/README.md +4 -4
  3. package/components/bibtemplate/dist/iconVersion.d.ts +1 -1
  4. package/components/bibtemplate/dist/index.js +2 -2
  5. package/components/bibtemplate/dist/registered.js +2 -2
  6. package/components/checkbox/demo/api.min.js +1 -1
  7. package/components/checkbox/demo/index.min.js +1 -1
  8. package/components/checkbox/dist/index.js +1 -1
  9. package/components/checkbox/dist/registered.js +1 -1
  10. package/components/combobox/demo/api.min.js +72 -76
  11. package/components/combobox/demo/index.min.js +72 -76
  12. package/components/combobox/dist/auro-combobox.d.ts +3 -2
  13. package/components/combobox/dist/index.js +49 -71
  14. package/components/combobox/dist/registered.js +49 -71
  15. package/components/counter/demo/api.min.js +37 -61
  16. package/components/counter/demo/index.min.js +37 -61
  17. package/components/counter/dist/index.js +37 -61
  18. package/components/counter/dist/registered.js +37 -61
  19. package/components/datepicker/demo/api.min.js +54 -148
  20. package/components/datepicker/demo/index.min.js +54 -148
  21. package/components/datepicker/dist/auro-datepicker.d.ts +1 -1
  22. package/components/datepicker/dist/iconVersion.d.ts +1 -1
  23. package/components/datepicker/dist/index.js +54 -148
  24. package/components/datepicker/dist/popoverVersion.d.ts +1 -1
  25. package/components/datepicker/dist/registered.js +54 -148
  26. package/components/dropdown/demo/api.min.js +33 -57
  27. package/components/dropdown/demo/index.min.js +33 -57
  28. package/components/dropdown/dist/iconVersion.d.ts +1 -1
  29. package/components/dropdown/dist/index.js +33 -57
  30. package/components/dropdown/dist/registered.js +33 -57
  31. package/components/form/demo/working.html +1 -1
  32. package/components/input/demo/api.min.js +4 -4
  33. package/components/input/demo/index.min.js +4 -4
  34. package/components/input/dist/base-input.d.ts +1 -1
  35. package/components/input/dist/iconVersion.d.ts +1 -1
  36. package/components/input/dist/index.js +4 -4
  37. package/components/input/dist/registered.js +4 -4
  38. package/components/menu/demo/api.md +2 -7
  39. package/components/menu/demo/api.min.js +23 -5
  40. package/components/menu/demo/index.min.js +23 -5
  41. package/components/menu/dist/auro-menu.context.d.ts +5 -0
  42. package/components/menu/dist/auro-menu.d.ts +5 -0
  43. package/components/menu/dist/auro-menuoption.d.ts +2 -2
  44. package/components/menu/dist/index.js +23 -5
  45. package/components/menu/dist/registered.js +23 -5
  46. package/components/radio/demo/api.min.js +1 -1
  47. package/components/radio/demo/index.min.js +1 -1
  48. package/components/radio/dist/index.js +1 -1
  49. package/components/radio/dist/registered.js +1 -1
  50. package/components/select/demo/api.min.js +59 -65
  51. package/components/select/demo/index.min.js +59 -65
  52. package/components/select/dist/index.js +36 -60
  53. package/components/select/dist/registered.js +36 -60
  54. package/package.json +7 -2
@@ -131,9 +131,8 @@ function getOppositeAxis(axis) {
131
131
  function getAxisLength(axis) {
132
132
  return axis === 'y' ? 'height' : 'width';
133
133
  }
134
- const yAxisSides = /*#__PURE__*/new Set(['top', 'bottom']);
135
134
  function getSideAxis(placement) {
136
- return yAxisSides.has(getSide(placement)) ? 'y' : 'x';
135
+ return ['top', 'bottom'].includes(getSide(placement)) ? 'y' : 'x';
137
136
  }
138
137
  function getAlignmentAxis(placement) {
139
138
  return getOppositeAxis(getSideAxis(placement));
@@ -158,19 +157,19 @@ function getExpandedPlacements(placement) {
158
157
  function getOppositeAlignmentPlacement(placement) {
159
158
  return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);
160
159
  }
161
- const lrPlacement = ['left', 'right'];
162
- const rlPlacement = ['right', 'left'];
163
- const tbPlacement = ['top', 'bottom'];
164
- const btPlacement = ['bottom', 'top'];
165
160
  function getSideList(side, isStart, rtl) {
161
+ const lr = ['left', 'right'];
162
+ const rl = ['right', 'left'];
163
+ const tb = ['top', 'bottom'];
164
+ const bt = ['bottom', 'top'];
166
165
  switch (side) {
167
166
  case 'top':
168
167
  case 'bottom':
169
- if (rtl) return isStart ? rlPlacement : lrPlacement;
170
- return isStart ? lrPlacement : rlPlacement;
168
+ if (rtl) return isStart ? rl : lr;
169
+ return isStart ? lr : rl;
171
170
  case 'left':
172
171
  case 'right':
173
- return isStart ? tbPlacement : btPlacement;
172
+ return isStart ? tb : bt;
174
173
  default:
175
174
  return [];
176
175
  }
@@ -611,22 +610,16 @@ const flip$1 = function (options) {
611
610
  const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;
612
611
  const nextPlacement = placements[nextIndex];
613
612
  if (nextPlacement) {
614
- const ignoreCrossAxisOverflow = checkCrossAxis === 'alignment' ? initialSideAxis !== getSideAxis(nextPlacement) : false;
615
- if (!ignoreCrossAxisOverflow ||
616
- // We leave the current main axis only if every placement on that axis
617
- // overflows the main axis.
618
- overflowsData.every(d => getSideAxis(d.placement) === initialSideAxis ? d.overflows[0] > 0 : true)) {
619
- // Try next placement and re-run the lifecycle.
620
- return {
621
- data: {
622
- index: nextIndex,
623
- overflows: overflowsData
624
- },
625
- reset: {
626
- placement: nextPlacement
627
- }
628
- };
629
- }
613
+ // Try next placement and re-run the lifecycle.
614
+ return {
615
+ data: {
616
+ index: nextIndex,
617
+ overflows: overflowsData
618
+ },
619
+ reset: {
620
+ placement: nextPlacement
621
+ }
622
+ };
630
623
  }
631
624
 
632
625
  // First, find the candidates that fit on the mainAxis side of overflow,
@@ -672,8 +665,6 @@ const flip$1 = function (options) {
672
665
  };
673
666
  };
674
667
 
675
- const originSides = /*#__PURE__*/new Set(['left', 'top']);
676
-
677
668
  // For type backwards-compatibility, the `OffsetOptions` type was also
678
669
  // Derivable.
679
670
 
@@ -687,7 +678,7 @@ async function convertValueToCoords(state, options) {
687
678
  const side = getSide(placement);
688
679
  const alignment = getAlignment(placement);
689
680
  const isVertical = getSideAxis(placement) === 'y';
690
- const mainAxisMulti = originSides.has(side) ? -1 : 1;
681
+ const mainAxisMulti = ['left', 'top'].includes(side) ? -1 : 1;
691
682
  const crossAxisMulti = rtl && isVertical ? -1 : 1;
692
683
  const rawValue = evaluate(options, state);
693
684
 
@@ -880,7 +871,6 @@ function isShadowRoot(value) {
880
871
  }
881
872
  return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;
882
873
  }
883
- const invalidOverflowDisplayValues = /*#__PURE__*/new Set(['inline', 'contents']);
884
874
  function isOverflowElement(element) {
885
875
  const {
886
876
  overflow,
@@ -888,32 +878,27 @@ function isOverflowElement(element) {
888
878
  overflowY,
889
879
  display
890
880
  } = getComputedStyle$1(element);
891
- return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !invalidOverflowDisplayValues.has(display);
881
+ return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !['inline', 'contents'].includes(display);
892
882
  }
893
- const tableElements = /*#__PURE__*/new Set(['table', 'td', 'th']);
894
883
  function isTableElement(element) {
895
- return tableElements.has(getNodeName(element));
884
+ return ['table', 'td', 'th'].includes(getNodeName(element));
896
885
  }
897
- const topLayerSelectors = [':popover-open', ':modal'];
898
886
  function isTopLayer(element) {
899
- return topLayerSelectors.some(selector => {
887
+ return [':popover-open', ':modal'].some(selector => {
900
888
  try {
901
889
  return element.matches(selector);
902
- } catch (_e) {
890
+ } catch (e) {
903
891
  return false;
904
892
  }
905
893
  });
906
894
  }
907
- const transformProperties = ['transform', 'translate', 'scale', 'rotate', 'perspective'];
908
- const willChangeValues = ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'];
909
- const containValues = ['paint', 'layout', 'strict', 'content'];
910
895
  function isContainingBlock(elementOrCss) {
911
896
  const webkit = isWebKit();
912
897
  const css = isElement(elementOrCss) ? getComputedStyle$1(elementOrCss) : elementOrCss;
913
898
 
914
899
  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block
915
900
  // https://drafts.csswg.org/css-transforms-2/#individual-transforms
916
- return transformProperties.some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || willChangeValues.some(value => (css.willChange || '').includes(value)) || containValues.some(value => (css.contain || '').includes(value));
901
+ return ['transform', 'translate', 'scale', 'rotate', 'perspective'].some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'].some(value => (css.willChange || '').includes(value)) || ['paint', 'layout', 'strict', 'content'].some(value => (css.contain || '').includes(value));
917
902
  }
918
903
  function getContainingBlock(element) {
919
904
  let currentNode = getParentNode(element);
@@ -931,9 +916,8 @@ function isWebKit() {
931
916
  if (typeof CSS === 'undefined' || !CSS.supports) return false;
932
917
  return CSS.supports('-webkit-backdrop-filter', 'none');
933
918
  }
934
- const lastTraversableNodeNames = /*#__PURE__*/new Set(['html', 'body', '#document']);
935
919
  function isLastTraversableNode(node) {
936
- return lastTraversableNodeNames.has(getNodeName(node));
920
+ return ['html', 'body', '#document'].includes(getNodeName(node));
937
921
  }
938
922
  function getComputedStyle$1(element) {
939
923
  return getWindow(element).getComputedStyle(element);
@@ -1238,7 +1222,6 @@ function getViewportRect(element, strategy) {
1238
1222
  };
1239
1223
  }
1240
1224
 
1241
- const absoluteOrFixed = /*#__PURE__*/new Set(['absolute', 'fixed']);
1242
1225
  // Returns the inner client rect, subtracting scrollbars if present.
1243
1226
  function getInnerBoundingClientRect(element, strategy) {
1244
1227
  const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');
@@ -1303,7 +1286,7 @@ function getClippingElementAncestors(element, cache) {
1303
1286
  if (!currentNodeIsContaining && computedStyle.position === 'fixed') {
1304
1287
  currentContainingBlockComputedStyle = null;
1305
1288
  }
1306
- const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && absoluteOrFixed.has(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
1289
+ const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && ['absolute', 'fixed'].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
1307
1290
  if (shouldDropCurrentNode) {
1308
1291
  // Drop non-containing blocks.
1309
1292
  result = result.filter(ancestor => ancestor !== currentNode);
@@ -1366,12 +1349,6 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
1366
1349
  scrollTop: 0
1367
1350
  };
1368
1351
  const offsets = createCoords(0);
1369
-
1370
- // If the <body> scrollbar appears on the left (e.g. RTL systems). Use
1371
- // Firefox with layout.scrollbar.side = 3 in about:config to test this.
1372
- function setLeftRTLScrollbarOffset() {
1373
- offsets.x = getWindowScrollBarX(documentElement);
1374
- }
1375
1352
  if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
1376
1353
  if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {
1377
1354
  scroll = getNodeScroll(offsetParent);
@@ -1381,12 +1358,11 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
1381
1358
  offsets.x = offsetRect.x + offsetParent.clientLeft;
1382
1359
  offsets.y = offsetRect.y + offsetParent.clientTop;
1383
1360
  } else if (documentElement) {
1384
- setLeftRTLScrollbarOffset();
1361
+ // If the <body> scrollbar appears on the left (e.g. RTL systems). Use
1362
+ // Firefox with layout.scrollbar.side = 3 in about:config to test this.
1363
+ offsets.x = getWindowScrollBarX(documentElement);
1385
1364
  }
1386
1365
  }
1387
- if (isFixed && !isOffsetParentAnElement && documentElement) {
1388
- setLeftRTLScrollbarOffset();
1389
- }
1390
1366
  const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);
1391
1367
  const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;
1392
1368
  const y = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;
@@ -1563,7 +1539,7 @@ function observeMove(element, onMove) {
1563
1539
  // Handle <iframe>s
1564
1540
  root: root.ownerDocument
1565
1541
  });
1566
- } catch (_e) {
1542
+ } catch (e) {
1567
1543
  io = new IntersectionObserver(handleObserve, options);
1568
1544
  }
1569
1545
  io.observe(element);
@@ -2653,7 +2629,7 @@ class AuroDependencyVersioning {
2653
2629
  }
2654
2630
  }
2655
2631
 
2656
- class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,class extends a{});}closestElement(t,a=this,e=(a,s=a&&a.closest(t))=>a&&a!==document&&a!==window?s||e(a.getRootNode().host):null){return e(a)}handleComponentTagRename(t,a){const e=a.toLowerCase();t.tagName.toLowerCase()!==e&&t.setAttribute(e,true);}elementMatch(t,a){const e=a.toLowerCase();return t.tagName.toLowerCase()===e||t.hasAttribute(e)}}var u='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>';class m extends LitElement{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(t){return t?"true":"false"}}const g=new Map,f=(t,a={})=>{const e=a.responseParser||(t=>t.text());return g.has(t)||g.set(t,fetch(t).then(e)),g.get(t)};var w=css`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;line-height:1;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.labelWrapper{margin-left:var(--ds-size-50, .25rem);line-height:1.8}
2632
+ class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,class extends a{});}closestElement(t,a=this,e=(a,s=a&&a.closest(t))=>a&&a!==document&&a!==window?s||e(a.getRootNode().host):null){return e(a)}handleComponentTagRename(t,a){const e=a.toLowerCase();t.tagName.toLowerCase()!==e&&t.setAttribute(e,true);}elementMatch(t,a){const e=a.toLowerCase();return t.tagName.toLowerCase()===e||t.hasAttribute(e)}}var u='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>';class m extends LitElement{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(t){return t?"true":"false"}}const g=new Map,f=(t,a={})=>{const e=a.responseParser||(t=>t.text());return g.has(t)||g.set(t,fetch(t).then(e)),g.get(t)};var w=css`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex;line-height:var(--ds-auro-icon-size)}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.svgWrapper [part=svg]{display:flex}.labelWrapper{margin-left:var(--ds-size-50, .25rem)}.labelWrapper ::slotted(*){line-height:inherit!important}
2657
2633
  `;class z extends m{constructor(){super(),this.onDark=false,this.appearance="default";}static get properties(){return {...m.properties,onDark:{type:Boolean,reflect:true},appearance:{type:String,reflect:true},svg:{attribute:false,reflect:true}}}static get styles(){return w}async fetchIcon(t,a){let e="";e="logos"===t?await f(`${this.uri}/${t}/${a}.svg`):await f(`${this.uri}/icons/${t}/${a}.svg`);return (new DOMParser).parseFromString(e,"text/html").body.querySelector("svg")}async firstUpdated(){try{if(!this.customSvg){const t=await this.fetchIcon(this.category,this.name);if(t)this.svg=t;else if(!t){const t=(new DOMParser).parseFromString(u,"text/html");this.svg=t.body.firstChild;}}}catch(t){this.svg=void 0;}}}css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host{display:inline-block;--ds-auro-icon-size: 100%;width:100%;height:100%}:host .logo{color:var(--ds-auro-alaska-color)}:host([onDark]),:host([appearance=inverse]){--ds-auro-alaska-color: #FFF}
2658
2634
  `;var y=css`:host{--ds-auro-icon-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-alaska-color: #02426D;--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}
2659
2635
  `;var k=css`:host{color:var(--ds-auro-icon-color)}:host([customColor]){color:inherit}:host(:not([onDark])[variant=accent1]),:host(:not([appearance=inverse])[variant=accent1]){--ds-auro-icon-color: var(--ds-basic-color-texticon-accent1, #265688)}:host(:not([onDark])[variant=disabled]),:host(:not([appearance=inverse])[variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host(:not([onDark])[variant=muted]),:host(:not([appearance=inverse])[variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-muted, #676767)}:host(:not([onDark])[variant=statusDefault]),:host(:not([appearance=inverse])[variant=statusDefault]){--ds-auro-icon-color: var(--ds-basic-color-status-default, #afb9c6)}:host(:not([onDark])[variant=statusInfo]),:host(:not([appearance=inverse])[variant=statusInfo]){--ds-auro-icon-color: var(--ds-basic-color-status-info, #01426a)}:host(:not([onDark])[variant=statusSuccess]),:host(:not([appearance=inverse])[variant=statusSuccess]){--ds-auro-icon-color: var(--ds-basic-color-status-success, #447a1f)}:host(:not([onDark])[variant=statusWarning]),:host(:not([appearance=inverse])[variant=statusWarning]){--ds-auro-icon-color: var(--ds-basic-color-status-warning, #fac200)}:host(:not([onDark])[variant=statusError]),:host(:not([appearance=inverse])[variant=statusError]){--ds-auro-icon-color: var(--ds-basic-color-status-error, #e31f26)}:host(:not([onDark])[variant=statusInfoSubtle]),:host(:not([appearance=inverse])[variant=statusInfoSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-info-subtle, #ebf3f9)}:host(:not([onDark])[variant=statusSuccessSubtle]),:host(:not([appearance=inverse])[variant=statusSuccessSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-success-subtle, #d6eac7)}:host(:not([onDark])[variant=statusWarningSubtle]),:host(:not([appearance=inverse])[variant=statusWarningSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-warning-subtle, #fff0b2)}:host(:not([onDark])[variant=statusErrorSubtle]),:host(:not([appearance=inverse])[variant=statusErrorSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([onDark])[variant=fareBasicEconomy]),:host(:not([appearance=inverse])[variant=fareBasicEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-basiceconomy, #97eaf8)}:host(:not([onDark])[variant=fareBusiness]),:host(:not([appearance=inverse])[variant=fareBusiness]){--ds-auro-icon-color: var(--ds-basic-color-fare-business, #01426a)}:host(:not([onDark])[variant=fareEconomy]),:host(:not([appearance=inverse])[variant=fareEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-economy, #0074ca)}:host(:not([onDark])[variant=fareFirst]),:host(:not([appearance=inverse])[variant=fareFirst]){--ds-auro-icon-color: var(--ds-basic-color-fare-first, #00274a)}:host(:not([onDark])[variant=farePremiumEconomy]),:host(:not([appearance=inverse])[variant=farePremiumEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-premiumeconomy, #005154)}:host(:not([onDark])[variant=tierOneWorldEmerald]),:host(:not([appearance=inverse])[variant=tierOneWorldEmerald]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-emerald, #139142)}:host(:not([onDark])[variant=tierOneWorldSapphire]),:host(:not([appearance=inverse])[variant=tierOneWorldSapphire]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-sapphire, #015daa)}:host(:not([onDark])[variant=tierOneWorldRuby]),:host(:not([appearance=inverse])[variant=tierOneWorldRuby]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-ruby, #a41d4a)}:host([onDark]),:host([appearance=inverse]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([onDark][variant=disabled]),:host([appearance=inverse][variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([onDark][variant=muted]),:host([appearance=inverse][variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][variant=statusError]),:host([appearance=inverse][variant=statusError]){--ds-auro-icon-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8)}
@@ -2677,7 +2653,7 @@ class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,cl
2677
2653
  </div>
2678
2654
  `}}
2679
2655
 
2680
- var iconVersion = '9.1.0';
2656
+ var iconVersion = '9.1.1';
2681
2657
 
2682
2658
  var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}:host(:not([isfullscreen])) .container[class*=shape-rounded]{border-radius:16px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
2683
2659
 
@@ -3118,7 +3094,7 @@ class AuroHelpText extends LitElement {
3118
3094
  }
3119
3095
  }
3120
3096
 
3121
- var formkitVersion = '202511191711';
3097
+ var formkitVersion = '202512120003';
3122
3098
 
3123
3099
  class AuroElement extends LitElement {
3124
3100
  static get properties() {
@@ -131,9 +131,8 @@ function getOppositeAxis(axis) {
131
131
  function getAxisLength(axis) {
132
132
  return axis === 'y' ? 'height' : 'width';
133
133
  }
134
- const yAxisSides = /*#__PURE__*/new Set(['top', 'bottom']);
135
134
  function getSideAxis(placement) {
136
- return yAxisSides.has(getSide(placement)) ? 'y' : 'x';
135
+ return ['top', 'bottom'].includes(getSide(placement)) ? 'y' : 'x';
137
136
  }
138
137
  function getAlignmentAxis(placement) {
139
138
  return getOppositeAxis(getSideAxis(placement));
@@ -158,19 +157,19 @@ function getExpandedPlacements(placement) {
158
157
  function getOppositeAlignmentPlacement(placement) {
159
158
  return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);
160
159
  }
161
- const lrPlacement = ['left', 'right'];
162
- const rlPlacement = ['right', 'left'];
163
- const tbPlacement = ['top', 'bottom'];
164
- const btPlacement = ['bottom', 'top'];
165
160
  function getSideList(side, isStart, rtl) {
161
+ const lr = ['left', 'right'];
162
+ const rl = ['right', 'left'];
163
+ const tb = ['top', 'bottom'];
164
+ const bt = ['bottom', 'top'];
166
165
  switch (side) {
167
166
  case 'top':
168
167
  case 'bottom':
169
- if (rtl) return isStart ? rlPlacement : lrPlacement;
170
- return isStart ? lrPlacement : rlPlacement;
168
+ if (rtl) return isStart ? rl : lr;
169
+ return isStart ? lr : rl;
171
170
  case 'left':
172
171
  case 'right':
173
- return isStart ? tbPlacement : btPlacement;
172
+ return isStart ? tb : bt;
174
173
  default:
175
174
  return [];
176
175
  }
@@ -611,22 +610,16 @@ const flip$1 = function (options) {
611
610
  const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;
612
611
  const nextPlacement = placements[nextIndex];
613
612
  if (nextPlacement) {
614
- const ignoreCrossAxisOverflow = checkCrossAxis === 'alignment' ? initialSideAxis !== getSideAxis(nextPlacement) : false;
615
- if (!ignoreCrossAxisOverflow ||
616
- // We leave the current main axis only if every placement on that axis
617
- // overflows the main axis.
618
- overflowsData.every(d => getSideAxis(d.placement) === initialSideAxis ? d.overflows[0] > 0 : true)) {
619
- // Try next placement and re-run the lifecycle.
620
- return {
621
- data: {
622
- index: nextIndex,
623
- overflows: overflowsData
624
- },
625
- reset: {
626
- placement: nextPlacement
627
- }
628
- };
629
- }
613
+ // Try next placement and re-run the lifecycle.
614
+ return {
615
+ data: {
616
+ index: nextIndex,
617
+ overflows: overflowsData
618
+ },
619
+ reset: {
620
+ placement: nextPlacement
621
+ }
622
+ };
630
623
  }
631
624
 
632
625
  // First, find the candidates that fit on the mainAxis side of overflow,
@@ -672,8 +665,6 @@ const flip$1 = function (options) {
672
665
  };
673
666
  };
674
667
 
675
- const originSides = /*#__PURE__*/new Set(['left', 'top']);
676
-
677
668
  // For type backwards-compatibility, the `OffsetOptions` type was also
678
669
  // Derivable.
679
670
 
@@ -687,7 +678,7 @@ async function convertValueToCoords(state, options) {
687
678
  const side = getSide(placement);
688
679
  const alignment = getAlignment(placement);
689
680
  const isVertical = getSideAxis(placement) === 'y';
690
- const mainAxisMulti = originSides.has(side) ? -1 : 1;
681
+ const mainAxisMulti = ['left', 'top'].includes(side) ? -1 : 1;
691
682
  const crossAxisMulti = rtl && isVertical ? -1 : 1;
692
683
  const rawValue = evaluate(options, state);
693
684
 
@@ -880,7 +871,6 @@ function isShadowRoot(value) {
880
871
  }
881
872
  return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;
882
873
  }
883
- const invalidOverflowDisplayValues = /*#__PURE__*/new Set(['inline', 'contents']);
884
874
  function isOverflowElement(element) {
885
875
  const {
886
876
  overflow,
@@ -888,32 +878,27 @@ function isOverflowElement(element) {
888
878
  overflowY,
889
879
  display
890
880
  } = getComputedStyle$1(element);
891
- return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !invalidOverflowDisplayValues.has(display);
881
+ return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !['inline', 'contents'].includes(display);
892
882
  }
893
- const tableElements = /*#__PURE__*/new Set(['table', 'td', 'th']);
894
883
  function isTableElement(element) {
895
- return tableElements.has(getNodeName(element));
884
+ return ['table', 'td', 'th'].includes(getNodeName(element));
896
885
  }
897
- const topLayerSelectors = [':popover-open', ':modal'];
898
886
  function isTopLayer(element) {
899
- return topLayerSelectors.some(selector => {
887
+ return [':popover-open', ':modal'].some(selector => {
900
888
  try {
901
889
  return element.matches(selector);
902
- } catch (_e) {
890
+ } catch (e) {
903
891
  return false;
904
892
  }
905
893
  });
906
894
  }
907
- const transformProperties = ['transform', 'translate', 'scale', 'rotate', 'perspective'];
908
- const willChangeValues = ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'];
909
- const containValues = ['paint', 'layout', 'strict', 'content'];
910
895
  function isContainingBlock(elementOrCss) {
911
896
  const webkit = isWebKit();
912
897
  const css = isElement(elementOrCss) ? getComputedStyle$1(elementOrCss) : elementOrCss;
913
898
 
914
899
  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block
915
900
  // https://drafts.csswg.org/css-transforms-2/#individual-transforms
916
- return transformProperties.some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || willChangeValues.some(value => (css.willChange || '').includes(value)) || containValues.some(value => (css.contain || '').includes(value));
901
+ return ['transform', 'translate', 'scale', 'rotate', 'perspective'].some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'].some(value => (css.willChange || '').includes(value)) || ['paint', 'layout', 'strict', 'content'].some(value => (css.contain || '').includes(value));
917
902
  }
918
903
  function getContainingBlock(element) {
919
904
  let currentNode = getParentNode(element);
@@ -931,9 +916,8 @@ function isWebKit() {
931
916
  if (typeof CSS === 'undefined' || !CSS.supports) return false;
932
917
  return CSS.supports('-webkit-backdrop-filter', 'none');
933
918
  }
934
- const lastTraversableNodeNames = /*#__PURE__*/new Set(['html', 'body', '#document']);
935
919
  function isLastTraversableNode(node) {
936
- return lastTraversableNodeNames.has(getNodeName(node));
920
+ return ['html', 'body', '#document'].includes(getNodeName(node));
937
921
  }
938
922
  function getComputedStyle$1(element) {
939
923
  return getWindow(element).getComputedStyle(element);
@@ -1238,7 +1222,6 @@ function getViewportRect(element, strategy) {
1238
1222
  };
1239
1223
  }
1240
1224
 
1241
- const absoluteOrFixed = /*#__PURE__*/new Set(['absolute', 'fixed']);
1242
1225
  // Returns the inner client rect, subtracting scrollbars if present.
1243
1226
  function getInnerBoundingClientRect(element, strategy) {
1244
1227
  const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');
@@ -1303,7 +1286,7 @@ function getClippingElementAncestors(element, cache) {
1303
1286
  if (!currentNodeIsContaining && computedStyle.position === 'fixed') {
1304
1287
  currentContainingBlockComputedStyle = null;
1305
1288
  }
1306
- const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && absoluteOrFixed.has(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
1289
+ const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && ['absolute', 'fixed'].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
1307
1290
  if (shouldDropCurrentNode) {
1308
1291
  // Drop non-containing blocks.
1309
1292
  result = result.filter(ancestor => ancestor !== currentNode);
@@ -1366,12 +1349,6 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
1366
1349
  scrollTop: 0
1367
1350
  };
1368
1351
  const offsets = createCoords(0);
1369
-
1370
- // If the <body> scrollbar appears on the left (e.g. RTL systems). Use
1371
- // Firefox with layout.scrollbar.side = 3 in about:config to test this.
1372
- function setLeftRTLScrollbarOffset() {
1373
- offsets.x = getWindowScrollBarX(documentElement);
1374
- }
1375
1352
  if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
1376
1353
  if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {
1377
1354
  scroll = getNodeScroll(offsetParent);
@@ -1381,12 +1358,11 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
1381
1358
  offsets.x = offsetRect.x + offsetParent.clientLeft;
1382
1359
  offsets.y = offsetRect.y + offsetParent.clientTop;
1383
1360
  } else if (documentElement) {
1384
- setLeftRTLScrollbarOffset();
1361
+ // If the <body> scrollbar appears on the left (e.g. RTL systems). Use
1362
+ // Firefox with layout.scrollbar.side = 3 in about:config to test this.
1363
+ offsets.x = getWindowScrollBarX(documentElement);
1385
1364
  }
1386
1365
  }
1387
- if (isFixed && !isOffsetParentAnElement && documentElement) {
1388
- setLeftRTLScrollbarOffset();
1389
- }
1390
1366
  const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);
1391
1367
  const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;
1392
1368
  const y = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;
@@ -1563,7 +1539,7 @@ function observeMove(element, onMove) {
1563
1539
  // Handle <iframe>s
1564
1540
  root: root.ownerDocument
1565
1541
  });
1566
- } catch (_e) {
1542
+ } catch (e) {
1567
1543
  io = new IntersectionObserver(handleObserve, options);
1568
1544
  }
1569
1545
  io.observe(element);
@@ -2653,7 +2629,7 @@ class AuroDependencyVersioning {
2653
2629
  }
2654
2630
  }
2655
2631
 
2656
- class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,class extends a{});}closestElement(t,a=this,e=(a,s=a&&a.closest(t))=>a&&a!==document&&a!==window?s||e(a.getRootNode().host):null){return e(a)}handleComponentTagRename(t,a){const e=a.toLowerCase();t.tagName.toLowerCase()!==e&&t.setAttribute(e,true);}elementMatch(t,a){const e=a.toLowerCase();return t.tagName.toLowerCase()===e||t.hasAttribute(e)}}var u='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>';class m extends LitElement{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(t){return t?"true":"false"}}const g=new Map,f=(t,a={})=>{const e=a.responseParser||(t=>t.text());return g.has(t)||g.set(t,fetch(t).then(e)),g.get(t)};var w=css`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;line-height:1;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.labelWrapper{margin-left:var(--ds-size-50, .25rem);line-height:1.8}
2632
+ class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,class extends a{});}closestElement(t,a=this,e=(a,s=a&&a.closest(t))=>a&&a!==document&&a!==window?s||e(a.getRootNode().host):null){return e(a)}handleComponentTagRename(t,a){const e=a.toLowerCase();t.tagName.toLowerCase()!==e&&t.setAttribute(e,true);}elementMatch(t,a){const e=a.toLowerCase();return t.tagName.toLowerCase()===e||t.hasAttribute(e)}}var u='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>';class m extends LitElement{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(t){return t?"true":"false"}}const g=new Map,f=(t,a={})=>{const e=a.responseParser||(t=>t.text());return g.has(t)||g.set(t,fetch(t).then(e)),g.get(t)};var w=css`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex;line-height:var(--ds-auro-icon-size)}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.svgWrapper [part=svg]{display:flex}.labelWrapper{margin-left:var(--ds-size-50, .25rem)}.labelWrapper ::slotted(*){line-height:inherit!important}
2657
2633
  `;class z extends m{constructor(){super(),this.onDark=false,this.appearance="default";}static get properties(){return {...m.properties,onDark:{type:Boolean,reflect:true},appearance:{type:String,reflect:true},svg:{attribute:false,reflect:true}}}static get styles(){return w}async fetchIcon(t,a){let e="";e="logos"===t?await f(`${this.uri}/${t}/${a}.svg`):await f(`${this.uri}/icons/${t}/${a}.svg`);return (new DOMParser).parseFromString(e,"text/html").body.querySelector("svg")}async firstUpdated(){try{if(!this.customSvg){const t=await this.fetchIcon(this.category,this.name);if(t)this.svg=t;else if(!t){const t=(new DOMParser).parseFromString(u,"text/html");this.svg=t.body.firstChild;}}}catch(t){this.svg=void 0;}}}css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host{display:inline-block;--ds-auro-icon-size: 100%;width:100%;height:100%}:host .logo{color:var(--ds-auro-alaska-color)}:host([onDark]),:host([appearance=inverse]){--ds-auro-alaska-color: #FFF}
2658
2634
  `;var y=css`:host{--ds-auro-icon-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-alaska-color: #02426D;--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}
2659
2635
  `;var k=css`:host{color:var(--ds-auro-icon-color)}:host([customColor]){color:inherit}:host(:not([onDark])[variant=accent1]),:host(:not([appearance=inverse])[variant=accent1]){--ds-auro-icon-color: var(--ds-basic-color-texticon-accent1, #265688)}:host(:not([onDark])[variant=disabled]),:host(:not([appearance=inverse])[variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host(:not([onDark])[variant=muted]),:host(:not([appearance=inverse])[variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-muted, #676767)}:host(:not([onDark])[variant=statusDefault]),:host(:not([appearance=inverse])[variant=statusDefault]){--ds-auro-icon-color: var(--ds-basic-color-status-default, #afb9c6)}:host(:not([onDark])[variant=statusInfo]),:host(:not([appearance=inverse])[variant=statusInfo]){--ds-auro-icon-color: var(--ds-basic-color-status-info, #01426a)}:host(:not([onDark])[variant=statusSuccess]),:host(:not([appearance=inverse])[variant=statusSuccess]){--ds-auro-icon-color: var(--ds-basic-color-status-success, #447a1f)}:host(:not([onDark])[variant=statusWarning]),:host(:not([appearance=inverse])[variant=statusWarning]){--ds-auro-icon-color: var(--ds-basic-color-status-warning, #fac200)}:host(:not([onDark])[variant=statusError]),:host(:not([appearance=inverse])[variant=statusError]){--ds-auro-icon-color: var(--ds-basic-color-status-error, #e31f26)}:host(:not([onDark])[variant=statusInfoSubtle]),:host(:not([appearance=inverse])[variant=statusInfoSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-info-subtle, #ebf3f9)}:host(:not([onDark])[variant=statusSuccessSubtle]),:host(:not([appearance=inverse])[variant=statusSuccessSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-success-subtle, #d6eac7)}:host(:not([onDark])[variant=statusWarningSubtle]),:host(:not([appearance=inverse])[variant=statusWarningSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-warning-subtle, #fff0b2)}:host(:not([onDark])[variant=statusErrorSubtle]),:host(:not([appearance=inverse])[variant=statusErrorSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([onDark])[variant=fareBasicEconomy]),:host(:not([appearance=inverse])[variant=fareBasicEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-basiceconomy, #97eaf8)}:host(:not([onDark])[variant=fareBusiness]),:host(:not([appearance=inverse])[variant=fareBusiness]){--ds-auro-icon-color: var(--ds-basic-color-fare-business, #01426a)}:host(:not([onDark])[variant=fareEconomy]),:host(:not([appearance=inverse])[variant=fareEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-economy, #0074ca)}:host(:not([onDark])[variant=fareFirst]),:host(:not([appearance=inverse])[variant=fareFirst]){--ds-auro-icon-color: var(--ds-basic-color-fare-first, #00274a)}:host(:not([onDark])[variant=farePremiumEconomy]),:host(:not([appearance=inverse])[variant=farePremiumEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-premiumeconomy, #005154)}:host(:not([onDark])[variant=tierOneWorldEmerald]),:host(:not([appearance=inverse])[variant=tierOneWorldEmerald]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-emerald, #139142)}:host(:not([onDark])[variant=tierOneWorldSapphire]),:host(:not([appearance=inverse])[variant=tierOneWorldSapphire]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-sapphire, #015daa)}:host(:not([onDark])[variant=tierOneWorldRuby]),:host(:not([appearance=inverse])[variant=tierOneWorldRuby]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-ruby, #a41d4a)}:host([onDark]),:host([appearance=inverse]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([onDark][variant=disabled]),:host([appearance=inverse][variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([onDark][variant=muted]),:host([appearance=inverse][variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][variant=statusError]),:host([appearance=inverse][variant=statusError]){--ds-auro-icon-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8)}
@@ -2677,7 +2653,7 @@ class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,cl
2677
2653
  </div>
2678
2654
  `}}
2679
2655
 
2680
- var iconVersion = '9.1.0';
2656
+ var iconVersion = '9.1.1';
2681
2657
 
2682
2658
  var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}:host(:not([isfullscreen])) .container[class*=shape-rounded]{border-radius:16px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
2683
2659
 
@@ -3118,7 +3094,7 @@ class AuroHelpText extends LitElement {
3118
3094
  }
3119
3095
  }
3120
3096
 
3121
- var formkitVersion = '202511191711';
3097
+ var formkitVersion = '202512120003';
3122
3098
 
3123
3099
  class AuroElement extends LitElement {
3124
3100
  static get properties() {
@@ -106,7 +106,7 @@
106
106
  <!-- Form elements MUST be registered BEFORE form if custom names are used -->
107
107
  <script type="module" data-demo-script="true" src="./registerDemoDeps.js"></script>
108
108
  <script type="module" data-demo-script="true" src="./index.js"></script>
109
- <!--<script type="module" data-demo-script="true" src="~@auro-formkit/auro-input/dist/index.min.js"></script>-->
109
+ <!--<script type="module" data-demo-script="true" src="~@aurodesignsystem/auro-input/dist/index.min.js"></script>-->
110
110
 
111
111
  <script>
112
112
  const form = document.querySelector('auro-form');