@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.6 → 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.
- package/components/checkbox/demo/api.md +1 -1
- package/components/checkbox/demo/customize.min.js +3 -5
- package/components/checkbox/demo/getting-started.min.js +3 -5
- package/components/checkbox/demo/index.min.js +3 -5
- package/components/checkbox/dist/auro-checkbox.d.ts +2 -2
- package/components/checkbox/dist/index.js +3 -5
- package/components/checkbox/dist/registered.js +3 -5
- package/components/combobox/demo/api.md +1 -1
- package/components/combobox/demo/customize.min.js +20 -9
- package/components/combobox/demo/getting-started.min.js +20 -9
- package/components/combobox/demo/index.min.js +20 -9
- package/components/combobox/dist/auro-combobox.d.ts +10 -5
- package/components/combobox/dist/index.js +20 -9
- package/components/combobox/dist/registered.js +20 -9
- package/components/counter/demo/customize.min.js +7 -4
- package/components/counter/demo/index.min.js +7 -4
- package/components/counter/dist/auro-counter-group.d.ts +4 -2
- package/components/counter/dist/index.js +7 -4
- package/components/counter/dist/registered.js +7 -4
- package/components/datepicker/demo/customize.min.js +8 -5
- package/components/datepicker/demo/index.min.js +8 -5
- package/components/datepicker/dist/auro-datepicker.d.ts +4 -2
- package/components/datepicker/dist/index.js +8 -5
- package/components/datepicker/dist/registered.js +8 -5
- package/components/dropdown/demo/api.md +1 -1
- package/components/dropdown/demo/customize.min.js +3 -3
- package/components/dropdown/demo/getting-started.min.js +4 -4
- package/components/dropdown/demo/index.min.js +3 -3
- package/components/dropdown/dist/auro-dropdownBib.d.ts +1 -1
- package/components/dropdown/dist/index.js +3 -3
- package/components/dropdown/dist/registered.js +3 -3
- package/components/form/demo/customize.min.js +46 -31
- package/components/form/demo/getting-started.min.js +46 -31
- package/components/form/demo/index.min.js +46 -31
- package/components/form/demo/registerDemoDeps.min.js +46 -31
- package/components/input/demo/customize.min.js +1 -1
- package/components/input/demo/getting-started.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/radio/demo/api.md +1 -1
- package/components/radio/demo/customize.min.js +2 -2
- package/components/radio/demo/getting-started.min.js +2 -2
- package/components/radio/demo/index.min.js +2 -2
- package/components/radio/dist/index.js +2 -2
- package/components/radio/dist/registered.js +2 -2
- package/components/select/demo/api.md +1 -1
- package/components/select/demo/customize.min.js +5 -5
- package/components/select/demo/getting-started.min.js +5 -5
- package/components/select/demo/index.min.js +5 -5
- package/components/select/dist/index.js +5 -5
- package/components/select/dist/registered.js +5 -5
- package/custom-elements.json +1474 -1519
- 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
|
|
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
|
-
* @
|
|
153
|
-
* @
|
|
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 = '
|
|
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
|
-
* @
|
|
153
|
-
* @
|
|
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 = '
|
|
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
|
-
* @
|
|
153
|
-
* @
|
|
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 = '
|
|
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
|
-
* @
|
|
12
|
-
* @
|
|
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
|
-
* @
|
|
113
|
-
* @
|
|
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 = '
|
|
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
|
-
* @
|
|
113
|
-
* @
|
|
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 = '
|
|
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.
|
|
@@ -28,7 +28,7 @@ The `auro-combobox` element provides users with a way to select an option from a
|
|
|
28
28
|
| `noValidate` | `novalidate` | | `boolean` | | If set, disables auto-validation on blur. |
|
|
29
29
|
| `offset` | `offset` | | `number` | "0" | Gap between the trigger element and bib. |
|
|
30
30
|
| `onDark` | `ondark` | | `boolean` | | DEPRECATED - use `appearance="inverse"` instead. |
|
|
31
|
-
| `optionSelected` |
|
|
31
|
+
| `optionSelected` | | | `HTMLElement` | | Specifies the current selected option. |
|
|
32
32
|
| `persistInput` | `persistinput` | | `boolean` | | If declared, selecting a menu option will not change the input value. By doing so,<br />the current menu filter will be preserved and the user can continue from their last<br />filter state. It is recommended to use this in combination with the `displayValue` slot. |
|
|
33
33
|
| `placeholder` | `placeholder` | | `string` | | Define custom placeholder text, only supported by date input formats. |
|
|
34
34
|
| `placement` | `placement` | | `'top' \| 'right' \| 'bottom' \| 'left' \| 'bottom-start' \| 'top-start' \| 'top-end' \| 'right-start' \| 'right-end' \| 'bottom-end' \| 'left-start' \| 'left-end'` | "'bottom-start'" | Position where the bib should appear relative to the trigger. |
|
|
@@ -4539,7 +4539,7 @@ class AuroDropdownBib extends i$3 {
|
|
|
4539
4539
|
*/
|
|
4540
4540
|
bibTemplate: {
|
|
4541
4541
|
type: Object,
|
|
4542
|
-
attribute:
|
|
4542
|
+
attribute: false
|
|
4543
4543
|
},
|
|
4544
4544
|
|
|
4545
4545
|
/**
|
|
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5066
5066
|
}
|
|
5067
5067
|
};
|
|
5068
5068
|
|
|
5069
|
-
var formkitVersion$2 = '
|
|
5069
|
+
var formkitVersion$2 = '202608311921';
|
|
5070
5070
|
|
|
5071
5071
|
/**
|
|
5072
5072
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5734,7 +5734,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5734
5734
|
*/
|
|
5735
5735
|
onSlotChange: {
|
|
5736
5736
|
type: Function,
|
|
5737
|
-
attribute:
|
|
5737
|
+
attribute: false,
|
|
5738
5738
|
reflect: false
|
|
5739
5739
|
},
|
|
5740
5740
|
|
|
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18935
18935
|
}
|
|
18936
18936
|
};
|
|
18937
18937
|
|
|
18938
|
-
var formkitVersion$1 = '
|
|
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 = '
|
|
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;
|
|
@@ -20873,7 +20884,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20873
20884
|
*/
|
|
20874
20885
|
optionSelected: {
|
|
20875
20886
|
type: Object,
|
|
20876
|
-
attribute:
|
|
20887
|
+
attribute: false
|
|
20877
20888
|
},
|
|
20878
20889
|
|
|
20879
20890
|
/**
|
|
@@ -21466,7 +21477,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21466
21477
|
// focus, which fires focusout on the child auro-input before the
|
|
21467
21478
|
// bib input receives focus. That focusout triggers the input's own
|
|
21468
21479
|
// validate(), which dispatches a composed auroFormElement-validated
|
|
21469
|
-
// event. Because composed events are
|
|
21480
|
+
// event. Because composed events are re-targeted at each shadow DOM
|
|
21470
21481
|
// boundary, the event appears to originate from the combobox itself
|
|
21471
21482
|
// and its listener unconditionally sets this.validity — causing
|
|
21472
21483
|
// premature validation. This flag suppresses all validation paths
|
|
@@ -21729,7 +21740,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21729
21740
|
this.optionSelected = selected;
|
|
21730
21741
|
}
|
|
21731
21742
|
|
|
21732
|
-
// Skip
|
|
21743
|
+
// Skip write-back when this event is the echo of our own setMenuValue —
|
|
21733
21744
|
// otherwise it cascades against handleInputValueChange in suggestion mode.
|
|
21734
21745
|
if (this._pendingMenuValueSync) {
|
|
21735
21746
|
this._pendingMenuValueSync = false;
|
|
@@ -22091,7 +22102,7 @@ class AuroCombobox extends AuroElement {
|
|
|
22091
22102
|
// Ignore dispatches from the bib (fullscreen) input. It's re-validated
|
|
22092
22103
|
// inside this.validate()'s auroInputElements loop with its own
|
|
22093
22104
|
// (often undefined) validity, and the event is composed/bubbles up to
|
|
22094
|
-
// this listener with `target`
|
|
22105
|
+
// this listener with `target` re-targeted to the combobox. Letting it
|
|
22095
22106
|
// through would overwrite the trigger input's correct validity with
|
|
22096
22107
|
// the bib input's stale one (e.g. wiping `tooShort` during typing).
|
|
22097
22108
|
if (this.inputInBib && evt.composedPath()[0] === this.inputInBib && this.inputInBib !== this.input) {
|
|
@@ -4539,7 +4539,7 @@ class AuroDropdownBib extends i$3 {
|
|
|
4539
4539
|
*/
|
|
4540
4540
|
bibTemplate: {
|
|
4541
4541
|
type: Object,
|
|
4542
|
-
attribute:
|
|
4542
|
+
attribute: false
|
|
4543
4543
|
},
|
|
4544
4544
|
|
|
4545
4545
|
/**
|
|
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5066
5066
|
}
|
|
5067
5067
|
};
|
|
5068
5068
|
|
|
5069
|
-
var formkitVersion$2 = '
|
|
5069
|
+
var formkitVersion$2 = '202608311921';
|
|
5070
5070
|
|
|
5071
5071
|
/**
|
|
5072
5072
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5734,7 +5734,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5734
5734
|
*/
|
|
5735
5735
|
onSlotChange: {
|
|
5736
5736
|
type: Function,
|
|
5737
|
-
attribute:
|
|
5737
|
+
attribute: false,
|
|
5738
5738
|
reflect: false
|
|
5739
5739
|
},
|
|
5740
5740
|
|
|
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18935
18935
|
}
|
|
18936
18936
|
};
|
|
18937
18937
|
|
|
18938
|
-
var formkitVersion$1 = '
|
|
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 = '
|
|
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;
|
|
@@ -20873,7 +20884,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20873
20884
|
*/
|
|
20874
20885
|
optionSelected: {
|
|
20875
20886
|
type: Object,
|
|
20876
|
-
attribute:
|
|
20887
|
+
attribute: false
|
|
20877
20888
|
},
|
|
20878
20889
|
|
|
20879
20890
|
/**
|
|
@@ -21466,7 +21477,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21466
21477
|
// focus, which fires focusout on the child auro-input before the
|
|
21467
21478
|
// bib input receives focus. That focusout triggers the input's own
|
|
21468
21479
|
// validate(), which dispatches a composed auroFormElement-validated
|
|
21469
|
-
// event. Because composed events are
|
|
21480
|
+
// event. Because composed events are re-targeted at each shadow DOM
|
|
21470
21481
|
// boundary, the event appears to originate from the combobox itself
|
|
21471
21482
|
// and its listener unconditionally sets this.validity — causing
|
|
21472
21483
|
// premature validation. This flag suppresses all validation paths
|
|
@@ -21729,7 +21740,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21729
21740
|
this.optionSelected = selected;
|
|
21730
21741
|
}
|
|
21731
21742
|
|
|
21732
|
-
// Skip
|
|
21743
|
+
// Skip write-back when this event is the echo of our own setMenuValue —
|
|
21733
21744
|
// otherwise it cascades against handleInputValueChange in suggestion mode.
|
|
21734
21745
|
if (this._pendingMenuValueSync) {
|
|
21735
21746
|
this._pendingMenuValueSync = false;
|
|
@@ -22091,7 +22102,7 @@ class AuroCombobox extends AuroElement {
|
|
|
22091
22102
|
// Ignore dispatches from the bib (fullscreen) input. It's re-validated
|
|
22092
22103
|
// inside this.validate()'s auroInputElements loop with its own
|
|
22093
22104
|
// (often undefined) validity, and the event is composed/bubbles up to
|
|
22094
|
-
// this listener with `target`
|
|
22105
|
+
// this listener with `target` re-targeted to the combobox. Letting it
|
|
22095
22106
|
// through would overwrite the trigger input's correct validity with
|
|
22096
22107
|
// the bib input's stale one (e.g. wiping `tooShort` during typing).
|
|
22097
22108
|
if (this.inputInBib && evt.composedPath()[0] === this.inputInBib && this.inputInBib !== this.input) {
|
|
@@ -4554,7 +4554,7 @@ class AuroDropdownBib extends i$3 {
|
|
|
4554
4554
|
*/
|
|
4555
4555
|
bibTemplate: {
|
|
4556
4556
|
type: Object,
|
|
4557
|
-
attribute:
|
|
4557
|
+
attribute: false
|
|
4558
4558
|
},
|
|
4559
4559
|
|
|
4560
4560
|
/**
|
|
@@ -5081,7 +5081,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5081
5081
|
}
|
|
5082
5082
|
};
|
|
5083
5083
|
|
|
5084
|
-
var formkitVersion$2 = '
|
|
5084
|
+
var formkitVersion$2 = '202608311921';
|
|
5085
5085
|
|
|
5086
5086
|
/**
|
|
5087
5087
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5749,7 +5749,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5749
5749
|
*/
|
|
5750
5750
|
onSlotChange: {
|
|
5751
5751
|
type: Function,
|
|
5752
|
-
attribute:
|
|
5752
|
+
attribute: false,
|
|
5753
5753
|
reflect: false
|
|
5754
5754
|
},
|
|
5755
5755
|
|
|
@@ -18950,7 +18950,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18950
18950
|
}
|
|
18951
18951
|
};
|
|
18952
18952
|
|
|
18953
|
-
var formkitVersion$1 = '
|
|
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 = '
|
|
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;
|
|
@@ -20888,7 +20899,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20888
20899
|
*/
|
|
20889
20900
|
optionSelected: {
|
|
20890
20901
|
type: Object,
|
|
20891
|
-
attribute:
|
|
20902
|
+
attribute: false
|
|
20892
20903
|
},
|
|
20893
20904
|
|
|
20894
20905
|
/**
|
|
@@ -21481,7 +21492,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21481
21492
|
// focus, which fires focusout on the child auro-input before the
|
|
21482
21493
|
// bib input receives focus. That focusout triggers the input's own
|
|
21483
21494
|
// validate(), which dispatches a composed auroFormElement-validated
|
|
21484
|
-
// event. Because composed events are
|
|
21495
|
+
// event. Because composed events are re-targeted at each shadow DOM
|
|
21485
21496
|
// boundary, the event appears to originate from the combobox itself
|
|
21486
21497
|
// and its listener unconditionally sets this.validity — causing
|
|
21487
21498
|
// premature validation. This flag suppresses all validation paths
|
|
@@ -21744,7 +21755,7 @@ class AuroCombobox extends AuroElement {
|
|
|
21744
21755
|
this.optionSelected = selected;
|
|
21745
21756
|
}
|
|
21746
21757
|
|
|
21747
|
-
// Skip
|
|
21758
|
+
// Skip write-back when this event is the echo of our own setMenuValue —
|
|
21748
21759
|
// otherwise it cascades against handleInputValueChange in suggestion mode.
|
|
21749
21760
|
if (this._pendingMenuValueSync) {
|
|
21750
21761
|
this._pendingMenuValueSync = false;
|
|
@@ -22106,7 +22117,7 @@ class AuroCombobox extends AuroElement {
|
|
|
22106
22117
|
// Ignore dispatches from the bib (fullscreen) input. It's re-validated
|
|
22107
22118
|
// inside this.validate()'s auroInputElements loop with its own
|
|
22108
22119
|
// (often undefined) validity, and the event is composed/bubbles up to
|
|
22109
|
-
// this listener with `target`
|
|
22120
|
+
// this listener with `target` re-targeted to the combobox. Letting it
|
|
22110
22121
|
// through would overwrite the trigger input's correct validity with
|
|
22111
22122
|
// the bib input's stale one (e.g. wiping `tooShort` during typing).
|
|
22112
22123
|
if (this.inputInBib && evt.composedPath()[0] === this.inputInBib && this.inputInBib !== this.input) {
|
|
@@ -348,16 +348,21 @@ export class AuroCombobox extends AuroElement {
|
|
|
348
348
|
persistInput: boolean | undefined;
|
|
349
349
|
required: boolean | undefined;
|
|
350
350
|
typedValue: any;
|
|
351
|
-
|
|
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
|
-
|
|
356
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
357
|
+
fullscreenBreakpoint: "xs" | "sm" | "md" | "lg" | "xl" | "disabled" | undefined;
|
|
356
358
|
matchWidth: boolean | undefined;
|
|
357
|
-
|
|
358
|
-
|
|
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
|
-
|
|
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;
|