@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.7 → 0.0.0-pr1595.8

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 (49) hide show
  1. package/components/checkbox/demo/api.md +1 -1
  2. package/components/checkbox/demo/customize.min.js +3 -5
  3. package/components/checkbox/demo/getting-started.min.js +3 -5
  4. package/components/checkbox/demo/index.min.js +3 -5
  5. package/components/checkbox/dist/auro-checkbox.d.ts +2 -2
  6. package/components/checkbox/dist/index.js +3 -5
  7. package/components/checkbox/dist/registered.js +3 -5
  8. package/components/combobox/demo/customize.min.js +14 -3
  9. package/components/combobox/demo/getting-started.min.js +14 -3
  10. package/components/combobox/demo/index.min.js +14 -3
  11. package/components/combobox/dist/auro-combobox.d.ts +10 -5
  12. package/components/combobox/dist/index.js +14 -3
  13. package/components/combobox/dist/registered.js +14 -3
  14. package/components/counter/demo/customize.min.js +5 -2
  15. package/components/counter/demo/index.min.js +5 -2
  16. package/components/counter/dist/auro-counter-group.d.ts +4 -2
  17. package/components/counter/dist/index.js +5 -2
  18. package/components/counter/dist/registered.js +5 -2
  19. package/components/datepicker/demo/customize.min.js +6 -3
  20. package/components/datepicker/demo/index.min.js +6 -3
  21. package/components/datepicker/dist/auro-datepicker.d.ts +4 -2
  22. package/components/datepicker/dist/index.js +6 -3
  23. package/components/datepicker/dist/registered.js +6 -3
  24. package/components/dropdown/demo/customize.min.js +1 -1
  25. package/components/dropdown/demo/getting-started.min.js +2 -2
  26. package/components/dropdown/demo/index.min.js +1 -1
  27. package/components/dropdown/dist/index.js +1 -1
  28. package/components/dropdown/dist/registered.js +1 -1
  29. package/components/form/demo/customize.min.js +32 -17
  30. package/components/form/demo/getting-started.min.js +32 -17
  31. package/components/form/demo/index.min.js +32 -17
  32. package/components/form/demo/registerDemoDeps.min.js +32 -17
  33. package/components/input/demo/customize.min.js +1 -1
  34. package/components/input/demo/getting-started.min.js +1 -1
  35. package/components/input/demo/index.min.js +1 -1
  36. package/components/input/dist/index.js +1 -1
  37. package/components/input/dist/registered.js +1 -1
  38. package/components/radio/demo/customize.min.js +1 -1
  39. package/components/radio/demo/getting-started.min.js +1 -1
  40. package/components/radio/demo/index.min.js +1 -1
  41. package/components/radio/dist/index.js +1 -1
  42. package/components/radio/dist/registered.js +1 -1
  43. package/components/select/demo/customize.min.js +2 -2
  44. package/components/select/demo/getting-started.min.js +2 -2
  45. package/components/select/demo/index.min.js +2 -2
  46. package/components/select/dist/index.js +2 -2
  47. package/components/select/dist/registered.js +2 -2
  48. package/custom-elements.json +1481 -1481
  49. package/package.json +1 -1
@@ -81,7 +81,7 @@ The `auro-checkbox` element is for the purpose of allowing users to select one o
81
81
  | `auroCheckbox-focusout` | `CustomEvent<any>` | Notifies when the checkbox loses focus. |
82
82
  | `auroCheckbox-input` | `CustomEvent<any>` | Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead. |
83
83
  | `change` | | Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead. |
84
- | `input` | | Notifies when when checked value is changed by user's interface. |
84
+ | `input` | | Notifies when checked value is changed by user's interface. |
85
85
 
86
86
  ## Slots
87
87
 
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
138
138
  // See LICENSE in the project root for license information.
139
139
 
140
140
 
141
- /* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
142
141
  /**
143
142
  * The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
144
143
  * @customElement auro-checkbox
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
149
148
  *
150
149
  * @slot default - The default slot for the checkbox label.
151
150
  *
152
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
153
- * @fires input - Notifies when when checked value is changed by user's interface.
151
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
152
+ * @event input - Notifies when checked value is changed by user's interface.
154
153
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
155
154
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
156
155
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
157
156
  */
158
- /* eslint-enable jsdoc/no-undefined-types */
159
157
 
160
158
  // build the component class
161
159
  class AuroCheckbox extends i$2 {
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
1286
1284
  }
1287
1285
  }
1288
1286
 
1289
- var formkitVersion = '202608300438';
1287
+ var formkitVersion = '202608311921';
1290
1288
 
1291
1289
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1292
1290
  // See LICENSE in the project root for license information.
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
138
138
  // See LICENSE in the project root for license information.
139
139
 
140
140
 
141
- /* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
142
141
  /**
143
142
  * The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
144
143
  * @customElement auro-checkbox
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
149
148
  *
150
149
  * @slot default - The default slot for the checkbox label.
151
150
  *
152
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
153
- * @fires input - Notifies when when checked value is changed by user's interface.
151
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
152
+ * @event input - Notifies when checked value is changed by user's interface.
154
153
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
155
154
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
156
155
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
157
156
  */
158
- /* eslint-enable jsdoc/no-undefined-types */
159
157
 
160
158
  // build the component class
161
159
  class AuroCheckbox extends i$2 {
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
1286
1284
  }
1287
1285
  }
1288
1286
 
1289
- var formkitVersion = '202608300438';
1287
+ var formkitVersion = '202608311921';
1290
1288
 
1291
1289
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1292
1290
  // See LICENSE in the project root for license information.
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
138
138
  // See LICENSE in the project root for license information.
139
139
 
140
140
 
141
- /* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
142
141
  /**
143
142
  * The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
144
143
  * @customElement auro-checkbox
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
149
148
  *
150
149
  * @slot default - The default slot for the checkbox label.
151
150
  *
152
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
153
- * @fires input - Notifies when when checked value is changed by user's interface.
151
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
152
+ * @event input - Notifies when checked value is changed by user's interface.
154
153
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
155
154
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
156
155
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
157
156
  */
158
- /* eslint-enable jsdoc/no-undefined-types */
159
157
 
160
158
  // build the component class
161
159
  class AuroCheckbox extends i$2 {
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
1286
1284
  }
1287
1285
  }
1288
1286
 
1289
- var formkitVersion = '202608300438';
1287
+ var formkitVersion = '202608311921';
1290
1288
 
1291
1289
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1292
1290
  // See LICENSE in the project root for license information.
@@ -8,8 +8,8 @@
8
8
  *
9
9
  * @slot default - The default slot for the checkbox label.
10
10
  *
11
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
12
- * @fires input - Notifies when when checked value is changed by user's interface.
11
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
12
+ * @event input - Notifies when checked value is changed by user's interface.
13
13
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
14
14
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
15
15
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
@@ -98,7 +98,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
98
98
  // See LICENSE in the project root for license information.
99
99
 
100
100
 
101
- /* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
102
101
  /**
103
102
  * The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
104
103
  * @customElement auro-checkbox
@@ -109,13 +108,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
109
108
  *
110
109
  * @slot default - The default slot for the checkbox label.
111
110
  *
112
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
113
- * @fires input - Notifies when when checked value is changed by user's interface.
111
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
112
+ * @event input - Notifies when checked value is changed by user's interface.
114
113
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
115
114
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
116
115
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
117
116
  */
118
- /* eslint-enable jsdoc/no-undefined-types */
119
117
 
120
118
  // build the component class
121
119
  class AuroCheckbox extends LitElement {
@@ -1239,7 +1237,7 @@ class AuroHelpText extends LitElement {
1239
1237
  }
1240
1238
  }
1241
1239
 
1242
- var formkitVersion = '202608300438';
1240
+ var formkitVersion = '202608311921';
1243
1241
 
1244
1242
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1245
1243
  // See LICENSE in the project root for license information.
@@ -98,7 +98,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
98
98
  // See LICENSE in the project root for license information.
99
99
 
100
100
 
101
- /* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
102
101
  /**
103
102
  * The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
104
103
  * @customElement auro-checkbox
@@ -109,13 +108,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
109
108
  *
110
109
  * @slot default - The default slot for the checkbox label.
111
110
  *
112
- * @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
113
- * @fires input - Notifies when when checked value is changed by user's interface.
111
+ * @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
112
+ * @event input - Notifies when checked value is changed by user's interface.
114
113
  * @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
115
114
  * @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
116
115
  * @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
117
116
  */
118
- /* eslint-enable jsdoc/no-undefined-types */
119
117
 
120
118
  // build the component class
121
119
  class AuroCheckbox extends LitElement {
@@ -1239,7 +1237,7 @@ class AuroHelpText extends LitElement {
1239
1237
  }
1240
1238
  }
1241
1239
 
1242
- var formkitVersion = '202608300438';
1240
+ var formkitVersion = '202608311921';
1243
1241
 
1244
1242
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1245
1243
  // See LICENSE in the project root for license information.
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
5066
5066
  }
5067
5067
  };
5068
5068
 
5069
- var formkitVersion$2 = '202608300438';
5069
+ var formkitVersion$2 = '202608311921';
5070
5070
 
5071
5071
  /**
5072
5072
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
18935
18935
  }
18936
18936
  };
18937
18937
 
18938
- var formkitVersion$1 = '202608300438';
18938
+ var formkitVersion$1 = '202608311921';
18939
18939
 
18940
18940
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
18941
18941
  // See LICENSE in the project root for license information.
@@ -20127,7 +20127,7 @@ class AuroBibtemplate extends i$3 {
20127
20127
  }
20128
20128
  }
20129
20129
 
20130
- var formkitVersion = '202608300438';
20130
+ var formkitVersion = '202608311921';
20131
20131
 
20132
20132
  var styleCss$3 = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
20133
20133
 
@@ -20563,20 +20563,31 @@ class AuroCombobox extends AuroElement {
20563
20563
  this.persistInput = false;
20564
20564
  this.required = false;
20565
20565
  this.typedValue = undefined;
20566
+
20567
+ /** @type {'filter' | 'suggestion'} */
20566
20568
  this.behavior = "suggestion";
20567
20569
  this.clearBtnFocused = false;
20568
20570
 
20569
20571
  // Defaults that effect the overall layout of the combobox
20570
20572
  this.checkmark = false;
20571
20573
  this.dvInputOnly = false;
20574
+
20575
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
20572
20576
  this.fullscreenBreakpoint = 'sm';
20577
+
20578
+ /** @type {'classic' | 'emphasized' | 'snowflake'} */
20573
20579
  this.layout = 'classic';
20574
20580
  this.matchWidth = true;
20581
+
20582
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
20575
20583
  this.shape = 'classic';
20584
+
20585
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
20576
20586
  this.size = 'xl';
20577
20587
  this.triggerIcon = false;
20578
20588
 
20579
20589
  // Defaults that effect the dropdown
20590
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
20580
20591
  this.placement = 'bottom-start';
20581
20592
  this.offset = 0;
20582
20593
  this.noFlip = false;
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
5066
5066
  }
5067
5067
  };
5068
5068
 
5069
- var formkitVersion$2 = '202608300438';
5069
+ var formkitVersion$2 = '202608311921';
5070
5070
 
5071
5071
  /**
5072
5072
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
18935
18935
  }
18936
18936
  };
18937
18937
 
18938
- var formkitVersion$1 = '202608300438';
18938
+ var formkitVersion$1 = '202608311921';
18939
18939
 
18940
18940
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
18941
18941
  // See LICENSE in the project root for license information.
@@ -20127,7 +20127,7 @@ class AuroBibtemplate extends i$3 {
20127
20127
  }
20128
20128
  }
20129
20129
 
20130
- var formkitVersion = '202608300438';
20130
+ var formkitVersion = '202608311921';
20131
20131
 
20132
20132
  var styleCss$3 = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
20133
20133
 
@@ -20563,20 +20563,31 @@ class AuroCombobox extends AuroElement {
20563
20563
  this.persistInput = false;
20564
20564
  this.required = false;
20565
20565
  this.typedValue = undefined;
20566
+
20567
+ /** @type {'filter' | 'suggestion'} */
20566
20568
  this.behavior = "suggestion";
20567
20569
  this.clearBtnFocused = false;
20568
20570
 
20569
20571
  // Defaults that effect the overall layout of the combobox
20570
20572
  this.checkmark = false;
20571
20573
  this.dvInputOnly = false;
20574
+
20575
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
20572
20576
  this.fullscreenBreakpoint = 'sm';
20577
+
20578
+ /** @type {'classic' | 'emphasized' | 'snowflake'} */
20573
20579
  this.layout = 'classic';
20574
20580
  this.matchWidth = true;
20581
+
20582
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
20575
20583
  this.shape = 'classic';
20584
+
20585
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
20576
20586
  this.size = 'xl';
20577
20587
  this.triggerIcon = false;
20578
20588
 
20579
20589
  // Defaults that effect the dropdown
20590
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
20580
20591
  this.placement = 'bottom-start';
20581
20592
  this.offset = 0;
20582
20593
  this.noFlip = false;
@@ -5081,7 +5081,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
5081
5081
  }
5082
5082
  };
5083
5083
 
5084
- var formkitVersion$2 = '202608300438';
5084
+ var formkitVersion$2 = '202608311921';
5085
5085
 
5086
5086
  /**
5087
5087
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -18950,7 +18950,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
18950
18950
  }
18951
18951
  };
18952
18952
 
18953
- var formkitVersion$1 = '202608300438';
18953
+ var formkitVersion$1 = '202608311921';
18954
18954
 
18955
18955
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
18956
18956
  // See LICENSE in the project root for license information.
@@ -20142,7 +20142,7 @@ class AuroBibtemplate extends i$3 {
20142
20142
  }
20143
20143
  }
20144
20144
 
20145
- var formkitVersion = '202608300438';
20145
+ var formkitVersion = '202608311921';
20146
20146
 
20147
20147
  var styleCss$3 = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
20148
20148
 
@@ -20578,20 +20578,31 @@ class AuroCombobox extends AuroElement {
20578
20578
  this.persistInput = false;
20579
20579
  this.required = false;
20580
20580
  this.typedValue = undefined;
20581
+
20582
+ /** @type {'filter' | 'suggestion'} */
20581
20583
  this.behavior = "suggestion";
20582
20584
  this.clearBtnFocused = false;
20583
20585
 
20584
20586
  // Defaults that effect the overall layout of the combobox
20585
20587
  this.checkmark = false;
20586
20588
  this.dvInputOnly = false;
20589
+
20590
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
20587
20591
  this.fullscreenBreakpoint = 'sm';
20592
+
20593
+ /** @type {'classic' | 'emphasized' | 'snowflake'} */
20588
20594
  this.layout = 'classic';
20589
20595
  this.matchWidth = true;
20596
+
20597
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
20590
20598
  this.shape = 'classic';
20599
+
20600
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
20591
20601
  this.size = 'xl';
20592
20602
  this.triggerIcon = false;
20593
20603
 
20594
20604
  // Defaults that effect the dropdown
20605
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
20595
20606
  this.placement = 'bottom-start';
20596
20607
  this.offset = 0;
20597
20608
  this.noFlip = false;
@@ -348,16 +348,21 @@ export class AuroCombobox extends AuroElement {
348
348
  persistInput: boolean | undefined;
349
349
  required: boolean | undefined;
350
350
  typedValue: any;
351
- behavior: string | undefined;
351
+ /** @type {'filter' | 'suggestion'} */
352
+ behavior: "filter" | "suggestion" | undefined;
352
353
  clearBtnFocused: boolean | undefined;
353
354
  checkmark: boolean | undefined;
354
355
  dvInputOnly: boolean | undefined;
355
- fullscreenBreakpoint: string | undefined;
356
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
357
+ fullscreenBreakpoint: "xs" | "sm" | "md" | "lg" | "xl" | "disabled" | undefined;
356
358
  matchWidth: boolean | undefined;
357
- shape: string | undefined;
358
- size: string | undefined;
359
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
360
+ shape: "classic" | "snowflake" | "box" | "pill" | "pill-left" | "pill-right" | "rounded" | undefined;
361
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
362
+ size: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
359
363
  triggerIcon: boolean | undefined;
360
- placement: string | undefined;
364
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
365
+ placement: "top" | "right" | "bottom" | "left" | "bottom-start" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-end" | "left-start" | "left-end" | undefined;
361
366
  offset: number | undefined;
362
367
  noFlip: boolean | undefined;
363
368
  shift: boolean | undefined;
@@ -4999,7 +4999,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4999
4999
  }
5000
5000
  };
5001
5001
 
5002
- var formkitVersion$2 = '202608300438';
5002
+ var formkitVersion$2 = '202608311921';
5003
5003
 
5004
5004
  /**
5005
5005
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -18861,7 +18861,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
18861
18861
  }
18862
18862
  };
18863
18863
 
18864
- var formkitVersion$1 = '202608300438';
18864
+ var formkitVersion$1 = '202608311921';
18865
18865
 
18866
18866
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
18867
18867
  // See LICENSE in the project root for license information.
@@ -20053,7 +20053,7 @@ class AuroBibtemplate extends LitElement {
20053
20053
  }
20054
20054
  }
20055
20055
 
20056
- var formkitVersion = '202608300438';
20056
+ var formkitVersion = '202608311921';
20057
20057
 
20058
20058
  var styleCss$1 = css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
20059
20059
 
@@ -20489,20 +20489,31 @@ class AuroCombobox extends AuroElement {
20489
20489
  this.persistInput = false;
20490
20490
  this.required = false;
20491
20491
  this.typedValue = undefined;
20492
+
20493
+ /** @type {'filter' | 'suggestion'} */
20492
20494
  this.behavior = "suggestion";
20493
20495
  this.clearBtnFocused = false;
20494
20496
 
20495
20497
  // Defaults that effect the overall layout of the combobox
20496
20498
  this.checkmark = false;
20497
20499
  this.dvInputOnly = false;
20500
+
20501
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
20498
20502
  this.fullscreenBreakpoint = 'sm';
20503
+
20504
+ /** @type {'classic' | 'emphasized' | 'snowflake'} */
20499
20505
  this.layout = 'classic';
20500
20506
  this.matchWidth = true;
20507
+
20508
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
20501
20509
  this.shape = 'classic';
20510
+
20511
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
20502
20512
  this.size = 'xl';
20503
20513
  this.triggerIcon = false;
20504
20514
 
20505
20515
  // Defaults that effect the dropdown
20516
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
20506
20517
  this.placement = 'bottom-start';
20507
20518
  this.offset = 0;
20508
20519
  this.noFlip = false;
@@ -4999,7 +4999,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4999
4999
  }
5000
5000
  };
5001
5001
 
5002
- var formkitVersion$2 = '202608300438';
5002
+ var formkitVersion$2 = '202608311921';
5003
5003
 
5004
5004
  /**
5005
5005
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -18861,7 +18861,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
18861
18861
  }
18862
18862
  };
18863
18863
 
18864
- var formkitVersion$1 = '202608300438';
18864
+ var formkitVersion$1 = '202608311921';
18865
18865
 
18866
18866
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
18867
18867
  // See LICENSE in the project root for license information.
@@ -20053,7 +20053,7 @@ class AuroBibtemplate extends LitElement {
20053
20053
  }
20054
20054
  }
20055
20055
 
20056
- var formkitVersion = '202608300438';
20056
+ var formkitVersion = '202608311921';
20057
20057
 
20058
20058
  var styleCss$1 = css`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
20059
20059
 
@@ -20489,20 +20489,31 @@ class AuroCombobox extends AuroElement {
20489
20489
  this.persistInput = false;
20490
20490
  this.required = false;
20491
20491
  this.typedValue = undefined;
20492
+
20493
+ /** @type {'filter' | 'suggestion'} */
20492
20494
  this.behavior = "suggestion";
20493
20495
  this.clearBtnFocused = false;
20494
20496
 
20495
20497
  // Defaults that effect the overall layout of the combobox
20496
20498
  this.checkmark = false;
20497
20499
  this.dvInputOnly = false;
20500
+
20501
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
20498
20502
  this.fullscreenBreakpoint = 'sm';
20503
+
20504
+ /** @type {'classic' | 'emphasized' | 'snowflake'} */
20499
20505
  this.layout = 'classic';
20500
20506
  this.matchWidth = true;
20507
+
20508
+ /** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
20501
20509
  this.shape = 'classic';
20510
+
20511
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
20502
20512
  this.size = 'xl';
20503
20513
  this.triggerIcon = false;
20504
20514
 
20505
20515
  // Defaults that effect the dropdown
20516
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
20506
20517
  this.placement = 'bottom-start';
20507
20518
  this.offset = 0;
20508
20519
  this.noFlip = false;
@@ -1127,7 +1127,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1127
1127
  }
1128
1128
  };
1129
1129
 
1130
- var formkitVersion$1 = '202608300438';
1130
+ var formkitVersion$1 = '202608311921';
1131
1131
 
1132
1132
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1133
1133
  // See LICENSE in the project root for license information.
@@ -5399,7 +5399,7 @@ class AuroHelpText extends i$2 {
5399
5399
  }
5400
5400
  }
5401
5401
 
5402
- var formkitVersion = '202608300438';
5402
+ var formkitVersion = '202608311921';
5403
5403
 
5404
5404
  /**
5405
5405
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -7538,12 +7538,15 @@ class AuroCounterGroup extends AuroElement {
7538
7538
 
7539
7539
  this.matchWidth = false;
7540
7540
  this.isDropdown = false;
7541
+
7542
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
7541
7543
  this.fullscreenBreakpoint = 'sm';
7542
7544
  this.largeFullscreenHeadline = false;
7543
7545
  this.autoPlacement = false;
7544
7546
  this.noFlip = false;
7545
7547
  this.shift = false;
7546
7548
 
7549
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
7547
7550
  this.placement = 'bottom-start';
7548
7551
 
7549
7552
  /**
@@ -1127,7 +1127,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1127
1127
  }
1128
1128
  };
1129
1129
 
1130
- var formkitVersion$1 = '202608300438';
1130
+ var formkitVersion$1 = '202608311921';
1131
1131
 
1132
1132
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1133
1133
  // See LICENSE in the project root for license information.
@@ -5399,7 +5399,7 @@ class AuroHelpText extends i$2 {
5399
5399
  }
5400
5400
  }
5401
5401
 
5402
- var formkitVersion = '202608300438';
5402
+ var formkitVersion = '202608311921';
5403
5403
 
5404
5404
  /**
5405
5405
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -7538,12 +7538,15 @@ class AuroCounterGroup extends AuroElement {
7538
7538
 
7539
7539
  this.matchWidth = false;
7540
7540
  this.isDropdown = false;
7541
+
7542
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
7541
7543
  this.fullscreenBreakpoint = 'sm';
7542
7544
  this.largeFullscreenHeadline = false;
7543
7545
  this.autoPlacement = false;
7544
7546
  this.noFlip = false;
7545
7547
  this.shift = false;
7546
7548
 
7549
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
7547
7550
  this.placement = 'bottom-start';
7548
7551
 
7549
7552
  /**
@@ -200,12 +200,14 @@ export class AuroCounterGroup extends AuroElement {
200
200
  value: {} | undefined;
201
201
  matchWidth: boolean;
202
202
  isDropdown: boolean;
203
- fullscreenBreakpoint: string;
203
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
204
+ fullscreenBreakpoint: "xs" | "sm" | "md" | "lg" | "xl" | "disabled";
204
205
  largeFullscreenHeadline: boolean;
205
206
  autoPlacement: boolean;
206
207
  noFlip: boolean;
207
208
  shift: boolean;
208
- placement: string;
209
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
210
+ placement: "top" | "right" | "bottom" | "left" | "bottom-start" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-end" | "left-start" | "left-end";
209
211
  /**
210
212
  * @private
211
213
  */
@@ -1077,7 +1077,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1077
1077
  }
1078
1078
  };
1079
1079
 
1080
- var formkitVersion$1 = '202608300438';
1080
+ var formkitVersion$1 = '202608311921';
1081
1081
 
1082
1082
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1083
1083
  // See LICENSE in the project root for license information.
@@ -5331,7 +5331,7 @@ class AuroHelpText extends LitElement {
5331
5331
  }
5332
5332
  }
5333
5333
 
5334
- var formkitVersion = '202608300438';
5334
+ var formkitVersion = '202608311921';
5335
5335
 
5336
5336
  /**
5337
5337
  * AuroElement is the shared base class for layout-aware Auro form components.
@@ -7470,12 +7470,15 @@ class AuroCounterGroup extends AuroElement {
7470
7470
 
7471
7471
  this.matchWidth = false;
7472
7472
  this.isDropdown = false;
7473
+
7474
+ /** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
7473
7475
  this.fullscreenBreakpoint = 'sm';
7474
7476
  this.largeFullscreenHeadline = false;
7475
7477
  this.autoPlacement = false;
7476
7478
  this.noFlip = false;
7477
7479
  this.shift = false;
7478
7480
 
7481
+ /** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
7479
7482
  this.placement = 'bottom-start';
7480
7483
 
7481
7484
  /**